/* Vox Consilio - Strategic Growth Consultancy
   Twilight Ocean Visual Identity System
   Style Card v2.0 — DM Sans Only
   ============================================== */

/* ================================
   CSS Variables
   ================================ */
:root {
  /* Twilight Ocean Palette */
  --horizon: #365380;
  --horizon-dark: #2A4266;
  --purple: #694978;
  --orchid: #E4B5D4;
  --peach: #E5C4B8;
  --ocean: #3A7CA5;
  --ocean-dark: #2E6D92;
  --teal: #2A9D8F;
  --teal-dark: #238578;
  --cream: #FAF7F5;
  --dark: #1A1A2E;

  /* Legacy aliases */
  --horizon-surf: var(--horizon);
  --deep-purple: var(--purple);
  --orchid-pink: var(--orchid);
  --soft-peach: var(--peach);
  --ocean-blue: var(--ocean);
  --reef-teal: var(--teal);

  /* Light tints for backgrounds */
  --light-orchid: #F5E8F0;
  --light-peach: #FBF5F2;
  --light-ocean: #EAF3F8;
  --light-teal: #E8F5F2;

  /* Section Colors */
  --section-cream: #FDFCFA;
  --section-sage: #EDF2ED;
  --section-blush: var(--light-peach);
  --section-blush-rose: #F5E8E6;
  --section-lavender: var(--light-orchid);
  --section-mist: var(--light-ocean);
  --section-warm: #F5EFE6;

  /* Backgrounds */
  --bg-cream: var(--cream);
  --bg-white: #FFFFFF;
  --bg-dark: var(--horizon);

  /* Footer - Horizon for brand consistency */
  --footer-dark: var(--horizon);

  /* Text Colors */
  --text: #2D2D3A;
  --text-dark: #2D2D3A;
  --text-heading: var(--horizon);
  --text-light: #FFFFFF;
  --text-muted: #6B6B7B;

  /* Type Scale — Major Third 1.250 (per Style Card v2.0) */
  --fs-hero: clamp(36px, 5vw, 56px);
  --fs-h1: clamp(28px, 3.5vw, 39px);
  --fs-h2: clamp(24px, 2.8vw, 31px);
  --fs-h3: clamp(20px, 2.2vw, 25px);
  --fs-h4: clamp(18px, 1.8vw, 20px);
  --fs-body: 1rem;        /* 16px */
  --fs-small: 0.875rem;   /* 14px */
  --fs-nav: 0.875rem;     /* 14px */
  --fs-label: 0.6875rem;  /* 11px */
  --fs-fine: 0.75rem;     /* 12px */

  /* Borders & Shadows */
  --border-light: rgba(229, 196, 184, 0.3);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);

  /* Font — DM Sans Only (per Style Card v2.0) */
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: var(--font-family);
  --font-body: var(--font-family);
  --font-ui: var(--font-family);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* ================================
   Reset & Base Styles
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-cream);
  color: var(--text);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   Typography — DM Sans Only (Style Card v2.0)
   Weight Strategy: 400 (body/headings), 500 (nav/buttons/subheads), 600 (labels)
   Never use Bold 700 on the website
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 400;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 500;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background-color: var(--orchid-pink);
  color: var(--text-dark);
}

/* ================================
   Section Labels — Always Uppercase, SemiBold 600, Purple
   ================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
  line-height: 1;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--purple);
}

.section-label-light {
  color: var(--orchid);
}

.section-label-light::before {
  background: var(--orchid);
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ================================
   Section Styles - Distinct Colors
   ================================ */
section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 1024px) {
  section {
    padding: 7rem 0;
  }
}

.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  margin-bottom: 12px;
  max-width: 700px;
}

.section-header p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-subtitle {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Section Color Variants */
.section-cream {
  background-color: var(--section-cream);
  position: relative;
}

.section-cream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--orchid), var(--peach));
  opacity: 0.7;
}

.section-sage {
  background-color: var(--section-sage);
  position: relative;
}

.section-sage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--orchid), var(--peach));
  opacity: 0.7;
}

.section-blush {
  background-color: var(--section-blush);
}

.section-blush-rose {
  background-color: var(--light-orchid);
  position: relative;
}

.section-blush-rose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--orchid), var(--peach));
  opacity: 0.7;
}

