/* ═══════════════════════════════════════════════════════════════
   DEVORA AGENCY — Landing Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-300-700.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #000000;
  --near-black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark:     #111111;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white:    #ffffff;
  --cream:    #fafafa;

  --font: 'Space Grotesk', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  scroll-behavior: smooth;
}

html { font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: var(--font); }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }

/* ─── Custom Cursor ─────────────────────────────────────────────── */
#da-cursor {
  width: 6px; height: 6px;
  background: #fff;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
}
#da-cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.5);
  mix-blend-mode: difference;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, opacity .25s;
}
body.cur-big #da-cursor { width: 40px; height: 40px; }
body.cur-big #da-cursor-ring { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  #da-cursor, #da-cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}
input, textarea, select { font-family: var(--font); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 120px 0; }

/* ─── Scroll Reveal Animations ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Section Shared ────────────────────────────────────────────── */
.section__header { margin-bottom: 64px; }
.section__header--light { text-align: center; }

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section__tag--light {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.03em;
}
.section__title--light { color: var(--white); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn__icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.btn:hover .btn__icon { transform: translateX(4px); }

/* ═══════════════════════════ NAVIGATION ════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: 68px;
  display: flex; align-items: center;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
/* transparent on dark hero */
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo — white by default (dark hero), flips to dark when scrolled */
.nav__logo { display: flex; align-items: center; transition: transform var(--transition); }
.nav__logo:hover { transform: scale(1.05); }
.nav__logo-img {
  height: 36px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); /* white on dark */
  transition: filter .4s ease;
}
.nav.scrolled .nav__logo-img { filter: none; } /* dark on light */

.hero__logo-img { width: 180px; height: 180px; object-fit: contain; }
.footer__logo-img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }

/* scrolled state — solid white */
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

/* links white on dark hero, dark when scrolled */
.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  transition: color .3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width .3s ease;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }

/* scrolled — dark links */
.nav.scrolled .nav__link { color: var(--gray-700); }
.nav.scrolled .nav__link:hover { color: var(--black); }

/* CTA button */
.nav__cta {
  background: #c9a84c !important;
  color: #0a0a0a !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, transform .2s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: #d4b050 !important; transform: translateY(-1px); }
.nav.scrolled .nav__cta { background: var(--black) !important; color: var(--white) !important; }
.nav.scrolled .nav__cta:hover { background: var(--charcoal) !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
  cursor: pointer; border: none; background: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff; /* white on dark hero */
  border-radius: 2px;
  transition: var(--transition), background .4s;
  transform-origin: center;
}
.nav.scrolled .nav__burger span { background: var(--black); }
.nav__burger:focus,
.nav__burger:focus-visible,
.nav__burger:active { outline: none; box-shadow: none; }
.nav__burger.open span { background: #fff !important; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════ HERO ════════════════════════════════ */
/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  margin: 0;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0a0a0a;
}

/* slides stack */
.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 max(40px, calc((100vw - 1200px) / 2));
  padding-bottom: 120px;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__slide.active  { opacity: 1; pointer-events: auto; z-index: 2; }
.hero__slide.leaving { opacity: 0; z-index: 1; }

/* background per slide */
.hero__slide-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
/* noise */
.hero__slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
}

/* content */
.hero__slide-content {
  position: relative; z-index: 1;
  max-width: 900px;
}

/* tag */
.hero__slide-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.76);
  margin-bottom: 28px;
}
.hero__slide-tag::before {
  content: ''; width: 28px; height: 1px; background: #c9a84c;
}

/* headline */
.hero__slide-h {
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.05em;
  color: #fff;
  margin-bottom: 28px;
  overflow: visible;
}

/* word animation units */
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.hero__slide.active .hw { opacity: 1; transform: translateY(0); }
/* stagger each word */
.hero__slide.active .hw:nth-child(1)  { transition-delay: .05s; }
.hero__slide.active .hw:nth-child(2)  { transition-delay: .12s; }
.hero__slide.active .hw:nth-child(3)  { transition-delay: .19s; }
.hero__slide.active .hw:nth-child(4)  { transition-delay: .26s; }
.hero__slide.active .hw:nth-child(5)  { transition-delay: .33s; }
.hero__slide.active .hw:nth-child(6)  { transition-delay: .40s; }
.hero__slide.active .hw:nth-child(7)  { transition-delay: .47s; }
.hero__slide.active .hw:nth-child(8)  { transition-delay: .54s; }

/* gold word */
.hw--gold { color: #c9a84c; }
/* outline word */
.hw--outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.25);
}

/* sub */
.hero__slide-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1) .55s,
              transform .7s cubic-bezier(.22,1,.36,1) .55s;
}
.hero__slide.active .hero__slide-sub { opacity: 1; transform: none; }

/* leaving exit */
.hero__slide.leaving .hw { opacity: 0; transform: translateY(-40px); transition-delay: 0s !important; transition-duration: .4s !important; }
.hero__slide.leaving .hero__slide-sub { opacity: 0; transform: translateY(-20px); transition: opacity .3s, transform .3s; }

