:root {
    --color-bg-page: #f3f4f6;
    --color-bg-dark-top: #020617;
    --color-bg-dark-nav: #050b18;
    --color-hero: #020617;
    --color-surface: #ffffff;

    --color-primary-policy: #0f172a;
    --color-blue: #1d4ed8;
    --color-blue-soft: #dbeafe;
    --color-blue-soft-hover: #1d4ed8;
    --color-orange: #f97316;

    --color-text-main: #111827;
    --color-text-muted: #6b7280;
    --color-text-on-dark: #e5e7eb;

    --radius-xl: 1.8rem;
    --radius-lg: 1.4rem;
    --radius-card: 1.2rem;
    --radius-pill: 999px;

    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.35);
    --shadow-card: 0 16px 34px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
    background: var(--color-bg-page);
    color: var(--color-text-main);
    line-height: 1.6;
}

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* TOP + NAV  */
/* .top-bar {
    background: var(--color-bg-dark-top);
    color: var(--color-text-on-dark);
    font-size: 0.8rem;
    padding: 0.45rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
}

.top-bar span+span {
    margin-left: 1.5rem;
}

.main-nav {
    background: var(--color-bg-dark-nav);
    padding: 0.9rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 0.95rem;
    background: radial-gradient(circle at 18% 0%, #38bdf8, #0f172a 55%);
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
}

.logo-mark span {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--color-text-on-dark);
    font-weight: 600;
}

.logo-text span:last-child {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-on-dark);
}

.nav-links a {
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #38bdf8, #60a5fa);
    transition: width 0.18s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-nav-outline,
.btn-nav-solid {
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s ease;
}

.btn-nav-outline {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.7);
    color: var(--color-text-on-dark);
}

.btn-nav-outline:hover {
    border-color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
}

.btn-nav-solid {
    background: var(--color-orange);
    color: #111827;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(248, 113, 22, 0.7);
}

.btn-nav-solid:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(248, 113, 22, 0.88);
} */

.main {
    flex: 1;
    padding: 2.4rem 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO BUBBLE */
.hero-bubble {
    background: var(--color-hero);
    color: var(--color-text-on-dark);
    border-radius: var(--radius-xl);
    padding: 1.6rem 2rem 1.7rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2.4rem;
    position: relative;
    overflow: hidden;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    opacity: 0.6;
}

.hero-bubble h1 {
    font-size: 1.85rem;
    font-weight: 700;
}

.hero-copy {
    font-size: 0.95rem;
    color: #cbd5e1;
    max-width: 36rem;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    color: #e5e7eb;
}

.hero-cta {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-pill);
    background: var(--color-orange);
    color: #111827;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(248, 113, 22, 0.7);
    align-self: flex-start;
}

/* 6 SECTION LAYOUT */
.plans-wrapper {
    margin-top: 0.6rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}

.cell {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 1.2rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
}

.cell.hero {
    background: radial-gradient(circle at 0% 0%, #1d4ed8 0, #020617 52%, #020617 100%);
    color: var(--color-text-on-dark);
}

.cell.hero h2 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
}

.cell.hero .gen-tag {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.cell.hero .gen-years {
    font-size: 0.86rem;
    opacity: 0.8;
    margin-bottom: 0.6rem;
}

.hero-car {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 0.7rem;
    display: block;
    border: 1px solid rgba(30, 64, 175, 0.7);
}

.cell.hero p {
    font-size: 0.85rem;
    color: #c7d2fe;
    margin-bottom: 0.4rem;
}

.cell.hero ul {
    margin-left: 1.1rem;
    margin-bottom: 0.4rem;
    font-size: 0.83rem;
}

.cell.hero li {
    margin-bottom: 0.16rem;
}

.plan-label {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.7rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: var(--color-blue-soft);
    color: #1d4ed8;
    margin-bottom: 0.55rem;
}

.badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.18rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid #fecaca;
    background: #fee2e2;
    color: #b91c1c;
    margin-left: 0.45rem;
}

.plan-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--color-primary-policy);
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.2rem 0;
    color: var(--color-primary-policy);
}

.plan-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-left: 0.15rem;
}



/* SALE / DISCOUNT PRICE BLOCK */
.plan-deal {
    margin: 0.35rem 0 0.25rem;
}

.deal-tag {
    display: inline-block;
    background: #ef4444;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.74rem;
    padding: 0.24rem 0.6rem;
    border-radius: 0.6rem;
    letter-spacing: 0.02em;
}

.deal-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.65rem;
    margin-top: 0.45rem;
}

.old-price {
    color: #15803d;
    font-weight: 800;
    text-decoration-line: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
    font-size: 1.15rem;
}

.discount {
    color: #ef4444;
    font-weight: 900;
    font-size: 1.05rem;
}

.new-price {
    color: var(--color-primary-policy);
    font-weight: 900;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
}

.price-note {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.1rem;
}


.install-price {
    flex-basis: 100%;
    margin-top: 0.2rem;
    color: #15803d;
    font-weight: 900;
    font-size: 0.95rem;
}

.plan-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

.plan-list {
    font-size: 0.82rem;
    color: var(--color-text-main);
    margin-left: 1.1rem;
    margin-bottom: 0.75rem;
}

