/*
 * WildRobin Casino - Design System
 * Dark forest adventure theme with neon green & gold accents.
 * Fonts: Cinzel (headings) + Rubik (body).
 * Mobile-first, breakpoints at 768px / 1024px / 1280px.
 */

/* ============================================
   DESIGN TOKENS
   Single dark theme - :root and .dark are identical
   so the site is a true single-theme design.
   ============================================ */
:root {
    --background: #0B0F0A;
    --foreground: #F5F5DC;
    --card: #131815;
    --card-foreground: #F5F5DC;
    --popover: #131815;
    --popover-foreground: #F5F5DC;
    --primary: #22C55E;
    --primary-foreground: #000000;
    --secondary: #FBBF24;
    --secondary-foreground: #1C1917;
    --muted: #1E293B;
    --muted-foreground: #94A3B8;
    --accent: #ea1414;
    --accent-foreground: #FFFFFF;
    --destructive: #ea0d33;
    --destructive-foreground: #FFFFFF;
    --border: #334155;
    --input: #1E293B;
    --ring: #22C55E;
}

.dark {
    --background: #0B0F0A;
    --foreground: #F5F5DC;
    --card: #131815;
    --card-foreground: #F5F5DC;
    --popover: #131815;
    --popover-foreground: #F5F5DC;
    --primary: #22C55E;
    --primary-foreground: #000000;
    --secondary: #FBBF24;
    --secondary-foreground: #1C1917;
    --muted: #1E293B;
    --muted-foreground: #94A3B8;
    --accent: #ea1414;
    --accent-foreground: #FFFFFF;
    --destructive: #ea0d33;
    --destructive-foreground: #FFFFFF;
    --border: #334155;
    --input: #1E293B;
    --ring: #22C55E;
}

/* ============================================
   BASE & RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Rubik", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 300ms ease-out;
}

a:hover {
    color: var(--secondary);
}

p, li, td, th {
    overflow-wrap: break-word;
}

section {
    overflow: clip;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--background);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for headings, Rubik for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: var(--foreground);
}

h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: 28px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    margin: 0 0 16px 0;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ============================================
   SECTION TITLE - Cinzel with gold gradient
   ============================================ */
.section-title {
    font-family: "Cinzel", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
}

/* ============================================
   GOLD TEXT UTILITY
   ============================================ */
.gold-text {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    border-radius: 0 0 8px 0;
    z-index: 9999;
    transition: top 300ms ease-out;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   BUTTONS
   .btn - base
   .btn-primary - neon green
   .btn-outline - transparent with border
   .btn-gold - gold background
   .btn-lg / .btn-sm - size modifiers
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 44px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 300ms ease-out, box-shadow 300ms ease-out,
                background 300ms ease-out, border-color 300ms ease-out,
                color 300ms ease-out;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.45);
    color: var(--primary-foreground);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

.btn-gold {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.45);
    color: var(--secondary-foreground);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    min-height: 52px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    min-height: 40px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Brand */
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__bow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-brand__text {
    font-family: "Cinzel", Georgia, serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

.site-brand__accent {
    color: var(--primary);
}

.site-brand:hover .site-brand__text {
    color: var(--primary);
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 300ms ease-out, opacity 300ms ease-out;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Primary nav - mobile drawer by default */
.primary-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    display: none;
    padding: 24px 16px;
}

.primary-nav.is-open {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-list li {
    border-bottom: 1px solid var(--border);
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 8px;
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
    transition: color 300ms ease-out, padding-left 300ms ease-out;
}

.nav-list a:hover {
    color: var(--primary);
    padding-left: 16px;
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.nav-cta .btn {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 60px 16px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-heading {
    font-family: "Cinzel", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    transition: color 300ms ease-out;
}

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

.footer-text {
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--background);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 13px;
    margin: 0;
}

/* ============================================
   HERO SECTION
   Full-bleed banner with dark gradient,
   floating arrow motifs, model image
   ============================================ */
.hero-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.12), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(251, 191, 36, 0.08), transparent 60%),
        var(--background);
    overflow: clip;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.hero-title {
    font-family: "Cinzel", Georgia, serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .gold-text {
    display: block;
}

.hero-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 28px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-model {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-model img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   INFO CARD GRID
   Responsive: 1 col mobile → 2 col tablet → 3/4 col desktop
   ============================================ */
.info-card-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    min-width: 0;
    transition: transform 300ms ease-out, box-shadow 300ms ease-out,
                border-color 300ms ease-out;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.2);
}

.info-card__media {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 5 / 3;
}

.info-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-card__icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
    line-height: 1;
}

