/* DairyThinkTank.com — Premium Global Styles v3.0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --primary:        #d4af37;
    --primary-light:  #f0d060;
    --primary-dark:   #a8882a;
    --primary-glow:   rgba(212, 175, 55, 0.18);
    --accent:         #e5ad06;
    --accent-light:   #fcd34d;
    --bg:             #080c10;
    --surface:        #0f1318;
    --surface-2:      #080c10;
    --surface-3:      #181e26;
    --surface-4:      #1e2530;
    --border:         #1e2a38;
    --border-gold:    rgba(212,175,55,0.25);
    --text-main:      #f0f4f8;
    --text-muted:     #8a9bb0;
    --text-light:     #5a6a7a;
    --white:          #ffffff;
    --glass:          rgba(15,19,24,0.85);
    --glass-dark:     rgba(8,12,16,0.92);
    --shadow-sm:      0 1px 4px rgba(0,0,0,0.7);
    --shadow:         0 4px 24px rgba(0,0,0,0.85), 0 0 12px rgba(212,175,55,0.04);
    --shadow-lg:      0 20px 52px rgba(0,0,0,0.9), 0 0 24px rgba(212,175,55,0.1);
    --shadow-glow:    0 0 40px rgba(212,175,55,0.3);
    --radius-sm:      8px;
    --radius:         14px;
    --radius-lg:      22px;
    --radius-xl:      32px;
    --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: all 0.18s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

a { text-decoration:none; color:inherit; transition: var(--transition); }
ul { list-style: none; }
img { display:block; max-width:100%; }

/* ── LAYOUT ─────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── HEADER ─────────────────────────────────── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.header-top-combined {
    background: rgba(8,12,16,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-gold);
}

.top-combined-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.logo-wrapper {
    text-align: left;
    flex-shrink: 0;
}

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

.nav-spacer {
    grid-column: 1;
}

.top-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
}

.top-nav a {
    font-size: 0.73rem;
    font-weight: 600;
    color: rgba(240,244,248,0.7);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.top-nav a::after {
    content: "|";
    margin: 0 0.8rem;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
    pointer-events: none;
}

.top-nav a:last-child::after { display: none; }
.top-nav a:hover { color: var(--primary); }

.header-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.header-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color 0.2s;
}
.header-link:hover { color: var(--primary); }

.header-join-btn {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.15rem !important;
    background: var(--primary) !important;
    color: #000 !important;
    border-radius: 6px !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.2s, transform 0.15s !important;
    white-space: nowrap;
}
.header-join-btn:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px) !important;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}
.logo span { color: var(--primary); }

/* ── CTA BUTTONS ─────────────────────────────── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #000;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: inherit;
}

.cta-btn:hover {
    background: var(--primary-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-btn.primary-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
}

.cta-btn.outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid rgba(240,244,248,0.5);
}
.cta-btn.outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    color: var(--white);
}

.cta-btn.outline-gold {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.cta-btn.outline-gold:hover {
    background: var(--primary-glow);
    color: var(--primary-light);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
    padding: 5rem 0 6rem;
    background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 65%), var(--bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212,175,55,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212,175,55,0.07);
    border: 1px solid var(--border-gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-eyebrow .sep { color: rgba(212,175,55,0.4); }

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    max-width: 780px;
    margin: 0 auto 3rem;
    font-size: 1.12rem;
    color: rgba(240,244,248,0.72);
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
}

/* ── STATS BAR ────────────────────────────────── */
.stats-bar {
    background: var(--surface-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.stat-item {
    background: var(--surface-3);
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    max-width: 160px;
    margin: 0 auto;
}

/* ── SECTIONS ─────────────────────────────────── */
.section { padding: 6rem 0; }
.section-dark { background: var(--surface-2); }
.section-surface { background: var(--surface); }
.section-alt { background: var(--surface-3); }

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── GRID ─────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-auto-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid-6x2 { grid-template-columns: repeat(6, 1fr); }

/* ── ICON CARDS (Who's in the Room) ──────────── */
.icon-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.icon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.icon-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.icon-card:hover::before { opacity: 1; }

.icon-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(212,175,55,0.08);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.icon-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.icon-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* ── FORMAT CARDS (Meeting Formats) ─────────── */
.format-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.format-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.format-card-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.format-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

.format-card-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.format-card-audience {
    font-size: 0.76rem;
    color: var(--primary);
    font-weight: 600;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

/* ── SIGNAL CARDS (Dairy Signals) ─────────── */
.signal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.signal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-light) 100%);
}

.signal-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.signal-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ── PRICING CARDS ────────────────────────────── */
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
    transform: scale(1.03);
}

.pricing-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    padding: 2.25rem 2rem 1.75rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface) 100%);
}

.pricing-tier-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.pricing-body {
    padding: 1.75rem 2rem 2.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-feature-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 900;
}

.pricing-cta {
    padding: 0 2rem 2rem;
}