.plan-list li {
    margin-bottom: 0.22rem;
}

.btn-plan {
    margin-top: auto;
    width: 100%;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--color-orange);
    color: #111827;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(248, 113, 22, 0.6);
    transition: all 0.16s ease;
    text-align: center;
}

.btn-plan:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(248, 113, 22, 0.8);
}

/* SEO SECTION */

.mobile-bubble {
    margin-top: 2.4rem;
    padding: 1.8rem 1.9rem;
    background: #e5e7eb;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: flex-start;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.mobile-left h2 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--color-primary-policy);
}

.mobile-left p {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.mobile-left ul {
    margin-left: 1.1rem;
    font-size: 0.86rem;
    color: #4b5563;
}

.mobile-left li {
    margin-bottom: 0.2rem;
}

.mobile-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #111827;
}

.mobile-input-row {
    display: flex;
    gap: 0.5rem;
}

.mobile-input-row input {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 0.88rem;
    outline: none;
}

.mobile-input-row input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}

.mobile-input-row button {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: var(--color-orange);
    color: #111827;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(248, 113, 22, 0.6);
    white-space: nowrap;
}

.mobile-input-row button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(248, 113, 22, 0.85);
}

.mobile-note {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: #4b5563;
}

@media (max-width: 900px) {
    .mobile-bubble {
        grid-template-columns: minmax(0, 1fr);
    }
}

.seo-section {
    margin-top: 2.7rem;
    padding: 1.6rem 1.8rem;
    background: #e5e7eb;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: #374151;
}

.seo-section h2 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--color-primary-policy);
}

.seo-section p+p {
    margin-top: 0.45rem;
}

.seo-keywords {
    margin-top: 0.55rem;
    font-size: 0.84rem;
    color: #4b5563;
}

.seo-keywords span {
    display: inline-block;
    margin-right: 0.35rem;
    margin-bottom: 0.25rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px dashed #9ca3af;
}

/* footer {
    background: var(--color-bg-dark-top);
    color: #9ca3af;
    font-size: 0.8rem;
    padding: 1.4rem 5vw 2rem;
    margin-top: 3rem;
    border-top: 1px solid #000;
} */

@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .main {
        padding-inline: 1.25rem;
    }

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

    .hero-bubble {
        border-radius: 1.3rem;
        padding-inline: 1.3rem;
    }
}


/* --- Policy page additions --- */
.policy-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.15rem;
    margin-top: 1.1rem;
}

.policy-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
    padding: 1.25rem 1.25rem;
}

.policy-card h2 {
    margin: 0 0 0.65rem 0;
    color: var(--color-primary-policy);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.policy-card h3 {
    margin: 1.05rem 0 0.45rem 0;
    color: #111827;
    font-size: 0.98rem;
}

.policy-card p,
.policy-card li {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.55;
}

.policy-card ul {
    margin: 0.65rem 0 0 1.05rem;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .7rem;
}

.policy-pill {
    font-size: .82rem;
    color: #111827;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, .25);
    border-radius: 999px;
    padding: .28rem .6rem;
}

.policy-cta {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: .9rem;
}

.btn-cta {
    appearance: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    padding: .75rem 1rem;
    border-radius: 999px;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn-cta.primary {
    background: var(--color-accent);
    color: #0b1220;
    box-shadow: 0 12px 26px rgba(255, 126, 0, 0.28);
}

.btn-cta.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(255, 126, 0, .34);
}

.btn-cta.secondary {
    background: #fff;
    color: var(--color-primary-policy);
    border: 1px solid rgba(15, 23, 42, 0.18);
    box-shadow: 0 10px 22px rgba(2, 6, 23, .05);
}

.btn-cta.secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(2, 6, 23, .08);
}

.notice {
    margin-top: .9rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .10);
    border-left: 4px solid var(--color-accent);
    border-radius: 1rem;
    padding: .85rem 1rem;
    color: #111827;
    font-size: .92rem;
    line-height: 1.5;
}

.faq {
    margin-top: 1.05rem;
}

.faq details {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 1rem;
    padding: .8rem .9rem;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .05);
}

.faq details+details {
    margin-top: .7rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    color: #111827;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq p {
    margin: .55rem 0 0 0;
    color: #374151;
    font-size: .94rem;
    line-height: 1.55;
}

.small {
    font-size: .86rem;
    color: #6b7280;
}

@media (max-width: 980px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
}



/* CTA outline variant for dark hero */
.btn-cta.outline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.7);
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-cta.outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(147, 197, 253, 0.9);
    transform: translateY(-1px);
}

.btn-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pill-outline.privacy-btn {
    background: #f97316;
}

.pill-outline.privacy-btn:hover {
    /* background: rgba(15, 23, 42, 0.85);
    border-color: #f97316; */

    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(248, 113, 22, 0.88);
}

.pill-outline.privacy-btn:hover {
    color: #0f172a;
    text-decoration: none;
}

.pill {
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease,
        transform 0.1s ease;
}

.pill-primary {
    background: var(--color-accent);
    color: #111827;
    border-color: var(--color-accent);
}

.pill-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-1px);
}

.pill-outline {
    background: transparent;
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.7);
}

.pill-outline:hover {
    background: #ea580c;
    border-color: #e5e7eb;
}