@font-face {
  font-family: 'Google Sans';
  src: url('assets/Google_Sans/GoogleSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/Google_Sans/GoogleSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/Google_Sans/GoogleSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/Google_Sans/GoogleSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/Google_Sans/GoogleSans-Italic.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* ══════════════════════════════════════════════
   1. DESIGN SYSTEM & VARIABLES
   ══════════════════════════════════════════════ */
.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;
}

:root {
  --color-primary: #111111;
  --color-primary-light: #333333;
  --color-primary-dark: #000000;
  
  --color-blue-accent: #2a52a1;
  --color-blue-accent-light: #3663be;
  
  --color-bg-white: #ffffff;
  --color-bg-offwhite: #fafafa;
  --color-bg-light: #f5f6f8;
  --color-bg-dark: #0a0a14;
  --color-text-dark: #111111;
  --color-text-body: #333333;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #0a7c3e;
  --color-error: #dc2626;

  --color-muted-btn: #9ca3af;

  --font-heading: 'Google Sans', sans-serif;
  --font-body: 'Google Sans', sans-serif;

  /* Unified Section Spacing Tokens */
  --space-section-py: clamp(52px, 6.5vw, 84px);
  --space-section-px: clamp(16px, 4vw, 32px);
  --space-title-to-sub: 10px;
  --space-sub-to-content: clamp(26px, 3.5vw, 36px);

  /* Unified Typography Scale Tokens (Google Sans) */
  --font-size-hero-title: clamp(2.4rem, 4.8vw, 3.6rem);
  --font-size-section-title: clamp(1.85rem, 3.2vw, 2.35rem);
  --font-size-section-subtitle: clamp(0.95rem, 1.25vw, 1.05rem);
  --font-size-card-title: 1.3rem;
  --font-size-body: 0.95rem;
  --font-size-small: 0.85rem;
  --font-size-eyebrow: 0.75rem;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-snug: 1.3;
  --line-height-base: 1.6;

  --max-width: 1200px;
  --max-width-wide: 1440px;
  --border-radius: 12px;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;

  /* Motion & Easing Tokens */
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-micro: 180ms;
  --duration-ui: 280ms;
  --duration-section: 500ms;

  /* Natural Architectural Depth & Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 14px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 32px -4px rgba(0, 0, 0, 0.07), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 16px 40px -6px rgba(0, 0, 0, 0.10), 0 6px 16px -2px rgba(0, 0, 0, 0.04);
  --shadow-blue-glow: 0 8px 24px -4px rgba(42, 82, 161, 0.28);
  --shadow-blue-glow-hover: 0 12px 32px -4px rgba(42, 82, 161, 0.40);
}

/* ══════════════════════════════════════════════
   2. BASE RESETS & GLOBAL RESPONSIVENESS
   ══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Lenis Smooth Scroll Essential Rules */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-white);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

input,
select,
textarea,
input:focus,
input:focus-visible,
input:active,
select:focus,
select:focus-visible,
select:active,
textarea:focus,
textarea:focus-visible,
textarea:active {
  outline: none !important;
  outline-offset: 0 !important;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ══════════════════════════════════════════════
   3. TYPOGRAPHY & SPACING UTILITIES
   ══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

.text-center {
  text-align: center;
}

.section-title-wrapper {
  max-width: 680px;
  margin: 0 auto var(--space-sub-to-content);
  text-align: center;
}

.section-title {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-title-to-sub);
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.section-subtitle {
  font-size: var(--font-size-section-subtitle);
  color: var(--color-text-muted);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-regular);
  max-width: 600px;
  margin: 0 auto;
}

.section-padding {
  padding: var(--space-section-py) 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ══════════════════════════════════════════════
   4. BUTTON & INTERACTIVE COMPONENTS (min 44px)
   ══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  background-color: var(--color-primary);
  color: var(--color-bg-white) !important;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: background-color var(--duration-ui) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint);
  text-align: center;
  user-select: none;
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0.5px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 500;
  border-radius: 8px;
  border: 1.5px solid var(--color-primary);
  cursor: pointer;
  transition: background-color var(--duration-ui) var(--ease-out-quint),
              color var(--duration-ui) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint);
  text-align: center;
  user-select: none;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline:active {
  transform: translateY(0.5px);
  box-shadow: var(--shadow-sm);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  background-color: var(--color-blue-accent);
  color: var(--color-bg-white) !important;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-ui) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint);
  text-align: center;
  user-select: none;
}

