/* ============================================================
   EVOLVIA — Design System
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Colors */
  --color-black:          #000000;
  --color-white:          #FFFFFF;
  --color-bg-dark:        #080707;
  --color-bg-mid:         #0E0C0B;
  --color-bg-gray:        #0B0A09;
  --color-bg-light:       #100E0D;
  --color-accent:         #B8913A;
  --color-accent-dark:    #96712A;
  --color-accent-glow:    rgba(184, 145, 58, 0.18);
  --color-accent-subtle:  rgba(184, 145, 58, 0.1);
  --color-btn-text:       #0A0807;
  --color-error:          #F87171;
  --color-error-bg:       rgba(248, 113, 113, 0.1);

  --color-text-on-dark:        #F2F2F5;
  --color-text-on-dark-muted:  rgba(242, 242, 245, 0.5);
  --color-text-on-dark-subtle: rgba(242, 242, 245, 0.28);
  --color-text-on-light:       #F2F2F5;
  --color-text-on-light-muted: rgba(242, 242, 245, 0.5);
  --color-text-on-gray:        #F2F2F5;
  --color-text-on-gray-muted:  rgba(242, 242, 245, 0.5);

  --color-border-dark:    rgba(255, 255, 255, 0.07);
  --color-border-light:   rgba(255, 255, 255, 0.07);
  --color-border-gray:    rgba(255, 255, 255, 0.06);

  /* Typography */
  --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --fw-light:       300;
  --fw-regular:     400;
  --fw-medium:      500;
  --fw-semibold:    600;
  --fw-bold:        700;
  --fw-extrabold:   800;

  /* Fluid type scale */
  --text-xs:    clamp(0.6875rem, 1.4vw, 0.75rem);
  --text-sm:    clamp(0.8125rem, 1.6vw, 0.875rem);
  --text-base:  clamp(0.9375rem, 1.8vw, 1rem);
  --text-md:    clamp(1rem, 2vw, 1.125rem);
  --text-lg:    clamp(1.125rem, 2.2vw, 1.25rem);
  --text-xl:    clamp(1.25rem, 2.5vw, 1.5rem);
  --text-2xl:   clamp(1.5rem, 3vw, 2rem);
  --text-3xl:   clamp(2rem, 4vw, 2.75rem);
  --text-4xl:   clamp(2.5rem, 5vw, 3.75rem);
  --text-hero:  clamp(2.75rem, 6.5vw, 5.5rem);

  /* Letter spacing — tuned for Plus Jakarta Sans */
  --ls-tight:   -0.025em;
  --ls-normal:  -0.01em;
  --ls-wide:    0.04em;
  --ls-wider:   0.1em;

  /* Line height */
  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-base:    1.5;
  --lh-relaxed: 1.7;

  /* Spacing (8px grid) */
  --sp-1:   0.5rem;    /* 8px  */
  --sp-2:   1rem;      /* 16px */
  --sp-3:   1.5rem;    /* 24px */
  --sp-4:   2rem;      /* 32px */
  --sp-5:   2.5rem;    /* 40px */
  --sp-6:   3rem;      /* 48px */
  --sp-8:   4rem;      /* 64px */
  --sp-10:  5rem;      /* 80px */
  --sp-12:  6rem;      /* 96px */
  --sp-16:  8rem;      /* 128px */
  --sp-20:  10rem;     /* 160px */

  /* Layout */
  --max-w:        1200px;
  --max-w-narrow: 760px;
  --nav-h:        56px;

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-pill: 9999px;

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-base: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:    150ms var(--ease-base);
  --t-base:    260ms var(--ease-base);
  --t-slow:    500ms var(--ease-out);
  --t-enter:   600ms var(--ease-out);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.2);
  --shadow-accent: 0 8px 32px rgba(184, 145, 58, 0.3);
}

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

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

body {
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: var(--text-base);
  line-height: var(--lh-base);
  color: var(--color-text-on-dark);
  background: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

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

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

/* ── Typography Utilities ──────────────────────────────────── */
.text-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-accent);
}

