:root {
    --primary: #10b981;
    --primary-hover: #059669;
    --dark: #111827;
    --dark-lighter: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --white: #ffffff;
    --accent: #34d399;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--white); /* White by default on hero */
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header.scrolled .logo {
    color: var(--dark);
    text-shadow: none;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1); /* White on hero */
}

.header.scrolled .logo-img {
    filter: none; /* Original on scroll */
}

.footer-logo {
    filter: brightness(0) invert(1); /* White in dark footer */
    height: 50px;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white); /* White by default on hero */
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header.scrolled .nav-links a {
    color: var(--dark);
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: url('hero-bg.png') no-repeat center center/cover;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Pricing */
.pricing {
    background-color: var(--light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 0.75rem;
    font-weight: 900;
}

.card-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
    text-align: center;
}

/* Service Areas */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.area-tag {
    background: var(--dark-lighter);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--primary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.icon {
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Mobile Responsiveness */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--dark);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark) !important;
        text-shadow: none !important;
        font-size: 1.5rem;
    }

    .nav-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .hero-btns {
        flex-direction: column;
    }

    .wizard-steps li em { display: none; }
    .plan-cards { grid-template-columns: 1fr; }
    .field-grid { grid-template-columns: 1fr; }
    .seg-toggle { flex-direction: column; }
    .calc-controls { grid-template-columns: 1fr; }
    .plus-band-inner { padding: 2rem 1.5rem; }
}

/* =========================================================
   Garpool Plus band
   ========================================================= */
.plus-band {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    color: var(--white);
}

.plus-band-inner {
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(52, 211, 153, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.eyebrow {
    display: inline-block;
    background: rgba(52, 211, 153, 0.15);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.plus-band h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.plus-band-text > p {
    color: #d1d5db;
    max-width: 640px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.plus-band-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem 2rem;
    margin-bottom: 2rem;
}

.plus-band-list li {
    color: #e5e7eb;
    padding: 0.4rem 0;
}

/* =========================================================
   Get Started wizard
   ========================================================= */
.get-started { background-color: var(--light); }

.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0 auto 2.5rem;
    flex-wrap: wrap;
}

.wizard-steps li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.wizard-steps li span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    color: var(--gray);
    font-size: 0.85rem;
    transition: var(--transition);
}

.wizard-steps li.active { color: var(--dark); background: var(--white); box-shadow: var(--shadow); }
.wizard-steps li.active span { background: var(--primary); color: var(--white); }
.wizard-steps li.done span { background: var(--accent); color: var(--white); }
.wizard-steps li.done { cursor: pointer; }

.wizard {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
}

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

/* Segmented toggles */
.seg-toggle {
    display: flex;
    background: var(--light);
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.3rem;
    gap: 0.3rem;
}

.seg-toggle.small { display: inline-flex; }

.seg-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.seg-btn small { font-weight: 400; opacity: 0.75; }
.seg-btn.active { background: var(--primary); color: var(--white); box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }

.seg-note { text-align: center; color: var(--gray); margin: 1rem 0 1.5rem; font-size: 0.95rem; }

/* Plan cards */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.plan-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.plan-card.selected { border-color: var(--primary); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.18); }
.plan-card.selected::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

.plan-flag {
    align-self: flex-start;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

.plan-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; }
.plan-tag { color: var(--gray); font-size: 0.85rem; }
.plan-from { font-weight: 700; margin-top: 0.4rem; }
.plan-from small { color: var(--gray); font-weight: 400; }
.plan-incl { font-size: 0.8rem; color: var(--gray); }

/* Calc controls */
.calc-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.control-block label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
}

.step-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: var(--light);
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.step-btn:hover { background: var(--primary); color: var(--white); }

.stepper input {
    width: 56px;
    height: 46px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    background: var(--white);
}