/* logo pin top-right */
.hero__logo-pin {
  position: absolute;
  top: 28px; right: max(40px, calc((100vw - 1200px) / 2));
  z-index: 10;
  opacity: 0;
  animation: fadeInDown .8s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.hero__logo-pin-img { height: 38px; filter: brightness(0) invert(1); opacity: .7; }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-12px);} to { opacity:1; transform:none; } }

/* ── bottom bar ── */
.hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 max(40px, calc((100vw - 1200px) / 2));
  height: 72px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* counter */
.hero__counter {
  display: flex; align-items: baseline; gap: 4px;
  flex-shrink: 0;
}
.hero__counter-cur {
  font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: -.02em;
}
.hero__counter-sep { font-size: .75rem; color: rgba(255,255,255,.55); }
.hero__counter-tot { font-size: .75rem; color: rgba(255,255,255,.82); }

/* progress bar */
.hero__progress {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.hero__progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: #c9a84c;
  width: 0%;
  transition: width .15s linear;
}

/* nav btns */
.hero__nav { display: flex; gap: 6px; flex-shrink: 0; }
.hero__nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.hero__nav-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }
.hero__nav-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.hero__nav-btn:hover svg { color: #fff; }

/* bar cta */
.hero__bar-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.hero__bar-btn {
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: #c9a84c; color: #0a0a0a;
  padding: 9px 20px; border-radius: 4px;
  transition: background .2s, transform .2s;
}
.hero__bar-btn:hover { background: #d4b050; transform: translateY(-1px); }
.hero__bar-link {
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.84);
  transition: color .2s;
}
.hero__bar-link:hover { color: #fff; }

/* gold marquee strip — sits at the bottom of hero */
@keyframes marqueeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__marquee {
  position: absolute;
  bottom: 72px;
  left: 0; right: 0;
  overflow: hidden;
  background: #c9a84c;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding: 14px 0;
  z-index: 10;
  animation: marqueeSlideIn .8s cubic-bezier(.22,1,.36,1) 1s both;
}
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a0a0a;
  white-space: nowrap;
  padding: 0 28px;
}
.marquee__track span.dot { padding: 0; opacity: .4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeIn { to { opacity: 1; } }

@media (max-width: 768px) {
  .nav__container { padding: 0 20px; }
  .hero__slide { padding: 0 24px 160px; }
  .hero__logo-pin { right: 24px; }
  .hero__bar { padding: 0 24px; gap: 14px; }
  .hero {
    height: auto;
    min-height: 100vh;
  }
  .hero__bar-cta { display: none; }
  .hero__slide-h { font-size: clamp(2.4rem, 10vw, 4rem); }
}

/* ═══════════════════════════ PROCESS ════════════════════════════ */
.process { background: var(--white); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process__step {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--gray-300);
  border-top: none;
  border-right: none;
  transition: var(--transition);
}
.process__step:nth-child(3n+1) { border-left: none; }
.process__step:nth-child(-n+3)  { border-top: 1px solid var(--gray-300); }
.process__step:nth-child(1)     { border-top: none; border-left: none; }
.process__step:hover { background: var(--cream); }

.process__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.process__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ═══════════════════════════ SERVICES ════════════════════════════ */
.services { background: var(--cream); overflow: hidden; }

/* ── Service Slider ── */
.svc-slider {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  /* full bleed past container */
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
}

.svc-slider__track {
  display: flex;
  gap: 16px;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.svc-slider__track.dragging { cursor: grabbing; transition: none; }

/* individual slide */
.svc-slide {
  flex-shrink: 0;
  width: 280px;
  background: var(--black);
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.svc-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}

/* gold accent slide */
.svc-slide--gold {
  background: #c9a84c;
  border-color: transparent;
}
.svc-slide--gold .svc-slide__num   { color: rgba(0,0,0,.25); }
.svc-slide--gold .svc-slide__name  { color: #0a0a0a; }
.svc-slide--gold .svc-slide__desc  { color: rgba(0,0,0,.6); }
.svc-slide--gold .svc-slide__link  { color: #0a0a0a; border-color: rgba(0,0,0,.2); }
.svc-slide--gold .svc-slide__link:hover { background: rgba(0,0,0,.08); }

/* slide content */
.svc-slide__num {
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.22);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}
.svc-slide__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.svc-slide__desc {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  flex: 1;
}
.svc-slide__link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  align-self: flex-start;
  transition: background .2s, color .2s, border-color .2s;
}
.svc-slide__link:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

/* controls */
.svc-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
}
.svc-slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.svc-slider__btn svg { width: 18px; height: 18px; color: var(--black); }
.svc-slider__btn:hover { background: var(--black); border-color: var(--black); }
.svc-slider__btn:hover svg { color: #fff; }
.svc-slider__btn:active { transform: scale(.94); }

.svc-slider__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.svc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  cursor: pointer;
  transition: background .25s, transform .25s, width .25s;
  border: none;
}
.svc-dot.on {
  background: var(--black);
  width: 20px;
  border-radius: 3px;
}

/* bottom cta row */
.svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--black);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 12px;
}
.svc-cta span { font-size: .9rem; color: rgba(255,255,255,.5); }
.svc-cta__link {
  font-size: .82rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #c9a84c;
  transition: opacity .2s;
}
.svc-cta__link:hover { opacity: .7; }

