/* ============================================
   BOLLINGER ACADEMY v5.0 — Dark Navy/Gold Theme
   INEXCO-style corporate premium aesthetic
   ============================================ */

:root {
    --navy-darkest: #050d1a;
    --navy-dark: #0A1628;
    --navy: #0f1f3d;
    --navy-light: #152a4a;
    --navy-lighter: #1a3358;
    --navy-card: #111d35;
    --gold: #D4A853;
    --gold-light: #e8c97a;
    --gold-dark: #b8923e;
    --white: #ffffff;
    --gray-100: #f0f2f5;
    --gray-200: #e2e5ea;
    --gray-300: #c8cdd5;
    --gray-400: #9aa3b0;
    --gray-500: #6b7685;
    --gray-600: #4a5568;
    --text-primary: #ffffff;
    --text-secondary: #c8cdd5;
    --text-muted: #8a95a5;
    --success: #34d399;
    --danger: #f87171;
    --info: #60a5fa;
    --warning: #fbbf24;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(212,168,83,0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--navy-darkest);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: none; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 22, 40, 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212, 168, 83, 0.1); transition: var(--transition); }
.site-header.scrolled { background: rgba(5, 13, 26, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; max-width: 1400px; margin: 0 auto; }
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.site-logo img { height: 48px; width: auto; }
.site-logo .logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: var(--transition); position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions .btn-login { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; padding: 0.5rem 1rem; }
.header-actions .btn-login:hover { color: var(--gold); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* Hero */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; padding: 8rem 0 5rem; background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 40%, var(--navy) 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 20% 50%, rgba(212,168,83,0.05) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(96,165,250,0.03) 0%, transparent 50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, var(--navy-darkest), transparent); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.3); border-radius: 50px; font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; font-size: clamp(2.5rem, 5.5vw, 4rem); line-height: 1.1; }
.hero h1 .highlight { color: var(--gold); }
.hero p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 550px; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat .number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-dark { background: var(--navy-dark); }
.section-darker { background: var(--navy-darkest); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .overline { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

/* News Teasers */
.news-section { padding: 5rem 0; background: var(--navy-dark); }
.news-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.news-card { background: var(--navy-card); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); cursor: pointer; position: relative; }
.news-card:hover { transform: translateY(-3px); border-color: rgba(212,168,83,0.3); box-shadow: var(--shadow-lg); }
.news-card-image { width: 100%; height: 180px; object-fit: cover; background: linear-gradient(135deg, var(--navy-lighter), var(--navy)); display: flex; align-items: center; justify-content: center; }
.news-card-image .placeholder-icon { font-size: 2.5rem; opacity: 0.5; }
.news-card-body { padding: 1.25rem; }
.news-card-source { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 0.5rem; }
.news-card-title { font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.6rem; }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }
.news-card-category { padding: 0.2rem 0.6rem; background: rgba(212,168,83,0.1); border-radius: 50px; color: var(--gold); font-weight: 600; font-size: 0.68rem; text-transform: uppercase; }
.news-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; }
.news-card.featured .news-card-image { height: 100%; min-height: 300px; }
.news-card.featured .news-card-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.news-card.featured .news-card-title { font-size: 1.4rem; -webkit-line-clamp: 4; }
.news-card.featured .news-card-excerpt { -webkit-line-clamp: 3; font-size: 0.92rem; }
.news-card .paywall-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(212,168,83,0.9); color: var(--navy-dark); padding: 0.3rem 0.7rem; border-radius: var(--radius-sm); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.news-sidebar { background: var(--navy-card); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.06); padding: 1.5rem; height: fit-content; }
.news-sidebar h3 { font-size: 1.05rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold); }
.sidebar-item { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item:hover { padding-left: 0.5rem; }
.sidebar-item .source { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.sidebar-item .title { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4; font-weight: 500; }
.sidebar-item .time { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; }
.news-cta { text-align: center; margin-top: 2.5rem; padding: 2rem; background: rgba(212,168,83,0.05); border: 1px solid rgba(212,168,83,0.2); border-radius: var(--radius-md); }
.news-cta p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.05rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background: var(--navy-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 2rem; transition: var(--transition); }
.feature-card:hover { border-color: rgba(212,168,83,0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: rgba(212,168,83,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); margin-bottom: 1.25rem; }
.feature-card h4 { margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Pricing */
.pricing-section { padding: 5rem 0; background: var(--navy-darkest); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: var(--navy-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,168,83,0.08) 0%, var(--navy-card) 40%); transform: scale(1.03); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-5px); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-dark); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-price { margin: 1.5rem 0; }
.pricing-price .currency { font-size: 1.2rem; color: var(--gold); vertical-align: top; }
.pricing-price .amount { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: var(--white); }
.pricing-price .period { font-size: 0.9rem; color: var(--text-muted); }
.pricing-price .monthly { display: block; font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; min-height: 44px; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.5rem 0; font-size: 0.88rem; color: var(--text-secondary); }
.pricing-features li .check { color: var(--gold); font-weight: bold; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-footer { text-align: center; margin-top: 2rem; }
.pricing-footer a { color: var(--gold); font-weight: 600; font-size: 0.95rem; }

/* Trust Badges */
.trust-section { padding: 3rem 0; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-grid { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); }
.trust-badge-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(212,168,83,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.trust-badge-text { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); line-height: 1.3; }

/* Newsletter */
.newsletter-section { padding: 4rem 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); border-top: 1px solid rgba(212,168,83,0.1); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h3 { margin-bottom: 0.75rem; }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; }
.newsletter-form input[type="email"] { flex: 1; padding: 0.9rem 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); color: var(--white); font-size: 0.95rem; outline: none; transition: var(--transition); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.newsletter-form button { padding: 0.9rem 1.5rem; background: var(--gold); color: var(--navy-dark); border: none; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: var(--gold-light); }

/* Testimonials */
.testimonials-section { padding: 5rem 0; background: var(--navy); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--navy-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 2rem; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(212,168,83,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.testimonial-info .name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-info .role { font-size: 0.78rem; color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--navy-darkest); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-cards { display: flex; align-items: center; gap: 0.75rem; }
.footer-cards .card-icon { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 0.3rem 0.5rem; font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }
.footer-disclaimer { text-align: center; padding: 1.5rem 2rem; background: rgba(212,168,83,0.03); border-top: 1px solid rgba(212,168,83,0.1); margin-top: 2rem; }
.footer-disclaimer p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* FAQ */
.faq-section { padding: 5rem 0; background: var(--navy-dark); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--navy-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(212,168,83,0.2); }
.faq-item.active { border-color: rgba(212,168,83,0.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--white); font-size: 0.95rem; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body); }
.faq-question .icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

/* Plans Comparison */
.plans-section { padding: 5rem 0; background: var(--navy-dark); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--navy-card); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.comparison-table th, .comparison-table td { padding: 1rem 1.5rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; }
.comparison-table th { background: rgba(212,168,83,0.05); color: var(--white); font-weight: 700; font-size: 0.95rem; }
.comparison-table th.popular { background: rgba(212,168,83,0.12); color: var(--gold); }
.comparison-table td:first-child { text-align: left; color: var(--text-secondary); font-weight: 500; }
.comparison-table .category-row td { background: rgba(255,255,255,0.02); font-weight: 700; color: var(--gold); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.05em; }
.comparison-table .check { color: var(--gold); font-size: 1.1rem; }
.comparison-table .cross { color: var(--gray-500); font-size: 0.9rem; }

/* Page Header */
.page-header { padding: 8rem 0 3rem; background: linear-gradient(135deg, var(--navy-darkest), var(--navy-dark)); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.page-header .overline { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.page-header p { max-width: 600px; margin: 1rem auto 0; color: var(--text-muted); font-size: 1.05rem; }

/* Responsive */
@media (max-width: 1024px) {
    .news-layout { grid-template-columns: 1fr; }
    .news-card.featured { grid-template-columns: 1fr; }
    .news-card.featured .news-card-image { min-height: 220px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card.popular { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero { min-height: auto; padding: 7rem 0 4rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .news-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .trust-grid { gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .comparison-table th, .comparison-table td { padding: 0.75rem 0.5rem; }
    .header-inner { padding: 0.75rem 1rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2rem; }
}
