/* ============================================
   NAXIRA — Master CSS Design System & Component Library
   ArchitectUX Foundation | Full Light & Dark Theme Support
   100% Mobile Friendly & Scaled Responsive System
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Design Tokens & Base Light Theme ── */
:root {
  /* Brand Palette */
  --clr-primary-900: #12053a;
  --clr-primary-800: #1a0a52;
  --clr-primary-700: #30086c;
  --clr-primary-600: #5a2d91;
  --clr-primary-500: #8147c9;
  --clr-primary-400: #a06fd6;
  --clr-primary-300: #c09ae3;
  --clr-primary-200: #d8bfef;
  --clr-primary-100: #f2e3f9;
  --clr-primary-50: #f8f0fc;

  /* Neutrals */
  --clr-white: #ffffff;
  --clr-gray-50: #fafafa;
  --clr-gray-100: #f5f5f5;
  --clr-gray-200: #e5e5e5;
  --clr-gray-300: #d4d4d4;
  --clr-gray-400: #a3a3a3;
  --clr-gray-500: #737373;
  --clr-gray-600: #525252;
  --clr-gray-700: #404040;
  --clr-gray-800: #262626;
  --clr-gray-900: #171717;

  /* Semantics */
  --clr-success: #10b981;
  --clr-warning: #f59e0b;
  --clr-error: #ef4444;
  --clr-info: #3b82f6;

  /* Light Theme Surfaces */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f0fc;
  --bg-tertiary: #f2e3f9;
  --bg-card: rgba(255, 255, 255, 0.96);
  --bg-card-hover: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.94);
  --border-color: rgba(129, 71, 201, 0.22);
  --border-color-hover: rgba(129, 71, 201, 0.55);

  /* Light Theme Text */
  --clr-text: #12053a;
  --clr-text-secondary: #434358;
  --clr-text-muted: #6b6b80;
  --clr-text-inverse: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #30086c 0%, #8147c9 50%, #c09ae3 100%);
  --gradient-hero: linear-gradient(160deg, #12053a 0%, #30086c 40%, #5a2d91 100%);
  --gradient-card: linear-gradient(145deg, rgba(129, 71, 201, 0.06) 0%, rgba(192, 154, 227, 0.02) 100%);
  --gradient-accent: linear-gradient(135deg, #8147c9, #c09ae3);
  --gradient-cta: linear-gradient(135deg, #30086c, #8147c9);
  --gradient-text: linear-gradient(135deg, #8147c9 0%, #30086c 100%);

  /* Typography */
  --ff-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-display: 'Space Grotesk', sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: 1.35rem;
  --fs-2xl: 1.65rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.5rem;
  --fs-6xl: 4.5rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5.5rem;
  --sp-24: 7rem;
  --sp-32: 9rem;

  /* Radii & Shadows */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px rgba(48, 8, 108, 0.1);
  --shadow-lg: 0 12px 30px rgba(48, 8, 108, 0.15);
  --shadow-xl: 0 24px 45px rgba(48, 8, 108, 0.2);
  --shadow-glow: 0 0 35px rgba(129, 71, 201, 0.4);

  /* Layout Scale Expansion */
  --container-max: 1400px;
  --header-height: 88px;
  --transition-fast: 150ms ease;
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Dark Theme Overrides ── */
[data-theme="dark"] {
  --bg-primary: #0a041c;
  --bg-secondary: #12053a;
  --bg-tertiary: #1a0a52;
  --bg-card: rgba(26, 10, 82, 0.75);
  --bg-card-hover: rgba(36, 14, 108, 0.9);
  --bg-header: rgba(10, 4, 28, 0.93);
  --border-color: rgba(192, 154, 227, 0.25);
  --border-color-hover: rgba(192, 154, 227, 0.6);

  --clr-text: #f8f0fc;
  --clr-text-secondary: #d8bfef;
  --clr-text-muted: #a06fd6;
  --clr-text-inverse: #12053a;

  --gradient-card: linear-gradient(145deg, rgba(129, 71, 201, 0.18) 0%, rgba(30, 8, 108, 0.5) 100%);
  --gradient-text: linear-gradient(135deg, #d8bfef 0%, #ffffff 100%);

  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 24px 50px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 40px rgba(192, 154, 227, 0.35);
}

/* ── CSS Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--ff-primary);
  font-size: 17px;
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--bg-primary);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  transition: background-color var(--transition-base), color var(--transition-base);
}

@media (min-width: 1400px) {
  html { font-size: 18px; }
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

/* ── Accessibility & Skip Links ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--clr-primary-500);
  color: #ffffff;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: var(--fw-bold);
  transition: top var(--transition-fast);
  box-shadow: var(--shadow-xl);
}

.skip-link:focus {
  top: 1.25rem;
  outline: 3px solid #ffffff;
}

:focus-visible {
  outline: 3px solid var(--clr-primary-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Typography & Headings ── */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h5 {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--clr-text);
}

h1, .h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); margin-bottom: var(--sp-5); }
h3 { font-size: clamp(1.35rem, 2.75vw, 2rem); margin-bottom: var(--sp-4); }
h5, .h5 { font-size: var(--fs-lg); }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-danger { color: var(--clr-error); }
.text-white { color: #ffffff !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-lg { margin-bottom: var(--sp-12); }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.mt-md { margin-top: var(--sp-6); }
.mt-xl { margin-top: var(--sp-12); }
.rounded, .rounded-image { border-radius: var(--radius-xl); }
.shadow, .shadow-lg, .shadow-large { box-shadow: var(--shadow-lg); }

.badge, .section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2.5) var(--sp-5);
  background: var(--bg-tertiary);
  color: var(--clr-primary-600);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

[data-theme="dark"] .badge, [data-theme="dark"] .section-badge {
  color: var(--clr-primary-300);
}

.section-title, .section__title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.section-subtitle, .section__desc, .section__description {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--lh-relaxed);
}

.section-header, .section__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

/* ── Container & Responsive Grid ── */
.container, .page-hero__container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-8);
  padding-right: var(--sp-8);
}

