/* ===== CSS VARIABLES - Sunset Professional Theme ===== */
:root {
  /* Primary Colors - Sunset Theme */
  --primary: #f97316;        /* Warm Orange */
  --primary-dark: #ea580c;
  --primary-light: #ffedd5;
  
  --secondary: #7c3aed;      /* Deep Purple */
  --secondary-dark: #6d28d9;
  --secondary-light: #ede9fe;
  
  /* Accent & UI */
  --accent: #06b6d4;         /* Cyan */
  --success: #22c55e;
  --warning: #f59e0b;
  
  /* Neutrals - Soft Cream Base */
  --bg-body: #fffdf9;        /* Warm Cream */
  --bg-card: #ffffff;
  --bg-alt: #fef3c7;
  
  --text-primary: #1e1b18;   /* Warm Dark */
  --text-secondary: #44403c;
  --text-muted: #78716c;
  
  --border: #e7e5e4;
  --border-focus: var(--primary);
  
  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--secondary);
}

h1 { font-size: clamp(2.25rem, 6vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

a { 
  color: var(--primary); 
  text-decoration: none; 
  transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

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

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.full-width { width: 100%; }
.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; 
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}
.contact-mini { display: flex; align-items: center; gap: 0.75rem; }
.contact-mini a { color: white; font-weight: 500; }
.contact-mini a:hover { color: var(--primary-light); }
.separator { opacity: 0.6; }
.phone-mini { display: none; }
@media (min-width: 640px) { .phone-mini { display: inline; } }

/* ===== HEADER ===== */
.main-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--secondary);
}
.logo-globe { 
  font-size: 1.8rem; 
  color: var(--primary);
}
.logo .highlight { color: var(--primary); }

.desktop-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}
.desktop-nav a {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  font-size: 0.95rem;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--secondary);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--border);
  font-size: 0.95rem;
}
.btn-outline:hover {
  border-color: var(--secondary);
  background: var(--secondary-light);
  color: var(--secondary);
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--secondary);
  font-size: 0.95rem;
}
.btn-secondary:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

.btn-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--secondary);
  padding: 0.25rem;
  line-height: 1;
}
@media (min-width: 992px) {
  .mobile-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu.active { display: block; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu a {
  padding: 0.85rem 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
}
.mobile-menu a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-body) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, var(--secondary-light) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
}

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

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-icon {
  color: var(--success);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===== PERSONAS SECTION ===== */
.personas {
  padding: 5rem 0;
  background: var(--bg-card);
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.persona-card {
  background: var(--bg-body);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.persona-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.persona-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.persona-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.persona-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.persona-solution {
  background: var(--secondary-light);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-left: 3px solid var(--secondary);
}
.persona-solution strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 0.25rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg-body);
}
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { 
  color: var(--text-secondary); 
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.step-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.step-number {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.step-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--secondary);
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-center { text-align: center; }

/* ===== SERVICES SECTION ===== */
.services {
  padding: 5rem 0;
  background: var(--bg-card);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-body);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, var(--bg-card), var(--primary-light));
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}
.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.service-features li {
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}
.service-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.service-link:hover { gap: 0.5rem; }

/* ===== RESOURCES SECTION ===== */
.resources {
  padding: 5rem 0;
  background: var(--bg-body);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.resource-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.resource-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.resource-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.resource-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.resource-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.resource-link {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.resource-link:hover { gap: 0.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-body) 0%, #fff7ed 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  color: var(--warning);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 3rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.author-name {
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
}
.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 5rem 0;
  background: var(--bg-body);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, var(--bg-card), var(--primary-light));
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--secondary);
  margin: 1rem 0;
}
.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
}
.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-features li {
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}
.pricing-note {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-note a { color: var(--primary); font-weight: 600; }

/* ===== FAQ SECTION ===== */
.faq {
  padding: 5rem 0;
  background: var(--bg-card);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-body);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.faq-question:hover { background: rgba(124, 58, 237, 0.03); }
.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 0 1.25rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-answer a { color: var(--primary); font-weight: 500; }
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
  text-align: center;
}
.final-cta h2 { color: white; margin-bottom: 1rem; }
.cta-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.final-cta .btn-primary {
  background: white;
  color: var(--secondary);
  border-color: white;
}
.final-cta .btn-primary:hover {
  background: var(--bg-body);
}
.final-cta .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}
.final-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}
.cta-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.logo-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1rem;
}
.logo-footer .highlight { color: var(--primary-light); }
.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: white;
  font-weight: 600;
  opacity: 0.8;
  font-size: 1.1rem;
}
.footer-social a:hover { opacity: 1; color: var(--primary-light); }
.footer-links h5 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary-light);
}
.footer-contact p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact a {
  color: var(--primary-light);
  font-weight: 600;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer-legal a { color: var(--primary-light); }
.separator { opacity: 0.5; }
.copyright {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.disclaimer-footer {
  font-size: 0.8rem;
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== BUTTONS (Global) ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-lead { font-size: 1.1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; max-width: 300px; }
  .trust-strip { flex-direction: column; gap: 0.75rem; align-items: center; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .header-inner { flex-wrap: wrap; }
  .desktop-nav { order: 3; width: 100%; margin-top: 1rem; }
  .desktop-nav ul { justify-content: center; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-card, .service-card, .persona-card, .testimonial-card, .resource-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}
.step-card:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.step-card:nth-child(2) { animation-delay: 0.2s; opacity: 1; }
.step-card:nth-child(3) { animation-delay: 0.3s; opacity: 1; }
.step-card:nth-child(4) { animation-delay: 0.4s; opacity: 1; }