:root {
    --ink: #07111f;
    --ink-soft: #172335;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --surface-green: #effaf6;
    --text: #1a2433;
    --muted: #64748b;
    --line: #dbe4ef;
    --cyan: #00c4df;
    --cyan-deep: #0284a8;
    --green: #16a34a;
    --amber: #f59e0b;
    --shadow: 0 18px 46px rgba(8, 17, 31, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 14px 40px;
    border-bottom: 1px solid rgba(219, 228, 239, .84);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
}

.brand img {
    width: 214px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav a,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 8px;
    padding: 0 14px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.main-nav a:hover {
    background: #edf7fb;
    color: var(--cyan-deep);
}

.header-cta {
    border: 1px solid #b9dbe4;
    background: #e9fbff;
    color: #075e73;
    white-space: nowrap;
}

.header-cta:hover {
    border-color: var(--cyan);
    background: #d8f8ff;
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(7, 17, 31, .96) 0%, rgba(7, 17, 31, .84) 43%, rgba(7, 17, 31, .52) 100%),
        url("secure-clic-hero.png");
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.hero-inner {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 92px 0 84px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    color: #4de7f7;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 76px;
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 690px;
    margin: 24px 0 0;
    color: #d8edf4;
    font-size: 22px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--cyan);
    color: #04121c;
    box-shadow: 0 16px 36px rgba(0, 196, 223, .28);
}

.button-primary:hover {
    background: #5cf1ff;
}

.button-secondary {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .13);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 980px;
    margin-top: 48px;
}

.hero-proof div {
    min-height: 122px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(5, 19, 32, .58);
    padding: 18px;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.25;
}

.hero-proof span {
    margin-top: 8px;
    color: #c7dce6;
    font-size: 14px;
    line-height: 1.45;
}

.section,
.intro-band,
.final-cta {
    padding: 88px 0;
}

.section-inner {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.intro-band {
    background: var(--surface-green);
    border-bottom: 1px solid #cceee0;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    gap: 36px;
    align-items: start;
}

.intro-grid p {
    margin: 0;
    color: #0f2b22;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.intro-grid ul,
.plan-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.intro-grid li,
.plan-card li {
    position: relative;
    padding-left: 26px;
}

.intro-grid li + li,
.plan-card li + li {
    margin-top: 12px;
}

.intro-grid li::before,
.plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
}

.problem-section,
.benefits-section,
.faq-section {
    background: var(--surface);
}

.flow-section,
.plans-section {
    background: var(--surface-soft);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    gap: 42px;
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.final-inner h2 {
    margin: 0;
    color: var(--ink);
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.final-inner p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.section-kicker {
    color: var(--cyan-deep);
}

.quiet-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 32px;
}

.quiet-panel h3 {
    margin: 0;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.2;
}

.quiet-panel p {
    margin: 16px 0 0;
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.steps-grid,
.benefits-grid,
.plans-grid {
    display: grid;
    gap: 16px;
}

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

.step-card,
.benefits-grid article,
.plan-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.step-card {
    min-height: 250px;
    padding: 24px;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e8fbff;
    color: #06718c;
    font-weight: 900;
}

.step-card h3,
.benefits-grid h3,
.plan-card h3 {
    margin: 22px 0 0;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.2;
}

.step-card p,
.benefits-grid p,
.plan-head p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
}

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

.benefits-grid article {
    min-height: 210px;
    padding: 26px;
}

.benefits-grid article:nth-child(2),
.benefits-grid article:nth-child(5) {
    border-color: #cceee0;
    background: #f4fcf8;
}

.benefits-grid article:nth-child(4) {
    border-color: #f3d48a;
    background: #fff9eb;
}

.plans-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 474px;
    padding: 24px;
}

.highlighted-plan {
    border-color: var(--cyan);
    box-shadow: var(--shadow);
}

.plan-badge {
    align-self: flex-start;
    min-height: 30px;
    border-radius: 8px;
    background: var(--amber);
    color: #201200;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
}

.highlighted-plan .plan-head h3 {
    margin-top: 18px;
}

.price {
    display: block;
    margin: 22px 0;
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
}

.price span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.plan-card ul {
    color: #334155;
    font-size: 15px;
}

.plan-card .button {
    margin-top: auto;
}

.button-plan {
    border-color: #bfd9e4;
    background: #ffffff;
    color: #075e73;
}

.button-plan:hover {
    border-color: var(--cyan);
    background: #e9fbff;
}

.trust-section {
    background: var(--ink);
    color: #ffffff;
}

.trust-section .section-kicker {
    color: #5cf1ff;
}

.trust-section h2 {
    color: #ffffff;
}

.trust-section p {
    color: #bdd2dc;
}

.trust-list {
    display: grid;
    gap: 12px;
}

.trust-list div {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    padding: 20px;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: #ffffff;
    font-size: 18px;
}

.trust-list span {
    margin-top: 6px;
    color: #bdd2dc;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(360px, 1fr);
    gap: 42px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 18px 20px;
}

summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
}

.final-cta {
    background: #eef9ff;
    text-align: center;
}

.final-inner {
    max-width: 850px;
}

.final-inner .button {
    margin-top: 28px;
}

.site-footer {
    background: #040a12;
    color: #bdd2dc;
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-inner img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    color: #5cf1ff;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .site-header {
        padding: 14px 24px;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 62px;
    }

    .hero-copy {
        font-size: 20px;
    }

    .steps-grid,
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 190px;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 6px;
    }

    .main-nav a {
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }

    .hero {
        min-height: auto;
        background-position: center;
    }

    .hero-inner {
        width: min(100% - 32px, 1160px);
        padding: 78px 0 58px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-copy {
        font-size: 18px;
    }

    .button {
        width: 100%;
    }

    .hero-proof,
    .intro-grid,
    .split-layout,
    .steps-grid,
    .benefits-grid,
    .plans-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .section,
    .intro-band,
    .final-cta {
        padding: 64px 0;
    }

    .section-inner {
        width: min(100% - 32px, 1160px);
    }

    .intro-grid p,
    .quiet-panel h3 {
        font-size: 24px;
    }

    .section-copy h2,
    .section-heading h2,
    .final-inner h2 {
        font-size: 34px;
    }

    .plan-card {
        min-height: 0;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 40px;
    }

    .section-copy h2,
    .section-heading h2,
    .final-inner h2 {
        font-size: 30px;
    }

    .price {
        font-size: 30px;
    }
}
