/* ========================================
   KOVA MGMT — Design System v2
   Performance-first, visually premium
   ======================================== */

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

/* ---------- Custom Properties ---------- */
:root {
  --void: #07070f;
  --graphite: #0f0f1a;
  --surface-1: #13131e;
  --surface-2: #191926;
  --accent: #C8A96E;
  --accent-dim: #a8894e;
  --accent-glow: rgba(200,169,110,0.10);
  --ice: #F0F0EE;
  --ice-dim: rgba(240,240,238,0.52);
  --muted: #64647a;
  --border: rgba(255,255,255,0.055);
  --border-hover: rgba(200,169,110,0.18);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --max-width: 1140px;
  --nav-h: 72px;
}

/* ---------- Base ---------- */
html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ice);
  background: var(--void);
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

/* Cursor hidden only on fine-pointer devices via JS class */
body.has-cursor { cursor: none; }
body.has-cursor a,
body.has-cursor button { cursor: none; }

::selection { background: rgba(200,169,110,0.22); color: var(--ice); }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: width .2s var(--ease-out), height .2s var(--ease-out), opacity .2s ease;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .25s ease, opacity .2s ease;
}
.cursor.is-hover { width: 5px; height: 5px; }
.cursor-ring.is-hover { width: 46px; height: 46px; border-color: rgba(200,169,110,0.55); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section ---------- */
.section { padding: clamp(64px,10vw,120px) 0; }

.section__header { text-align: center; margin-bottom: clamp(40px,6vw,64px); }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__label::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: .55;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px,3.8vw,44px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ice);
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.section__sub {
  font-size: 16px;
  color: var(--ice-dim);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  /* Prevent layout jank on mobile by using will-change only when needed */
}
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* On mobile, reduce transform distance to avoid scroll jank */
@media (max-width: 768px) {
  .reveal { transform: translateY(10px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s ease, border-color .18s ease, color .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--void);
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(200,169,110,.18);
}
.btn--primary:hover {
  background: #d4b87a;
  color: var(--void);
  box-shadow: 0 8px 28px rgba(200,169,110,.28);
}
.btn--ghost {
  background: transparent;
  color: var(--ice);
  border: 1px solid rgba(240,240,238,.13);
}
.btn--ghost:hover { border-color: rgba(240,240,238,.28); background: rgba(240,240,238,.04); color: var(--ice); }
.btn--text {
  background: transparent;
  color: var(--ice-dim);
  border: none;
  padding: 13px 4px;
  font-weight: 400;
  letter-spacing: .02em;
}
.btn--text:hover { color: var(--ice); transform: none; }
.btn--text .btn__arrow { display: inline-block; transition: transform .2s var(--ease-out); }
.btn--text:hover .btn__arrow { transform: translateX(4px); }
.btn--outline {
  background: transparent;
  color: var(--ice-dim);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn--full { width: 100%; }

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(7,7,15,.88);
  /* No backdrop-filter — too expensive on mobile */
  border-bottom: 1px solid var(--border);
  transition: transform .3s var(--ease-out), background .3s ease;
  will-change: transform;
}
.nav--hidden { transform: translateY(-100%); }
.nav--scrolled { background: rgba(7,7,15,.97); }

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; flex-direction: column; gap: 5px; text-decoration: none; }

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: .08em;
}
.logo-kova { font-weight: 800; color: var(--ice); }
.logo-mgmt { font-weight: 400; color: var(--muted); font-size: 16px; }
.logo-bar { display: block; width: 36px; height: 1.5px; background: var(--accent); border-radius: 1px; }
.logo-text--large { font-size: 32px; gap: 9px; }
.logo-bar--large { width: 68px; height: 2px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .18s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s var(--ease-out);
}
.nav__link:hover, .nav__link.active { color: var(--ice); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link--cta { color: var(--accent); font-weight: 500; }
.nav__link--cta:hover { color: var(--accent-dim); }
.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 110;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ice);
  border-radius: 1px;
  transition: transform .28s var(--ease-out), opacity .18s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7,7,15,.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ice);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), color .18s ease;
}
.mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: .04s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: .09s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: .14s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: .19s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: .24s; }
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__link--cta {
  color: var(--accent);
  margin-top: 10px;
  padding: 13px 38px;
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 6px;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}

