/* ═══════════════════════════════════════════════════════════════
   LEEVS.IN — Premium Website Stylesheet
   Author: Leela Srinivas Atla
   Version: 1.0
═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand Colors */
  --clr-green-400: #4ade80;
  --clr-green-500: #22c55e;
  --clr-green-600: #16a34a;
  --clr-green-700: #15803d;
  --premium-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);

  /* Light Mode Tokens */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-tertiary: #f1f3f7;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fb;
  --bg-overlay: rgba(255,255,255,0.85);

  --text-primary: #0d1117;
  --text-secondary: #3d4450;
  --text-muted: #6b7280;
  --text-inverse: #ffffff;

  --border-light: #e5e7eb;
  --border-medium: #d1d5db;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);

  --navbar-bg: rgba(255,255,255,0.92);
  --navbar-border: rgba(229,231,235,0.8);

  --ribbon-bg: #0d1117;
  --ribbon-text: #ffffff;

  --hero-text: #ffffff;

  --input-bg: #f8f9fb;
  --input-border: #e5e7eb;
  --input-focus: var(--clr-green-500);

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-px: clamp(1.25rem, 4vw, 3rem);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.15s var(--ease-smooth);
  --transition-base: 0.25s var(--ease-smooth);
  --transition-slow: 0.4s var(--ease-smooth);
}

/* Dark Mode Tokens */
[data-theme="dark"] {
  --bg-primary: #0a0d12;
  --bg-secondary: #0f1318;
  --bg-tertiary: #151b24;
  --bg-card: #111620;
  --bg-card-hover: #161c28;
  --bg-overlay: rgba(10,13,18,0.88);

  --text-primary: #f0f2f5;
  --text-secondary: #a8b3c4;
  --text-muted: #6b7a90;
  --text-inverse: #0a0d12;

  --border-light: #1e2530;
  --border-medium: #252e3d;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.35);

  --navbar-bg: rgba(10,13,18,0.94);
  --navbar-border: rgba(30,37,48,0.9);

  --ribbon-bg: #0d1117;
  --ribbon-text: #f0f2f5;

  --input-bg: #111620;
  --input-border: #1e2530;
  --input-focus: var(--clr-green-400);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── SKIP LINK (ACCESSIBILITY) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-green-500);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ─── SECTION BASE ─── */
.section {
  padding-block: var(--section-py);
}

/* ─── SECTION TYPOGRAPHY ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-green-600);
  margin-bottom: 0.75rem;
}
[data-theme="dark"] .section-label { color: var(--clr-green-400); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--clr-green-600);
}
[data-theme="dark"] .section-title em { color: var(--clr-green-400); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--premium-gradient);
  background-size: 200% auto;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(22,163,74,0.25);
  transition: background-position 0.4s ease, transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn--primary:hover {
  background-position: right center;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,0.35);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}
.btn--ghost:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--premium-gradient);
  background-size: 200% auto;
  color: #fff;
  border-color: transparent;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  transition: background-position 0.4s ease, transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn--nav:hover {
  background-position: right center;
  border-color: transparent;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.btn--full { width: 100%; }

.btn svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════
   RIBBON — ANIMATED MARQUEE
═══════════════════════════════════════════════════════════════ */
.ribbon {
  background: var(--ribbon-bg);
  color: var(--ribbon-text);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ribbon__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ribbonScroll 28s linear infinite;
  will-change: transform;
}

.ribbon__item {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 1.5rem;
  color: var(--ribbon-text);
}

.ribbon__item strong, .ribbon__item b {
  color: var(--clr-green-400);
}

.ribbon__sep {
  color: var(--clr-green-500);
  font-size: 0.6rem;
  opacity: 0.6;
}

@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ribbon:hover .ribbon__track {
  animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 36px;
  z-index: 999;
  background: var(--navbar-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--navbar-border);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

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

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.navbar__logo:hover .logo-svg { transform: rotate(-8deg) scale(1.05); }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

/* Desktop Nav */
.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a {
  display: block;
  padding: 0.4rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clr-green-500);
  transform: translateX(-50%);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}