.btn-blue:hover {
  background-color: var(--color-blue-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-glow-hover);
}

.btn-blue:active {
  transform: translateY(0.5px);
  box-shadow: var(--shadow-blue-glow);
}

.desktop-btn-blue {
  background-color: var(--color-blue-accent) !important;
  border-color: var(--color-blue-accent) !important;
  color: var(--color-bg-white) !important;
}

.desktop-btn-blue:hover {
  background-color: var(--color-blue-accent-light) !important;
  border-color: var(--color-blue-accent-light) !important;
  box-shadow: var(--shadow-blue-glow-hover) !important;
}

/* ══════════════════════════════════════════════
   5. NAVBAR & MOBILE DRAWER
   ══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--duration-ui) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint),
              border-color var(--duration-ui) var(--ease-out-quint),
              height var(--duration-ui) var(--ease-out-quint);
}

#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text-dark);
  transition: opacity var(--duration-micro) var(--ease-out-quint);
}

.logo:hover {
  opacity: 0.85;
}

.nav-logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-body);
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color var(--duration-ui) var(--ease-out-quint);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background-color: var(--color-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-ui) var(--ease-out-quint);
}

.nav-links a:hover {
  color: var(--color-text-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.9rem;
  padding: 10px 22px;
  min-height: 40px;
  white-space: nowrap;
}

/* Hamburger button - 44px touch target */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* At tablet & below (<= 1023px), collapse desktop nav to hamburger */
@media (max-width: 1023px) {
  .nav-links, .nav-cta {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
}

/* Off-Canvas Drawer Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden; /* Prevents off-canvas drawer from expanding page scrollWidth */
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100%;
  background-color: #ffffff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.drawer-logo img {
  height: 24px;
  width: auto;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: #e5e7eb;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-bottom: 32px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 16px;
}

.nav-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

/* ══════════════════════════════════════════════
   6. HERO SECTION
   ══════════════════════════════════════════════ */
#hero {
  padding-top: clamp(76px, 5.5vw, 88px);
  padding-bottom: clamp(32px, 4vw, 56px);
  background-color: var(--color-bg-white);
  overflow: hidden;
}

#hero .container {
  max-width: 1300px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(440px, 480px) 1.25fr;
  gap: clamp(16px, 3vw, 44px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

.hero-title {
  font-size: var(--font-size-hero-title);
  font-weight: var(--font-weight-semibold);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--color-text-body);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: var(--line-height-base);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 44px;
  font-size: 1.05rem;
  margin-bottom: 32px;
  background-color: var(--color-blue-accent) !important;
  border: 1px solid var(--color-blue-accent) !important;
  color: var(--color-bg-white) !important;
  border-radius: 8px;
  transition: background-color var(--duration-ui) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint);
}

.hero-cta:hover {
  background-color: var(--color-blue-accent-light) !important;
  border-color: var(--color-blue-accent-light) !important;
  box-shadow: var(--shadow-blue-glow-hover) !important;
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  width: 100%;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background-color var(--duration-ui) var(--ease-out-quint),
              transform var(--duration-ui) var(--ease-out-quint);
}

.stat-item:hover {
  background-color: rgba(0, 0, 0, 0.025);
  transform: translateY(-2px);
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-border);
}

.desktop-icon {
  display: none;
}

.desktop-stat-number {
  font-weight: 600;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-body);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.88rem);
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.3;
  text-align: center;
}

.hero-image-container {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image-container:hover {
  box-shadow: none;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-container img.hero-svg-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  aspect-ratio: 864 / 876;
  object-fit: contain;
  padding: 0;
  background: transparent;
  display: block;
  margin: 0 auto;
  transform: scale(1.16);
  transform-origin: center center;
  transition: transform 600ms var(--ease-out-expo);
}

.hero-image-container:hover img.hero-svg-img {
  transform: scale(1.18) translateY(-4px);
}

/* Tablet Hero (768px - 1023px) */
@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-image-container {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    overflow: hidden;
  }
  .hero-image-container img.hero-svg-img {
    margin: 0 auto;
    transform: scale(1.12);
  }
}