.section {
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
  position: relative;
}

.section--alt, .section--light, .bg-light {
  background-color: var(--bg-secondary);
}

.section--dark, .bg-dark {
  background-color: var(--clr-primary-900);
  color: #ffffff;
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark p,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p {
  color: #ffffff;
}

.section--primary {
  background: var(--gradient-hero);
  color: #ffffff;
}

/* ── Grid System ── */
.grid, .stats-grid, .stats__grid, .process-grid, .split-grid {
  display: grid;
  gap: var(--sp-10);
}

.grid-2, .grid--2, .grid--2-col, .grid-2-col, .row { grid-template-columns: repeat(2, 1fr); }
.grid-3, .grid--3, .grid--3-col, .grid-3-col { grid-template-columns: repeat(3, 1fr); }
.grid-4, .grid--4, .grid--4-col, .grid-4-col { grid-template-columns: repeat(4, 1fr); }

.grid--align-center, .row--align-center { align-items: center; }
.grid--gap-md { gap: var(--sp-8); }
.grid--gap-lg { gap: var(--sp-12); }
.grid--gap-xl { gap: var(--sp-16); }

@media (max-width: 1024px) {
  .grid-4, .grid--4, .grid--4-col, .grid-4-col { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid--3, .grid--3-col, .grid-3-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid--4, .grid--4-col, .grid-4-col,
  .grid-3, .grid--3, .grid--3-col, .grid-3-col,
  .grid-2, .grid--2, .grid--2-col, .grid-2-col, .row { grid-template-columns: 1fr; }
  .section { padding-top: var(--sp-12); padding-bottom: var(--sp-12); }
  .container { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .order-1-mobile { order: 1; }
  .order-2-mobile { order: 2; }
}

/* ── Header & Desktop/Mobile Navigation ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border-color);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  flex-wrap: nowrap;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: 1.85rem;
  color: var(--clr-text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(129, 71, 201, 0.4));
}

.header__logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2.25rem);
  flex-shrink: 0;
}

.nav__link {
  font-weight: var(--fw-semibold);
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--sp-2) 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__link:hover, .nav__link--active {
  color: var(--clr-primary-500);
}

[data-theme="dark"] .nav__link:hover, 
[data-theme="dark"] .nav__link--active {
  color: var(--clr-primary-300);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-primary-500);
  border-radius: var(--radius-full);
}

/* Dropdown Arrow Flip */
.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-fast);
  stroke-width: 2.5px;
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
  stroke: var(--clr-primary-500);
}

/* Theme Toggle Component */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle-option, .theme-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.theme-toggle-option:hover, .theme-toggle__btn:hover {
  color: var(--clr-text);
}

.theme-toggle-option.active, .theme-toggle__btn.active {
  background: var(--clr-primary-500);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.sun-icon, .moon-icon, .theme-toggle__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* Desktop Dropdown Menu */
.nav__dropdown {
  position: relative;
}

.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 20px;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 270px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--sp-3);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1000;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3.5) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-secondary);
  transition: all var(--transition-fast);
}