.section-lavender {
  background-color: var(--light-orchid);
  position: relative;
}

.section-lavender::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--orchid), var(--peach));
  opacity: 0.7;
}

.section-mist {
  background-color: var(--light-ocean);
}

.section-warm {
  background-color: var(--light-peach);
}

.section-light {
  background-color: var(--cream);
}

.section-white {
  background-color: var(--bg-white);
}

.section-dark {
  background-color: var(--horizon);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: white;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-label {
  color: var(--orchid);
}

.section-dark .section-label::before {
  background: var(--orchid);
}

/* ================================
   Buttons — Medium 500, 14px (per Style Card v2.0)
   ================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fs-nav);
  letter-spacing: 0.3px;
  padding: 12px 28px;
  background: var(--ocean);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--ocean-dark);
  transform: translateY(-1px);
}

.btn-primary span {
  transition: transform var(--transition-fast);
}

.btn-primary:hover span {
  transform: translateX(3px);
}

/* Teal button variant */
.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fs-nav);
  padding: 12px 28px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fs-nav);
  padding: 12px 28px;
  background-color: transparent;
  border: 1.5px solid var(--horizon);
  color: var(--horizon);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: var(--horizon);
  color: white;
}

/* Secondary button on light backgrounds */
.section-cream .btn-secondary,
.section-sage .btn-secondary,
.section-blush .btn-secondary,
.section-lavender .btn-secondary,
.section-mist .btn-secondary,
.section-warm .btn-secondary {
  background-color: transparent;
  border-color: var(--horizon);
  color: var(--horizon);
}

.section-cream .btn-secondary:hover,
.section-sage .btn-secondary:hover,
.section-blush .btn-secondary:hover,
.section-lavender .btn-secondary:hover,
.section-mist .btn-secondary:hover,
.section-warm .btn-secondary:hover {
  background-color: var(--horizon);
  color: white;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fs-small);
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  color: var(--horizon);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--ocean);
}

/* Dark background buttons */
.section-dark .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.section-dark .btn-secondary:hover {
  background-color: white;
  border-color: white;
  color: var(--horizon);
}

/* Hero secondary button — Rose Quartz */
.hero .btn-secondary {
  border-color: #F0CCE3;
  color: #F0CCE3;
}

.hero .btn-secondary:hover {
  background-color: #F0CCE3;
  border-color: #F0CCE3;
  color: #1A1A2E;
}

/* ================================
   Animation Classes
   ================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   Navigation
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background-color: rgba(54, 83, 128, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: 0 4px 20px rgba(54, 83, 128, 0.15);
}

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

.logo {
  display: flex;
  flex-direction: column;
  z-index: 101;
}

.logo-text {
  font-family: var(--font-family);
  font-size: 1.65rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.5px;
}

.logo-v {
  color: var(--orchid);
}

.logo-tagline {
  font-family: var(--font-family);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 400;
  color: white;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.language-switcher {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .language-switcher {
    display: flex;
  }
}

.lang-btn {
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0.6;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
}

.lang-divider {
  color: var(--text-light);
  opacity: 0.3;
}

.nav-cta {
  display: none;
  padding: 10px 22px;
  background: #F0CCE3;
  color: #1A1A2E;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fs-small);
  border-radius: 8px;
  transition: all var(--transition-base);
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-cta:hover {
  background: #E4B5D4;
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: all var(--transition-base);
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #365380;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hide sticky CTA and WhatsApp when menu is open */
body.menu-open .mobile-sticky-cta,
body.menu-open .whatsapp-btn {
  opacity: 0 !important;
  pointer-events: none !important;
}

.mobile-lang-switcher {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mobile-lang-switcher .lang-btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: white;
}

.mobile-lang-switcher .lang-btn.active {
  background: rgba(255,255,255,0.15);
  border-color: #E4B5D4;
  color: white;
}

.mobile-link {
  font-family: var(--font-family);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
}

.mobile-link:hover {
  color: #E4B5D4;
}

.mobile-cta-link {
  margin-top: 1rem;
  color: #1A1A2E !important;
}