/* Mobile Hero (< 768px) */
@media (max-width: 767px) {
  #hero {
    padding-top: 84px;
    padding-bottom: 36px;
  }
  .mobile-hide {
    display: none;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .hero-content {
    display: contents;
  }
  .hero-image-container {
    order: 1;
    width: 100%;
    max-width: 440px;
    margin: 8px auto 4px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-image-container img.hero-svg-img {
    aspect-ratio: 864 / 876;
    width: 100%;
    max-width: min(96vw, 420px);
    height: auto;
    object-fit: contain;
    padding: 0;
    margin: 0 auto;
    transform: scale(1.22);
    transform-origin: center center;
  }
  .hero-title {
    order: 2;
    font-size: clamp(2.15rem, 7.5vw, 2.65rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
    text-align: center;
  }
  .hero-description {
    order: 3;
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--color-text-body);
    max-width: 340px;
    margin: 0 auto 18px;
    text-align: center;
  }
  .hero-stats {
    order: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
  }
  .stat-item {
    padding: 12px 6px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .stat-number {
    font-size: 1.35rem;
    margin-bottom: 2px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
  }
  .stat-label {
    font-size: 0.7rem;
    line-height: 1.25;
    color: var(--color-text-muted);
  }
  .hero-cta {
    order: 5;
    width: 100%;
    max-width: 300px;
    min-height: 48px;
    margin: 0 auto !important;
  }
}

/* ══════════════════════════════════════════════
   7. WHY US SECTION — TWO-COLUMN SCROLL SNAP & 3D STACK
   ══════════════════════════════════════════════ */
#why-us {
  background-color: var(--color-bg-white);
  position: relative;
  overflow: visible;
}

.why-eyebrow {
  display: inline-block;
  font-size: var(--font-size-eyebrow);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
  background: #f3f4f6;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

/* Two-column wrapper */
.why-snap-wrapper {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
  margin-top: 0;
  position: relative;
}

/* ──────────────────────────────────────────────
   LEFT COLUMN: Scroll Snap Steps & Details
   ────────────────────────────────────────────── */
.why-snap-track {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 13vh, 120px);
  padding-top: 24px;
  padding-bottom: 0;
  position: relative;
}

/* Individual Step Item Card */
.why-step-item {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  min-height: clamp(250px, 34vh, 340px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  outline: none;
  position: relative;
  opacity: 0.32;
  transform: scale(0.99);
}

.why-step-item:hover {
  opacity: 0.6;
  transform: scale(0.995);
}

/* Active Elevated Card with Drop Shadow — Acts as the subject */
.why-step-item.is-active {
  opacity: 1 !important;
  transform: scale(1) translateY(-2px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.09), 0 4px 14px -2px rgba(0, 0, 0, 0.04);
}

/* Low-Contrast Subtle Pill Badge (Subordinate to Title) */
.why-step-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #f8fafc;
  color: #94a3b8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  width: fit-content;
  transition: all 0.3s ease;
}

/* Active Elevated Card: Low-Contrast Neutral Tone, Regular Weight */
.why-step-item.is-active .why-step-tag {
  background: #f1f5f9;
  color: #475569;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.why-step-heading {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.why-step-body {
  font-size: var(--font-size-body);
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 20px;
}

.why-step-perks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.why-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #374151;
}