.text-hero {
  font-size: var(--text-hero);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.text-4xl {
  font-size: var(--text-4xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.text-gradient {
  background: linear-gradient(125deg, #DFC060 0%, #B8913A 35%, #CFA048 65%, #96712A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding-block: var(--sp-16);
}

.section--sm {
  padding-block: var(--sp-10);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.section--mid {
  background: var(--color-bg-mid);
  color: var(--color-text-on-dark);
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-on-light);
}

.section--gray {
  background: var(--color-bg-gray);
  color: var(--color-text-on-gray);
}

.section__label {
  display: block;
  margin-bottom: var(--sp-2);
}

.section__title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-3);
}

.section--dark .section__title,
.section--mid .section__title {
  color: var(--color-text-on-dark);
}

.section--light .section__title,
.section--gray .section__title {
  color: var(--color-text-on-light);
}

.section__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-gray-muted);
  max-width: 560px;
  margin-bottom: var(--sp-8);
}

.section--dark .section__sub,
.section--mid .section__sub {
  color: var(--color-text-on-dark-muted);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-base), border-color var(--t-base), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(7, 7, 11, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.nav__logo {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}

.nav__logo:hover { opacity: 0.8; }

/* Links — visible at all sizes */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Mobile: compact text + padding */
.nav__links a {
  font-size: 11.5px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.72);
  padding: 5px 9px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

/* CTA — hidden on small screens (hero has the main CTA) */
.nav__cta {
  display: none;
}

/* Hamburger — no longer needed */
.nav__hamburger {
  display: none;
}

/* Mobile menu — no longer used */
.nav__mobile {
  display: none !important;
}

/* Desktop: restore full link sizing, show CTA, restore taller nav */
@media (min-width: 768px) {
  :root { --nav-h: 68px; }

  .nav__links {
    gap: var(--sp-1);
  }

  .nav__links a {
    font-size: var(--text-sm);
    padding: var(--sp-1) var(--sp-2);
  }

  .nav__cta { display: block; }
}

/* Very small screens (< 360px): tighten logo */
@media (max-width: 359px) {
  .nav__logo {
    font-size: var(--text-md);
  }
  .nav__links a {
    font-size: 10.5px;
    padding: 4px 7px;
  }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 0.75rem 1.625rem;
  background: var(--color-accent);
  color: var(--color-btn-text);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary--lg {
  padding: 0.9375rem 2.25rem;
  font-size: var(--text-base);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 0.75rem 1.625rem;
  background: transparent;
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-secondary--dark {
  color: var(--color-text-on-light);
  border-color: var(--color-border-light);
}

.btn-secondary--dark:hover {
  border-color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--t-fast), opacity var(--t-fast);
  text-decoration: none;
}

.btn-ghost:hover { gap: 10px; opacity: 0.85; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Animated ambient blobs */
.hero__blob-1 {
  position: absolute;
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(184, 145, 58, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: -15%;
  right: 0%;
  filter: blur(90px);
  will-change: transform;
  animation: blob-drift-1 14s ease-in-out infinite alternate;
}

.hero__blob-2 {
  position: absolute;
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(150, 113, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 10%;
  left: 2%;
  filter: blur(80px);
  will-change: transform;
  animation: blob-drift-2 11s ease-in-out infinite alternate;
}

.hero__blob-3 {
  position: absolute;
  width: clamp(150px, 25vw, 350px);
  height: clamp(150px, 25vw, 350px);
  background: radial-gradient(circle, rgba(184, 145, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 40%;
  left: 40%;
  filter: blur(60px);
  will-change: transform;
  animation: blob-drift-1 17s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.12); }
}

@keyframes blob-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, -30px) scale(1.08); }
}

/* Grid overlay texture */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

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

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 16px;
  background: rgba(184, 145, 58, 0.12);
  border: 1px solid rgba(184, 145, 58, 0.3);
  border-radius: var(--r-pill);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: #D4AA55;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text-on-dark);
}

.hero__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}