.info-card__title {
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.info-card__text {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FAQ ACCORDION
   Near-black section, gold gradient title,
   neon green plus/minus toggle, smooth slide-down
   ============================================ */
.faq-section {
    background: var(--card);
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 300ms ease-out, background 300ms ease-out;
}

.faq-item.is-open {
    border-left: 3px solid var(--primary);
    background: var(--card);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 44px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    text-align: left;
    transition: color 300ms ease-out;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question__text {
    flex: 1;
    min-width: 0;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 300ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease-out;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    overflow: hidden;
    padding: 0 24px;
}

.faq-item.is-open .faq-answer__inner {
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA BANNER
   Full-bleed with diagonal forest-leaf overlay,
   gold gradient headline, neon green button
   ============================================ */
.cta-banner-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.1), transparent 70%),
        var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: clip;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 40px,
            rgba(34, 197, 94, 0.03) 40px,
            rgba(34, 197, 94, 0.03) 42px
        );
    pointer-events: none;
}

.cta-banner-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: "Cinzel", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
}

.cta-subtext {
    font-size: 18px;
    color: var(--foreground);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.cta-banner-btn {
    margin-bottom: 12px;
}

.cta-micro-copy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR Box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
}

.summary-box__title {
    font-family: "Cinzel", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.summary-box p {
    margin: 0;
    color: var(--foreground);
}

/* Callout / Highlight Box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.callout--info {
    border-left: 3px solid var(--primary);
}

.callout--warning {
    border-left: 3px solid var(--accent);
}

.callout__title {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.callout__text {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Stat Highlight */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight__number {
    font-family: "Cinzel", Georgia, serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #22C55E 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.stat-highlight__label {
    font-size: 15px;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Pull Quote */
.pull-quote {
    margin: 40px 0;
    padding: 32px 24px;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    text-align: center;
}

.pull-quote__text {
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: var(--foreground);
    margin-bottom: 16px;
}

.pull-quote__author {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================
   CRO PATTERNS
   ============================================ */

/* Trust Badges Row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--card);
    font-family: "Cinzel", Georgia, serif;
    font-weight: 700;
    color: var(--foreground);
}

.comparison-table td {
    color: var(--muted-foreground);
}

.comparison-table--recommended {
    background: rgba(34, 197, 94, 0.05);
    border-left: 3px solid var(--primary);
}

/* Social Proof / Testimonials */
.social-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

/* ============================================
   PAYMENT STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.trust-section__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 32px rgba(34, 197, 94, 0.4); }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }

/* ============================================
   RESPONSIVE - Tablet (≥768px)
   ============================================ */
@media (min-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }

    .section-title { font-size: 36px; }

    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .info-card-section,
    .faq-section,
    .cta-banner-section,
    .trust-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .container, .container-narrow {
        padding: 0 24px;
    }

    .info-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .info-card {
        padding: 32px;
    }

    .two-col-layout {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-subtext {
        margin-left: 0;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
    }

    .hero-title { font-size: 48px; }
    .hero-subtext { font-size: 19px; }
    .cta-headline { font-size: 36px; }

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .nav-cta {
        flex-direction: row;
        gap: 12px;
    }

    .nav-cta .btn {
        width: auto;
    }

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

    .stat-highlight__number { font-size: 56px; }
    .pull-quote__text { font-size: 26px; }
}

/* ============================================
   RESPONSIVE - Desktop (≥1024px)
   ============================================ */
@media (min-width: 1024px) {
    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    h3 { font-size: 28px; }

    .section-title { font-size: 40px; }

    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .info-card-section,
    .faq-section,
    .cta-banner-section,
    .trust-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .container, .container-narrow {
        padding: 0 32px;
    }

    /* Hide hamburger, show inline nav */
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 24px;
        padding: 0;
        background: transparent;
        overflow: visible;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-list {
        flex-direction: row;
        gap: 8px;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-list a {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 15px;
    }

    .nav-list a:hover {
        padding-left: 14px;
    }

    .nav-cta {
        margin-top: 0;
        flex-direction: row;
        gap: 12px;
    }

    .nav-cta .btn {
        width: auto;
    }

    .info-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }

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

    .hero-section {
        padding: 100px 0;
    }

    .hero-title { font-size: 56px; }
    .hero-subtext { font-size: 20px; }
    .cta-headline { font-size: 40px; }

    .faq-list {
        max-width: 800px;
    }

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

    .stat-highlight__number { font-size: 64px; }
    .pull-quote__text { font-size: 30px; }
}

/* ============================================
   RESPONSIVE - Large desktop (≥1280px)
   ============================================ */
@media (min-width: 1280px) {
    .header-inner {
        padding: 0 32px;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