@media (max-width: 768px) {
  .svc-slide { width: 240px; padding: 28px 22px; }
}

/* ═══════════════════════════ RESULTS ════════════════════════════ */
.results {
  background: var(--near-black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.result-card {
  background: var(--near-black);
  padding: 52px 40px;
  text-align: center;
  transition: background var(--transition);
}
.result-card:hover { background: rgba(255,255,255,0.04); }

.result-card__num {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.result-card__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.result-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

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

.testimonials__carousel { position: relative; }

.testimonials__track {
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  animation: fadeSlideIn 0.5s ease;
}
.testimonial-card.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card__quote {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gray-300);
  font-family: Georgia, serif;
  margin-bottom: 28px;
}

.testimonial-card__text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 36px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; font-size: 0.95rem; color: var(--black); }
.testimonial-card__author span { font-size: 0.8rem; color: var(--gray-500); }

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray-700);
}
.testimonials__btn svg { width: 18px; height: 18px; }
.testimonials__btn:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.testimonials__dots { display: flex; gap: 4px; }
.testimonials__dot {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.testimonials__dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: width var(--transition), border-radius var(--transition), background var(--transition), transform var(--transition);
}
.testimonials__dot.active::before { background: var(--black); width: 24px; border-radius: 4px; }

/* ═══════════════════════════ CONTACT ════════════════════════════ */
.contact {
  background: var(--near-black);
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 20px 0 20px;
}
.contact__headline em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.contact__info-item:hover { color: var(--white); }
.contact__info-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.contact__social { display: flex; gap: 12px; }
.contact__social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.contact__social-link svg { width: 16px; height: 16px; }
.contact__social-link:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__field { display: flex; flex-direction: column; gap: 6px; }

.form__field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form__field input,
.form__field textarea,
.form__field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
  outline: none;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.09);
}

.form__field select option { background: var(--dark); color: var(--white); }

.btn--submit {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.btn--submit:hover { background: var(--gray-100); }
.btn--submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn--submit svg { width: 18px; height: 18px; }

.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.form__success.show { display: flex; animation: fadeIn 0.4s ease; }
.form__success svg { width: 18px; height: 18px; color: #4ade80; flex-shrink: 0; }

/* ═══════════════════════════ FOOTER ════════════════════════════ */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.82);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.84);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p,
.footer__bottom span {
  color: rgba(255,255,255,0.82);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .process__steps { grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-300); }
  .process__step { background: var(--white); border: none; padding: 28px 24px; }
  .results__grid { grid-template-columns: 1fr; gap: 2px; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 1.25rem; }

  .nav.mobile-open {
    height: 100dvh;
    background: rgba(10,10,10,.985);
    border-color: transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav.mobile-open .nav__container {
    max-width: none;
    height: 100dvh;
    padding: 18px 20px 28px;
    align-items: flex-start;
  }
  .nav.mobile-open .nav__logo-img { filter: brightness(0) invert(1); }
  .nav.mobile-open .nav__lang {
    color: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.24);
  }
  .nav.mobile-open .nav__lang:hover {
    color: #fff;
    border-color: rgba(255,255,255,.45);
  }

  .nav__links {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .nav__links.open {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    margin: 0;
    background: transparent;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
    padding: 96px 24px 48px;
  }
  .nav__links.open .nav__link {
    font-size: 1.8rem; font-weight: 700;
    color: rgba(255,255,255,.88);
    letter-spacing: -.02em;
    text-align: center;
  }
  .nav__links.open .nav__link:hover { color: #c9a84c; }
  .nav__links.open .nav__cta {
    margin-top: 12px;
    background: #c9a84c !important; color: #0a0a0a !important;
    padding: 14px 36px; font-size: 1rem;
  }
  .nav__burger { display: flex; position: relative; z-index: 1002; pointer-events: auto; }

  .hero { padding: 100px 1.25rem 90px; }
  .hero__scroll-indicator { display: none; }

  .process__steps { grid-template-columns: 1fr; background: none; gap: 0; }
  .process__step {
    border-left: 2px solid var(--gray-300);
    border-bottom: none;
    background: transparent;
    padding: 24px 0 24px 24px;
  }
  .process__step:last-child { border-left: 2px solid transparent; }

  .services__grid { grid-template-columns: 1fr; gap: 28px; }

  .results__grid { grid-template-columns: 1fr; }
  .result-card { padding: 40px 28px; }

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

  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