.why-perk-item svg {
  color: #111111;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   RIGHT COLUMN: Sticky 3D Isometric Stack Visual
   ────────────────────────────────────────────── */
.why-sticky-visual-col {
  position: sticky;
  top: 105px;
  align-self: flex-start;
  height: clamp(460px, 64vh, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.why-stack-canvas {
  position: relative;
  width: 100%;
  max-width: 442px;
  height: 442px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Soft ambient lighting behind stack */
.why-stack-ambient {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}

/* Container for layers */
.why-stack-layers {
  position: relative;
  width: 100%;
  height: 408px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual 3D plate */
.why-stack-layer {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  cursor: pointer;
  outline: none;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.why-layer-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.07));
  transition: filter 0.35s ease;
}

.why-stack-layer:hover:not(.is-active) {
  transform: translateX(-10px);
}

/* ──────────────────────────────────────────────
   Stack Coordinates & Overlap Tuning (Scaled down by 15%)
   Natural layer order: Top plate is z-index 6 down to plate 6 at z-index 1.
   Natural vertical level is preserved with no Y displacement.
   ────────────────────────────────────────────── */
.why-stack-layer[data-index="0"] { top: 10px; z-index: 6; }
.why-stack-layer[data-index="1"] { top: 66px; z-index: 5; }
.why-stack-layer[data-index="2"] { top: 122px; z-index: 4; }
.why-stack-layer[data-index="3"] { top: 178px; z-index: 3; }
.why-stack-layer[data-index="4"] { top: 234px; z-index: 2; }
.why-stack-layer[data-index="5"] { top: 290px; z-index: 1; }

/* Active State — Peeks out horizontally on the -X axis ONLY */
/* Vertically aligned in the exact same position, no Y movement, retains natural z-index */
.why-stack-layer.is-active {
  transform: translateX(-44px) !important;
}

.why-stack-layer.is-active .why-layer-img {
  filter: drop-shadow(-10px 12px 20px rgba(0, 0, 0, 0.15)) 
          drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
}


/* Ensure clones are strictly hidden on desktop */
@media (min-width: 1024px) {
  .why-step-item.is-clone {
    display: none !important;
  }
}

/* ──────────────────────────────────────────────
   RESPONSIVE: Tablet & Mobile
   ────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .why-sticky-visual-col {
    display: none !important;
  }

  .why-snap-wrapper {
    display: block;
    width: 100%;
    margin-top: 24px;
    position: relative;
    overflow: visible;
  }

  .why-snap-track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 12px 16px 24px;
    margin: 0 -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .why-snap-track::-webkit-scrollbar {
    display: none;
  }

  .why-step-item {
    flex: 0 0 calc(100vw - 52px);
    max-width: 340px;
    min-height: 270px;
    flex-shrink: 0;
    padding: 24px 20px;
    border-radius: 18px;
    opacity: 1 !important;
    transform: none !important;
    background: #ffffff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .why-step-heading {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .why-step-body {
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .why-step-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
  }
}

@media (max-width: 768px) {
  .why-snap-track {
    gap: 14px;
    padding: 10px 16px 20px;
  }

  .why-step-item {
    flex: 0 0 calc(100vw - 48px);
    max-width: 340px;
    min-height: 260px;
    padding: 22px 18px;
    border-radius: 16px;
    flex-shrink: 0;
  }

  .why-step-heading {
    font-size: 1.15rem;
  }

  .why-step-body {
    font-size: 0.9rem;
  }
}

.why-mobile-dots {
  display: none !important;
}

@media (max-width: 1023px) {
  .why-mobile-dots {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
   8. PROJECTS CAROUSEL & GALLERY
   ══════════════════════════════════════════════ */
#projects {
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 4px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 6px 0 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--duration-ui) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint),
              border-color var(--duration-ui) var(--ease-out-quint);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 0, 0, 0.16);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 650ms var(--ease-out-expo);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.32) 60%, transparent 100%);
  color: #ffffff;
  transition: padding-bottom var(--duration-ui) var(--ease-out-quint);
}

.gallery-card-title {
  font-size: 1.15rem;
  font-weight: var(--font-weight-semibold);
  color: #ffffff;
  margin-bottom: 2px;
  transition: transform var(--duration-ui) var(--ease-out-quint);
}

.gallery-card:hover .gallery-card-title {
  transform: translateY(-2px);
}

.gallery-card-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.carousel-arrow {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-micro) var(--ease-out-quint);
}

.carousel-arrow:hover {
  background-color: var(--color-text-dark);
  color: var(--color-bg-white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.left-arrow {
  left: 12px;
}

.right-arrow {
  right: 12px;
}

@media (min-width: 1300px) {
  .left-arrow {
    left: -20px;
  }
  .right-arrow {
    right: -20px;
  }
}

.carousel-dots,
.carousel-dot {
  display: none !important;
}

#gallery-carousel .carousel-dots,
#packages .carousel-dots,
#packages-carousel ~ .carousel-dots {
  display: none !important;
}

.carousel-dot {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  transition: all var(--transition-fast);
}

.carousel-dot.active::after {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

.gallery-footer {
  margin-top: 36px;
  text-align: center;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 24px;
  font-weight: 500;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-white);
  transition: all var(--transition-normal);
}

.gallery-link:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.desktop-gallery-btn {
  border-radius: 8px;
}

@media (max-width: 1023px) {
  .carousel-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  #projects .carousel-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  #projects .carousel-track {
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    padding: 8px 0 20px;
    gap: 16px;
  }
  .carousel-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }
  .gallery-card {
    width: 100%;
    margin: 0 auto;
  }
  .gallery-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }
  #gallery-carousel .carousel-dots {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
   9. MEETING / MID-PAGE CTA
   ══════════════════════════════════════════════ */
#meeting {
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.meeting-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.meeting-title {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-title-to-sub);
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.meeting-subtitle {
  font-size: var(--font-size-section-subtitle);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto var(--space-sub-to-content);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-regular);
}

