/**
 * HR Onboarding.ch - Professional Design System
 * SEO-optimized, visually rich, Swiss quality
 */

/* Base */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #fef3c7;
  --navy: #0f172a;
  --navy-light: #1e3a5f;
  --text: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --border: #e2e8f0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
}

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

/* Typography */
h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 2.25rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 16px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-box {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.logo-dot {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Mobile nav - hidden on desktop, shown on mobile */
.mobile-nav {
  display: none;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav .nav-cta {
  color: white !important;
}

.btn-text {
  padding: 0.5rem 1rem;
}

.btn-gold {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-gold.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-outline-white.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline-dark {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border-radius: 0.5rem;
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,175,55,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

/* Dashboard Preview */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.dashboard-preview {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 450px;
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.preview-title {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--text-light);
}

.preview-content {
  padding: 1.5rem;
}

.preview-stat {
  display: inline-block;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.preview-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.preview-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.preview-stat.highlight .stat-value {
  color: var(--success);
}

.preview-list {
  margin-top: 1rem;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warning);
}

.status-dot.green {
  background: var(--success);
}

/* Also keep browser-mockup-hero for fallback */
.browser-mockup-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  padding: 8px;
  width: 100%;
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Fallback for old dashboard-preview */
.dashboard-preview {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 450px;
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.preview-title {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--text-light);
}

.preview-content {
  padding: 1.5rem;
}

.preview-stat {
  display: inline-block;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.preview-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.preview-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.preview-stat.highlight .stat-value {
  color: var(--success);
}

.preview-list {
  margin-top: 1rem;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warning);
}

.status-dot.green {
  background: var(--success);
}

/* Sections */
.section-problem,
.section-solution,
.section-modules,
.section-benefits,
.section-pricing,
.section-trust,
.section-testimonials,
.section-faq,
.section-cta {
  padding: 5rem 0;
}

.section-problem {
  background: var(--bg-light);
}

.section-solution {
  background: white;
}

.section-modules {
  background: var(--bg-light);
}

.section-benefits {
  background: white;
}

.section-pricing {
  background: var(--bg-light);
}

.section-trust {
  background: var(--navy);
}

.section-testimonials {
  background: var(--bg-light);
}

.section-faq {
  background: white;
}

.section-cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fde68a 100%);
  text-align: center;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--gold);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Problem Cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  margin-bottom: 1rem;
  color: var(--error);
}

.problem-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.problem-card ul {
  list-style: none;
}

.problem-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

/* Solution Flow */
.solution-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.flow-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.step-details {
  margin-top: 1rem;
}

.detail-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  margin: 0.25rem;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--gold);
  padding-top: 3rem;
}

/* Module Cards */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.module-card {
  position: relative;
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.module-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.module-card.featured {
  border: 2px solid var(--gold);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.module-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.module-icon {
  font-size: 2.5rem;
}

.module-title h3 {
  margin-bottom: 0.25rem;
}

.module-subtitle {
  color: var(--text-light);
  font-size: 0.875rem;
}

.module-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.module-features {
  margin-bottom: 1.5rem;
}

.module-features .feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.module-features .feature-item:last-child {
  border-bottom: none;
}

.module-features .feature-icon {
  font-size: 1.5rem;
}

.module-features .feature-content strong {
  display: block;
  margin-bottom: 0.25rem;
}

.module-features .feature-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.module-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.module-link:hover {
  text-decoration: underline;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.benefit-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--gold-light);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.benefit-stat .stat-label {
  color: var(--text-light);
  font-size: 0.875rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
}

.benefit-card ul {
  list-style: none;
}

.benefit-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-price .currency {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-save {
  background: var(--success);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: inline-block;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-addons {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
}

.pricing-addons h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.addons-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.addon-item {
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.addon-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.addon-price {
  color: var(--gold);
  font-weight: 700;
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.trust-label {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
}

.testimonial-quote::after {
  content: '"';
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info strong {
  display: block;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 0;
}

/* CTA */
.section-cta h2 {
  margin-bottom: 1rem;
}

.section-cta p {
  color: var(--text);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-features {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-features span {
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

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

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-keywords {
  margin-top: 0.5rem !important;
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.3) !important;
}

/* Mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .solution-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: relative !important;
  }
  
  .header-inner {
    padding: 12px 16px;
    position: relative;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-box {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  
  /* Hide desktop nav on mobile */
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile nav - outside header for proper z-index */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 80px 24px 32px;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .mobile-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    z-index: 1001;
  }
  
  .mobile-close-btn:hover {
    color: var(--gold);
  }
  
  .mobile-nav .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  
  .mobile-nav .nav-link:first-child {
    border-top: 1px solid var(--border);
    margin-top: 16px;
  }
  
  .mobile-nav .nav-link.active {
    color: var(--gold);
  }
  
  .mobile-nav .nav-cta {
    margin-top: 32px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.125rem;
    padding: 18px 24px;
    display: block;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .problem-grid,
  .modules-grid,
  .benefits-grid,
  .pricing-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Screen Reader Only - Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