/* Price readout */
.price-readout {
    background: var(--dark);
    color: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.price-amount { font-family: 'Outfit', sans-serif; }
.price-amount span { font-size: 2.75rem; font-weight: 800; }
.price-amount small { font-size: 1rem; color: #9ca3af; margin-left: 0.4rem; }
.price-detail { color: #9ca3af; margin-top: 0.4rem; font-size: 0.9rem; }

/* Garpool Plus included box */
.plus-included {
    margin-top: 1.5rem;
    border: 1px dashed var(--accent);
    background: rgba(16, 185, 129, 0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.plus-included h4 { margin-bottom: 0.75rem; font-family: 'Outfit', sans-serif; }
.plus-included ul { list-style: none; display: grid; gap: 0.4rem; }
.plus-included li { padding-left: 1.4rem; position: relative; color: var(--dark); }
.plus-included li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.muted { color: var(--gray); font-size: 0.85rem; margin-top: 0.75rem; }

/* Form fields */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; }
.field.full { grid-column: 1 / -1; }
.field-grid .field { margin-bottom: 0; }

.field label { display: block; font-weight: 600; margin-bottom: 0.45rem; font-size: 0.95rem; }
.field label small { font-weight: 400; color: var(--gray); }

.field input,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.field input.invalid,
.field textarea.invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12); }

/* Access options */
.access-options { border: none; margin-bottom: 1.25rem; }
.access-options legend { font-weight: 600; margin-bottom: 0.75rem; font-size: 0.95rem; padding: 0; }

.access-opt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    margin-bottom: 0.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.access-opt:hover { border-color: var(--accent); }
.access-opt input { accent-color: var(--primary); width: 18px; height: 18px; }
.access-opt:has(input:checked) { border-color: var(--primary); background: rgba(16, 185, 129, 0.05); }

/* Review */
.review-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.review-card h3 { font-family: 'Outfit', sans-serif; margin-bottom: 1rem; }
.review-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid #f3f4f6; }
.review-list dt { color: var(--gray); font-size: 0.9rem; }
.review-list dd { text-align: right; font-weight: 600; }

.review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--dark);
}

.review-total strong { font-family: 'Outfit', sans-serif; font-size: 1.75rem; }

.consent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.consent input { accent-color: var(--primary); width: 18px; height: 18px; margin-top: 0.15rem; flex-shrink: 0; }

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-ghost { background: transparent; color: var(--gray); }
.btn-ghost:hover { color: var(--dark); }

.checkout-banner {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

.checkout-banner.ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.checkout-banner.warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }

/* =========================================================
   Inner page (get-started.html) — solid header, no hero
   ========================================================= */
.header.solid {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.header.solid .logo { color: var(--dark); text-shadow: none; }
.header.solid .logo-img { filter: none; }
.header.solid .nav-links a { color: var(--dark); text-shadow: none; }
.header.solid .mobile-menu-btn { color: var(--dark); }

.inner-page main { padding-top: 90px; }
.inner-page .get-started { background-color: var(--light); min-height: 70vh; }

/* =========================================================
   Homepage pricing overview
   ========================================================= */
.pricing-overview { background-color: var(--light); }

.overview-toggle { max-width: 360px; margin: 0 auto; }

.overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}

.ov-card {
    position: relative;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ov-card.is-plus { border-color: var(--primary); }

.ov-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.35rem; margin-bottom: 0.25rem; }
.ov-tag { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.25rem; }

.ov-prices {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.ov-prices div { display: flex; flex-direction: column; }
.ov-prices strong { font-family: 'Outfit', sans-serif; font-size: 1.6rem; }
.ov-prices small { color: var(--gray); font-size: 0.8rem; }

.ov-incl { color: var(--gray); font-size: 0.88rem; flex-grow: 1; margin-bottom: 1.25rem; }

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.overview-cta { text-align: center; }
.overview-cta .muted { margin-top: 0.75rem; }

@media (max-width: 768px) {
    .overview-cards { grid-template-columns: 1fr; }
}