.mobile-break {
  display: none;
}

@media (max-width: 767px) {
  .mobile-break {
    display: block;
  }
  .meeting-container {
    padding: 0 20px;
  }
  .meeting-subtitle {
    max-width: 350px;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: var(--space-sub-to-content);
  }
  .meeting-video-box {
    width: calc(100% - 16px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    border-radius: 16px;
  }
}

.btn-meeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 36px;
  font-size: 1rem;
}

.meeting-video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  margin-bottom: 28px;
  background-color: #000;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 600ms var(--ease-out-expo),
              transform 600ms var(--ease-out-expo),
              border-color 600ms var(--ease-out-expo);
}

.meeting-video-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 0, 0, 0.15);
}

.meeting-video-box img,
.meeting-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meeting-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(56px, 8vw, 80px);
  height: clamp(56px, 8vw, 80px);
  background-color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.meeting-video-play-btn svg {
  width: clamp(20px, 3vw, 28px);
  height: clamp(20px, 3vw, 28px);
  color: var(--color-text-dark);
  margin-left: 3px;
}

/* ══════════════════════════════════════════════
   10. PACKAGES & PRICING
   ══════════════════════════════════════════════ */
#packages {
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 8px;
}

.package-card,
.carousel-card.package-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 2.5vw, 32px) clamp(16px, 1.8vw, 22px);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  overflow: visible !important;
  text-align: left;
  transition: transform var(--duration-ui) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint),
              border-color var(--duration-ui) var(--ease-out-quint);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 0, 0, 0.16);
}

.package-card.featured {
  border: 1.5px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.package-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px -6px rgba(0, 0, 0, 0.12), 0 8px 20px -2px rgba(0, 0, 0, 0.05);
}

.package-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 20;
  white-space: nowrap;
}

.package-header {
  margin-bottom: 12px;
  text-align: left;
}

.package-tier-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 4px;
  display: block;
}

.package-name {
  font-size: 1.35rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  margin-bottom: 6px;
}

.package-price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.3vw, 2.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.package-unit {
  font-size: 0.88rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  margin-left: 2px;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 6px;
  line-height: 1.5;
  font-weight: var(--font-weight-regular);
  min-height: 42px;
}

.package-cta {
  margin-top: 20px;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: var(--font-weight-medium);
}

.package-accordions {
  margin-top: 16px;
  margin-bottom: 12px;
  border-top: 1px solid var(--color-border);
  text-align: left;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.accordion-item button {
  width: 100%;
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  text-align: left;
  transition: color var(--duration-micro) var(--ease-out-quint);
}

.accordion-item button:hover {
  color: var(--color-primary);
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text-dark);
  transition: transform var(--duration-ui) var(--ease-out-quint),
              color var(--duration-ui) var(--ease-out-quint);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--color-blue-accent);
}

.accordion-arrow {
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease-out-quint);
}

.accordion-item.active .accordion-content {
  max-height: 320px;
}

.accordion-inner {
  padding: 6px 0 14px;
  text-align: left;
}

.accordion-inner ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.accordion-inner li {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  text-align: left !important;
  display: block;
  position: relative;
  padding-left: 14px;
  margin: 0;
}

.accordion-inner li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.45;
}

.accordion-inner li strong {
  color: var(--color-text-dark);
  font-weight: 600;
  margin-right: 4px;
  display: inline;
}

@media (max-width: 1199px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .packages-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 24px 16px 20px;
    margin: 0 -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .packages-grid::-webkit-scrollbar {
    display: none;
  }
  .package-card,
  .carousel-card.package-card {
    flex: 0 0 calc(100vw - 48px);
    max-width: 340px;
    scroll-snap-align: center;
    padding: 24px 20px;
    overflow: hidden !important;
    text-align: left;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    background: #ffffff;
    position: relative;
  }
  .package-card.featured {
    padding-top: 32px;
  }
  .package-popular-badge {
    position: absolute;
    top: 10px;
    right: 14px;
    left: auto;
    transform: none;
    padding: 4px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
  .package-desc {
    min-height: auto;
    margin-bottom: 12px;
  }
  #packages .carousel-dots {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
   11. TESTIMONIALS
   ══════════════════════════════════════════════ */
#testimonials {
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.testimonials-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.testimonials-filter-pill {
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 99px;
  background-color: #ffffff;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration-micro) var(--ease-out-quint),
              color var(--duration-micro) var(--ease-out-quint),
              border-color var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-micro) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint);
}