.navbar__nav a:hover { color: var(--text-primary); }
.navbar__nav a:hover::after { width: 60%; }

/* Controls */
.navbar__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
  transform: rotate(15deg);
}
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }

[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-smooth), opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 1.25rem var(--container-px);
  gap: 0.25rem;
  animation: slideDown 0.25s var(--ease-smooth);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-menu a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.mobile-menu .btn--primary {
  margin-top: 0.5rem;
  display: flex;
  width: 100%;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - 36px - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px) saturate(0.85);
  transform: scale(1.04);
  transition: filter var(--transition-slow);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,13,18,0.75) 0%,
    rgba(10,13,18,0.55) 50%,
    rgba(10,13,18,0.70) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(3rem, 8vh, 6rem);
  max-width: 860px;
  margin-inline: auto;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: #86efac;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero__badge svg { width: 12px; height: 12px; fill: #86efac; }

/* Headline */
.hero__headline {
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.hero__headline-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
  font-style: italic;
}

.hero__headline-main {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero__headline-main em {
  font-style: italic;
  color: var(--clr-green-400);
  display: block;
}

/* Subtext */
.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}
.hero__subtext strong {
  color: var(--clr-green-400);
  font-weight: 700;
}

/* CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__ctas .btn--ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.hero__ctas .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  max-width: 520px;
  margin-inline: auto;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  flex: 1;
  min-width: 100px;
}

.hero__stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero__stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-secondary);
  border-block: 1px solid var(--border-light);
  padding-block: 2rem;
}

.trust-bar__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trust-bar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.trust-bar__item:hover {
  color: var(--clr-green-600);
  transform: translateY(-3px);
}
[data-theme="dark"] .trust-bar__item:hover { color: var(--clr-green-400); }
.trust-bar__item svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

/* ═══════════════════════════════════════════════════════════════
   VALUE PROPOSITION
═══════════════════════════════════════════════════════════════ */
.value-prop {
  background: var(--bg-primary);
}

.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.value-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clr-green-600);
  margin-top: 2px;
}
[data-theme="dark"] .value-list li svg { color: var(--clr-green-400); }

/* Visual */
.value-prop__img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.value-prop__img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}
.value-prop__img-frame:hover .value-prop__img { transform: scale(1.02); }

.value-prop__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--premium-gradient);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.value-prop__badge svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.07); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.service-card:hover .service-card__overlay { opacity: 1; }

.service-card__body {
  padding: 1.375rem 1.5rem 1.625rem;
}

.service-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}
.service-card:hover .service-card__body h3 { color: var(--clr-green-600); }
[data-theme="dark"] .service-card:hover .service-card__body h3 { color: var(--clr-green-400); }

.service-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   BEFORE / AFTER SLIDER
═══════════════════════════════════════════════════════════════ */
.before-after {
  background: var(--bg-primary);
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  user-select: none;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-xl);
  cursor: ew-resize;
  max-width: 1000px;
  margin-inline: auto;
  touch-action: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-label--after {
  right: 1rem;
  background: var(--clr-green-600);
  color: #fff;
}