/* Background layers — GPU composited, no layout impact */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Static orbs — no JS needed, pure CSS */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: opacity;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(200,169,110,.07) 0%, transparent 65%);
  animation: orbPulse 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(200,169,110,.04) 0%, transparent 65%);
  animation: orbPulse 12s ease-in-out infinite reverse;
}

@keyframes orbPulse {
  0%,100% { opacity: .7; }
  50% { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
}

/* CSS-only hero entrance — no GSAP needed */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(200,169,110,.18);
  border-radius: 100px;
  background: rgba(200,169,110,.04);
  animation: fadeUp .8s var(--ease-out) .1s both;
}
.hero__eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.65); }
}

.hero__title { margin-bottom: 20px; }
.hero__line {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
}
.hero__line--1 {
  font-size: clamp(42px,7vw,84px);
  color: var(--ice);
  animation: fadeUp .9s var(--ease-out) .25s both;
}
.hero__line--2 {
  font-size: clamp(42px,7vw,84px);
  background: linear-gradient(135deg, #b8924a 0%, #e8c98e 45%, #C8A96E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .9s var(--ease-out) .38s both;
}

.hero__sub {
  font-size: clamp(15px,1.4vw,17px);
  color: var(--ice-dim);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeUp .8s var(--ease-out) .5s both;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease-out) .62s both;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: fadeUp .6s var(--ease-out) 1.1s both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.8s ease-in-out infinite;
  opacity: .45;
}
@keyframes scrollPulse {
  0%,100% { opacity: .25; transform: scaleY(.5) translateY(-4px); }
  50%      { opacity: .6;  transform: scaleY(1) translateY(0); }
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee {
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(14px,1.8vw,20px);
  font-weight: 700;
  color: var(--ice-dim);
  letter-spacing: .02em;
}
.marquee__sep { color: var(--accent); font-size: 8px; opacity: .45; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.glass-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: border-color .35s ease, transform .35s var(--ease-out), box-shadow .35s ease;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.glass-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 0 36px var(--accent-glow); }
.glass-card:hover::before { opacity: 1; }
.glass-card__icon {
  margin-bottom: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,169,110,.07);
  border-radius: 10px;
  border: 1px solid rgba(200,169,110,.1);
}
.glass-card__number {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(200,169,110,.18);
  letter-spacing: .08em;
}
.glass-card__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ice); margin-bottom: 8px; letter-spacing: -.01em; }
.glass-card__text { font-size: 13.5px; color: var(--ice-dim); line-height: 1.7; margin-bottom: 16px; }
.glass-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: 100px;
  padding: 4px 10px;
  margin-top: auto;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing { background: linear-gradient(180deg, var(--void) 0%, var(--surface-1) 50%, var(--void) 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  align-items: start;
  padding-top: 22px; /* space for the floating badge above featured card */
}
.price-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color .35s ease, transform .35s var(--ease-out);
}
.price-card:hover { border-color: rgba(255,255,255,.09); transform: translateY(-4px); }
.price-card--featured {
  background: var(--surface-2);
  border-color: rgba(200,169,110,.22);
  transform: scale(1.03);
  box-shadow: 0 0 50px rgba(200,169,110,.07);
  padding: 36px 22px;
  z-index: 2;
  overflow: visible; /* allow badge to show above card */
}
.price-card--featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 14px 14px 0 0;
}
.price-card--featured:hover { border-color: rgba(200,169,110,.38); transform: scale(1.03) translateY(-4px); }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--void);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
}
.price-card__header { margin-bottom: 18px; }
.price-card__name { display: block; font-size: 10.5px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 8px; }
.price-card__price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 8px; }
.price-card__amount { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--ice); letter-spacing: -.04em; line-height: 1; }
.price-card--featured .price-card__amount { color: var(--accent); }
.price-card__period { font-size: 14px; color: var(--muted); }
.price-card__desc { font-size: 13px; color: var(--ice-dim); line-height: 1.6; }
.price-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex: 1; }
.price-card__features li { font-size: 13px; color: var(--ice-dim); padding-left: 20px; position: relative; line-height: 1.5; }
.price-card__features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 11px; }

