:root {
    --bg: #f8faff;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --line: #dbe5f2;
    --primary: #2563eb;
    --primary-2: #7c3aed;
    --teal: #0ea5a4;
    --radius: 18px;
    --shadow: 0 20px 40px rgba(20, 35, 70, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.12), transparent 33%),
        radial-gradient(circle at 90% 20%, rgba(14, 165, 164, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(219, 229, 242, 0.9);
}

.nav {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    background: linear-gradient(140deg, var(--primary), var(--primary-2));
}

.brand-text {
    font-weight: 800;
}

.menu {
    display: flex;
    gap: 0.35rem;
    background: #f8fbff;
    border: 1px solid #dce8fb;
    border-radius: 999px;
    padding: 0.3rem;
    justify-self: center;
}

.menu a {
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    transition: 0.2s ease;
}

.menu a:hover,
.menu a.active {
    color: #0f172a;
    background: #eaf1ff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    transition: 0.2s ease;
}

.btn-small {
    padding: 0.68rem 0.95rem;
    font-size: 0.9rem;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(140deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    color: #0f172a;
    background: #fff;
    border-color: #d5dfec;
}

.hero {
    padding: 5.5rem 0 3.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    margin: 0;
    display: inline-flex;
    border-radius: 999px;
    background: #e8f1ff;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
}

h1 {
    margin: 0.9rem 0 0;
    font-size: clamp(2rem, 4.1vw, 3.4rem);
    line-height: 1.1;
}

.subheadline {
    color: var(--muted);
    margin: 1rem 0 0;
    max-width: 60ch;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero-points {
    margin: 1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-points span {
    border: 1px solid #d6e3f7;
    background: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.84rem;
    color: #334155;
}

.hero-panel {
    border-radius: 24px;
    background: linear-gradient(160deg, #f3f8ff 5%, #ffffff 50%, #f5f2ff 100%);
    border: 1px solid #dbe6f7;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.hero-kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.hero-kpi article {
    border: 1px solid #d9e4f4;
    background: #fff;
    border-radius: 14px;
    padding: 0.9rem;
}

.hero-kpi strong {
    display: block;
    font-size: 1.2rem;
}

.hero-kpi span {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-menu-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.65rem;
}

.hero-menu-grid a {
    border: 1px solid #dce6f6;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    background: #fff;
    font-weight: 600;
    color: #1e293b;
}

.hero-menu-grid a:hover {
    background: #f5f9ff;
}

.section {
    padding: 4.7rem 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.section-head p {
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-card {
    border: 1px solid #dce5f3;
    border-radius: var(--radius);
    background: #fff;
    padding: 1.3rem;
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-2px);
    border-color: #bfd4fb;
}

.menu-card h3 {
    margin: 0.8rem 0 0.4rem;
}

.menu-card p {
    margin: 0;
    color: var(--muted);
}

.menu-card .btn {
    margin-top: 0.95rem;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    background: #ecf4ff;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.box {
    border: 1px solid #dce5f3;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.box h3 {
    margin: 0 0 0.45rem;
}

.box p {
    margin: 0;
    color: var(--muted);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.step {
    border: 1px solid #dce5f3;
    border-radius: var(--radius);
    background: #fff;
    padding: 1.2rem;
}

.step strong {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(140deg, var(--primary), var(--teal));
}

.step h3 {
    margin: 0.75rem 0 0.3rem;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.quote {
    border: 1px solid #dce5f3;
    border-radius: var(--radius);
    background: #fff;
    padding: 1.2rem;
}

.quote p {
    margin: 0;
}

.quote h4 {
    margin: 0.85rem 0 0;
}

.quote span {
    color: var(--muted);
    font-size: 0.9rem;
}

.stat-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.stat-grid article {
    text-align: center;
    background: #fff;
    border: 1px solid #dce5f3;
    border-radius: 14px;
    padding: 1rem;
}

.stat-grid strong {
    display: block;
    font-size: 1.35rem;
}

.stat-grid span {
    color: var(--muted);
}

.final-cta {
    margin-top: 0.5rem;
    border: 1px solid #dce5f3;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
}

.final-cta p {
    color: var(--muted);
    max-width: 680px;
    margin: 0.85rem auto 0;
}

.footer {
    margin-top: 4rem;
    border-top: 1px solid #dce5f3;
    background: rgba(255, 255, 255, 0.9);
}

.footer-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #334155;
    font-weight: 600;
}

.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    background: #22c55e;
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    box-shadow: 0 12px 22px rgba(34, 197, 94, 0.35);
}

@media (max-width: 760px) {
    .container {
        width: min(1140px, calc(100% - 1.7rem));
    }

    .menu {
        display: none;
    }

    .hero-grid,
    .menu-cards,
    .content-grid,
    .timeline,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-kpi {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .hero {
        padding-top: 3.5rem;
    }

    .cta-row .btn {
        width: 100%;
    }

    .cta-row {
        flex-direction: column;
    }

    .hero-kpi {
        grid-template-columns: 1fr;
    }

    .footer-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 1rem 0;
    }
}