.ba-label--before {
  left: 1rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.ba-handle__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.ba-handle__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.ba-handle__grip svg {
  width: 16px;
  height: 16px;
  stroke: #0f172a;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */
.pricing {
  background: var(--bg-secondary);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 3rem;
  align-items: stretch;
}

/* Base Card */
.pricing-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.pricing-card--standard {
  opacity: 0.72;
  filter: grayscale(0.1);
}

.pricing-card--standard .pricing-card__top {
  background: var(--bg-tertiary);
  padding: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card--standard .pricing-card__features {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.pricing-card--standard .pricing-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-card--standard .pricing-card__features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Launch Card */
.pricing-card--launch {
  border: 2px solid var(--clr-green-500);
  box-shadow: 0 8px 40px rgba(34,197,94,0.15), var(--shadow-lg);
  transform: scale(1.02);
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { 
    box-shadow: 0 8px 30px rgba(34,197,94,0.15), var(--shadow-lg); 
    border-color: var(--clr-green-500); 
  }
  100% { 
    box-shadow: 0 8px 50px rgba(34,197,94,0.4), 0 0 20px rgba(34,197,94,0.2); 
    border-color: #86efac; 
  }
}

.pricing-card__ribbon {
  background: var(--premium-gradient);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

.pricing-card--launch .pricing-card__top {
  background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, rgba(22,163,74,0.03) 100%);
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(34,197,94,0.15);
}

.pricing-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
}

.pricing-card__original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-green-600);
  margin-top: 0.4rem;
  margin-right: 0.1rem;
}
[data-theme="dark"] .price-currency { color: var(--clr-green-400); }

.price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1.5rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 0.3rem;
}

.pricing-card__top > p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card__savings {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-green-600) !important;
  background: rgba(34,197,94,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
}
[data-theme="dark"] .pricing-card__savings { color: var(--clr-green-400) !important; }

.pricing-card--launch .pricing-card__features {
  padding: 1.5rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.pricing-card--launch .pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-card--launch .pricing-card__features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--clr-green-600);
  margin-top: 2px;
}
[data-theme="dark"] .pricing-card--launch .pricing-card__features li svg { color: var(--clr-green-400); }

.pricing-card .btn--primary {
  margin: 0 2rem 1.25rem;
  width: calc(100% - 4rem);
}

.pricing-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0 2rem 1.25rem;
}
.pricing-card__note svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.pricing-card__note strong { color: var(--clr-green-600); }
[data-theme="dark"] .pricing-card__note strong { color: var(--clr-green-400); }

/* ─── COUNTDOWN TIMER ─── */
.countdown {
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  max-width: 500px;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.countdown__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 64px;
}

.countdown__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  background: var(--bg-tertiary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  min-width: 64px;
  text-align: center;
  display: block;
}

.countdown__sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown__colon {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-green-500);
  margin-bottom: 1.25rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-primary);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}
.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.testimonial-card > p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.testimonial-card footer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
}

.testimonial-card footer cite {
  font-style: normal;
  display: block;
}

.testimonial-card footer cite span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-card footer > div > span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq {
  background: var(--bg-secondary);
}

.faq__list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.faq__item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}
.faq__item.open {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 4px 20px rgba(34,197,94,0.08);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition-fast);
}
.faq__question:hover { color: var(--clr-green-600); }
[data-theme="dark"] .faq__question:hover { color: var(--clr-green-400); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-smooth);
}
.faq__item.open .faq__icon { transform: rotate(180deg); }

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border-light);
}
.faq__answer[hidden] { display: none; }
.faq__answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 1rem;
}
.faq__answer strong { color: var(--clr-green-600); font-weight: 700; }
[data-theme="dark"] .faq__answer strong { color: var(--clr-green-400); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--bg-primary);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  color: var(--text-primary);
}
.contact__channel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.contact__channel--whatsapp {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.04);
}
.contact__channel--whatsapp:hover {
  border-color: var(--clr-green-500);
  box-shadow: 0 4px 20px rgba(34,197,94,0.12);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__channel--whatsapp .contact__channel-icon {
  background: #25d366;
}
.contact__channel-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-secondary);
}
.contact__channel--whatsapp .contact__channel-icon svg { color: #fff; }

.contact__channel strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1px;
}

.contact__channel span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.social-link:hover {
  color: var(--clr-green-600);
  background: rgba(34,197,94,0.07);
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-3px);
}
[data-theme="dark"] .social-link:hover { color: var(--clr-green-400); }
.social-link svg { width: 18px; height: 18px; }