/* ==========================================
   SOCIAL PROOF
   ========================================== */
.social-proof { text-align: center; position: relative; overflow: hidden; }
.social-proof::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,.05) 0%, transparent 70%);
  pointer-events: none;
}
.social-proof__content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.social-proof__title {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,50px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ice);
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.social-proof__text { font-size: 16px; color: var(--ice-dim); margin-bottom: 28px; line-height: 1.75; font-weight: 300; }

/* ==========================================
   SERVICES DETAIL
   ========================================== */
.services-detail { background: linear-gradient(180deg, var(--void) 0%, rgba(19,19,30,.4) 50%, var(--void) 100%); }
.services-breakdown { display: flex; flex-direction: column; gap: 20px; padding-top: 22px; /* space for Recommended badge */ }
.service-block {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: border-color .35s ease;
}
.service-block:hover { border-color: rgba(255,255,255,.08); }
.service-block--featured {
  border-color: rgba(200,169,110,.18);
  background: var(--surface-2);
  box-shadow: 0 0 50px rgba(200,169,110,.04);
  position: relative;
}
.service-block--featured:hover { border-color: rgba(200,169,110,.32); }
.service-block__badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--accent);
  color: var(--void);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 3;
}
.service-block__header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 12px; }
.service-block__name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ice); letter-spacing: -.01em; }
.service-block__price { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.service-block__price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.service-block__desc { font-size: 14px; color: var(--ice-dim); margin-bottom: 22px; max-width: 560px; line-height: 1.75; }
.service-block__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.feature-item { display: flex; gap: 12px; }
.feature-item__check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
}
.feature-item__check--gold { background: rgba(200,169,110,.09); color: var(--accent); }
.feature-item strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ice); margin-bottom: 3px; }
.feature-item p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.services-note { text-align: center; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--border); }
.services-note p { font-size: 14px; color: var(--ice-dim); }
.services-note a { color: var(--accent); }
.services-note a:hover { color: var(--accent-dim); }

/* ==========================================
   TESTIMONIALS — Carousel
   ========================================== */
.testimonials { background: linear-gradient(180deg, var(--void) 0%, var(--surface-1) 50%, var(--void) 100%); overflow: hidden; }

/* ---- Testimonial Infinite Marquee ---- */
.tmarquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.tmarquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0;
}
.tmarquee__track--left {
  animation: tscroll-left 55s linear infinite;
}
.tmarquee__track--right {
  animation: tscroll-right 55s linear infinite;
}
.tmarquee:hover .tmarquee__track { animation-play-state: paused; }
@keyframes tscroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tscroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.tcard {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  transition: border-color .3s ease, transform .3s ease;
}
.tcard:hover { border-color: rgba(200,169,110,.2); transform: translateY(-2px); }
.tcard__stars { color: var(--accent); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.tcard__quote {
  font-size: 13.5px;
  color: var(--ice-dim);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--void);
  flex-shrink: 0;
}
.tcard__author strong { display: block; font-size: 13px; font-weight: 600; color: var(--ice); margin-bottom: 2px; }
.tcard__author span { font-size: 11.5px; color: var(--muted); }

/* Legacy carousel — keep for fallback but hide */
.testimonials-carousel {
  display: none;
  width: 100%;
  overflow: hidden;
  padding: 0 0 8px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.testimonials-carousel:active { cursor: grabbing; }

.testimonials-track {
  display: flex;
  gap: 16px;
  padding: 8px 24px 16px;
  transition: transform .45s cubic-bezier(0.25,1,0.5,1);
  will-change: transform;
}

.testimonial-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 340px;
  min-width: 0;
  transition: border-color .35s ease;
}
.testimonial-card:hover { border-color: rgba(200,169,110,.15); }
.testimonial-card__stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.testimonial-card__quote {
  font-size: 14px;
  color: var(--ice-dim);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--void);
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ice); margin-bottom: 2px; }
.testimonial-card__author span { font-size: 11.5px; color: var(--muted); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding: 0 24px;
}
.testimonials-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--ice-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  flex-shrink: 0;
}
.testimonials-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonials-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .25s ease, transform .25s ease;
  cursor: pointer;
}
.testimonials-dot.active { background: var(--accent); transform: scale(1.3); }