/* Trust signals row below CTAs */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px var(--sp-2);
  margin-top: var(--sp-1);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  letter-spacing: 0.01em;
}

.hero__trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero__trust-sep {
  width: 3px;
  height: 3px;
  background: var(--color-text-on-dark-subtle);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: var(--color-text-on-dark-subtle);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Services Section ──────────────────────────────────────── */
.services__header {
  max-width: 640px;
  margin-bottom: var(--sp-8);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
}

/* Gradient top accent line */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 40%, #CFA048 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}

/* Subtle top-edge shine (always visible, very slight) */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,145,58,0.2), 0 4px 24px rgba(184,145,58,0.15);
  border-color: rgba(184,145,58,0.3);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-subtle);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), transform var(--t-base);
}

.card:hover .card__icon {
  background: rgba(184,145,58,0.14);
  transform: scale(1.05);
}

.card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-on-dark);
}

.card__desc {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  flex: 1;
}

/* ── Process Section ───────────────────────────────────────── */
.process__header {
  max-width: 600px;
  margin-bottom: var(--sp-10);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

/* Vertical connector line */
.process__steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 68px;
  bottom: 68px;
  width: 1px;
  background: linear-gradient(to bottom,
    var(--color-accent) 0%,
    rgba(184,145,58,0.4) 50%,
    rgba(184,145,58,0.05) 100%);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  position: relative;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: rgba(184, 145, 58, 0.08);
  border: 1px solid rgba(184, 145, 58, 0.25);
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.step:hover .step__number {
  background: rgba(184,145,58,0.16);
  border-color: rgba(184,145,58,0.5);
  box-shadow: 0 0 20px rgba(184,145,58,0.2);
}

.step__body {
  padding-top: 12px;
  padding-bottom: var(--sp-3);
}

.step__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-1);
  letter-spacing: var(--ls-tight);
}

.step__desc {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 520px;
}

/* ── Stats Section ─────────────────────────────────────────── */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8) var(--sp-6);
}

.stats__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.025);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.stat:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 4px 12px rgba(184,145,58,0.08);
  transform: translateY(-3px);
  border-color: rgba(184,145,58,0.2);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #DFC060 20%, #B8913A 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-muted);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}

.stat__divider {
  display: none;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.testimonial {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

/* Decorative large quote mark */
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: var(--sp-4);
  font-size: 8rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.06;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09), 0 4px 12px rgba(184,145,58,0.07);
  border-color: rgba(184,145,58,0.18);
}

.testimonial__stars {
  color: #F59E0B;
  font-size: var(--text-base);
  letter-spacing: 3px;
}

.testimonial__quote {
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark);
  font-style: normal;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-4);
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-accent), #CFA048);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial__name {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
}

.testimonial__role {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-muted);
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,145,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-section__blob {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,145,58,0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-8);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 145, 58, 0.2);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px rgba(184,145,58,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}

@media (max-width: 767px) {
  .cta-section__content {
    padding: var(--sp-8) var(--sp-4);
  }
}

.cta-section__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 460px;
}

/* CTA button glow effect */
.cta-section .btn-primary {
  box-shadow: 0 0 40px rgba(184,145,58,0.35);
}

.cta-section .btn-primary:hover {
  box-shadow: 0 0 60px rgba(184,145,58,0.5);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-12));
  padding-bottom: var(--sp-12);
}

.page-hero__content {
  max-width: 700px;
}

.page-hero__heading {
  font-size: var(--text-4xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-on-dark);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.page-hero__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 500px;
}

/* ── Form Styles ───────────────────────────────────────────── */
.form-section {
  padding-block: var(--sp-12);
}

.form-container {
  max-width: 760px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  position: relative;
}

/* Honeypot */
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: rgba(242, 242, 245, 0.85);
  letter-spacing: 0.01em;
}