/* ================================
   Hero Section with Image
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(54, 83, 128, 0.92) 0%,
    rgba(54, 83, 128, 0.88) 50%,
    rgba(105, 73, 120, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 10rem 0 6rem;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 24px;
  line-height: 1;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orchid);
}

.hero-headline {
  font-family: var(--font-family);
  font-size: var(--fs-hero);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: italic;
  color: var(--orchid);
}

.hero-subheadline {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.hero-body {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: var(--fs-fine);
  color: var(--peach);
  letter-spacing: 1.5px;
}

.trust-divider {
  opacity: 0.5;
}

/* ================================
   Pain Points Section
   ================================ */
.pain-points-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pain-point-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  border-left: 3px solid var(--purple);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

.pain-point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pain-point-card h3 {
  font-family: var(--font-family);
  font-size: var(--fs-h4);
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--horizon);
}

.pain-point-card p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-dark);
  line-height: 1.6;
}

.cta-transition {
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 20px;
}

/* ================================
   Services Section
   ================================ */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .service-tagline {
  order: -2;
}

.service-card .service-icon {
  order: -1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.service-tagline {
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 4px;
}

.service-card h3 {
  font-family: var(--font-family);
  font-size: var(--fs-h4);
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--horizon);
}

.service-card > p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ocean);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

.service-toggle:hover {
  color: var(--ocean-dark);
}

.service-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-base);
}

.service-toggle.open svg {
  transform: rotate(180deg);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition-base);
}

.service-details.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.service-details ul {
  list-style: none;
}

.service-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.check-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.service-note {
  font-family: var(--font-family);
  font-size: var(--fs-fine);
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
}

/* ================================
   Packages / Engagements Section
   ================================ */
.packages-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.package-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
}

.package-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
}

.package-card.recommended {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(105, 73, 120, 0.1), var(--shadow-md);
}

@media (min-width: 768px) {
  .package-card.recommended {
    transform: scale(1.03);
  }
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  background: var(--purple);
  color: white;
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 20px;
}

.package-tagline {
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.package-card h3 {
  font-family: var(--font-family);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--horizon);
}

.package-description {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-dark);
}

.package-best-for {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.package-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fs-small);
  border: 1.5px solid var(--ocean);
  color: var(--ocean);
  background: transparent;
  transition: all var(--transition-base);
}

.package-cta:hover {
  background: var(--ocean);
  color: white;
  border-color: var(--ocean);
}

.package-card.recommended .package-cta {
  background: var(--ocean);
  color: white;
  border-color: var(--ocean);
}

.package-card.recommended .package-cta:hover {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
}

.packages-note {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
}

.packages-qualifier {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 12px;
}

.packages-design-note {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--purple);
  font-style: italic;
}

/* ================================
   Difference Section
   ================================ */
.differentiators {
  max-width: 900px;
  margin: 0 auto;
}

.differentiator {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(240, 236, 232, 0.15);
}

@media (min-width: 768px) {
  .differentiator {
    grid-template-columns: 80px 1fr;
    gap: 2rem;
  }
}

.differentiator:last-child {
  border-bottom: none;
}

.diff-number {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}

.diff-content h3 {
  font-family: var(--font-family);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: 10px;
  color: white;
}

.diff-content p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ================================
   Who We Serve Section
   ================================ */
.audiences-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .audiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audiences-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.audience-card:hover {
  border-color: var(--peach);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.audience-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  color: white;
}

.audience-card h3 {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--horizon);
}

.audience-card p {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================
   About Section
   ================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 320px 1fr;
    gap: 4rem;
  }
}

.about-photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .about-photo {
    margin: 0;
  }
}

.photo-placeholder {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-orchid), var(--light-peach));
  border: 3px solid var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--purple);
  text-align: center;
  padding: 1rem;
}

.about-content p {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-content strong {
  color: var(--horizon);
  font-weight: 500;
}

.about-credentials {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-muted);
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  margin: 24px 0;
  line-height: 1.6;
}

.about-quote {
  position: relative;
  padding: 2rem;
  padding-left: 3rem;
  margin-top: 2rem;
}

.about-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-family: var(--font-family);
  font-size: 4rem;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
}

.about-quote p {
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--horizon);
  line-height: 1.7;
  margin: 0 !important;
}

/* Founder quote in Results (dark section) */
.section-dark .about-quote {
  padding-left: 2rem;
  padding-right: 2rem;
  border-left: none;
  border-top: 1px solid rgba(228, 181, 212, 0.3);
  padding-top: 2.5rem;
}