/* ==========================================
   WORK
   ========================================== */
.work { background: var(--surface-1); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.work-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .35s ease, transform .35s var(--ease-out);
}
.work-card:hover { border-color: rgba(200,169,110,.2); transform: translateY(-4px); }
.work-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.work-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.work-card:hover .work-card__img-wrap img { transform: scale(1.04); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,15,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__overlay span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
}
.work-card__info {
  padding: 14px 16px;
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-card__type { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.work-card__name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--ice); }
.work__cta { text-align: center; }
.work__disclaimer {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 10px;
  font-style: italic;
}

/* ==========================================
   ABOUT
   ========================================== */
.about__content { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.about__lead { font-family: var(--font-display); font-size: 19px; color: var(--ice); line-height: 1.55; margin-bottom: 16px; font-weight: 700; letter-spacing: -.01em; }
.about__text p { font-size: 14.5px; color: var(--ice-dim); line-height: 1.8; margin-bottom: 14px; font-weight: 300; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color .35s ease, transform .35s var(--ease-out);
}
.stat-card:hover { border-color: rgba(200,169,110,.18); transform: translateY(-2px); }
.stat-card__value { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 4px; line-height: 1.1; letter-spacing: -.02em; }
.stat-card__label { font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: linear-gradient(180deg, var(--void) 0%, var(--surface-1) 100%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.contact__text { font-size: 14.5px; color: var(--ice-dim); margin-bottom: 28px; line-height: 1.8; font-weight: 300; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ice-dim); }
.contact__detail a { color: var(--ice-dim); transition: color .18s ease; }
.contact__detail a:hover { color: var(--accent); }
.contact__form { background: var(--surface-1); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 10.5px; font-weight: 500; color: var(--ice-dim); margin-bottom: 6px; letter-spacing: .08em; text-transform: uppercase; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ice);
  background: rgba(7,7,15,.7);
  border: 1px solid var(--border);
  border-radius: 7px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5.5 6L10 1' stroke='%2364647a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus { border-color: rgba(200,169,110,.35); box-shadow: 0 0 0 3px rgba(200,169,110,.07); }
.form-group input::placeholder { color: rgba(100,100,122,.45); }
.form-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; letter-spacing: .02em; }

/* ==========================================
   FOOTER
   ========================================== */
.footer { padding: 64px 0 28px; border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; gap: 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__tagline { font-size: 13px; color: var(--muted); margin-top: 4px; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer__nav a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .18s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }
.footer__email { font-size: 13.5px; color: var(--muted); transition: color .18s ease; }
.footer__email:hover { color: var(--accent); }
.footer__social { display: flex; gap: 14px; }
.footer__social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  transition: border-color .18s ease, color .18s ease;
}
.footer__social-link:hover { border-color: rgba(200,169,110,.25); color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--border); }
.footer__copy { font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }

/* ==========================================
   RESPONSIVE
   ========================================== */
  @media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; padding-top: 22px; }
  .price-card--featured { transform: scale(1); }
  .price-card--featured:hover { transform: translateY(-4px); }
  .service-block__grid { grid-template-columns: 1fr; }
  .about__content { grid-template-columns: 1fr; gap: 32px; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Hero trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.hero__trust-item {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .04em;
}
.hero__trust-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 5px;
  animation: pulse 2.8s ease-in-out infinite;
}
.hero__trust-divider { color: var(--border); font-size: 14px; }

@media (max-width: 600px) {
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero__scroll-hint { display: none; }
  .logo-text--large { font-size: 26px; }
  .logo-bar--large { width: 56px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .service-block { padding: 24px; }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