.form-label .optional {
  font-weight: var(--fw-regular);
  color: var(--color-text-on-dark-muted);
  font-size: var(--text-xs);
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--color-text-on-dark);
  line-height: var(--lh-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(242, 242, 245, 0.28);
}

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

.form-select option {
  background: #1a1a24;
  color: var(--color-text-on-dark);
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(184, 145, 58, 0.6);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
  background: rgba(184, 145, 58, 0.06);
}

.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 3px var(--color-error-bg) !important;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  font-weight: var(--fw-medium);
  min-height: 1em;
  display: block;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  align-self: flex-start;
  width: 100%;
}

.btn-submit:hover:not(:disabled) {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  line-height: var(--lh-relaxed);
}

.form-privacy a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Thank You Page ────────────────────────────────────────── */
.thank-you {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.thank-you__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thank-you__blob {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184,145,58,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
}

.thank-you__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding-block: var(--sp-12);
}

.thank-you__check {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent), #CFA048);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(184,145,58,0.4);
  animation: check-in 0.6s var(--ease-out) backwards;
}

@keyframes check-in {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.thank-you__check svg {
  width: 38px;
  height: 38px;
  color: white;
}

.thank-you__heading {
  font-size: var(--text-4xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-on-dark);
}

.thank-you__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 500px;
}

.thank-you__cal-label {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-muted);
  font-weight: var(--fw-medium);
  padding: 10px 20px;
  background: rgba(184,145,58,0.1);
  border: 1px solid rgba(184,145,58,0.25);
  border-radius: var(--r-pill);
}

.cal-embed-wrapper {
  width: 100%;
  max-width: 900px;
  min-height: 650px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.thank-you__actions {
  margin-top: var(--sp-2);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--color-border-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-block: var(--sp-10);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__logo {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: -0.02em;
  transition: opacity var(--t-fast);
}

.footer__logo:hover { opacity: 0.7; }

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-muted);
  line-height: var(--lh-relaxed);
  max-width: 260px;
}

.footer__nav-col {}

.footer__nav-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-on-dark-subtle);
  margin-bottom: var(--sp-3);
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__nav-col a {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-muted);
  transition: color var(--t-fast);
}

.footer__nav-col a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-block: var(--sp-4);
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-subtle);
}

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--t-enter),
    transform var(--t-enter);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-in[data-delay="1"] { transition-delay: 0.08s; }
.fade-in[data-delay="2"] { transition-delay: 0.16s; }
.fade-in[data-delay="3"] { transition-delay: 0.24s; }
.fade-in[data-delay="4"] { transition-delay: 0.32s; }
.fade-in[data-delay="5"] { transition-delay: 0.40s; }

/* ── ✦ Decorative Elements ─────────────────────────────────── */

/* 1. Top accent line — thin gradient across the very top of the page */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,164,53,0.4) 20%,
    #B8913A 50%,
    rgba(201,164,53,0.4) 80%,
    transparent 100%);
  z-index: 9999;
  pointer-events: none;
}

/* 2. Section label flanking lines */
.text-label {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}

.text-label::before,
.text-label::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

/* 3. Ghost step numbers */
.step::after {
  content: attr(data-step);
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(5.5rem, 11vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* 4. Services section — subtle dot grid */
#paslaugos {
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* 5. Hero concentric rings */
.hero__rings {
  position: absolute;
  right: clamp(-100px, -2vw, 60px);
  top: 50%;
  transform: translateY(-48%);
  width: clamp(320px, 45vw, 580px);
  height: clamp(320px, 45vw, 580px);
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(184, 145, 58, 0.12);
}

.hero__ring::before {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(184, 145, 58, 0.08);
}

.hero__ring::after {
  content: '';
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 1px solid rgba(184, 145, 58, 0.06);
}

/* Glowing dot on the ring */
.hero__ring-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px 2px rgba(184,145,58,0.6);
  animation: orbit 12s linear infinite;
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(calc(clamp(160px, 22.5vw, 290px))) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(calc(clamp(160px, 22.5vw, 290px))) rotate(-360deg); }
}