.nav__dropdown-item .icon, .icon {
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  flex-shrink: 0;
}

.nav__dropdown-item:hover, .nav__dropdown-item--active {
  background: var(--bg-tertiary);
  color: var(--clr-primary-500) !important;
}

/* Mobile Nav Drawer & Dropdown (Mobile Friendly Overhaul) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--clr-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle--active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
  .header__inner {
    padding: 0 var(--sp-4);
  }

  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--sp-6)) var(--sp-6) var(--sp-8);
    gap: var(--sp-5);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    overflow-y: auto;
    z-index: 999;
  }

  .nav--open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav .nav__link {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    width: 100%;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--clr-primary-500) !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 0 0 var(--sp-4) !important;
    margin-top: var(--sp-3) !important;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }

  .nav__dropdown-item {
    font-size: 1.1rem;
    padding: var(--sp-2) 0 !important;
    border: none !important;
    background: transparent !important;
  }

  .nav__dropdown-trigger svg {
    display: none !important;
  }

  .nav .theme-toggle {
    width: 100%;
    justify-content: space-between;
    padding: var(--sp-2);
    margin-top: var(--sp-4);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
  }

  .nav .theme-toggle-option {
    flex: 1;
    text-align: center;
    padding: var(--sp-2);
  }

  .nav .btn {
    width: 100%;
    text-align: center;
    margin-top: var(--sp-4);
    padding: var(--sp-4);
    font-size: 1.1rem;
  }
}

/* ── Buttons Suite ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.8rem 2rem;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none !important;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #ffffff !important;
}

.btn--secondary, .btn--outline, .btn--light {
  background: var(--bg-tertiary) !important;
  color: var(--clr-text) !important;
  border-color: var(--border-color) !important;
}

.btn--secondary:hover, .btn--outline:hover {
  background: var(--border-color) !important;
  transform: translateY(-3px);
}

.btn--lg, .btn--large {
  padding: 1.1rem 2.6rem;
  font-size: 1.15rem;
  min-height: 58px;
}

.btn--full {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ── Universal Cards Suite ── */
.card, .service-card, .testimonial-card, .value-card, .platform-card, .stat-card, .process-card, .step-card, .cta-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media (max-width: 768px) {
  .card, .service-card, .testimonial-card, .value-card, .platform-card, .stat-card, .process-card, .step-card, .cta-card {
    padding: var(--sp-6);
  }
}

.card:hover, .service-card:hover, .testimonial-card:hover, .value-card:hover, .platform-card:hover, .stat-card:hover, .process-card:hover, .cta-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card__icon, .service-card__icon, .value-card__icon, .process-card__number, .step-card__number, .cta-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--bg-tertiary);
  color: var(--clr-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-6);
  flex-shrink: 0;
}

.card__title, .service-card__title, .value-card__title, .process-card__title, .step-card__title, .cta-card__title, .cta-title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
}

.card__text, .card__desc, .card__description, .service-card__text, .value-card__text, .process-card__desc, .step-card__desc, .cta-card__desc, .cta-desc {
  color: var(--clr-text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
  flex-grow: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--clr-primary-500);
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.card__link:hover { gap: var(--sp-3); }

/* Testimonials */
.testimonial-card__quote {
  font-size: var(--fs-base);
  font-style: italic;
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: auto;
}

.testimonial-card__author-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--clr-primary-500);
  flex-shrink: 0;
}

.testimonial-card__author-name {
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

.testimonial-card__author-role {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ── Aspect-Ratio Images & Containers ── */
.image-wrapper, .story__image, .feature-split__image, .service-detail__image, .split-grid__image, .split-layout__image, .layout-split__media, .portfolio-item, .rounded-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-tertiary);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  width: 100%;
}

img, img.img-fluid, .rounded-image img, .story__image img, .feature-split__image img, .service-detail__image img, .split-grid__image img, .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover img, .story__image:hover img, .feature-split__image:hover img, .service-detail__image:hover img, .portfolio-item:hover img {
  transform: scale(1.04);
}

/* ── Hero Sections & Banners ── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + var(--sp-16));
  padding-bottom: var(--sp-20);
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  color: #ffffff;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--sp-8));
    padding-bottom: var(--sp-12);
  }
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Crucial: canvas does not block mouse clicks */
}