/* Contact Form */
.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
  background: var(--bg-card);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Form Success */
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  color: var(--clr-green-600);
  font-weight: 600;
  font-size: 0.9rem;
}
[data-theme="dark"] .form-success { color: var(--clr-green-400); }
.form-success[hidden] { display: none; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col a,
.footer__col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  line-height: 1.5;
}

.footer__col a:hover {
  color: var(--clr-green-600);
  padding-left: 4px;
}
[data-theme="dark"] .footer__col a:hover { color: var(--clr-green-400); }

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer__bottom a:hover { color: var(--clr-green-600); }
[data-theme="dark"] .footer__bottom a:hover { color: var(--clr-green-400); }

/* ═══════════════════════════════════════════════════════════════
   STICKY WHATSAPP FAB
═══════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25d366;
  color: #fff;
  padding: 0.875rem 1.375rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
  color: #fff;
}
.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.whatsapp-fab__label {
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services__grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services__grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services__grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services__grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services__grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services__grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.testimonials__grid .testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials__grid .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonials__grid .testimonial-card:nth-child(3) { transition-delay: 0.25s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════════════════════ */

/* ─── TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .value-prop__grid { gap: 2.5rem; }
  .pricing__grid { grid-template-columns: 1fr 1.1fr; gap: 1.25rem; }
}

/* ─── TABLET PORTRAIT (≤ 860px) ─── */
@media (max-width: 860px) {
  .navbar__nav { display: none; }
  .hamburger { display: flex; }
  .btn--nav { display: none; }

  .value-prop__grid { grid-template-columns: 1fr; }
  .value-prop__visual { order: -1; }
  .value-prop__badge { bottom: 0.5rem; right: 0.5rem; }

  .contact__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-card--launch { transform: none; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .ba-slider { aspect-ratio: 16/9; }

  .hero__stats { gap: 0; padding: 1rem 1.25rem; }
  .hero__stat { padding: 0 1.25rem; }
}

/* ─── MOBILE (≤ 600px) ─── */
@media (max-width: 600px) {
  :root {
    --section-py: clamp(3rem, 8vw, 4.5rem);
  }

  .ribbon__item { padding: 0 1rem; font-size: 0.75rem; }

  .hero__headline-main { letter-spacing: -0.015em; }

  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }

  .hero__stats {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .hero__stat-divider {
    width: 80%;
    height: 1px;
  }
  .hero__stat { padding: 0; }

  .services__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .pricing__grid { grid-template-columns: 1fr; }

  .ba-slider { aspect-ratio: 4/3; }

  .countdown__grid { gap: 0.25rem; }
  .countdown__unit { min-width: 52px; }
  .countdown__num { min-width: 52px; font-size: 1.75rem; padding: 0.4rem 0.6rem; }
  .countdown__colon { font-size: 1.5rem; }

  .whatsapp-fab__label { display: none; }
  .whatsapp-fab { padding: 0.875rem; border-radius: 50%; }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  .contact__form-wrap { padding: 1.5rem 1.25rem; }
}

/* ─── VERY SMALL (≤ 380px) ─── */
@media (max-width: 380px) {
  .hero__badge { font-size: 0.68rem; }
  .logo-text { font-size: 1.3rem; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─── PRINT ─── */
@media print {
  .ribbon, .navbar, .whatsapp-fab, .hero__scroll { display: none; }
  body { font-size: 12pt; }
  .hero { min-height: auto; padding-block: 2rem; }
  .hero__bg { display: none; }
  .hero__content { color: #000; }
}


/* ═══════════════════════════════════════════════════════════════
   BEFORE/AFTER SLIDER — FIXED DUAL CLIP-PATH
   Both sides fill 100% of the container.
   AFTER is clipped from the left (shows right portion).
   BEFORE is clipped from the right (shows left portion).
   Handle controls both simultaneously — zero bleed.
═══════════════════════════════════════════════════════════════ */

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

/* Both sides — same size, stacked */
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* KEY FIX: clip BOTH sides — no z-index bleed */
.ba-after {
  clip-path: inset(0 0 0 50%);   /* show right half — after */
}
.ba-before {
  clip-path: inset(0 50% 0 0);   /* show left half — before */
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
.ba-label--after {
  right: 1rem;
  background: var(--clr-green-600);
  color: #fff;
}
.ba-label--before {
  left: 1rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.ba-handle__line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2.5px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
}
.ba-handle__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.ba-handle__grip svg {
  width: 14px;
  height: 14px;
  stroke: #374151;
}

/* Hint text */
.ba-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ba-hint svg { stroke: var(--text-muted); flex-shrink: 0; }

/* ── AFTER SIDE INTERNALS (Premium Design) ── */
.ba-af-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 48px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
  position: relative;
  z-index: 2;
}
.ba-af-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1117;
}
.ba-af-links {
  display: flex;
  gap: 1.5rem;
}
.ba-af-links a {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.ba-af-cta {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
}
.ba-af-hero {
  position: relative;
  height: calc(100% - 48px);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  overflow: hidden;
}
.ba-af-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=1100&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.42) saturate(0.8);
  transform: scale(1.06);
}
.ba-af-content {
  position: relative;
  z-index: 1;
  max-width: 380px;
}
.ba-af-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #86efac;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ba-af-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.ba-af-headline em {
  font-style: italic;
  color: #4ade80;
}
.ba-af-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ba-af-sub strong { color: #4ade80; }
.ba-af-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ba-af-btn-primary {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  box-shadow: 0 4px 16px rgba(22,163,74,0.35);
}
.ba-af-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  backdrop-filter: blur(6px);
}

/* Floating cards */
.ba-af-cards {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}
.ba-af-card {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  width: 165px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ba-af-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-af-card-icon svg { width: 14px; height: 14px; }
.ba-af-card h4 {
  font-size: 0.62rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 1px;
  font-family: var(--font-sans);
}
.ba-af-card p {
  font-size: 0.54rem;
  color: #6b7280;
  line-height: 1.3;
  font-family: var(--font-sans);
}

/* Stats bar */
.ba-af-stats {
  position: absolute;
  bottom: 1.25rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.65rem 1.25rem;
  z-index: 2;
}
.ba-af-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  gap: 0.1rem;
}
.ba-af-stat strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ba-af-stat span {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
}
.ba-af-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}