/* 6. Scrolling tech strip between hero and services */
.tech-strip {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding-block: 13px;
  position: relative;
}

/* Fade masks on left/right */
.tech-strip::before,
.tech-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.tech-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-dark), transparent);
}

.tech-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-dark), transparent);
}

.tech-strip__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tech-scroll 30s linear infinite;
}

.tech-strip__track:hover {
  animation-play-state: paused;
}

.tech-strip__item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding-inline: 28px;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.tech-strip__item:hover {
  color: rgba(255, 255, 255, 0.6);
}

.tech-strip__sep {
  width: 4px;
  height: 4px;
  background: rgba(184, 145, 58, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tech-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Value Proposition Section ─────────────────────────────── */
.why {
  position: relative;
  overflow: hidden;
}

/* Subtle gold radial behind the section */
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,164,53,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why__header {
  max-width: 680px;
  margin-bottom: var(--sp-10);
}

.why__statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-on-dark);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.why__statement em {
  font-style: italic;
  color: var(--color-accent);
}

.why__intro {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 520px;
}

/* 4-item benefit list separated by fine lines */
.why__list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-5);
  align-items: start;
  padding-block: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-base);
  position: relative;
}

.why__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(201,164,53,0.07), transparent);
  transition: width var(--t-slow);
}

.why__item:hover::before {
  width: 100%;
}

.why__num {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  color: var(--color-accent);
  padding-top: 4px;
  opacity: 0.7;
  min-width: 28px;
}

.why__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.why__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-on-dark);
}

.why__desc {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  max-width: 560px;
}

/* ── FAQ Section ───────────────────────────────────────────── */
.faq__header {
  max-width: 640px;
  margin-bottom: var(--sp-8);
}

.faq__list {
  max-width: 780px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

details.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

details.faq__item > summary {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--color-text-on-dark);
  padding: var(--sp-4) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
  transition: color var(--t-fast);
  user-select: none;
}

details.faq__item > summary::-webkit-details-marker { display: none; }

details.faq__item > summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--t-base), color var(--t-fast);
}

details.faq__item[open] > summary { color: var(--color-accent); }
details.faq__item[open] > summary::after { transform: rotate(45deg); }

.faq__answer {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-dark-muted);
  padding-bottom: var(--sp-5);
  max-width: 640px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (min-width: 600px) {
  .btn-submit {
    width: auto;
  }
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 var(--sp-8);
  }

  .process__steps::before {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  /* Value prop: 2-column split at desktop */
  .why__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-12);
    align-items: start;
  }

  .why__header {
    position: sticky;
    top: calc(var(--nav-h) + var(--sp-8));
    margin-bottom: 0;
  }

}

/* ── Section visual enhancements ──────────────────────────── */

/* Process section — subtle grid texture */
#procesas {
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Stats section — soft left glow + divider line */
#statistikos {
  position: relative;
  overflow: hidden;
}
#statistikos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(184,145,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Why section — dot grid added on top of radial */
.why::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why__inner {
  position: relative;
  z-index: 1;
}

/* FAQ section — subtle left-side gold accent line */
#duk {
  position: relative;
}
#duk::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(184,145,58,0.3) 30%,
    rgba(184,145,58,0.3) 70%,
    transparent);
  pointer-events: none;
}

/* CTA section — fix blob to gold (sed already updated rgba, ensure gradient too) */
.cta-section::before {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,145,58,0.10) 0%, transparent 70%);
}

.cta-section__blob {
  background: radial-gradient(circle, rgba(184,145,58,0.14) 0%, transparent 70%);
}

/* Privacy policy page — nav overlap fix */
.policy-section {
  padding-top: calc(var(--nav-h) + var(--sp-12));
}

/* ── Anchor-link nav overlap fix ──────────────────────── */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}