.testimonials-filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.testimonials-filter-pill.active {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 200px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--duration-ui) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint),
              border-color var(--duration-ui) var(--ease-out-quint);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 0, 0, 0.16);
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.testimonial-quote-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: var(--font-weight-regular);
  text-align: center;
}

.testimonial-client-name {
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.testimonial-client-name::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--color-blue-accent);
}

.reviews-footer {
  margin-top: 48px;
  text-align: center;
}

.btn-reviews-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background-color: #ffffff;
  color: var(--color-text-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--duration-ui) var(--ease-out-quint),
              color var(--duration-ui) var(--ease-out-quint),
              box-shadow var(--duration-ui) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint);
}

.btn-reviews-more:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

#testimonials .carousel-track {
  display: flex;
  justify-content: center;
  overflow: visible;
  padding: 10px 0 20px;
}

#testimonials .carousel-card.testimonial-card {
  flex: 0 1 680px;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

#testimonials .carousel-dots {
  display: none !important;
}

@media (max-width: 767px) {
  .filter-bar,
  .testimonials-filter-bar {
    display: none !important;
  }
  #testimonials .carousel-wrapper {
    margin: 0;
    padding: 0;
  }
  #testimonials .carousel-track {
    display: flex;
    justify-content: center;
    padding: 8px 0 16px;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  #testimonials .carousel-card.testimonial-card {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 26px 20px;
    min-height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
  }
  #testimonials .carousel-dots {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
   12. CONTACT SECTION & LEAD FORM
   ══════════════════════════════════════════════ */
#contact {
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.trust-column {
  display: none !important;
}

.trust-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: var(--font-weight-semibold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.trust-card-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.trust-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.form-wrapper {
  background: var(--color-bg-white);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  width: 100%;
  transition: box-shadow var(--duration-ui) var(--ease-out-quint);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: var(--font-weight-regular);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px; /* Prevents auto-zoom on iOS */
  color: var(--color-text-dark);
  background: #ffffff;
  outline: none;
  transition: border-color var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-micro) var(--ease-out-quint);
}

.form-group textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;
  color: var(--color-text-dark);
  resize: vertical;
  outline: none;
  transition: border-color var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-micro) var(--ease-out-quint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.form-group input:active,
.form-group select:active,
.form-group textarea:active {
  outline: none !important;
  outline-offset: 0 !important;
  border-color: rgba(42, 82, 161, 0.3) !important;
  box-shadow: none !important;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--color-error);
}

.field-error, .error-message {
  font-size: 0.78rem;
  color: var(--color-error);
  display: none;
}

.form-group.error .field-error,
.form-group.error .error-message {
  display: block;
}

.desktop-form-submit {
  min-height: 48px;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.form-wrapper.is-success {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  transition: all 0.35s ease;
}

.form-success-wrapper {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 16px 8px;
}

.asr-success-card {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border-radius: 44px;
  padding: 60px 48px 52px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 
    0 4px 12px -2px rgba(0, 0, 0, 0.05),
    0 12px 28px -4px rgba(0, 0, 0, 0.08),
    0 28px 56px -10px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  animation: asrCardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  overflow: hidden;
}

/* Micro-burst confetti particles */
.asr-burst-wrap {
  position: absolute;
  top: 98px;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 1;
}

.asr-confetti-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(0, 0) scale(0);
  animation: asrParticleShoot 0.85s cubic-bezier(0.12, 0.8, 0.32, 1) 0.15s forwards;
}

