/* ─── Brand tokens ─────────────────────────────── */
:root,
[data-theme="jwa"] {
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Varta', sans-serif;

  /* Brand palette in OKLCH */
  --clr-deep:   oklch(12% 0.18 265);
  --clr-mid:    oklch(22% 0.20 265);
  --clr-red:    oklch(56% 0.24 25);
  --clr-purple: oklch(48% 0.26 277);
  --clr-cyan:   oklch(77% 0.13 213);
  --clr-orange: oklch(73% 0.14 55);
  --clr-lgray:  oklch(97% 0.004 265);
  --clr-mgray:  oklch(92% 0.006 265);
  --clr-white:  oklch(100% 0 0);

  /* DaisyUI v5 theme tokens */
  --color-primary:         oklch(56% 0.24 25);
  --color-primary-content: oklch(100% 0 0);
  --color-secondary:       oklch(48% 0.26 277);
  --color-accent:          oklch(77% 0.13 213);
  --color-base-100:        oklch(100% 0 0);
  --color-base-200:        oklch(97% 0.004 265);
  --color-base-300:        oklch(92% 0.006 265);
  --color-base-content:    oklch(12% 0.18 265);
  --radius-btn:  9999px;
  --radius-box:  0.75rem;
}

/* ─── Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--clr-deep);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

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

/* ─── Focus ─────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── SVG noise texture ─────────────────────────── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Shadows ───────────────────────────────────── */
.shadow-card {
  box-shadow:
    0 1px 2px  oklch(12% 0.18 265 / 0.06),
    0 4px 12px oklch(12% 0.18 265 / 0.10),
    0 12px 32px oklch(12% 0.18 265 / 0.08);
}
.shadow-card-hover {
  box-shadow:
    0 2px 4px  oklch(12% 0.18 265 / 0.08),
    0 8px 24px oklch(12% 0.18 265 / 0.14),
    0 20px 48px oklch(12% 0.18 265 / 0.12);
}
.shadow-btn {
  box-shadow:
    0 2px 8px  oklch(56% 0.24 25 / 0.30),
    0 6px 20px oklch(56% 0.24 25 / 0.20);
}
.shadow-btn-hover {
  box-shadow:
    0 4px 12px oklch(56% 0.24 25 / 0.40),
    0 10px 32px oklch(56% 0.24 25 / 0.30);
}

/* ─── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-red);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow:
    0 2px 8px  oklch(56% 0.24 25 / 0.30),
    0 6px 20px oklch(56% 0.24 25 / 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary:hover {
  background: oklch(60% 0.24 25);
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px oklch(56% 0.24 25 / 0.40),
    0 10px 32px oklch(56% 0.24 25 / 0.30);
}
.btn-primary:active  { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--clr-cyan); outline-offset: 3px; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: 1.5px solid oklch(100% 0 0 / 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.btn-outline-white:hover {
  border-color: oklch(100% 0 0 / 0.7);
  background: oklch(100% 0 0 / 0.08);
  transform: translateY(-2px);
}
.btn-outline-white:active  { transform: translateY(0); }
.btn-outline-white:focus-visible { outline: 2px solid var(--clr-cyan); outline-offset: 3px; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--clr-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: 1.5px solid oklch(12% 0.18 265 / 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.btn-outline-dark:hover {
  border-color: var(--clr-deep);
  background: oklch(12% 0.18 265 / 0.06);
  transform: translateY(-2px);
}
.btn-outline-dark:active  { transform: translateY(0); }
.btn-outline-dark:focus-visible { outline: 2px solid var(--clr-cyan); outline-offset: 3px; }

/* ─── Section labels ─────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-red);
}
.eyebrow-light {
  color: oklch(77% 0.13 213);
}

/* ─── Section heading underline ─────────────────── */
.heading-accent {
  position: relative;
  display: inline-block;
}
.heading-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 48px;
  height: 4px;
  background: var(--clr-red);
  border-radius: 9999px;
}

/* ─── Card hover lift ────────────────────────────── */
.lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lift:hover {
  transform: translateY(-5px);
  box-shadow:
    0 2px 4px  oklch(12% 0.18 265 / 0.08),
    0 8px 24px oklch(12% 0.18 265 / 0.14),
    0 20px 48px oklch(12% 0.18 265 / 0.12);
}