.hero__content, .page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: #ffffff;
  margin-bottom: var(--sp-6);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--clr-primary-200);
  margin-bottom: var(--sp-12);
  line-height: var(--lh-relaxed);
}

.hero__actions, .hero__ctas, .cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

.hero__stats, .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-20);
  padding-top: var(--sp-12);
  border-top: 1.5px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
  .hero__stats, .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-10);
    padding-top: var(--sp-8);
  }
}

@media (max-width: 480px) {
  .hero__stats, .stats__grid {
    grid-template-columns: 1fr;
  }
}

.stat, .stat-item, .stat-card { text-align: center; }

.stat-item__number, .stat__number, .stat-number, .stat-card__number {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-300);
}

.stat-item__label, .stat__label, .stat-label, .stat-card__label {
  font-size: var(--fs-xs);
  color: var(--clr-primary-200);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--sp-2);
}

/* Page Hero & Interior Banners */
.page-hero, .hero--page, .hero--inner, .hero--interior {
  padding-top: calc(var(--header-height) + var(--sp-16));
  padding-bottom: var(--sp-20);
  background: var(--gradient-hero);
  color: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {
  .page-hero, .hero--page, .hero--inner, .hero--interior {
    padding-top: calc(var(--header-height) + var(--sp-8));
    padding-bottom: var(--sp-12);
  }
}

.page-hero__title, .hero--page .hero__title {
  color: #ffffff;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  margin-bottom: var(--sp-4);
}

.page-hero__subtitle, .page-hero__desc, .page-hero__description {
  color: var(--clr-primary-200);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 760px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb, .breadcrumbs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-6);
}

.breadcrumb ol, .breadcrumb__list, .breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-primary-200);
}

.breadcrumb a, .breadcrumbs a {
  color: var(--clr-primary-300);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover, .breadcrumbs a:hover { color: #ffffff; }

.breadcrumb li + li::before, .breadcrumbs .separator {
  content: '/';
  margin-right: var(--sp-2);
  color: rgba(255, 255, 255, 0.4);
}

/* ── Split Layouts & Service Details ── */
.story-section, .feature-split, .service-detail, .split-grid, .split-layout, .layout-split {
  padding: var(--sp-16) 0;
}

@media (max-width: 768px) {
  .story-section, .feature-split, .service-detail, .split-grid, .split-layout, .layout-split {
    padding: var(--sp-10) 0;
  }
}

.story__content, .feature-split__content, .service-detail__content, .split-grid__content, .split-layout__content, .layout-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list, .check-list, .list-checked {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3.5);
}

.feature-list li, .check-list li, .list-checked li {
  display: flex;
  align-items: center;
  gap: var(--sp-3.5);
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
}

.feature-list li::before, .check-list li::before, .list-checked li::before {
  content: '✓';
  color: var(--clr-success);
  font-weight: var(--fw-bold);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Timeline Component ── */
.timeline {
  position: relative;
  max-width: 840px;
  margin: var(--sp-12) auto 0;
  padding-left: var(--sp-10);
  border-left: 2px solid var(--border-color);
}

@media (max-width: 768px) {
  .timeline {
    padding-left: var(--sp-6);
  }
}

.timeline__item {
  position: relative;
  margin-bottom: var(--sp-12);
}

.timeline__year {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  color: var(--clr-primary-500);
  margin-bottom: var(--sp-2);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-10) - 7px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--clr-primary-500);
  box-shadow: 0 0 0 4px var(--bg-primary);
}

@media (max-width: 768px) {
  .timeline__item::before {
    left: calc(-1 * var(--sp-6) - 7px);
  }
}

