:root {
    --blue: #0d47d1;
    --navy: #07152f;
    --navy-soft: #0d1d3b;
    --ice: #e6f0ff;
    --cream: #fbf7ef;
    --white: #ffffff;
    --dark: #101828;
    --text: #344054;
    --muted: #667085;
    --border: #dbe7ff;
    --green: #16a34a;
    --shadow: 0 18px 46px rgba(7, 21, 47, 0.14);
    --radius: 24px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 21, 47, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header-container {
    position: relative;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand-logo {
    width: auto;
    height: 52px;
}

.desktop-nav {
    display: flex;
    gap: 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 800;
}

.desktop-nav a:hover {
    color: var(--white);
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.menu-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.10);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}

.mobile-nav {
    display: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(13, 71, 209, 0.75), transparent 34%),
        radial-gradient(circle at bottom right, rgba(13, 71, 209, 0.35), transparent 34%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: 1.05fr 0.85fr;
    align-items: center;
    gap: 64px;
    padding: 72px 0;
}

.kicker,
.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kicker {
    color: var(--ice);
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.hero-copy p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 950;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--blue);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-trust span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
}

.hero-panel {
    display: block;
}

.panel-card {
    padding: 24px;
    border-radius: 32px;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.30);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.panel-header span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.panel-header strong {
    color: var(--dark);
    font-size: 28px;
    letter-spacing: -0.04em;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metrics-row div,
.mini-order {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f7fbff;
}

.metrics-row div {
    padding: 16px;
}

.metrics-row span,
.mini-order span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.metrics-row strong {
    display: block;
    margin-top: 4px;
    color: var(--blue);
    font-size: 28px;
    line-height: 1;
}

.mini-section {
    margin-top: 18px;
    padding: 16px;
    border-radius: 22px;
    background: #fbfdff;
    border: 1px solid var(--border);
}

.mini-section > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mini-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
}

.mini-order + .mini-order {
    margin-top: 10px;
}

.mini-order.active {
    background: var(--ice);
}

.mini-order b {
    color: var(--blue);
    font-size: 13px;
    white-space: nowrap;
}

.route-card {
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: var(--blue);
    color: var(--white);
}

.route-card span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.route-card strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
}

.hero-strip {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
}

.hero-strip-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
}

.hero-strip span {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pain-section,
.platform-section,
.operation-section,
.scanner-section,
.resources-section,
.plans-section,
.result-section,
.faq-section,
.cta-section {
    padding: 82px 0;
}

.section-head {
    max-width: 820px;
    margin-bottom: 36px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2,
.section-copy h2,
.cta-box h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-head p,
.section-copy p,
.cta-box p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.info-card,
.plan-card,
.process-card,
.scanner-card {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(7, 21, 47, 0.08);
    box-shadow: 0 12px 34px rgba(7, 21, 47, 0.07);
}

.info-card span {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--ice);
    color: var(--blue);
    font-weight: 950;
}

.info-card h3 {
    margin: 20px 0 10px;
    color: var(--dark);
    font-size: 20px;
}

.info-card p,
.plan-card p {
    margin: 0;
    color: var(--muted);
}

.platform-section,
.resources-section,
.faq-section {
    background: var(--white);
}

.operation-section,
.plans-section,
.cta-section {
    background: var(--cream);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 48px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.feature-list div {
    padding: 18px;
    border-radius: 18px;
    background: var(--ice);
    border: 1px solid var(--border);
}

.feature-list strong {
    display: block;
    color: var(--blue);
    font-size: 18px;
}

.feature-list span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.process-card {
    background: var(--navy);
    color: var(--white);
}

.process-title {
    display: block;
    margin-bottom: 18px;
    font-size: 24px;
}

.process-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.process-item + .process-item {
    margin-top: 10px;
}

.process-item span {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-top: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.process-item.done span,
.process-item.active span {
    background: var(--blue);
}

.process-item.active {
    background: rgba(13, 71, 209, 0.34);
}

.process-item strong {
    display: block;
    color: var(--white);
}

.process-item small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.70);
}

.scanner-section {
    background: var(--navy);
}

.light-copy h2,
.light-copy p {
    color: var(--white);
}

.light-copy p {
    opacity: 0.76;
}

.scanner-card {
    background: var(--navy-soft);
    color: var(--white);
}

.scanner-card > strong {
    display: block;
    margin-bottom: 18px;
    font-size: 24px;
}

.scanner-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.scanner-row + .scanner-row {
    margin-top: 10px;
}

.scanner-row span {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.scanner-row b {
    color: var(--white);
    text-align: right;
}

.scanner-row.final {
    background: var(--white);
}

.scanner-row.final span,
.scanner-row.final b {
    color: var(--blue);
}

.plan-card {
    position: relative;
}

.plan-card > span {
    display: block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-card > strong {
    display: block;
    margin-top: 8px;
    color: var(--dark);
    font-size: 32px;
    letter-spacing: -0.04em;
}

.plan-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
    color: var(--text);
}

.plan-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--blue);
    font-weight: 950;
}