.asr-confetti-particle:nth-child(1) { --tx: -48px; --ty: -38px; background: #10B981; }
.asr-confetti-particle:nth-child(2) { --tx: -12px; --ty: -55px; background: #3B82F6; width: 5px; height: 5px; }
.asr-confetti-particle:nth-child(3) { --tx: 36px; --ty: -46px; background: #F59E0B; }
.asr-confetti-particle:nth-child(4) { --tx: 52px; --ty: -16px; background: #10B981; width: 4px; height: 4px; }
.asr-confetti-particle:nth-child(5) { --tx: 44px; --ty: 28px; background: #06B6D4; }
.asr-confetti-particle:nth-child(6) { --tx: -4px; --ty: 48px; background: #F59E0B; width: 5px; height: 5px; }
.asr-confetti-particle:nth-child(7) { --tx: -42px; --ty: 26px; background: #10B981; }
.asr-confetti-particle:nth-child(8) { --tx: -55px; --ty: -10px; background: #3B82F6; width: 4px; height: 4px; }

/* Icon with pulse wave and bounce entrance */
.asr-icon-container {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asr-pulse-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0) 72%);
  animation: asrPulseBurst 1.8s ease-out infinite;
}

.asr-check-img {
  width: 74px;
  height: 74px;
  display: block;
  position: relative;
  z-index: 2;
  transform: scale(0);
  animation: asrCheckBounce 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s forwards;
}

/* Staggered text animations */
.asr-success-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(12px);
  animation: asrTextSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

.asr-success-desc {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #3C393A;
  line-height: 1.55;
  max-width: 530px;
  margin: 0 auto 36px;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(12px);
  animation: asrTextSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards;
}

.asr-success-footer {
  font-family: 'Google Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #3C393A;
  font-weight: 400;
  opacity: 0;
  transform: translateY(12px);
  animation: asrTextSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.42s forwards;
}

.asr-success-phone-link {
  color: #2563EB;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  padding: 2px 4px;
  transition: all 0.2s ease;
}

.asr-success-phone-link:hover {
  text-decoration: underline;
  background: rgba(37, 99, 235, 0.08);
}

/* Keyframes */
@keyframes asrCardEntrance {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes asrCheckBounce {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-20deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.15) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes asrPulseBurst {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes asrParticleShoot {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--tx) * 1.3), calc(var(--ty) * 1.3)) scale(0);
  }
}

@keyframes asrTextSlideUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .form-success-wrapper {
    padding: 12px 4px;
  }
  .asr-success-card {
    border-radius: 32px;
    padding: 44px 24px 38px;
    box-shadow: 
      0 4px 12px -2px rgba(0, 0, 0, 0.05),
      0 12px 28px -4px rgba(0, 0, 0, 0.08),
      0 20px 40px -8px rgba(0, 0, 0, 0.08);
  }
  .asr-burst-wrap {
    top: 76px;
  }
  .asr-icon-container {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
  }
  .asr-check-img {
    width: 64px;
    height: 64px;
  }
  .asr-success-title {
    font-size: 1.85rem;
    margin-bottom: 12px;
  }
  .asr-success-desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }
  .asr-success-footer {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-wrapper {
    padding: 24px 18px;
  }
}

/* ══════════════════════════════════════════════
   13. FOOTER
   ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   13. FOOTER (Ref: Desktop - 1.svg)
   ══════════════════════════════════════════════ */
.footer {
  background-color: var(--color-bg-white, #ffffff);
  padding: 0 clamp(16px, 1.5vw, 27px) clamp(32px, 3vw, 53px);
  position: relative;
  z-index: 10;
}

.footer-card {
  max-width: 1866px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 0 0 100px 100px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16), 0 15px 45px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden; /* Clips watermark along the 100px curved bottom corners like mask0 */
  padding: clamp(56px, 6vw, 111px) clamp(24px, 5.2vw, 100px) clamp(40px, 4vw, 64px);
  min-height: 656px;
  display: flex;
  flex-direction: column;
}

/* Big ASR Watermark in #DBDBDB matching Desktop - 1.svg exact coordinates (left: 11.7%, width: 73.3%, top: 32%) */
.footer-watermark {
  position: absolute;
  left: 11.7%;
  top: 32.2%;
  width: 73.3%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 1;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: clamp(40px, 6vw, 120px);
  align-items: start;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-headline-col {
  max-width: 720px;
}

.footer-headline {
  font-family: var(--font-heading, 'Google Sans', sans-serif);
  font-size: clamp(1.45rem, 1.85vw, 1.95rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.38;
  letter-spacing: -0.015em;
  margin: 0;
  white-space: normal;
}

.footer-nav-col {
  min-width: 110px;
}

.footer-contact-col {
  min-width: 320px;
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--font-heading, 'Google Sans', sans-serif);
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  color: #3C393A;
  font-family: var(--font-body, 'Google Sans', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-link:hover {
  color: #000000;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #3C393A;
  font-family: var(--font-body, 'Google Sans', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.footer-contact-icon.mail-icon {
  width: 20px;
  height: 20px;
}

.footer-contact-text a {
  color: #3C393A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-text a:hover {
  color: #000000;
}

.footer-company-row {
  display: block;
}

.footer-instagram-mobile {
  display: none !important;
}

.footer-nav-item-mobile {
  display: none !important;
}

.footer-bottom-row {
  position: absolute;
  right: clamp(24px, 4.8vw, 89px);
  bottom: clamp(24px, 3.5vw, 64px);
  z-index: 3;
}

.footer-instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #757575;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-instagram-btn:hover {
  color: #000000;
  transform: scale(1.15) rotate(3deg);
}

/* Responsive Styles */
@media (max-width: 1080px) {
  .footer-card {
    border-radius: 0 0 64px 64px;
    padding: clamp(44px, 5vw, 80px) clamp(24px, 4vw, 48px) 40px;
    min-height: auto;
  }
  
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact-col {
    max-width: 100%;
  }

  .footer-watermark {
    left: 10%;
    width: 90%;
    top: 35%;
    opacity: 0.9;
  }

  .footer-bottom-row {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
  }
}

/* ══════════════════════════════════════════════
   EXACT MOBILE FOOTER (Ref: iPhone 16 & 17 Pro Max - 7.svg)
   ══════════════════════════════════════════════ */
@media (max-width: 767px) {
  .footer {
    padding: 0 0 clamp(20px, 5.5vw, 24px);
    background-color: var(--color-bg-white, #ffffff);
    position: relative;
    z-index: 10;
  }

  .footer-card {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.22);
    padding: 42px clamp(20px, 6vw, 32px) 36px clamp(20px, 5.5vw, 28px);
    min-height: 290px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-sizing: border-box;
  }

  .footer-content-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .footer-headline-col {
    max-width: 100%;
    width: 100%;
    margin-bottom: 39px;
  }

  .footer-headline {
    font-family: var(--font-heading, 'Google Sans', sans-serif);
    font-size: clamp(0.82rem, 3.65vw, 1.03rem);
    line-height: 1.44;
    letter-spacing: -0.015em;
    color: #000000;
    margin: 0;
    font-weight: 600;
    white-space: normal;
  }

  .footer-nav-col {
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
  }

  .footer-company-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-col-title {
    font-family: var(--font-heading, 'Google Sans', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.2;
  }

  .footer-instagram-btn.footer-instagram-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    color: #1E1E1E;
    border-radius: 4px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  }

  .footer-instagram-btn.footer-instagram-mobile:hover {
    transform: scale(1.12);
  }

  .footer-instagram-btn.footer-instagram-mobile svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  .footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-nav-list li {
    line-height: 24px;
    height: 24px;
    display: flex;
    align-items: center;
  }

  .footer-nav-item-mobile {
    display: flex !important;
  }

  .footer-nav-link {
    color: #818181;
    font-family: var(--font-body, 'Google Sans', sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .footer-nav-link:hover {
    color: #000000;
    transform: translateX(3px);
  }

  .footer-contact-col {
    display: none !important;
  }

  .footer-bottom-row {
    display: none !important;
  }

  .footer-watermark {
    position: absolute;
    left: 0;
    top: auto;
    bottom: clamp(-46px, -10vw, -36px);
    width: 100%;
    max-width: none;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════
   14. SHARED FILTER BAR & PILLS (FOR PROJECTS & TESTIMONIALS)
   ══════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 40px 16px 8px;
  flex-wrap: wrap;
}

.filter-pill {
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration-micro) var(--ease-out-quint),
              color var(--duration-micro) var(--ease-out-quint),
              box-shadow var(--duration-micro) var(--ease-out-quint),
              transform var(--duration-micro) var(--ease-out-quint);
}

.filter-pill:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════
   15. ANIMATIONS, UTILITIES & REVEAL
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
}

html.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.desktop-hide {
  display: none !important;
}

@media (max-width: 1023px) {
  .desktop-hide {
    display: inline-block !important;
  }
}

/* ══════════════════════════════════════════════
   16. LARGE DESKTOP ENHANCEMENTS (>= 1440px)
   ══════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
  #hero .hero-title {
    font-size: 4rem;
  }
  #hero .hero-description {
    font-size: 1.35rem;
    max-width: 560px;
  }
  .why-snap-wrapper {
    gap: 72px;
  }
}

/* ══════════════════════════════════════════════
   17. ACCESSIBILITY & REDUCED MOTION
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-image-container:hover img,
  .gallery-card:hover img,
  .package-card:hover,
  .stat-item:hover,
  .why-step-item:hover,
  .why-stack-layer:hover {
    transform: none !important;
  }
}

/* Ensure all carousel dot indicators are completely hidden in mobile/tablet view */
@media (max-width: 1024px) {
  .carousel-dots,
  .carousel-dot,
  .why-mobile-dots {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