/* ─── Entry animation (CSS-only, non-hiding) ────── */
/* Content is always visible. Animation is pure visual polish. */
@keyframes reveal-in {
  from { transform: translateY(16px); }
  to   { transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: reveal-in 0.45s ease-out;
      animation-fill-mode: none;
      animation-timeline: view();
      animation-range: entry 0% entry 30%;
    }
  }
}

/* ─── Top bar ────────────────────────────────────── */
#topbar {
  background: var(--clr-deep);
  color: oklch(80% 0.05 265);
  font-size: 0.8125rem;
  font-family: var(--font-display);
  font-weight: 500;
}
#topbar a {
  color: oklch(80% 0.05 265);
  text-decoration: none;
  transition: color 0.2s ease;
}
#topbar a:hover { color: var(--clr-cyan); }

/* ─── Navbar ─────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(100% 0 0 / 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid oklch(12% 0.18 265 / 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow:
    0 1px 2px  oklch(12% 0.18 265 / 0.06),
    0 4px 16px oklch(12% 0.18 265 / 0.10);
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-deep);
  text-decoration: none;
  padding: 0.375rem 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--clr-red);
  border-radius: 9999px;
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--clr-red); }
.nav-link:hover::after { width: 100%; }
.nav-link:focus-visible { outline: 2px solid var(--clr-cyan); outline-offset: 4px; }

/* Mobile nav popover */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--clr-deep);
  flex-direction: column;
  padding: 1.5rem;
}
#mobile-nav:popover-open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--clr-cyan); }

/* ─── Hero ───────────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, oklch(22% 0.20 265 / 0.95) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 85% 15%, oklch(48% 0.26 277 / 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 60% 90%, oklch(12% 0.18 265 / 0.6) 0%, transparent 50%),
    var(--clr-deep);
  color: white;
}

/* Cyan glow orb */
#hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(77% 0.13 213 / 0.07) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.15);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-cyan);
}

.hero-h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: oklch(85% 0.04 265);
  max-width: 560px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--clr-cyan) 0%, oklch(72% 0.16 213) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero trust bar */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.scroll-hint {
  width: 28px; height: 44px;
  border: 2px solid oklch(100% 0 0 / 0.25);
  border-radius: 14px;
  position: relative;
}
.scroll-hint::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--clr-cyan);
  border-radius: 9999px;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { top: 6px; opacity: 1; }
  80% { top: 22px; opacity: 0; }
}

/* ─── Hero grid layout ───────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Hero form panel ────────────────────────────── */
.hero-form-wrap {
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 4px 24px oklch(12% 0.18 265 / 0.25),
    0 1px 0 oklch(100% 0 0 / 0.08) inset;
}

/* ─── Stats bar ──────────────────────────────────── */
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--clr-deep);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: oklch(40% 0.08 265);
}

/* ─── Service cards ───────────────────────────────── */
.service-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid oklch(12% 0.18 265 / 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow:
    0 1px 2px  oklch(12% 0.18 265 / 0.04),
    0 4px 12px oklch(12% 0.18 265 / 0.07);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: oklch(56% 0.24 25 / 0.2);
  box-shadow:
    0 2px 4px  oklch(12% 0.18 265 / 0.06),
    0 8px 24px oklch(12% 0.18 265 / 0.12),
    0 0 0 1px oklch(56% 0.24 25 / 0.08);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-purple));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover::before { opacity: 1; }

.icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: oklch(56% 0.24 25 / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.service-card:hover .icon-wrap {
  background: oklch(56% 0.24 25 / 0.15);
}

/* ─── Process ────────────────────────────────────── */
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clr-red);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 2px 8px  oklch(56% 0.24 25 / 0.30),
    0 6px 20px oklch(56% 0.24 25 / 0.20);
}

/* ─── Pricing ────────────────────────────────────── */
.price-card {
  background: white;
  border: 2px solid oklch(12% 0.18 265 / 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px  oklch(12% 0.18 265 / 0.06),
    0 8px 24px oklch(12% 0.18 265 / 0.10);
}
.price-card.featured {
  border-color: var(--clr-red);
  background: var(--clr-deep);
  color: white;
  position: relative;
}
.price-card.featured:hover {
  box-shadow:
    0 2px 4px  oklch(56% 0.24 25 / 0.15),
    0 8px 24px oklch(56% 0.24 25 / 0.20);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--clr-red);
  color: white;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow:
    0 2px 8px  oklch(56% 0.24 25 / 0.30),
    0 4px 16px oklch(56% 0.24 25 / 0.20);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.check-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--clr-red);
  margin-top: 3px;
}
.featured .check-icon { color: var(--clr-cyan); }