/* ── DARK CTA BAND ────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
    position: relative;
}

.cta-band p {
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.75;
    position: relative;
}

.cta-band-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
    background: #050810;
    color: var(--text-main);
    padding: 5rem 0 0;
    border-top: 1px solid var(--border-gold);
}

.footer-tagline-wrap {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-top { padding-bottom: 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.85rem;
}
.footer-logo span { color: var(--primary); }

.footer-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-desc a { color: var(--primary); }
.footer-desc a:hover { color: var(--primary-light); }

.footer-newsletter-mini { max-width: 400px; }
.newsletter-note { font-size: 0.73rem; color: var(--text-light); margin-top: 0.5rem; }

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy { font-size: 0.82rem; color: var(--text-light); }

/* ── NEWSLETTER FORM ──────────────────────────── */
.newsletter-row {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.65rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--text-light); }
.newsletter-input:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.08); }

.newsletter-btn {
    padding: 0.65rem 1.1rem;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
}
.newsletter-btn:hover { background: var(--primary-light); }

/* ── PAGE BANNER ──────────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, #0a0f18 0%, #141c28 100%);
    padding: 4.5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    position: relative;
}

.page-banner .lead {
    color: rgba(240,244,248,0.7);
    font-size: 1.05rem;
    max-width: 720px;
    line-height: 1.7;
    position: relative;
}

/* ── BREADCRUMBS ──────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb-sep { color: var(--text-light); }

/* ── FORMS ────────────────────────────────────── */
.form-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.form-card-header {
    background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface) 100%);
    padding: 2.5rem 2.75rem;
    color: var(--white);
    border-bottom: 2px solid var(--primary);
}

.form-card-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.form-card-header p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
}

.form-body { padding: 2.75rem; }
.form-group { margin-bottom: 1.75rem; }

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}
.form-label span { color: var(--primary); }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text-main);
    background: var(--surface-3);
    transition: var(--transition-fast);
    appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
    background: var(--surface-4);
}

.form-textarea { resize: vertical; min-height: 160px; line-height: 1.65; }
.form-select { cursor: pointer; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-divider { height: 1px; background: var(--border); margin: 2.25rem 0; }

.form-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.01em;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.alert-success {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: #6ee7b7;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-bottom: 1.75rem;
    font-size: 0.92rem;
}

.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-bottom: 1.75rem;
    font-size: 0.92rem;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ── INFO BOX ─────────────────────────────────── */
.info-box {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.info-box strong { color: var(--text-main); }

/* ── ACCESS GATE ──────────────────────────────── */
.access-gate {
    background: var(--surface-3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

/* ── CALENDAR/TIMELINE ────────────────────────── */
.meeting-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow);
}

.timeline-date {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    min-width: 110px;
}

.timeline-format {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    background: var(--surface-3);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    white-space: nowrap;
}

.timeline-topic {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
}

/* ── COMPARISON TABLE ─────────────────────────── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th {
    background: var(--surface-3);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary);
}

.comparison-table th:first-child { color: var(--text-muted); font-weight: 600; }

.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
    color: var(--text-muted);
    vertical-align: middle;
}

.comparison-table td:first-child { font-weight: 600; color: var(--text-main); }

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(15,19,24,0.5); }

.check-yes { color: var(--primary); font-weight: 800; font-size: 1.1rem; }
.check-no { color: var(--text-light); font-weight: 400; }

/* ── COUNTDOWN ────────────────────────────────── */
.countdown-bar {
    background: linear-gradient(135deg, var(--surface-3) 0%, #111820 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-timer {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.countdown-unit-label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.countdown-sep {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: -0.25rem;
}

/* ── MOBILE MENU ──────────────────────────────── */
.mobile-menu-btn {
    display: none;
    grid-column: 3;
    justify-self: flex-end;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.2s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--surface);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid var(--border);
}

.mobile-menu-overlay.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-menu-nav a {
    padding: 0.85rem 1.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.mobile-menu-nav a:hover { background: var(--surface-3); color: var(--primary); }

/* ── UTILITIES ────────────────────────────────── */
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--white); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fs-sm  { font-size: 0.875rem; }
.mt-1   { margin-top: 0.5rem; }
.mb-1   { margin-bottom: 0.5rem; }
.mb-2   { margin-bottom: 1rem; }
.mb-3   { margin-bottom: 1.75rem; }
.text-center { text-align: center; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
    .grid-6x2 { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .top-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-6x2 { grid-template-columns: repeat(3, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero { padding: 3.5rem 0 4rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero-lead { font-size: 1rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .grid-3, .grid-4, .grid-6x2 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .stats-bar-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-band-buttons { flex-direction: column; align-items: center; }
    .section { padding: 4rem 0; }
    .form-body { padding: 1.75rem 1.25rem; }
    .form-card-header { padding: 1.75rem 1.25rem; }
    .timeline-item { flex-wrap: wrap; gap: 0.75rem; }
    .countdown-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar-grid { grid-template-columns: 1fr; }
    .logo { font-size: 1.45rem; }
}
