:root {
    --ink: #15191f;
    --muted: #5e6875;
    --paper: #f6f8f9;
    --white: #ffffff;
    --line: #dce3e8;
    --teal: #087f8c;
    --coral: #e85d4f;
    --gold: #f2b544;
    --green: #16875b;
    --shadow: 0 24px 70px rgba(17, 28, 38, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 227, 232, 0.75);
    backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.proof-row,
.offer-strip,
.header-actions,
.footer-company,
.footer-links,
.site-footer {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--white);
    background: var(--teal);
    border-radius: 8px;
    font-size: 0.8rem;
    letter-spacing: 0;
}

.nav-links {
    justify-content: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
}

.header-actions {
    justify-content: flex-end;
    gap: 12px;
}

.phone-link {
    color: var(--teal);
    font-weight: 900;
    white-space: nowrap;
   font-size: x-large;
   
}

.header-cta,
.button,
.plan-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.header-cta {
    padding: 0 18px;
    color: var(--white);
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(9, 14, 19, 0.9), rgba(9, 14, 19, 0.52) 46%, rgba(9, 14, 19, 0.16)),
        linear-gradient(0deg, rgba(9, 14, 19, 0.86), rgba(9, 14, 19, 0.04) 42%),
        url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-content {
    width: min(760px, calc(100% - 36px));
    margin: 0 clamp(18px, 6vw, 80px) 76px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--gold);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
}

.hero-copy {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    padding: 0 24px;
    font-size: 1rem;
}

.button.primary {
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 14px 34px rgba(232, 93, 79, 0.36);
}

.button.secondary {
    color: var(--ink);
    background: var(--white);
}

.button.call {
    color: var(--ink);
    background: var(--gold);
    font-size: x-large;
}

.button.full {
    width: 100%;
}

.proof-row {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.proof-row span {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 0.92rem;
}

.offer-strip {
    justify-content: center;
    gap: 18px;
    padding: 18px;
    color: var(--ink);
    background: var(--gold);
    text-align: center;
}

.offer-strip span {
    padding: 5px 9px;
    color: var(--white);
    background: var(--ink);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-strip a {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section,
.faq-section {
    padding: 84px clamp(18px, 5vw, 70px);
}

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

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(17, 28, 38, 0.06);
}

.plan-card.featured {
    border-color: rgba(8, 127, 140, 0.45);
    box-shadow: var(--shadow);
}

.plan-topline {
    display: flex;
    min-height: 74px;
    flex-direction: column;
    justify-content: space-between;
}

.plan-topline span {
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 900;
}

.price {
    margin: 22px 0;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price sup,
.price span {
    color: var(--muted);
    font-size: 1rem;
}

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

.plan-card li,
.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: var(--muted);
}

.plan-card li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
}

.plan-link {
    width: 100%;
    margin-top: auto;
    color: var(--white);
    background: var(--teal);
}

.comparison-section {
    padding: 84px clamp(18px, 5vw, 70px);
    background: #ffffff;
}

.comparison-section .section-heading p:last-child {
    color: var(--muted);
    font-size: 1.06rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.comparison-grid article {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.comparison-grid strong {
    font-size: 1.08rem;
}

.comparison-grid span,
.brand-disclosure {
    color: var(--muted);
}

.brand-disclosure {
    margin: 22px 0 0;
    padding: 16px;
    background: #fff8e4;
    border: 1px solid #edd48b;
    border-radius: 8px;
    font-size: 0.94rem;
}

.channel-band {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: center;
    padding: 84px clamp(18px, 5vw, 70px);
    color: var(--white);
    background: var(--ink);
}

.channel-band h2 {
    max-width: 680px;
}

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

.channel-grid span {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
}

.conversion-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    gap: 42px;
    align-items: start;
    padding: 90px clamp(18px, 5vw, 70px);
    background: var(--white);
}

.conversion-copy {
    max-width: 680px;
}

.conversion-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.callout-box {
    display: grid;
    gap: 6px;
    max-width: 470px;
    margin-top: 28px;
    padding: 18px;
    background: #eef8f6;
    border: 1px solid #bfe0dc;
    border-radius: 8px;
}

.callout-box a,
.privacy-note a,
.legal-page a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-heading p,
.privacy-note {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
select {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #cfd9df;
    border-radius: 8px;
    font: inherit;
}

input:focus,
select:focus {
    outline: 3px solid rgba(8, 127, 140, 0.18);
    border-color: var(--teal);
}

.field-error,
.form-error {
    color: #b3261e;
    font-size: 0.88rem;
    font-weight: 700;
}

.success-message {
    display: grid;
    gap: 4px;
    padding: 14px;
    color: #0b5f42;
    background: #e7f6ef;
    border: 1px solid #bde5d2;
    border-radius: 8px;
}

.disclaimer-band {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 62px clamp(18px, 5vw, 70px);
    color: var(--white);
    background: #273036;
}

.disclaimer-band h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.disclaimer-band p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

details {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

summary {
    cursor: pointer;
    font-weight: 900;
}

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

.site-footer {
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(18px, 5vw, 70px);
    color: rgba(255, 255, 255, 0.82);
    background: #101318;
}

.footer-company,
.footer-links {
    flex-wrap: wrap;
    gap: 14px;
}

.footer-company {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
}

.footer-links {
    justify-content: flex-end;
}

.site-footer a {
    color: var(--white);
    font-weight: 900;
}

.mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: none;
    grid-template-columns: 1.25fr 0.75fr;
    background: var(--ink);
    box-shadow: 0 -12px 30px rgba(17, 28, 38, 0.18);
}

.mobile-call-bar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    padding: 10px;
    color: var(--white);
    font-weight: 900;
    text-align: center;
    font-size: x-large;;
}

.mobile-call-bar a:last-child {
    background: var(--coral);
}

.legal-page {
    width: min(860px, calc(100% - 36px));
    margin: 0 auto;
    padding: 74px 0 90px;
}

.legal-page h1 {
    color: var(--ink);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-page h2 {
    margin-top: 36px;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.legal-page p {
    color: var(--muted);
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 620px;
    }

    .plans-grid,
    .comparison-grid,
    .channel-band,
    .conversion-section,
    .disclaimer-band,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 54px;
    }

    .site-header {
        padding: 12px 14px;
    }

    .brand span:last-child {
        display: none;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.88rem;
    }

    .phone-link {
        display: none;
    }

    .hero {
        min-height: 640px;
    }

    .hero-media {
        background:
            linear-gradient(90deg, rgba(9, 14, 19, 0.92), rgba(9, 14, 19, 0.44)),
            linear-gradient(0deg, rgba(9, 14, 19, 0.86), rgba(9, 14, 19, 0.06) 42%),
            url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=900&q=82") center / cover;
    }

    .hero-content {
        margin-bottom: 44px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .offer-strip {
        align-items: flex-start;
        flex-direction: column;
        text-align: left;
    }

    .section,
    .comparison-section,
    .channel-band,
    .conversion-section,
    .disclaimer-band,
    .faq-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .channel-grid {
        grid-template-columns: 1fr;
    }

    .lead-form,
    .plan-card,
    details {
        padding: 20px;
    }

    .mobile-call-bar {
        display: grid;
    }
}