/* ── Contact Info List ── */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--bg-tertiary);
  color: var(--clr-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-link {
  color: var(--clr-primary-500);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  transition: color var(--transition-fast);
}

.contact-info-link:hover { text-decoration: underline; }

/* ── Form Controls & Submit Buttons ── */
.form-group, .form__group {
  margin-bottom: var(--sp-8);
  text-align: left;
}

.form-label, .form__label {
  display: block;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
}

.form-input, .form__input, .form-select, .form__select, .form-textarea, .form__textarea {
  width: 100%;
  padding: 1rem 1.35rem;
  min-height: 54px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--clr-text);
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.form-textarea, .form__textarea {
  min-height: 150px;
  line-height: var(--lh-relaxed);
}

.form-input:focus, .form__input:focus, .form-select:focus, .form__select:focus, .form-textarea:focus, .form__textarea:focus {
  border-color: var(--clr-primary-500);
  box-shadow: 0 0 0 4px rgba(129, 71, 201, 0.22);
}

.form-input--error, .form__input--error {
  border-color: var(--clr-error) !important;
}

.form-error, .form__error {
  font-size: var(--fs-sm);
  color: var(--clr-error);
  font-weight: var(--fw-semibold);
  margin-top: var(--sp-2);
  display: none;
}

.form-honeypot, .form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

button[type="submit"] {
  width: 100%;
  min-height: 56px;
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ── Accordion FAQ (All Class Names) ── */
.faq__item, .faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  margin-bottom: var(--sp-5);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__question, .faq-item__question, .faq-item__trigger, .faq-btn {
  width: 100%;
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-weight: var(--fw-bold);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--clr-text);
  cursor: pointer;
}

@media (max-width: 768px) {
  .faq__question, .faq-item__question, .faq-item__trigger, .faq-btn {
    padding: var(--sp-5) var(--sp-6);
  }
}

.faq__answer, .faq-item__answer, .faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  color: var(--clr-text-secondary);
  font-size: 1.05rem;
  line-height: var(--lh-relaxed);
}

.faq__item--active .faq__answer, .faq-item--active .faq-item__answer, .faq-item.active .faq-item__answer {
  max-height: 450px;
  padding: 0 var(--sp-8) var(--sp-8);
}

@media (max-width: 768px) {
  .faq__item--active .faq__answer, .faq-item--active .faq-item__answer, .faq-item.active .faq-item__answer {
    padding: 0 var(--sp-6) var(--sp-6);
  }
}

/* ── Tables & Data Displays ── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: var(--sp-8);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-color);
  -webkit-overflow-scrolling: touch;
}

table, .comparison-table, .pricing-table, .data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-card);
  min-width: 600px;
}

table th, table td, .comparison-table th, .comparison-table td, .pricing-table th, .pricing-table td {
  padding: var(--sp-5) var(--sp-8);
  border-bottom: 1.5px solid var(--border-color);
  font-size: var(--fs-base);
}

table th, .comparison-table th, .pricing-table th {
  background: var(--bg-tertiary);
  color: var(--clr-text);
  font-weight: var(--fw-bold);
  font-family: var(--ff-display);
}

table tr:hover, .comparison-table tr:hover { background: var(--bg-card-hover); }

/* ── Toast Notifications ── */
.toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--clr-primary-900);
  color: #ffffff;
  padding: var(--sp-4) var(--sp-10);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  opacity: 0;
  transition: all var(--transition-base);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  border: 1.5px solid var(--clr-primary-500);
  max-width: 90%;
  text-align: center;
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast--success { border-color: var(--clr-success); }
.toast--error { border-color: var(--clr-error); }

/* ── Footer ── */
.footer {
  background: var(--clr-primary-900);
  color: #ffffff;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-10);
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  margin-top: auto;
}