.section-dark .about-quote::before {
  display: none;
}

.section-dark .about-quote p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.testimonial-attribution {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 500;
  color: #F0CCE3;
  margin-top: 1rem;
  font-style: normal;
}

.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ================================
   Process Section
   ================================ */
.process-timeline {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-line {
  display: none;
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--peach), var(--orchid));
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
  }
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.step-number {
  position: relative;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
}

.step-tag {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocean);
  background-color: var(--light-ocean);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.step-content h3 {
  font-family: var(--font-family);
  font-size: var(--fs-h4);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--horizon);
}

.step-content p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================
   Results Section
   ================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-family);
  font-size: 48px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  color: var(--teal);
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 56px;
  }
  .stat-suffix {
    font-size: 36px;
  }
}

.stat-label {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ================================
   Insights Section
   ================================ */
.articles-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.article-category {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--light-orchid);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.article-card h3 {
  font-family: var(--font-family);
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--horizon);
  transition: color var(--transition-fast);
}

.article-card:hover h3 {
  color: var(--ocean);
}

.article-card p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ocean);
  transition: gap var(--transition-fast);
}

.article-link:hover {
  gap: 0.75rem;
}

/* ================================
   FAQ Section
   ================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--section-cream);
}

.faq-question span {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--horizon);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 32px 24px;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================
   Contact Section - Improved Design
   ================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-item svg {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.5rem;
  background: var(--teal);
  color: white;
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--orchid);
}

.contact-subtext {
  font-size: var(--fs-fine) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 4px;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(229, 196, 184, 0.45);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: var(--fs-body);
  color: white;
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  background-color: rgba(255, 255, 255, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E5C4B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 14px 28px;
  font-size: var(--fs-small);
  background: #F0CCE3;
  color: #1A1A2E;
  border: none;
}

.form-submit:hover {
  background: #E4B5D4;
}

.form-note {
  font-family: var(--font-family);
  font-size: var(--fs-fine);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 16px;
}

/* Checkbox Group — Aligned with Question */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  min-height: 16px;
  max-height: 16px;
  border: 1.5px solid rgba(229, 196, 184, 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin: 1px 0 0 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:hover {
  border-color: var(--ocean);
  background: rgba(255, 255, 255, 0.12);
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label span {
  flex: 1;
}

/* Gradient Separator — Contact to Footer */
.contact-footer-separator {
  height: 6px;
  background: linear-gradient(90deg, var(--peach), var(--orchid), var(--purple), var(--orchid), var(--peach));
}

/* ================================
   Footer - Horizon Blue for Brand Consistency
   ================================ */
.footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.footer-main {
  padding: 4.5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo-text {
  font-family: var(--font-family);
  font-size: 1.65rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.footer-brand .logo-tagline {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Results section CTA — Rose Quartz */
#results .btn-primary,
#resultados .btn-primary {
  background: #F0CCE3;
  color: #1A1A2E;
}

#results .btn-primary:hover,
#resultados .btn-primary:hover {
  background: #E4B5D4;
}

.footer-brand p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer-copyright {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.5rem;
}

.footer-links-group h4 {
  font-family: var(--font-family);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(228, 181, 212, 0.2);
}

.footer-links-group ul {
  list-style: none;
}

.footer-links-group li {
  margin-bottom: 0.625rem;
}

.footer-links-group a {
  font-family: var(--font-family);
  font-size: 12.5px;
  color: var(--orchid);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-links-group a:hover {
  color: white;
}

/* Footer social icons - properly sized */
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social svg,
.footer-links-group svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-family);
  font-size: 11.5px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
}

/* ================================
   WhatsApp Button
   ================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.whatsapp-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

/* ================================
   Mobile Sticky CTA
   ================================ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--ocean);
  padding: 0.875rem 1rem;
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: all var(--transition-base);
}

@media (min-width: 1024px) {
  .mobile-sticky-cta {
    display: none;
  }
}

.mobile-sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sticky-btn {
  flex: 1;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 500;
  color: white;
}

/* ================================
   Section CTA
   ================================ */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-cta p {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 20px;
}

/* ================================
   Utility Classes
   ================================ */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
