:root {
    --bg: #f6f8fc;
    --surface: #fcfdff;
    --surface-strong: #ffffff;
    --text: #0f172a;
    --muted: #5b6475;
    --line: #dbe3f0;
    --brand: #135bec;
    --brand-dark: #0e44b0;
    --accent: #ff6b8a;
    --accent-soft: #fff1f5;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
    --header-height: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(19, 91, 236, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 107, 138, 0.08), transparent 24%),
        linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: var(--brand);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    z-index: 1000;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(217, 221, 208, 0.85);
}

.header-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand span {
    font-size: 1.18rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.97rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.nav-cta,
.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 28px rgba(19, 91, 236, 0.18);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    background: var(--brand-dark);
}

.button-secondary {
    background: var(--surface-strong);
    border-color: var(--line);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    border-radius: 14px;
    padding: 0.7rem 0.65rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    padding: 4rem 0 3rem;
}

.hero-grid,
.split-grid,
.contact-layout,
.footer-grid,
.landing-proof,
.kpi-grid,
.cards-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    background: rgba(13, 107, 95, 0.08);
    color: var(--brand-dark);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero h1,
.section-heading h1,
.section-heading h2,
.content-block h2 {
    margin: 0;
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.hero h1 {
    font-size: clamp(2.9rem, 7vw, 5.8rem);
    max-width: 12ch;
}

.hero-copy {
    font-size: 1.08rem;
    max-width: 60ch;
    color: var(--muted);
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.proof-points article,
.kpi,
.card,
.stat-card,
.faq-item,
.contact-card,
.form-shell,
.quote-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.proof-points article,
.card,
.stat-card,
.faq-item,
.contact-card,
.quote-card {
    padding: 1.25rem;
}

.proof-points strong,
.kpi strong {
    display: block;
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.proof-points span,
.card p,
.stat-card p,
.faq-item p,
.contact-copy,
.muted,
.tagline {
    color: var(--muted);
}

.hero-panel,
.form-shell {
    padding: 1.5rem;
}

.hero-panel {
    background:
        linear-gradient(160deg, rgba(19, 91, 236, 0.96), rgba(124, 99, 255, 0.93)),
        var(--brand);
    color: #fff;
    border-radius: 32px;
    min-height: 100%;
    box-shadow: 0 28px 70px rgba(13, 107, 95, 0.2);
}

.hero-panel .muted,
.hero-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.hero-panel .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.kpi {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.section {
    padding: 4rem 0;
}

.section.alt {
    background: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(217, 221, 208, 0.9);
    border-bottom: 1px solid rgba(217, 221, 208, 0.9);
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card h3,
.stat-card h3,
.faq-item h3,
.content-block h3 {
    margin: 0 0 0.55rem;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #b23b63;
    font-weight: 700;
    font-size: 0.78rem;
}

.split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.content-block {
    display: grid;
    gap: 1rem;
}

.content-block ul,
.content-block ol {
    margin: 0;
    padding-left: 1.2rem;
}

.content-block li + li {
    margin-top: 0.55rem;
}

.quote-card {
    background: linear-gradient(180deg, rgba(240, 141, 73, 0.12), rgba(255, 255, 255, 0.86));
}

.contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
    display: grid;
    gap: 1rem;
}

.form-shell {
    background: var(--surface-strong);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field,
.field-full {
    display: grid;
    gap: 0.45rem;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.92rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.menu-toggle:focus-visible,
.button:focus-visible,
.button-secondary:focus-visible,
.site-nav a:focus-visible,
.whatsapp-widget:focus-visible {
    outline: 3px solid rgba(13, 107, 95, 0.18);
    outline-offset: 2px;
}

.form-note,
.form-status {
    font-size: 0.92rem;
    color: var(--muted);
}

.form-status[data-state="success"] {
    color: var(--brand-dark);
}

.form-status[data-state="error"] {
    color: #b33a28;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item h3 {
    font-size: 1rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumbs a {
    color: var(--muted);
}

.site-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(217, 221, 208, 0.9);
}

.footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    align-items: start;
}

.site-footer h2 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.footer-copy {
    max-width: 34ch;
}

.footer-contact {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.footer-bottom {
    padding-top: 1.2rem;
    margin-top: 1.8rem;
    border-top: 1px solid rgba(217, 221, 208, 0.9);
    color: var(--muted);
    font-size: 0.92rem;
}

.whatsapp-widget {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    padding: 0.9rem 1.05rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(31, 189, 99, 0.28);
}

.whatsapp-widget span {
    display: inline-block;
}

.hidden-honeypot {
    position: absolute;
    left: -9999px;
}

@media (max-width: 980px) {
    .hero-grid,
    .split-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .proof-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 2.5rem;
    }

    .cards-grid,
    .proof-points,
    .form-grid,
    .hero-panel .kpi-grid {
        grid-template-columns: 1fr;
    }

    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .section {
        padding: 3rem 0;
    }

    .site-header {
        position: sticky;
    }

    .header-shell {
        min-height: 70px;
    }

    .whatsapp-widget {
        right: 0.85rem;
        bottom: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