/* ── BEFORE SIDE INTERNALS (Ugly old site) ── */
.ba-before {
  background: #c8d8e8;
  font-family: 'Courier New', monospace;
}
.ba-bf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(to right,#000080,#0000cd);
  border-bottom: 4px solid #ffff00;
}
.ba-bf-logo {
  font-size: clamp(0.65rem, 1.5vw, 0.9rem);
  font-weight: 700;
  color: #ffff00;
  text-shadow: 2px 2px 0 #ff0000;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
}
.ba-bf-header-right {
  font-size: 0.55rem;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-weight: 700;
}
.ba-bf-marquee-bar {
  background: #ff0000;
  padding: 0.15rem 0;
  overflow: hidden;
}
.ba-bf-marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: baBfScroll 10s linear infinite;
  font-size: 0.56rem;
  font-weight: 700;
  color: #ffff00;
  padding-left: 100%;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@keyframes baBfScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ba-bf-nav {
  background: #808080;
  display: flex;
  border-bottom: 2px solid #404040;
  flex-wrap: wrap;
}
.ba-bf-nav a {
  display: block;
  padding: 0.25rem 0.55rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  background: #808080;
  border-right: 1px solid #404040;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.ba-bf-nav a:first-child { background: #404040; }
.ba-bf-body {
  display: flex;
  height: calc(100% - 72px);
  overflow: hidden;
}
.ba-bf-sidebar {
  width: clamp(80px, 12%, 110px);
  flex-shrink: 0;
  background: #d3d3d3;
  border-right: 2px inset #808080;
  padding: 0.4rem;
  overflow: hidden;
}
.ba-bf-sidebar-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: #000080;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 0.35rem;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
}
.ba-bf-sidebar ul {
  padding-left: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  list-style: disc;
}
.ba-bf-sidebar ul li {
  font-size: 0.55rem;
  color: #0000ff;
  text-decoration: underline;
  cursor: pointer;
  font-family: 'Courier New', monospace;
}
.ba-bf-blink {
  margin-top: 0.4rem;
  background: #ff6600;
  color: #ffff00;
  text-align: center;
  padding: 0.25rem;
  font-size: 0.52rem;
  font-weight: 700;
  border: 2px solid #ff0000;
  animation: baBfBlink 0.8s step-end infinite;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
}
@keyframes baBfBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}
.ba-bf-ie-note {
  margin-top: 0.35rem;
  font-size: 0.48rem;
  color: #000080;
  font-family: 'Courier New', monospace;
  text-align: center;
  border: 1px dashed #000080;
  padding: 0.2rem;
  line-height: 1.4;
}
.ba-bf-main {
  flex: 1;
  overflow: hidden;
  padding: 0.4rem 0.5rem;
  background: #c8d8e8;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ba-bf-welcome {
  font-size: clamp(0.65rem, 1.8vw, 0.95rem);
  font-weight: 700;
  color: #ff0000;
  text-align: center;
  text-shadow: 2px 2px 0 #ffff00;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ba-bf-construction {
  background: #ffff00;
  border: 2px dashed #ff0000;
  padding: 0.2rem 0.4rem;
  font-size: 0.55rem;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  text-align: center;
}
.ba-bf-img-row {
  display: flex;
  gap: 0.3rem;
  flex: 0 0 auto;
}
.ba-bf-img-box {
  flex: 1;
  background: #808080;
  border: 3px inset #404040;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.ba-bf-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(2.2) contrast(1.3) hue-rotate(25deg);
  opacity: 0.65;
}
.ba-bf-img-cap {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: #ff0000;
  color: #ffff00;
  font-size: 0.48rem;
  font-weight: 700;
  text-align: center;
  padding: 0.1rem;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
}
.ba-bf-text {
  font-size: 0.58rem;
  color: #000;
  line-height: 1.45;
  font-family: 'Courier New', monospace;
  background: #fff;
  border: 1px solid #808080;
  padding: 0.3rem;
}
.ba-bf-text b { color: #ff0000; }
.ba-bf-link {
  color: #0000ff;
  text-decoration: underline;
  cursor: pointer;
}
.ba-bf-counter {
  background: #000080;
  color: #00ff00;
  font-size: 0.55rem;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 0.18rem;
  letter-spacing: 0.08em;
  border: 1px solid #00ff00;
}
.ba-bf-buttons {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.ba-bf-btn {
  background: linear-gradient(to bottom, #e0e0e0, #a0a0a0);
  color: #000;
  border: 2px outset #d0d0d0;
  padding: 0.2rem 0.5rem;
  font-size: 0.56rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}
.ba-bf-btn--ugly {
  background: linear-gradient(to bottom, #ff6600, #cc3300);
  color: #ffff00;
  border-color: #ff0000;
  animation: baBfBlink 1.2s step-end infinite;
}

/* Responsive */
@media (max-width: 860px) {
  .ba-slider { aspect-ratio: 16/9; }
  .ba-af-links { display: none; }
  .ba-af-cards { display: none; }
  .ba-af-stats { left: 1rem; padding: 0.5rem 0.75rem; }
  .ba-af-stat { padding: 0 0.6rem; }
  .ba-bf-sidebar { display: none; }
}
@media (max-width: 600px) {
  .ba-slider { aspect-ratio: 4/3; }
  .ba-bf-img-row { display: none; }
  .ba-af-content { max-width: 260px; }
  .ba-af-headline { font-size: 1rem; }
}

/* Accessibility / SEO Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