@media (max-width: 768px) {
  .footer {
    padding-top: var(--sp-12);
    padding-bottom: var(--sp-8);
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: var(--sp-16);
  margin-bottom: var(--sp-20);
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}

.footer__logo-text, .footer__logo {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  color: #ffffff;
  margin-bottom: var(--sp-4);
  display: block;
}

.footer__tagline {
  color: var(--clr-primary-200);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.footer__heading {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: var(--sp-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__link {
  color: var(--clr-primary-200);
  font-size: var(--fs-base);
  transition: color var(--transition-fast);
}

.footer__link:hover { color: #ffffff; }

.footer__socials, .social-links {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.footer__social, .social-link {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social:hover, .social-link:hover {
  background: var(--clr-primary-500);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--clr-primary-300);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* Floating WhatsApp Button (Mobile Optimized) */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 999;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.whatsapp-float__btn {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-fast);
}

@media (max-width: 768px) {
  .whatsapp-float__btn {
    width: 56px;
    height: 56px;
  }
}

.whatsapp-float__btn:hover {
  transform: scale(1.12);
}

.whatsapp-float__btn svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float__btn svg {
    width: 30px;
    height: 30px;
  }
}

/* ── MISSING UI CLASSES (FINAL POLISH) ── */

/* Sections & Wrappers */
.cta-section, .section--cta, .stats-section, .timeline-section, .values-section {
  padding: var(--sp-24) 0;
  position: relative;
}
.cta-section__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-6);
}
.cta-section__text, .cta-section__desc {
  font-size: 1.25rem;
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-10);
  line-height: var(--lh-relaxed);
}

/* Feature Splits & Reverse Rows */
.feature-split, .split-layout, .layout-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: var(--sp-16);
}
.feature-split--reverse, .split-layout--reverse, .layout-split--reverse {
  direction: rtl;
}
.feature-split--reverse > *, .split-layout--reverse > *, .layout-split--reverse > * {
  direction: ltr;
}

/* Base Columns & Rows */
.col { flex: 1; }
.col--6 { flex: 0 0 50%; max-width: 50%; }
.row--reverse { flex-direction: row-reverse; }
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Process Steps */
.process-steps { margin-top: var(--sp-12); }
.process-step {
  text-align: left;
  padding: var(--sp-8);
  background: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-color);
  transition: transform var(--transition-base);
  height: 100%;
}
.process-step:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
}
.process-step__number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-200);
  margin-bottom: var(--sp-4);
  line-height: 1;
}
[data-theme="dark"] .process-step__number { color: rgba(192, 154, 227, 0.15); }
.process-step__title {
  font-size: 1.6rem;
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
}
.process-step__desc, .process-step__text {
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

/* Accordion FAQ */
.faq-accordion, .faq-container, .faq {
  max-width: 860px;
  margin: var(--sp-10) auto 0;
}
.faq-title { text-align: center; margin-bottom: var(--sp-10); }
.faq-item__inner, .faq-content { padding: 0; }
.faq-item__title { font-size: 1.15rem; font-weight: var(--fw-bold); }
.faq-item__icon, .faq-icon {
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary-500);
  transition: transform var(--transition-fast);
}

/* Contact Details */
.contact-details {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  border: 1.5px solid var(--border-color);
  height: 100%;
}
.contact-form-wrapper, .form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-xl);
}
.form__status { margin-top: var(--sp-4); }

/* Footer Brand */
.footer__brand {
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.footer__contact-item { margin-bottom: var(--sp-3); }
.footer__bottom-links { display: flex; gap: var(--sp-6); }

/* Tech Badges & Stars */
.tech-badge {
  background: var(--bg-tertiary);
  color: var(--clr-primary-600);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  text-align: center;
  border: 1.5px solid var(--border-color);
  transition: transform var(--transition-fast);
}
.tech-badge:hover { transform: translateY(-3px); }
[data-theme="dark"] .tech-badge { color: var(--clr-primary-300); }

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

/* Card Modifiers */
.card--featured, .tilt-card { border-color: var(--clr-primary-500); box-shadow: var(--shadow-glow); }
.card--minimal { background: transparent; border: none; box-shadow: none; padding: 0; }
.cta-card--whatsapp { background: #25D366; color: #ffffff; border: none; }

/* Miscellaneous & Animations */
.bg-primary { background: var(--bg-primary); }
.reveal--delay-1 { transition-delay: 150ms; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: var(--gradient-primary); z-index: 9999; }
.current { color: var(--clr-primary-500) !important; font-weight: var(--fw-bold); }
.table { width: 100%; }

@media (max-width: 992px) {
  .feature-split, .split-layout, .layout-split {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .feature-split--reverse, .split-layout--reverse, .layout-split--reverse {
    direction: ltr; /* Reset reverse on tablet/mobile so text goes top, image bottom */
  }
  .contact-details, .contact-form-wrapper { padding: var(--sp-6); }
}

@media (max-width: 768px) {
  .cta-section, .section--cta, .stats-section, .timeline-section, .values-section {
    padding: var(--sp-12) 0;
  }
  .col--6 { flex: 0 0 100%; max-width: 100%; }
  .process-step { padding: var(--sp-6); }
}

/* ── REMAINING 5 UI CLASSES ── */
.counter { display: inline-block; }
.faq-inner { width: 100%; max-width: 800px; margin: 0 auto; }
.form { display: flex; flex-direction: column; gap: var(--sp-6); width: 100%; }
.stats__info { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.timeline__content {
  background: var(--bg-card);
  padding: var(--sp-8);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-left: var(--sp-4);
  position: relative;
}
@media (max-width: 768px) {
  .timeline__content { padding: var(--sp-6); margin-left: var(--sp-2); }
}

/* ── Mobile Nav Safari Fix ── */
.header--nav-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border-bottom: none !important;
}