/* ─── FAQ ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid oklch(12% 0.18 265 / 0.09);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-deep);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--clr-red); }
.faq-item summary:focus-visible { outline: 2px solid var(--clr-cyan); outline-offset: 3px; border-radius: 4px; }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform 0.25s ease;
  color: var(--clr-red);
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: oklch(30% 0.10 265);
  max-width: 680px;
}

/* ─── Testimonials ───────────────────────────────── */
#testimonials {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, oklch(22% 0.20 265 / 0.8) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, oklch(48% 0.26 277 / 0.3) 0%, transparent 50%),
    var(--clr-deep);
}
.testi-card {
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.10);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.testi-card:hover {
  background: oklch(100% 0 0 / 0.09);
  transform: translateY(-4px);
}
.stars { color: oklch(83% 0.17 80); letter-spacing: 2px; }

/* ─── Final CTA ──────────────────────────────────── */
#contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 120% at 20% 50%, oklch(60% 0.24 25 / 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 80% 30%, oklch(48% 0.26 277 / 0.5) 0%, transparent 50%),
    var(--clr-red);
}

/* ─── Footer ─────────────────────────────────────── */
#footer {
  background: var(--clr-deep);
  color: oklch(70% 0.06 265);
}
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  color: oklch(65% 0.06 265) !important;
  text-decoration: none !important;
  font-size: 0.9375rem;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--clr-cyan) !important; }
.footer-link:focus-visible { outline: 2px solid var(--clr-cyan); outline-offset: 3px; }

/* ─── Responsive container ───────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

/* ─── Utility ────────────────────────────────────── */
.section { padding-block: 5rem; }
@media (min-width: 768px) { .section { padding-block: 6.5rem; } }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--clr-deep);
  margin-top: 0.5rem;
  max-width: 600px;
  margin-inline: auto;
}
.section-title-light {
  color: white;
}
.section-sub {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: oklch(38% 0.08 265);
  max-width: 540px;
  margin-inline: auto;
}
.section-sub-light {
  color: oklch(80% 0.05 265);
}

/* ─── Partner logos bar ─────────────────────────── */
#partners-bar {
  background: white;
  border-bottom: 1px solid oklch(12% 0.18 265 / 0.07);
  padding-block: 1.25rem 1.5rem;
}
.partners-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(58% 0.07 265);
  margin-bottom: 1.25rem;
}
/* Outer: clips overflow on mobile */
.partners-outer {
  position: relative;
  overflow: hidden;
}
/* Edge fades */
.partners-outer::before,
.partners-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 3.5rem;
  z-index: 2;
  pointer-events: none;
}
.partners-outer::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.partners-outer::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}
/* Track: two identical sets for seamless loop */
.partners-track {
  display: flex;
  align-items: center;
}
.partner-set {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem; /* gap before next set — keeps spacing uniform */
  flex-shrink: 0;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.25s ease;
  display: block;
}

/* Mobile: infinite marquee */
@media (max-width: 767px) {
  .partners-track {
    animation: partners-marquee 22s linear infinite;
  }
  @keyframes partners-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .partners-track:hover { animation-play-state: paused; }
  /* Duplicate set: visible but not interactive */
  .partner-set-dup { pointer-events: none; user-select: none; }
}

/* Desktop: static centered row */
@media (min-width: 768px) {
  .partners-outer {
    overflow: visible;
  }
  .partners-outer::before,
  .partners-outer::after { display: none; }
  .partners-track {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }
  .partner-set { gap: 3.5rem; padding-right: 0; }
  .partner-set-dup { display: none; }
  .partner-logo img {
    height: 38px;
    max-width: 130px;
    filter: grayscale(100%) opacity(0.45);
  }
  .partner-logo img:hover { filter: grayscale(0%) opacity(1); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .lift, .service-card, .price-card, .testi-card,
  .btn-primary, .btn-outline-white, .btn-outline-dark,
  .scroll-hint::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .partners-track { animation: none !important; }
}