.plan-card a {
    min-height: 48px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 950;
}

.plan-card.featured {
    background: var(--navy);
    color: var(--white);
}

.plan-card.featured em {
    position: absolute;
    top: -13px;
    right: 22px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.plan-card.featured > span,
.plan-card.featured > strong,
.plan-card.featured p,
.plan-card.featured li {
    color: var(--white);
}

.plan-card.featured a {
    background: var(--white);
    color: var(--blue);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-list details {
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(7, 21, 47, 0.08);
    box-shadow: 0 10px 26px rgba(7, 21, 47, 0.06);
}

.faq-list summary {
    cursor: pointer;
    padding: 18px;
    color: var(--dark);
    font-weight: 950;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}

.cta-box {
    padding: 54px;
    border-radius: 32px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
    color: var(--white);
}

.cta-box p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.78;
}

.cta-box .btn {
    margin-top: 28px;
}

.site-footer {
    padding: 56px 0 88px;
    background: var(--navy);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    gap: 38px;
}

.footer-logo {
    width: auto;
    height: 70px;
    margin-bottom: 16px;
}

.site-footer p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
}

.site-footer strong {
    display: block;
    margin-bottom: 12px;
}

.site-footer a {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.floating-whatsapp {
    position: fixed;
    left: auto;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(22, 163, 74, 0.28);
}

@media (max-width: 1024px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        padding: 12px 16px 20px;
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-nav a {
        display: block;
        padding: 14px 15px;
        margin-bottom: 9px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        font-weight: 900;
    }

    .menu-toggle:checked ~ .mobile-nav {
        display: block;
    }

    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .card-grid-three,
    .card-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 72px;
    }

    body {
        padding-bottom: 76px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-container {
        min-height: 72px;
    }

    .brand-logo {
        height: 46px;
    }

    .mobile-nav {
        top: 72px;
    }

    .hero-grid {
        min-height: auto;
        display: block;
        padding: 42px 0 30px;
    }

    .hero-copy h1 {
        font-size: 40px;
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .hero-copy p {
        font-size: 16px;
        margin-top: 18px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
        margin-top: 26px;
    }

    .btn {
        width: 100%;
        min-height: 52px;
        text-align: center;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-trust {
        display: grid;
        gap: 8px;
        margin-top: 20px;
    }

    .hero-trust span {
        justify-content: center;
        text-align: center;
    }

    .hero-panel {
        margin-top: 28px;
    }

    .panel-card {
        padding: 18px;
        border-radius: 24px;
        box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
    }

    .panel-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .panel-header strong {
        font-size: 24px;
    }

    .metrics-row {
        grid-template-columns: 1fr;
    }

    .mini-order {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .hero-strip-inner {
        min-height: 56px;
        gap: 22px;
    }

    .hero-strip span {
        font-size: 12px;
    }

    .pain-section,
    .platform-section,
    .operation-section,
    .scanner-section,
    .resources-section,
    .plans-section,
    .result-section,
    .faq-section,
    .cta-section {
        padding: 54px 0;
    }

    .section-head {
        margin-bottom: 26px;
    }

    .section-head h2,
    .section-copy h2,
    .cta-box h2 {
        font-size: 31px;
        line-height: 1.08;
    }

    .section-head p,
    .section-copy p,
    .cta-box p {
        font-size: 16px;
    }

    .card-grid-three,
    .card-grid-four {
        grid-template-columns: 1fr;
    }

    .info-card,
    .plan-card,
    .process-card,
    .scanner-card {
        padding: 20px;
        border-radius: 22px;
    }

    .feature-list div {
        padding: 16px;
    }

    .scanner-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .scanner-row b {
        text-align: left;
    }

    .cta-box {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .footer-logo {
        height: 62px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-whatsapp {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }
}