/* ═══════════════════════════════════════════════════════════
   THERAPEUTICA — Main Stylesheet
   Dark forest green + gold premium wellness aesthetic
═══════════════════════════════════════════════════════════ */

:root {
  --dark:        #09180f;
  --dark-2:      #0d2018;
  --dark-3:      #122a1e;
  --green:       #1a3826;
  --gold:        #c9a036;
  --gold-lt:     #ddb94a;
  --gold-dim:    rgba(201, 160, 54, 0.15);
  --white:       #ffffff;
  --warm:        #f4efe6;
  --muted:       rgba(244, 239, 230, 0.55);
  --muted-2:     rgba(244, 239, 230, 0.28);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  --nav-h:   72px;
  --r:       5px;
  --ease:    0.3s ease;
  --max-w:   1300px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: var(--sans); border: none; background: none; cursor: pointer; }
input, textarea, select { font-family: var(--sans); }

/* ── Utilities ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  background: rgba(201,160,54,0.07);
  border: 1px solid rgba(201,160,54,0.3);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.section-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
}
.section-label::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,160,54,0.22), transparent);
  animation: label-sweep 4.5s linear infinite;
  pointer-events: none;
}
@keyframes label-sweep {
  from { left: -80%; }
  to   { left: 130%; }
}

.section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
}

@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.section-h2 em {
  font-style: italic;
  background: linear-gradient(
    105deg,
    var(--gold) 0%,
    var(--gold-lt) 36%,
    #ffe899 50%,
    var(--gold-lt) 64%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  animation: gold-shimmer 4s linear infinite;
  padding-bottom: 0.08em;
  display: inline;
}
/* Preserve kontakt hover swap */
.kontakt__heading em {
  background: none;
  -webkit-text-fill-color: unset;
  color: var(--gold);
  animation: none;
}

.section-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
}

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-label { display: inline-flex; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,160,54,0.28);
}
.btn--gold:hover .btn-arrow { transform: translateX(5px); }

/* Cursor-tracking glow button */
.btn--glow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn--glow::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,222,100,0.38) 0%, rgba(232,197,109,0.18) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  left: var(--gx, 50%);
  top: var(--gy, 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.btn--glow:hover::before { opacity: 1; }
.btn--glow > * { position: relative; z-index: 1; }
.btn--ghost {
  background: transparent;
  color: var(--warm);
  border: 1px solid rgba(244,239,230,0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--gold-outline {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
}
.btn--gold-outline::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,160,54,0.18), transparent);
  transition: left 0.55s ease;
}
.btn--gold-outline:hover::before { left: 100%; }
.btn--gold-outline > * { position: relative; z-index: 1; }
.btn--gold-outline:hover {
  background: rgba(201,160,54,0.08);
  color: var(--gold-lt);
  box-shadow: 0 0 28px rgba(201,160,54,0.22), inset 0 0 0 1px rgba(201,160,54,0.4);
  transform: scale(1.04);
}
.btn--gold-outline:hover .btn-arrow { transform: translateX(5px); }
.btn--sm   { padding: 10px 22px; font-size: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* Gradient glow button */
.btn--gradient {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.4s ease;
}
.btn--gradient::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #1a6b40 0%, #c9a036 55%, #e8c96d 100%);
  opacity: 0.42;
  filter: blur(7px);
  border-radius: var(--r);
  transition: opacity 0.45s ease;
}
.btn--gradient:hover::before { opacity: 0.78; }
.btn--gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(201,160,54,0.25);
  color: var(--white);
}
.btn--gradient > * { position: relative; z-index: 1; }
.btn-arrow { transition: transform 0.25s ease; flex-shrink: 0; }
.btn--gradient:hover .btn-arrow { transform: translateX(5px); }

/* ── Hero load-in animations ───────────────── */
@keyframes hero-slide-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: scale(0.97) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-load-1 { animation: hero-slide-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero-load-2 { animation: hero-slide-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.hero-load-3 { animation: hero-slide-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.48s both; }
.hero-load-4 { animation: hero-slide-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.64s both; }
.hero-load-5 { animation: hero-slide-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.82s both; }
.hero-load-photo { animation: hero-fade-in 1s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero-load-2b   { animation: hero-slide-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.38s both; }

/* ── Scroll reveal animations ──────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Stagger siblings */
.fade-up.in:nth-child(2) { transition-delay: 0.1s; }
.fade-up.in:nth-child(3) { transition-delay: 0.2s; }
.fade-up.in:nth-child(4) { transition-delay: 0.3s; }
.fade-up.in:nth-child(5) { transition-delay: 0.4s; }
.fade-up.in:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════ NAV ══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(9, 24, 15, 0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}

/* ── Tubelight pill when scrolled ── */
.nav.scrolled .nav__links {
  background: rgba(11, 28, 18, 0.72);
  border-color: rgba(201, 160, 76, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(201,160,76,0.07),
    0 8px 40px rgba(0,0,0,0.35);
}
.nav.scrolled .nav__links a { color: rgba(245, 240, 232, 0.68); }
.nav.scrolled .nav__links a:hover {
  color: var(--gold);
  background: rgba(201, 160, 76, 0.09);
}
.nav.scrolled .nav__links a.nav-active {
  color: var(--gold);
  background: rgba(201, 160, 76, 0.12);
}

/* ── Lamp indicator ── */
.nav-lamp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition:
    left 0.48s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
}
.nav.scrolled .nav-lamp { opacity: 1; }

/* Glowing bar */
.nav-lamp__bar {
  display: block;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: linear-gradient(to right,
    rgba(201,160,76,0.5),
    #e8c96d 35%,
    #c9a04c 65%,
    rgba(201,160,76,0.5));
  border-radius: 0 0 4px 4px;
  animation: lampPulse 2.8s ease-in-out infinite alternate;
}
@keyframes lampPulse {
  from { box-shadow: 0 0 8px 1px rgba(201,160,76,0.55), 0 0 3px rgba(232,201,109,0.7); }
  to   { box-shadow: 0 0 20px 4px rgba(201,160,76,0.80), 0 0 8px rgba(232,201,109,1.0); }
}

/* Wide outer halo */
.nav-lamp__g1 {
  display: block;
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 32px;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,160,76,0.20) 0%, transparent 70%);
  filter: blur(10px);
}
/* Mid glow */
.nav-lamp__g2 {
  display: block;
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 20px;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,160,76,0.35) 0%, transparent 70%);
  filter: blur(6px);
}
/* Hot core */
.nav-lamp__g3 {
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 10px;
  background: rgba(232,201,109,0.45);
  border-radius: 50%;
  filter: blur(3px);
}
/* Downward light cone */
.nav-lamp__cone {
  display: block;
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 32px;
  background: linear-gradient(to bottom,
    rgba(201,160,76,0.14) 0%,
    rgba(201,160,76,0.04) 60%,
    transparent 100%);
  clip-path: polygon(28% 0%, 72% 0%, 100% 100%, 0% 100%);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo { width: 56px; height: 56px; object-fit: contain; }
.nav__brand-text { display: flex; flex-direction: column; }
.nav__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
}
.nav__sub {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: 0;
  margin-right: 32px;
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 360px;
  position: relative;
  overflow: visible;
  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.45s ease;
}
.nav__links li { display: flex; align-items: stretch; }
.nav__links a {
  display: flex;
  align-items: center;
  padding: 7px 20px;
  border-radius: 360px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav__links a:hover { color: var(--warm); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm);
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(9,24,15,0.98);
  backdrop-filter: blur(20px);
  padding: 36px 44px;
  border-top: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}
.nav__mobile ul a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
}

/* ═══════════════════════════ HERO ══════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: clip;
}

/* Animated orb background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  transform: translateZ(0);
}

/* Orb 1 — dominant right-side green mass */
.hero__orb--1 {
  width: 75%;
  height: 120%;
  top: -20%;
  right: -12%;
  background: radial-gradient(ellipse at 40% 45%,
    rgba(34,100,60,0.95) 0%,
    rgba(22,72,42,0.75) 28%,
    rgba(14,48,28,0.45) 55%,
    transparent 75%);
  filter: blur(90px);
  animation: orb1 20s ease-in-out infinite alternate;
}

/* Orb 2 — bottom-left counter-glow */
.hero__orb--2 {
  width: 58%;
  height: 85%;
  bottom: -22%;
  left: -10%;
  background: radial-gradient(ellipse at 55% 40%,
    rgba(16,58,34,0.92) 0%,
    rgba(10,40,22,0.65) 40%,
    transparent 72%);
  filter: blur(100px);
  animation: orb2 26s ease-in-out infinite alternate;
}

/* Orb 3 — central gold accent */
.hero__orb--3 {
  width: 40%;
  height: 60%;
  top: 22%;
  left: 26%;
  background: radial-gradient(ellipse at center,
    rgba(201,160,54,0.14) 0%,
    rgba(180,140,40,0.06) 50%,
    transparent 72%);
  filter: blur(75px);
  animation: orb3 18s ease-in-out infinite alternate;
}

/* Orb 4 — top-left deep green shadow */
.hero__orb--4 {
  width: 34%;
  height: 50%;
  top: -8%;
  left: 14%;
  background: radial-gradient(ellipse at center,
    rgba(22,68,40,0.72) 0%,
    rgba(12,42,24,0.4) 55%,
    transparent 75%);
  filter: blur(80px);
  animation: orb4 22s ease-in-out infinite alternate;
}

@keyframes orb1 {
  0%   { transform: translate(0,     0)    scale(1);    }
  30%  { transform: translate(-12%,  8%)   scale(1.18); }
  65%  { transform: translate(-5%,  18%)   scale(0.9);  }
  100% { transform: translate(-10%,  12%)  scale(1.14); }
}
@keyframes orb2 {
  0%   { transform: translate(0,    0)    scale(1);    }
  35%  { transform: translate(14%, -8%)   scale(1.2);  }
  70%  { transform: translate(7%,  -16%)  scale(0.88); }
  100% { transform: translate(12%, -12%)  scale(1.16); }
}
@keyframes orb3 {
  0%   { transform: translate(0,    0)   scale(1);    opacity: 0.75; }
  40%  { transform: translate(-11%,  7%) scale(1.28); opacity: 1;    }
  75%  { transform: translate(-4%,  14%) scale(1.1);  opacity: 0.8;  }
  100% { transform: translate(-9%,  10%) scale(1.22); opacity: 1;    }
}
@keyframes orb4 {
  0%   { transform: translate(0,    0)   scale(1);    }
  45%  { transform: translate(12%,  13%) scale(0.8);  }
  100% { transform: translate(8%,   8%)  scale(0.88); }
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 44px 180px;
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__left {
  max-width: 600px;
  position: relative;
}
.hero__left > * { position: relative; z-index: 1; }

/* Hero left */
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.kicker-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__h1-em {
  background: linear-gradient(
    105deg,
    var(--gold) 0%,
    var(--gold-lt) 36%,
    #ffe899 50%,
    var(--gold-lt) 64%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s linear infinite;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: rgba(201, 160, 54, 0.78);
  margin: 4px 0 38px;
  letter-spacing: 0.02em;
}
.hero__tagline::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(201, 160, 54, 0.4);
  flex-shrink: 0;
}
.hero__tagline em { font-style: inherit; }

.hero__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 60px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.trust-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,160,54,0.14);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background var(--ease), border-color var(--ease);
}
.trust-card:hover {
  background: rgba(201,160,54,0.04);
  border-color: rgba(201,160,54,0.28);
}
.trust-card strong {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
}
.trust-card span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Hero tree — absolute, fills right half of hero, top aligned with heading */
.hero__tree-wrap {
  position: absolute;
  top: calc(var(--nav-h) + 100px);
  right: 0;
  bottom: 0;
  left: 52%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero__tree-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(240, 215, 130, 0.6) 0%,
    rgba(210, 175, 75, 0.38) 20%,
    rgba(120, 165, 80, 0.2) 45%,
    rgba(30, 90, 50, 0.1) 65%,
    transparent 80%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* Scattered credential pills — positioned relative to .hero section */
.hero__cred-float {
  position: absolute;
  z-index: 3;
  padding: 7px 18px;
  background: rgba(9, 24, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 160, 54, 0.45);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(201,160,54,0.3);
  pointer-events: none;
}
/* Card 1: left border of tree, mid-upper */
.hero__cred-float--1 {
  left: 52%;
  top: 36%;
  transform: translateX(-50%);
}
/* Card 2: upper-right of tree */
.hero__cred-float--2 {
  right: 2%;
  top: 19%;
}
/* Card 3: lower-right of tree */
.hero__cred-float--3 {
  right: 3%;
  top: 62%;
}

.hero__tree {
  height: calc((100vh - var(--nav-h) - 100px) * 1.35);
  width: auto;
  max-width: none;
  position: relative;
  z-index: 1;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 60px rgba(201,160,54,0.5)) drop-shadow(0 0 120px rgba(201,160,54,0.22));
}

.hero__name-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-align: center;
  position: absolute;
  bottom: 96px;
  left: 76%;
  transform: translateX(-50%);
  z-index: 3;
  text-shadow: 0 0 28px rgba(201,160,54,0.6), 0 0 8px rgba(9,24,15,0.9);
  opacity: 0.92;
  white-space: nowrap;
  pointer-events: none;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,160,54,0.5), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ═══════════════════════════ PRISTUP ══════════════════════ */
.pristup {
  padding: 128px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pristup__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}

.pristup__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pristup__step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  cursor: default;
  transition: transform 0.35s ease;
}
.pristup__step:hover { transform: translateX(10px); }

.pristup__num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
  padding-top: 2px;
  transition: color 0.35s ease, transform 0.35s ease;
}
.pristup__step:hover .pristup__num {
  color: var(--gold);
  transform: scale(1.08);
}

.pristup__step-text h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}
.pristup__step:hover .pristup__step-text h4 { color: var(--gold-lt); }

.pristup__step-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.35s ease;
}
.pristup__step:hover .pristup__step-text p { color: rgba(244,239,230,0.82); }

.pristup__connector {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(201,160,54,0.2), rgba(201,160,54,0.05));
  margin-left: 78px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.pristup__right { }

.pristup__text-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,160,54,0.15);
  border-left: 3px solid rgba(201,160,54,0.6);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 36px;
}

.pristup__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 18px;
}
.pristup__body:last-child { margin-bottom: 0; }

/* ═══════════════════════════ REZULTATI ════════════════════ */
.rezultati {
  padding: 110px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,160,54,0.08);
  border-bottom: 1px solid rgba(201,160,54,0.08);
  position: relative;
  overflow: hidden;
}
/* Animated gradient blob background — matches React BackgroundGradientAnimation */
.rezultati__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(40deg, #0d2018, #081410);
  overflow: hidden;
  isolation: isolate;
}
.rezultati__blob {
  position: absolute;
  width: 80%;
  height: 80%;
  top: calc(50% - 40%);
  left: calc(50% - 40%);
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(60px);
  will-change: transform;
}
.rezultati__blob--1 {
  background: radial-gradient(circle at center, rgba(201,160,54,0.75) 0%, rgba(201,160,54,0) 50%);
  transform-origin: center center;
  animation: blob-vertical 30s ease infinite;
  opacity: 0.45;
}
.rezultati__blob--2 {
  background: radial-gradient(circle at center, rgba(30,100,55,0.85) 0%, rgba(30,100,55,0) 50%);
  transform-origin: calc(50% - 400px) center;
  animation: blob-circle 20s reverse infinite;
  opacity: 0.5;
}
.rezultati__blob--3 {
  background: radial-gradient(circle at center, rgba(220,185,72,0.7) 0%, rgba(220,185,72,0) 50%);
  transform-origin: calc(50% + 400px) center;
  animation: blob-circle 40s linear infinite;
  opacity: 0.38;
}
.rezultati__blob--4 {
  background: radial-gradient(circle at center, rgba(18,65,40,0.9) 0%, rgba(18,65,40,0) 50%);
  transform-origin: calc(50% - 200px) center;
  animation: blob-horizontal 40s ease infinite;
  opacity: 0.55;
}
.rezultati__blob--5 {
  background: radial-gradient(circle at center, rgba(180,132,42,0.65) 0%, rgba(180,132,42,0) 50%);
  transform-origin: calc(50% - 800px) calc(50% + 800px);
  animation: blob-circle 20s ease infinite;
  opacity: 0.35;
}

@keyframes blob-vertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}
@keyframes blob-horizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%)  translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}
@keyframes blob-circle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

.rezultati .container {
  position: relative;
  z-index: 1;
}
.rezultati__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* Quote — left column */
.rezultati__quote {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rezultati__blockquote {
  position: relative;
  padding: 36px 36px 36px 50px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,160,54,0.18);
  border-left: 3px solid rgba(201,160,54,0.6);
  border-radius: 10px;
}
.rezultati__blockquote::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--serif);
  font-size: 68px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}
.rezultati__blockquote p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 21px);
  font-style: italic;
  font-weight: 400;
  color: var(--warm);
  line-height: 1.78;
  margin-bottom: 20px;
}
.rezultati__author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.rezultati__dash {
  font-size: 20px;
  font-family: var(--serif);
  opacity: 0.5;
}

/* Orbital — right column */
.rezultati__orbital {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbital-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Orbital wrap */
.orb-wrap {
  position: relative;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}

/* Decorative rings */
.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.orb-ring--outer {
  width: 440px;
  height: 440px;
  border: 1px dashed rgba(201,160,54,0.18);
  animation: orb-ring-spin 100s linear infinite;
}
.orb-ring--inner {
  width: 175px;
  height: 175px;
  border: 1px solid rgba(201,160,54,0.09);
}
@keyframes orb-ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center orb */
.orb-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,54,0.12) 0%, rgba(9,24,15,0.96) 65%);
  border: 1px solid rgba(201,160,54,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 40px rgba(201,160,54,0.12), inset 0 0 24px rgba(201,160,54,0.06);
  pointer-events: none;
}
.orb-center__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,160,54,0.28);
  animation: orb-pulse-ring 3.2s ease-out infinite;
}
.orb-center__pulse--2 { animation-delay: 1.6s; }
@keyframes orb-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(2.5); opacity: 0; }
}
.orb-center__icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  opacity: 0.78;
}

/* Orbital nodes */
.orb-node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  will-change: transform, opacity;
  z-index: 1;
}
.orb-node__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(9,24,15,0.92);
  border: 1px solid rgba(201,160,54,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.orb-node__circle svg { width: 22px; height: 22px; }
.orb-node__circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,54,0);
  transition: border-color 0.3s, inset 0.3s;
}
.orb-node:hover .orb-node__circle {
  background: rgba(201,160,54,0.09);
  border-color: rgba(201,160,54,0.5);
  transform: scale(1.1);
}
.orb-node:hover .orb-node__circle::after {
  border-color: rgba(201,160,54,0.2);
  inset: -10px;
}
.orb-node.is-active .orb-node__circle {
  background: rgba(201,160,54,0.16);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(201,160,54,0.45), 0 0 0 4px rgba(201,160,54,0.08);
  transform: scale(1.2);
}
.orb-node.is-active .orb-node__circle::after {
  border-color: rgba(201,160,54,0.18);
  inset: -16px;
  animation: node-active-pulse 2s ease-out infinite;
}
@keyframes node-active-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.orb-node__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  white-space: nowrap;
  text-align: center;
  max-width: 110px;
  line-height: 1.4;
  pointer-events: none;
  transition: color 0.3s;
}
.orb-node:hover .orb-node__label,
.orb-node.is-active .orb-node__label { color: rgba(201,160,54,0.9); }

/* Info panel below orbital */
.orb-panel {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 380px;
}
.orb-panel__hint {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.28);
}
.orb-panel__info {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: orb-info-in 0.3s ease;
}
@keyframes orb-info-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.orb-panel__info h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.orb-panel__info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
}

/* ═══════════════════════════ PROGRAMI ═════════════════════ */
.programi {
  padding: 128px 0;
  background: var(--dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: rgba(13,32,24,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  border-color: rgba(201,160,54,0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.65),
              0 0 0 1px rgba(201,160,54,0.2),
              0 0 40px rgba(201,160,54,0.1);
}

.card--featured {
  background: var(--dark-3);
  border-color: rgba(201,160,54,0.3);
}
.card--featured:hover { border-color: rgba(201,160,54,0.55); }

.card--vip {
  background: linear-gradient(145deg, #0d1f15 0%, #122a1e 60%, #0a1a10 100%);
  border-color: rgba(201,160,54,0.5);
  box-shadow: 0 0 40px rgba(201,160,54,0.08), inset 0 1px 0 rgba(201,160,54,0.15);
}
.card--vip:hover {
  border-color: rgba(201,160,54,0.75);
  box-shadow: 0 24px 56px rgba(0,0,0,0.65),
              0 0 0 1px rgba(201,160,54,0.35),
              0 0 60px rgba(201,160,54,0.15);
}
.card__installment {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.card__featured-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.card__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.card__icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201,160,54,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
}

.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
}

.card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
}
.card__list li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.card__price {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

/* ═══════════════════════════ ABOUT ════════════════════════ */
.about {
  padding: 128px 0;
  background: linear-gradient(160deg, #faf8f4 0%, #eef6f0 60%, #f5f8f5 100%);
  border-top: 1px solid rgba(26,56,38,0.07);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.about__photo-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  filter: saturate(0.82) brightness(0.95);
}

.about__photo-border {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 55%;
  height: 55%;
  border: 1px solid rgba(201,160,54,0.22);
  border-radius: 4px;
  z-index: -1;
}

.about__quote {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(201,160,54,0.22);
  border-radius: 12px;
  padding: 36px 36px 32px;
  box-shadow: 0 10px 40px rgba(13,32,24,0.15), 0 3px 10px rgba(13,32,24,0.08), 0 0 0 1px rgba(201,160,54,0.08);
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.about__quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: width 0.6s ease;
}
.about__quote:hover::before { width: 100%; }
.about__quote::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,160,54,0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.about__quote:hover::after { opacity: 1; }
.about__quote:hover {
  box-shadow: 0 20px 56px rgba(26,56,38,0.13), 0 0 0 1px rgba(201,160,54,0.18);
  border-color: rgba(201,160,54,0.38);
  transform: translateY(-4px);
}
.about__quote-icon {
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 1;
}
.about__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: #1a3826;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.about__quote cite {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.about__text { }

.about__role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.about__bio {
  font-size: 15px;
  color: rgba(13,32,24,0.72);
  line-height: 1.95;
  margin-bottom: 20px;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid rgba(13,32,24,0.08);
}

.cred {
  background: #ffffff;
  border: 1px solid rgba(201,160,54,0.18);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(13,32,24,0.13), 0 2px 8px rgba(13,32,24,0.08);
  transition: border-color 0.35s ease, background 0.35s ease,
              transform 0.35s ease, box-shadow 0.35s ease;
}
.cred:hover {
  border-color: rgba(201,160,54,0.5);
  background: rgba(201,160,54,0.03);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,32,24,0.16), 0 4px 12px rgba(13,32,24,0.08), 0 0 0 1px rgba(201,160,54,0.18);
}
.cred__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cred:hover .cred__num {
  opacity: 1;
  transform: translateX(4px);
}
.cred__text { display: flex; flex-direction: column; gap: 5px; }
.cred b {
  font-size: 13px;
  font-weight: 600;
  color: #1a3826;
  line-height: 1.3;
  transition: color 0.35s ease;
}
.cred:hover b { color: var(--gold); }
.cred span { font-size: 11px; color: rgba(13,32,24,0.58); line-height: 1.5; }

/* ═══════════════════════════ METODE ═══════════════════════ */
.metode {
  padding: 128px 0;
  background: #030b05;
  position: relative;
  overflow: hidden;
}
.metode::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(125% 125% at 50% -10%,
    rgba(26,56,38,0.95) 0%,
    rgba(12,28,18,0.7) 38%,
    transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.metode .container { position: relative; z-index: 1; }

.metode__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.metode__item {
  background: rgba(3,11,5,0.72);
  padding: 52px 38px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.35s ease;
}

/* Decorative background number */
.metode__item::after {
  content: attr(data-n);
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(201,160,54,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.4s ease;
  transform: translateY(6px);
}

/* Gradient sweep on hover */
.metode__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(201,160,54,0.06) 0%,
    rgba(26,70,44,0.12) 60%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.metode__item:hover {
  background: rgba(18,42,30,0.85);
  transform: translateY(-3px);
}
.metode__item:hover::before { opacity: 1; }
.metode__item:hover::after {
  color: rgba(201,160,54,0.14);
  transform: translateY(0);
}

.metode__icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201,160,54,0.22);
  border-radius: 10px;
  margin-bottom: 26px;
  color: var(--gold);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.metode__item:hover .metode__icon {
  border-color: rgba(201,160,54,0.5);
  background: rgba(201,160,54,0.08);
  transform: scale(1.1);
}

.metode__item h4 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}
.metode__item:hover h4 { color: var(--gold-lt); }

.metode__item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}
.metode__item:hover p { color: rgba(244,239,230,0.78); }

/* ═══════════════════════════ CITAT ════════════════════════ */
.citat {
  padding: 128px 0;
  background: var(--dark-2);
}

.citat__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.citat__line {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 48px;
}

/* .citat__text moved to CITAT TYPEWRITER section below */

.citat__by {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 52px;
}
@media (max-width: 767px) {
  .citat__by { margin-bottom: 6px; }
  .citat__subtitle { margin-bottom: 28px; }
  .citat__quote-icon { display: none; }
  .citat__text { font-size: clamp(22px, 7vw, 32px); min-height: 0; }
}

/* ═══════════════════════════ KONTAKT ══════════════════════ */
.kontakt {
  padding: 128px 0;
  background: var(--dark);
}

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}
.kontakt__inner > * { min-width: 0; }

.kontakt__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.kontakt__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  font-size: 12px;
  color: var(--muted);
  transition: var(--ease);
}
.kontakt__ig:hover { border-color: var(--gold); color: var(--gold); }
.ig-arrow { margin-left: auto; opacity: 0.5; }

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 13px 17px;
  color: var(--warm);
  font-size: 14px;
  outline: none;
  transition: border-color var(--ease);
  resize: vertical;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244,239,230,0.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(201,160,54,0.45); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a036' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group select option {
  background: #0d2018;
  color: #f4efe6;
}
.form-group input.error,
.form-group textarea.error { border-color: rgba(220,80,80,0.6); }

.btn--gold.sent {
  background: #2a7a4a;
  border-color: #2a7a4a;
  color: #fff;
  pointer-events: none;
}

/* ═══════════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Background glow blobs */
.footer__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.footer__blob--1 {
  width: 420px;
  height: 420px;
  background: rgba(201,160,54,0.09);
  top: -160px;
  left: 15%;
}
.footer__blob--2 {
  width: 380px;
  height: 380px;
  background: rgba(26,56,38,0.35);
  bottom: -100px;
  right: 10%;
}

/* Glass card */
.footer__glass {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  background: radial-gradient(ellipse at 40% 0%, rgba(26,56,38,0.28) 0%, rgba(9,24,15,0.55) 60%, rgba(9,24,15,0.22) 100%);
  border: 1px solid rgba(201,160,54,0.13);
  border-radius: 16px;
  padding: 52px 56px;
  backdrop-filter: blur(4px);
  margin-bottom: 28px;
}

/* Brand column */
.footer__brand-col {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
}

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo { width: 52px; height: 52px; object-fit: contain; }
.footer__brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1.2;
}
.footer__brand-tag {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 3px;
}

.footer__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 260px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,160,54,0.2);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,160,54,0.06);
}

/* Nav columns */
.footer__nav {
  flex: 1;
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}
.footer__col h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 13px; }
.footer__col a { font-size: 13px; color: var(--muted-2); transition: color var(--ease); }
.footer__col a:hover { color: var(--warm); }

/* Bottom bar */
.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 11px; color: var(--muted-2); }
.footer__note { text-align: right; max-width: 480px; }

/* ═══════════════════════════ FEATURES STRIP ═══════════════ */
.features-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 24, 15, 0.75);
  border-top: 1px solid rgba(201,160,54,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  padding: 0 32px;
}
.features-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.features-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 16px;
  flex: 1;
  text-align: center;
  transition: background var(--ease);
}
.features-strip__item:hover {
  background: rgba(201,160,54,0.05);
}
.features-strip__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity var(--ease), transform var(--ease);
}
.features-strip__item:hover .features-strip__icon {
  opacity: 1;
  transform: translateY(-2px);
}
.features-strip__item span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  line-height: 1.45;
  transition: color var(--ease);
}
.features-strip__item:hover span {
  color: var(--warm);
}
.features-strip__sep {
  width: 1px;
  background: rgba(201,160,54,0.14);
  align-self: stretch;
  margin: 10px 0;
  flex-shrink: 0;
}

/* ═══════════════════════════ PROGRAMI SHADER ══════════════ */
.programi {
  position: relative;
  overflow: hidden;
}
.programi__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.22;
  display: block;
}

/* Floating gold particle dots */
.programi__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.programi__particles::before {
  content: '';
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle, rgba(201,160,54,0.28) 1px, transparent 1px),
    radial-gradient(circle, rgba(201,160,54,0.16) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(201,160,54,0.1) 1px, transparent 1px);
  background-size: 88px 88px, 132px 132px, 60px 60px;
  background-position: 0 0, 44px 66px, 22px 33px;
  animation: particles-drift 28s linear infinite;
}
.programi__particles::after {
  content: '';
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle, rgba(201,160,54,0.2) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(201,160,54,0.12) 1px, transparent 1px);
  background-size: 110px 75px, 70px 110px;
  background-position: 55px 37px, 35px 55px;
  animation: particles-drift 20s linear infinite reverse;
  opacity: 0.7;
}
@keyframes particles-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(88px, 88px); }
}
/* Dark overlay to keep text readable */
.programi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(9,24,15,0.65) 0%,
    rgba(9,24,15,0.45) 50%,
    rgba(9,24,15,0.65) 100%);
  z-index: 0;
  pointer-events: none;
}
.programi .container,
.programi .cards {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════ PHOTO HOVER (About) ══════════ */

.about__photo-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(13,32,24,0.22),
              0 6px 20px rgba(13,32,24,0.14),
              0 1px 4px rgba(13,32,24,0.08);
  transition: box-shadow 0.45s ease;
}
.about__photo-box:hover {
  box-shadow: 0 32px 88px rgba(13,32,24,0.3),
              0 8px 28px rgba(13,32,24,0.18),
              0 1px 4px rgba(13,32,24,0.1);
}
.about__photo-box .about__photo {
  border-radius: 0;
  transition: transform 0.55s ease;
}
.about__photo-box:hover .about__photo { transform: scale(1.04); }
.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,24,15,0.42) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.about__photo-box:hover .about__photo-overlay { opacity: 1; }

/* ═══════════════════════════ WORD CYCLE (Hero H1) ══════════ */
.hero__h1-em {
  display: block;
  margin-top: 0;
}
.hero__h1-static { display: none; }
.word-cycle {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.05em;
  min-width: 3ch;
}
.word-cycle__item {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.4s ease-out,
              transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1);
  color: var(--gold);
  -webkit-text-fill-color: var(--gold); /* override transparent inherited from parent background-clip */
  font-style: italic;
  white-space: nowrap;
}
.word-cycle__item.wc-active {
  opacity: 1;
  transform: translateY(0);
}
.word-cycle__item.wc-past {
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 0.35s ease-in,
              transform 0.35s ease-in;
}

/* About section — scoped overrides for light background */
.about .section-h2 { color: #1a3826; }
.about .section-h2 em { color: var(--gold); background-image: linear-gradient(105deg, #9a6e1a 0%, var(--gold) 36%, #e8c55a 50%, var(--gold) 64%, #9a6e1a 100%); }

/* ═══════════════════════════ ABOUT BIO CARD ════════════════ */
.about__bio-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(201,160,54,0.2);
  border-radius: 12px;
  padding: 32px 32px 28px;
  margin-bottom: 44px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 32px rgba(13,32,24,0.13), 0 2px 8px rgba(13,32,24,0.08);
}
.about__bio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: width 0.6s ease;
}
.about__bio-card:hover::before { width: 100%; }
.about__bio-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,160,54,0.08), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.about__bio-card:hover::after { opacity: 1; }
.about__bio-card:hover {
  border-color: rgba(201,160,54,0.38);
  box-shadow: 0 16px 48px rgba(13,32,24,0.12), 0 0 0 1px rgba(201,160,54,0.12);
}
.about__bio-card .about__bio:last-child { margin-bottom: 0; }

/* ═══════════════════════════ CITAT TYPEWRITER ══════════════ */
.citat__quote-icon {
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 32px;
}
.citat__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 50px);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 28px;
  min-height: 3.5em;
}
.char {
  display: inline;
  opacity: 0;
  transition: opacity 0.04s linear;
}
.char.visible { opacity: 1; }

/* Static quote variant — no typewriter, no min-height reservation */
.citat__text--static {
  min-height: 0;
  opacity: 1;
}
.citat__subtitle {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}
.rezultati__role {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 4px;
  opacity: 0.8;
}
.about__quote-role {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.65;
  margin-top: 6px;
  text-transform: uppercase;
}


/* ═══════════════════════════ KONTAKT HEADING HOVER ═════════ */
.kontakt__heading-top { transition: color 0.4s ease; }
.kontakt__heading em  { transition: color 0.4s ease; }
.kontakt__heading.form-hover .kontakt__heading-top { color: var(--gold); }
.kontakt__heading.form-hover em { color: var(--white); }

/* Enhanced input hover/focus */
.form-group input,
.form-group textarea,
.form-group select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(201,160,54,0.28);
  background: rgba(201,160,54,0.03);
  box-shadow: 0 0 0 3px rgba(201,160,54,0.06);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,160,54,0.55);
  background: rgba(201,160,54,0.04);
  box-shadow: 0 0 0 3px rgba(201,160,54,0.1), 0 2px 16px rgba(201,160,54,0.08);
}
.form-group:focus-within label { color: rgba(201,160,54,0.85); }

/* ═══════════════════════════ TESTIMONIALS ══════════════════ */
.testimonials {
  padding: 128px 0;
  background: linear-gradient(180deg, #f5f9f5 0%, #faf7f2 100%);
  border-top: 1px solid rgba(26,56,38,0.07);
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.testimonials__header .section-desc { margin: 0 auto; }
.testimonials .section-h2 { color: #1a3826; }
.testimonials .section-h2 em { color: var(--gold); background-image: linear-gradient(105deg, #9a6e1a 0%, var(--gold) 36%, #e8c55a 50%, var(--gold) 64%, #9a6e1a 100%); }
.testimonials .section-desc { color: rgba(13,32,24,0.6); }

.testimonials__viewport {
  overflow: hidden;
  max-height: 980px;
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%, black 8%, black 92%, transparent 100%);
}
.testimonials__cols {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0 32px;
}
.testimonials__col { width: 340px; flex-shrink: 0; }
.testimonials__col--md { display: none; }
.testimonials__col--lg { display: none; }

.testimonials__col-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonials__col-inner--1 { animation: scroll-up-col 18s linear infinite; }
.testimonials__col-inner--2 { animation: scroll-up-col 22s linear infinite reverse; }
.testimonials__col-inner--3 { animation: scroll-up-col 15s linear infinite; }
.testimonials__col-inner:hover { animation-play-state: paused; }

@keyframes scroll-up-col {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.tcard {
  background: #ffffff;
  border: 1px solid rgba(201,160,54,0.16);
  border-radius: 12px;
  padding: 28px 28px 24px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  box-shadow: 0 6px 24px rgba(13,32,24,0.11), 0 1px 4px rgba(13,32,24,0.07);
}
.tcard:hover {
  border-color: rgba(201,160,54,0.38);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,32,24,0.1);
}
.tcard > p {
  font-size: 14px;
  color: rgba(13,32,24,0.72);
  line-height: 1.85;
  margin-bottom: 22px;
  font-style: italic;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard__author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,160,54,0.25);
  flex-shrink: 0;
}
.tcard__author div { display: flex; flex-direction: column; gap: 3px; }
.tcard__author b { font-size: 12px; font-weight: 600; color: #1a3826; }
.tcard__author span { font-size: 10px; color: rgba(13,32,24,0.55); }

/* ═══════════════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1060px) {
  /* Hero: stack tree below content on tablet */
  .hero__inner        { padding: 80px 32px 380px; }
  .hero__tree-wrap    {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 380px;
  }
  .hero__tree         { height: 100%; transform: scale(1.1); transform-origin: center bottom; }
  .hero__tree-glow    { width: 80%; height: 90%; }
  .hero__cred-float   { display: none; }
  .hero__name-signature { bottom: 96px; left: 50%; }

  .pristup__inner   { grid-template-columns: 1fr; }
  .pristup__left    { margin-bottom: 40px; }
  .rezultati__inner { grid-template-columns: 1fr; gap: 60px; }
  .rezultati__orbital { overflow: hidden; }
  .orbital-container  { overflow: hidden; }
  .orb-wrap         { transform: scale(0.78); margin: -55px 0; }
  .about__inner     { grid-template-columns: 1fr; }
  .about__photo-col { position: static; }
  .about__photo     { max-width: 480px; }
  .kontakt__inner   { grid-template-columns: 1fr; }
  .cards            { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .metode__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__glass    { flex-direction: column; gap: 40px; }
  .footer__nav      { flex-wrap: wrap; gap: 36px; justify-content: flex-start; }
}

/* Tablet: 2 testimonial columns */
@media (min-width: 768px) and (max-width: 1059px) {
  .testimonials__col--md { display: block; }
}

@media (max-width: 768px) {
  /* Prevent ANY horizontal overflow */
  html, body { overflow-x: hidden; }

  .container      { padding: 0 20px; }
  .nav__inner     { padding: 0 20px; }
  .nav__links     { display: none; }
  .nav__brand-text{ display: none; }
  .nav__cta       { display: none; }
  .hamburger      { display: flex; }

  /* ── Hero: mobile stacked layout — kicker → tree → tagline → h1 → desc ── */
  .hero__name-signature { display: none !important; }
  .hero__cred-float     { display: none !important; }

  /* Hero: flex-start so content stacks from the top */
  .hero {
    justify-content: flex-start;
    min-height: 130vh;
  }

  /* Tree positioned between kicker and tagline, fully visible.
     Pushed down so the kicker pill sits clearly above the canopy. */
  .hero__tree-wrap {
    top: calc(var(--nav-h) + 178px);
    left: 0;
    right: 0;
    height: 52vh;
    bottom: auto;
    width: 100%;
    z-index: 0;
    opacity: 1;
    justify-content: center;
  }
  .hero__tree { height: 100%; width: auto; mix-blend-mode: normal; }

  /* Inner: small top padding — kicker sits just below nav */
  .hero__inner { padding: 2px 20px 60px; position: relative; z-index: 2; }

  /* Flex column so we can reorder: kicker, tagline, h1, desc... */
  .hero__left { display: flex; flex-direction: column; }

  /* Kicker: glass card, centered above the tree */
  .hero__kicker::before { content: none; }
  .hero__kicker .kicker-line { display: none; }
  .hero__kicker {
    order: 1;
    align-self: center;
    width: fit-content;
    padding: 6px 14px;
    background: rgba(9, 19, 13, 0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 160, 54, 0.26);
    border-radius: 8px;
    margin-bottom: 0;
    gap: 0;
    text-align: center;
  }

  /* Tagline: glass pill, centered, hugging the roots */
  .hero__tagline::before { display: none; }
  .hero__tagline {
    order: 2;
    align-self: center;
    width: fit-content;
    padding: 8px 16px;
    background: rgba(9, 19, 13, 0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 160, 54, 0.26);
    border-radius: 8px;
    margin-top: calc(52vh + 52px);
    margin-bottom: 0;
    text-align: center;
  }

  /* H1: below tagline, left-aligned (as original), static text on mobile */
  .hero__h1 {
    order: 3;
    font-size: clamp(34px, 9vw, 52px);
    text-align: left;
    margin-top: 22px;
  }
  .hero__h1::before { display: none; }
  .hero__h1 .word-cycle { display: none; }
  .hero__h1 .hero__h1-static { display: inline; }

  .hero__desc     { order: 4; }
  .hero__actions  { order: 5; flex-wrap: wrap; }
  .hero__trust    { order: 6; grid-template-columns: 1fr; gap: 8px; }
  .creds          { grid-template-columns: 1fr; }

  /* ── Section spacing ── */
  .pristup        { padding: 72px 0; }
  .rezultati      { padding: 72px 0; }
  .programi       { padding: 72px 0; }
  .about          { padding: 72px 0; }
  .metode         { padding: 72px 0; }
  .citat          { padding: 72px 0; }
  .kontakt        { padding: 72px 0; }

  /* ── Rezultati: clip orbital overflow, fix blockquote ── */
  .rezultati__inner     { gap: 40px; }
  .rezultati__orbital   { width: 100%; overflow: hidden; }
  .orbital-container    { width: 100%; overflow: hidden; }
  .orb-wrap             { transform: scale(0.7); margin: -75px 0; }
  .orb-node__label      { font-size: 12px; }
  .orb-node__circle     { width: 64px; height: 64px; }
  .orb-node__circle svg { width: 26px; height: 26px; }
  .orb-panel            { max-width: 100%; padding: 0 8px; box-sizing: border-box; }
  .rezultati__blockquote{ padding: 20px 20px 20px 36px; }
  .rezultati__blockquote p { font-size: 15px; word-break: break-word; }
  .rezultati__quote .btn { width: 100%; box-sizing: border-box; justify-content: center; }

  /* ── Other sections ── */
  .metode__grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  .footer__glass  { padding: 36px 28px; }
  .footer__brand-col { flex: none; width: 100%; }
  .footer__bottom { flex-direction: column; gap: 10px; }
  .footer__note   { text-align: left; }
}

/* Desktop: all 3 testimonial columns */
@media (min-width: 1060px) {
  .testimonials__col--md { display: block; }
  .testimonials__col--lg { display: block; }
}

/* Mobile: hide vertical columns, show horizontal strip instead */
.testimonials__mobile-strip { display: none; }

@media (max-width: 767px) {
  .testimonials__viewport    { display: none; }
  .testimonials__mobile-strip {
    display: block;
    overflow: hidden;
    margin-top: 40px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .testimonials__mobile-inner {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-mobile-row 38s linear infinite;
    padding: 8px 0 16px;
  }
  .testimonials__mobile-inner:hover { animation-play-state: paused; }
  .testimonials__mobile-inner .tcard {
    width: 272px;
    flex-shrink: 0;
  }
}
@keyframes scroll-mobile-row {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

@media (max-width: 768px) {
  .features-strip { padding: 0; overflow: hidden; }
  .features-strip__inner {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }
  .features-strip__inner::-webkit-scrollbar { display: none; }
  /* Let each item be as wide as its content — no overflow, no overlap */
  .features-strip__item { min-width: max-content; padding: 18px 22px; flex-shrink: 0; }
  .features-strip__item span { white-space: nowrap; font-size: 10px; }
  /* Remove <br> inside strip spans so no 2-line items on mobile */
  .features-strip__item span br { display: none; }
  .features-strip__sep  { margin: 8px 0; flex-shrink: 0; }
  .features-strip__icon { width: 28px; height: 28px; }

  /* Marquee: active state set by JS on mobile */
  .features-strip__inner.marquee-active {
    overflow: visible;
    width: max-content;
    padding: 0;
    animation: strip-scroll 32s linear infinite;
  }
}

@media (max-width: 480px) {
  .hero__inner      { padding: 72px 16px 110px; }
  .hero__h1         { font-size: clamp(36px, 9vw, 48px); }
  .hero__actions    { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .hero__trust      { grid-template-columns: 1fr; }
  .cards            { max-width: 100%; }
  .orb-wrap         { transform: scale(0.6); margin: -100px 0; }
  .rezultati__blockquote p { font-size: 14px; }
  .section-label    { font-size: 8px; letter-spacing: 0.14em; }
}

/* ═══════════════════════════ PROGRAM PAGES ════════════════════ */

.prog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  margin-right: 10px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.prog-breadcrumb svg { flex-shrink: 0; }
.prog-breadcrumb:hover {
  color: var(--gold);
  border-color: rgba(201,160,54,0.28);
  background: rgba(201,160,54,0.05);
}

.prog-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.prog-hero__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.prog-hero > .container,
.prog-hero > .prog-hero__inner { position: relative; z-index: 2; }
.prog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,15,9,0.72) 0%,
    rgba(5,15,9,0.45) 55%,
    rgba(5,15,9,0.10) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.prog-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center,
    rgba(26,56,38,0.55) 0%,
    rgba(14,38,24,0.28) 45%,
    transparent 72%);
  pointer-events: none;
}
.prog-hero__inner { max-width: 800px; }

.prog-hero__price {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin: 28px 0 36px;
}
.prog-hero__price-note {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--sans);
  display: block;
  margin-top: 6px;
  font-weight: 400;
}
.prog-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.prog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Generic content sections */
.prog-section { padding: 96px 0; background: var(--dark); }
.prog-section--alt { background: var(--dark-2); }
.prog-section--dark3 { background: var(--dark-3); }
.prog-section--light {
  background: linear-gradient(160deg, #faf8f4 0%, #eef6f0 60%, #f5f8f5 100%);
  border-top: 1px solid rgba(26,56,38,0.07);
  border-bottom: 1px solid rgba(26,56,38,0.07);
}
.prog-section--light .section-h2 { color: #1a3826; }
.prog-section--light .section-h2 em {
  color: var(--gold);
  background-image: linear-gradient(105deg, #9a6e1a 0%, var(--gold) 36%, #e8c55a 50%, var(--gold) 64%, #9a6e1a 100%);
}
.prog-section--light .prog-body { color: rgba(13,32,24,0.72); }
.prog-section--light .prog-whom__list li { color: rgba(13,32,24,0.72); border-bottom-color: rgba(13,32,24,0.06); }

/* Radial glow section — dark bg + green glow from top */
.prog-section--radial-glow {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,160,54,0.06);
  border-bottom: 1px solid rgba(201,160,54,0.06);
}
.prog-section--radial-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 600px at 50% -40px, rgba(26,92,56,0.42), transparent);
  pointer-events: none;
  z-index: 0;
}
.prog-section--radial-glow::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 340px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,160,54,0.30), transparent);
  pointer-events: none;
}
.prog-section--radial-glow .container { position: relative; z-index: 1; }
.prog-section--radial-glow .whom-card {
  background: rgba(11,22,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(201,160,54,0.22);
  box-shadow: 0 4px 28px rgba(0,0,0,0.40), inset 0 1px 0 rgba(201,160,54,0.07);
}
.prog-section--radial-glow .whom-card:hover {
  border-color: rgba(201,160,54,0.48);
  box-shadow: 0 18px 52px rgba(0,0,0,0.50), inset 0 1px 0 rgba(201,160,54,0.12);
}
.prog-section--radial-glow .whom-note {
  background: rgba(26,56,38,0.15);
  border-color: rgba(201,160,54,0.10);
}
.prog-section--radial-glow .whom-note p { color: var(--muted); }
.prog-section--radial-glow .whom-note strong { color: var(--warm); }

.prog-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 740px;
  margin-bottom: 20px;
}
.prog-body:last-child { margin-bottom: 0; }

/* Text + image split layout */
.prog-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.prog-split__text { display: flex; flex-direction: column; }
.prog-split__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-split__picture {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45));
}
@media (max-width: 860px) {
  .prog-split {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  .prog-split__img { order: -1; }
  .prog-split__picture { max-width: 300px; }
}

/* Protocol steps — 2×2 card grid */
.prog-steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prog-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 32px 32px;
  background: rgba(13,32,24,0.55);
  border: 1px solid rgba(201,160,54,0.10);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}
.prog-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--gold), rgba(232,197,109,0.35));
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.prog-step:hover::before { width: 100%; }
.prog-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 85%, rgba(201,160,54,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.prog-step:hover {
  border-color: rgba(201,160,54,0.40);
  transform: translateY(-6px);
  background: rgba(18,44,30,0.88);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.42),
    0 0 0 1px rgba(201,160,54,0.10),
    0 0 48px rgba(201,160,54,0.06);
}
.prog-step:hover::after { opacity: 1; }
.prog-step__num {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: rgba(201,160,54,0.10);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  text-align: right;
  transition: color 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.prog-step:hover .prog-step__num {
  color: rgba(201,160,54,0.55);
  transform: scale(1.1) translateX(3px);
}
.prog-step__content {
  position: relative;
  z-index: 1;
}
.prog-step__content h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.35s ease;
}
.prog-step:hover .prog-step__content h4 { color: var(--gold-lt); }
.prog-step__content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  transition: color 0.35s ease;
}
.prog-step:hover .prog-step__content p { color: rgba(244,239,230,0.78); }

/* 5R phases */
.prog-phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.prog-phase {
  background: rgba(13,32,24,0.92);
  border: 1px solid rgba(201,160,54,0.18);
  border-radius: 10px;
  padding: 28px 20px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.prog-phase:hover {
  border-color: rgba(201,160,54,0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(201,160,54,0.1);
}
.prog-phase__arrow {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 10px;
}
.prog-phase__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.prog-phase p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── prog-phase--enhanced (premium-1na1-5r-reset.html only, applied by JS) ── */
.prog-phase--enhanced {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(11,27,19,0.98) 0%, rgba(9,21,14,0.98) 100%);
  border: 1px solid rgba(201,160,54,0.14);
  border-radius: 16px;
  padding: 36px 24px 32px;
  --ph-x: 50%; --ph-y: 50%;
  --ph-tilt-x: 0deg; --ph-tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--ph-tilt-x)) rotateY(var(--ph-tilt-y));
  transition: border-color 0.35s ease, transform 0.15s ease, box-shadow 0.35s ease;
}
.prog-phase--enhanced.is-hovered {
  border-color: rgba(201,160,54,0.5);
  transform: perspective(900px) rotateX(var(--ph-tilt-x)) rotateY(var(--ph-tilt-y)) translateY(-12px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.75), 0 0 50px rgba(201,160,54,0.12);
}
.prog-phase--enhanced::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,160,54,0.65) 50%, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.prog-phase--enhanced.is-hovered::before { opacity: 1; }
.prog-phase--enhanced::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--ph-x) var(--ph-y),
    rgba(201,160,54,0.13) 0%,
    rgba(201,160,54,0.05) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.prog-phase--enhanced.is-hovered::after { opacity: 1; }

.prog-phase--enhanced .prog-phase__arrow {
  position: relative; z-index: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(201,160,54,0.1);
  border: 1px solid rgba(201,160,54,0.22);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 20px;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.prog-phase--enhanced.is-hovered .prog-phase__arrow {
  background: rgba(201,160,54,0.22);
  border-color: rgba(201,160,54,0.55);
}
.prog-phase--enhanced .prog-phase__title {
  position: relative; z-index: 1;
  transition: color 0.35s ease;
}
.prog-phase--enhanced.is-hovered .prog-phase__title {
  color: rgba(244,234,193,1);
}
.prog-phase--enhanced p {
  position: relative; z-index: 1;
  font-size: 13px; color: var(--muted); line-height: 1.75;
  transition: color 0.35s ease;
}
.prog-phase--enhanced.is-hovered p {
  color: rgba(192,188,175,0.92);
}
.prog-phase__watermark {
  position: absolute;
  right: 14px; bottom: 6px;
  font-family: var(--serif);
  font-size: 86px; font-weight: 700;
  color: rgba(201,160,54,0.04);
  line-height: 1;
  pointer-events: none; z-index: 0;
  user-select: none;
  transition: color 0.4s ease;
}
.prog-phase--enhanced.is-hovered .prog-phase__watermark {
  color: rgba(201,160,54,0.1);
}

/* Includes box */
.prog-includes {
  background: rgba(13,32,24,0.92);
  border: 1px solid rgba(201,160,54,0.22);
  border-radius: 12px;
  padding: 40px 44px;
  margin-top: 48px;
}
.prog-includes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  margin-bottom: 36px;
  list-style: none;
}
.prog-includes__list li {
  font-size: 13px;
  color: var(--warm);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.prog-includes__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.prog-includes__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.prog-includes__price {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

/* For whom — old list styles (kept for other pages) */
.prog-whom { max-width: 800px; }
.prog-whom__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.prog-whom__list-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.prog-whom__list-title--no { color: var(--muted); }
.prog-whom__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prog-whom__list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.prog-whom__list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.prog-whom__list--no li::before { content: '·'; color: var(--muted); }

/* ── Whom grid redesign ─────────────────────────────────── */
.whom-intro {
  color: var(--warm) !important;
  text-align: center;
  margin: 0 auto 48px;
  color: rgba(13,32,24,0.62) !important;
}
.whom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.whom-card {
  grid-column: span 2;
  background: var(--dark);
  border: 1px solid rgba(201,160,54,0.10);
  border-radius: 18px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  /* MagicBento custom properties */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 260px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: border-color 0.35s ease, transform 0.18s ease, box-shadow 0.35s ease;
}
.whom-card:hover {
  border-color: rgba(201,160,54,0.38);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(201,160,54,0.07);
}
/* Cursor-following border glow (MagicBento border-glow effect) */
.whom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(201,160,54, calc(var(--glow-intensity) * 0.9)) 0%,
    rgba(201,160,54, calc(var(--glow-intensity) * 0.45)) 30%,
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
/* Global spotlight that hovers over the whole whom-grid */
.whom-spotlight {
  position: fixed;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(201,160,54,0.11) 0%,
    rgba(201,160,54,0.05) 22%,
    rgba(201,160,54,0.025) 38%,
    rgba(201,160,54,0.008) 55%,
    transparent 70%
  );
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: left, top, opacity;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
/* Star particles */
.whom-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201,160,54,1);
  box-shadow: 0 0 6px rgba(201,160,54,0.7), 0 0 12px rgba(201,160,54,0.3);
  pointer-events: none;
  z-index: 10;
}
/* Click ripple */
.whom-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  transform: scale(0);
  background: radial-gradient(circle, rgba(201,160,54,0.32) 0%, rgba(201,160,54,0.14) 35%, transparent 70%);
  transition: transform 0.75s ease-out, opacity 0.75s ease-out;
}
.whom-card--offset:nth-child(4) { grid-column: 2 / span 2; }
.whom-card--offset:nth-child(5) { grid-column: 4 / span 2; }
.whom-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201,160,54,0.08);
  border: 1px solid rgba(201,160,54,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.whom-card:hover .whom-card__icon { background: rgba(201,160,54,0.15); }
.whom-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.whom-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Whom icon animations ───────────────────────────────── */

/* Color cycling — each card offset so they don't sync */
.whom-card__icon {
  animation: whomIconClr 7s ease-in-out infinite;
}
.whom-card:nth-child(1) .whom-card__icon { animation-delay:    0s; }
.whom-card:nth-child(2) .whom-card__icon { animation-delay: -1.4s; }
.whom-card:nth-child(3) .whom-card__icon { animation-delay: -2.8s; }
.whom-card:nth-child(4) .whom-card__icon { animation-delay: -4.2s; }
.whom-card:nth-child(5) .whom-card__icon { animation-delay: -5.6s; }

@keyframes whomIconClr {
  0%,100% { background: rgba(201,160,54,0.09); border-color: rgba(201,160,54,0.18); color: var(--gold); }
  40%     { background: rgba(26,92,56,0.20);  border-color: rgba(26,92,56,0.35);  color: #5ec98a; }
  70%     { background: rgba(201,160,54,0.14); border-color: rgba(201,160,54,0.26); color: #e8c55a; }
}

/* Card 1 — moon: slow orbit rotation */
.whom-card:nth-child(1) .whom-card__icon svg {
  animation: whomSpin 14s linear infinite;
  transform-origin: center;
}
@keyframes whomSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Card 2 — clock: tick pulse + slight shake */
.whom-card:nth-child(2) .whom-card__icon svg {
  animation: whomTick 1.8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes whomTick {
  0%,100% { transform: scale(1) rotate(0deg); }
  25%      { transform: scale(1.18) rotate(6deg); }
  50%      { transform: scale(1) rotate(0deg); }
  75%      { transform: scale(1.12) rotate(-4deg); }
}

/* Card 3 — bars: grow up/down stagger */
.whom-card:nth-child(3) .whom-card__icon svg {
  animation: whomBars 2.4s ease-in-out infinite;
}
@keyframes whomBars {
  0%,100% { transform: scaleY(1) translateY(0); }
  50%      { transform: scaleY(0.72) translateY(3px); }
}

/* Card 4 — pulse wave: stretch horizontal */
.whom-card:nth-child(4) .whom-card__icon svg {
  animation: whomWave 2.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes whomWave {
  0%,100% { transform: scaleX(1); }
  30%      { transform: scaleX(0.68) rotate(-8deg); }
  60%      { transform: scaleX(1.22) rotate(5deg); }
}

/* Card 5 — chat bubble: bounce + rotate */
.whom-card:nth-child(5) .whom-card__icon svg {
  animation: whomFloat 3s cubic-bezier(0.45,0.05,0.55,0.95) infinite;
  transform-origin: bottom center;
}
@keyframes whomFloat {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  30%      { transform: translateY(-5px) rotate(-8deg) scale(1.1); }
  65%      { transform: translateY(-2px) rotate(5deg) scale(1.05); }
}

.whom-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(26,56,38,0.10);
  border: 1px solid rgba(26,56,38,0.16);
  border-radius: 10px;
  padding: 16px 22px;
}
.whom-note__icon { color: rgba(13,32,24,0.45); flex-shrink: 0; margin-top: 1px; }
.whom-note p { font-size: 13px; color: rgba(13,32,24,0.60); line-height: 1.75; }
.whom-note strong { color: rgba(13,32,24,0.82); }
@media (max-width: 920px) {
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .whom-card { grid-column: span 1 !important; }
}
@media (max-width: 560px) {
  .whom-grid { grid-template-columns: 1fr; }
}

/* ── Prog includes — enhanced animated card ─────────── */
@property --inc-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes inc-border-spin { to { --inc-angle: 360deg; } }

.prog-includes {
  position: relative;
  background: rgba(9,19,13,0.92);
  border: 1px solid rgba(201,160,54,0.20);
  border-radius: 20px;
  padding: 44px 48px;
  margin-top: 48px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 0 60px rgba(201,160,76,0.06),
    0 28px 72px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(201,160,76,0.10);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.prog-includes:hover {
  transform: translateY(-5px);
  border-color: rgba(201,160,54,0.42);
  box-shadow:
    0 0 100px rgba(201,160,76,0.18),
    0 44px 90px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(201,160,76,0.22);
}

/* Rotating conic-gradient border on hover */
.prog-includes::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1.5px solid transparent;
  background: conic-gradient(from var(--inc-angle),
    rgba(201,160,54,0.04) 0%,
    rgba(201,160,54,0.04) 58%,
    rgba(201,160,54,0.55) 70%,
    rgba(232,197,109,0.95) 77%,
    rgba(255,230,130,1.0) 80%,
    rgba(232,197,109,0.95) 83%,
    rgba(201,160,54,0.55) 90%,
    rgba(201,160,54,0.04) 100%
  ) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 4;
}
.prog-includes:hover::before {
  opacity: 1;
  animation: inc-border-spin 3.5s linear infinite;
}

/* Grid texture — replaced by animated SVG (.prog-grid-anim) injected via JS */
.prog-includes::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated SVG grid overlay (MagicUI AnimatedGridPattern equivalent) */
.prog-grid-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  -webkit-mask: radial-gradient(ellipse 90% 80% at 50% 50%, black 5%, rgba(0,0,0,0.55) 48%, transparent 88%);
  mask: radial-gradient(ellipse 90% 80% at 50% 50%, black 5%, rgba(0,0,0,0.55) 48%, transparent 88%);
}

/* Background glow */
.prog-includes__glow {
  position: absolute;
  top: -35%; left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(26,92,56,0.30) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(28px);
  animation: incGlow 9s ease-in-out infinite alternate;
}
@keyframes incGlow {
  from { opacity: 0.55; transform: translateX(-50%) scaleX(0.85); }
  to   { opacity: 1;    transform: translateX(-50%) scaleX(1.18); }
}

/* Traveling light beams */
.inc-beams {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.inc-beam { position: absolute; filter: blur(1px); opacity: 0; }
.inc-beam--t {
  top: 0; left: 0; height: 2px; width: 50%;
  background: linear-gradient(to right, transparent, rgba(201,160,54,0.85), transparent);
  animation: incBeamT 4s ease-in-out infinite;
}
.inc-beam--r {
  top: 0; right: 0; width: 2px; height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(201,160,54,0.85), transparent);
  animation: incBeamR 4s ease-in-out infinite 1s;
}
.inc-beam--b {
  bottom: 0; right: 0; height: 2px; width: 50%;
  background: linear-gradient(to left, transparent, rgba(201,160,54,0.85), transparent);
  animation: incBeamB 4s ease-in-out infinite 2s;
}
.inc-beam--l {
  bottom: 0; left: 0; width: 2px; height: 50%;
  background: linear-gradient(to top, transparent, rgba(201,160,54,0.85), transparent);
  animation: incBeamL 4s ease-in-out infinite 3s;
}
@keyframes incBeamT {
  0%   { left: -50%;  opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.5; }
  100% { left: 100%;  opacity: 0; }
}
@keyframes incBeamR {
  0%   { top: -50%;  opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.5; }
  100% { top: 100%;  opacity: 0; }
}
@keyframes incBeamB {
  0%   { right: -50%; opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.5; }
  100% { right: 100%; opacity: 0; }
}
@keyframes incBeamL {
  0%   { bottom: -50%; opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.5; }
  100% { bottom: 100%; opacity: 0; }
}

/* Corner glow dots */
.inc-corner {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(201,160,54,0.55);
  filter: blur(1px);
  pointer-events: none;
  z-index: 2;
}
.inc-corner--tl { top: 0;    left: 0;  animation: incCorner 2.4s ease-in-out infinite; }
.inc-corner--tr { top: 0;    right: 0; animation: incCorner 2.4s ease-in-out infinite 0.6s; }
.inc-corner--br { bottom: 0; right: 0; animation: incCorner 2.4s ease-in-out infinite 1.2s; }
.inc-corner--bl { bottom: 0; left: 0;  animation: incCorner 2.4s ease-in-out infinite 1.8s; }
@keyframes incCorner {
  0%,100% { opacity: 0.15; }
  50%     { opacity: 0.75; }
}

.prog-includes__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.prog-includes__title::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,160,54,0.25));
  flex-shrink: 0;
  border-radius: 2px;
}
.prog-includes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  margin-bottom: 36px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.prog-includes__list li {
  font-size: 14px;
  color: var(--warm);
  display: flex;
  align-items: center;
  gap: 11px;
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.prog-includes__list li::before { display: none; }
.prog-includes__ck {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(201,160,54,0.12);
  border: 1px solid rgba(201,160,54,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* Per-item unique icons in includes list */
.prog-includes__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,160,54,0.07);
  border: 1px solid rgba(201,160,54,0.14);
  color: rgba(201,160,54,0.58);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    color 0.45s cubic-bezier(0.34,1.56,0.64,1),
    background 0.45s ease,
    border-color 0.45s ease,
    transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.45s ease;
}
.prog-includes:hover .prog-includes__item-icon {
  background: rgba(201,160,54,0.14);
  border-color: rgba(201,160,54,0.38);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(201,160,54,0.16);
}
/* Staggered spring pop per icon */
.prog-includes:hover li:nth-child(1) .prog-includes__item-icon { transform: scale(1.12) rotate(-6deg); transition-delay: 0s; }
.prog-includes:hover li:nth-child(2) .prog-includes__item-icon { transform: scale(1.12) rotate(6deg);  transition-delay: 0.05s; }
.prog-includes:hover li:nth-child(3) .prog-includes__item-icon { transform: scale(1.12) rotate(-4deg); transition-delay: 0.10s; }
.prog-includes:hover li:nth-child(4) .prog-includes__item-icon { transform: scale(1.12) rotate(5deg);  transition-delay: 0.15s; }
.prog-includes:hover li:nth-child(5) .prog-includes__item-icon { transform: scale(1.12) rotate(-7deg); transition-delay: 0.20s; }
.prog-includes:hover li:nth-child(6) .prog-includes__item-icon { transform: scale(1.12) rotate(4deg);  transition-delay: 0.25s; }
/* SVG inside icons */
.prog-includes__item-icon svg { width: 18px; height: 18px; }

/* "Preporučeno" / VIP badge pinned to top of includes card */
.prog-includes__badge {
  position: absolute;
  top: -1px;
  right: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d2018;
  background: linear-gradient(135deg, #c9a036 0%, #e8c55a 50%, #c9a036 100%);
  padding: 5px 16px 6px;
  border-radius: 0 0 10px 10px;
  z-index: 3;
  box-shadow: 0 4px 18px rgba(201,160,54,0.40);
}
.prog-includes__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.prog-includes__price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.prog-includes__price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(201,160,54,0.35);
}

/* Final CTA section */
@property --cta-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

.prog-cta {
  padding: 96px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prog-cta__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.prog-cta__blob--1 {
  width: 500px; height: 500px;
  top: -15%; left: -8%;
  background: radial-gradient(ellipse, rgba(26,92,56,0.32) 0%, transparent 70%);
  animation: ctaBlob1 9s ease-in-out infinite alternate;
}
.prog-cta__blob--2 {
  width: 420px; height: 420px;
  bottom: -15%; right: -5%;
  background: radial-gradient(ellipse, rgba(201,160,76,0.22) 0%, transparent 70%);
  animation: ctaBlob2 11s ease-in-out infinite alternate;
}
@keyframes ctaBlob1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px,-40px) scale(1.2); } }
@keyframes ctaBlob2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-40px,30px) scale(1.25); } }

.cta-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 56px 48px 44px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(135deg, rgba(10,26,18,0.93) 0%, rgba(7,18,12,0.96) 100%) padding-box,
    conic-gradient(
      from var(--cta-angle),
      rgba(201,160,76,0.90)  0deg,
      rgba(26,92,56,0.65)   80deg,
      rgba(5,14,9,0.06)    160deg,
      rgba(5,14,9,0.06)    200deg,
      rgba(26,92,56,0.65)  280deg,
      rgba(201,160,76,0.90) 360deg
    ) border-box;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 80px rgba(201,160,76,0.09),
    0 40px 100px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(201,160,76,0.14);
  animation: ctaBorderSpin 6s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,160,76,0.65), transparent);
  animation: ctaTopLine 3s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaBorderSpin { to { --cta-angle: 360deg; } }
@keyframes ctaTopLine {
  from { width: 30%; opacity: 0.5; }
  to   { width: 65%; opacity: 1; }
}

.cta-card .section-h2 { margin-bottom: 16px; }
.prog-cta__desc {
  font-size: 15px;
  color: var(--muted);
  margin: 0 auto 36px;
  line-height: 1.85;
  max-width: 480px;
  text-align: center;
}
.prog-cta__disclaimer {
  font-size: 11px;
  color: var(--muted-2);
  margin: 32px auto 0;
  line-height: 1.75;
  max-width: 500px;
  text-align: center;
}
@media (max-width: 640px) {
  .cta-card { padding: 40px 24px 32px; }
}

/* About-role text on dark bg */
.about__role--dark {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.75;
}

/* ═══════════════════════════ AURORA HERO ═══════════════════ */
.prog-hero--aurora { overflow: hidden; }

/* Hide WebGL canvas on aurora variant */
.prog-hero--aurora .prog-hero__gl { display: none; }

.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 28% 45%, rgba(20,80,45,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 74% 58%, rgba(160,110,22,0.28) 0%, transparent 60%);
  animation: auroraP 12s ease-in-out infinite;
}
@keyframes auroraP {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
}
.aurora__blob--1 {
  width: 60%; height: 60%;
  top: -20%; left: -15%;
  background: rgba(18,72,40,0.60);
  animation: auroraB1 32s ease-in-out infinite alternate;
}
.aurora__blob--2 {
  width: 55%; height: 55%;
  bottom: -20%; right: -12%;
  background: rgba(155,100,18,0.48);
  animation: auroraB2 42s ease-in-out infinite alternate;
}
.aurora__blob--3 {
  width: 44%; height: 44%;
  top: 25%; left: 28%;
  background: rgba(8,52,28,0.44);
  animation: auroraB3 55s ease-in-out infinite alternate;
}
@keyframes auroraB1 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(55px,28px) scale(1.18); }
  100% { transform: translate(-35px,18px) scale(0.94); }
}
@keyframes auroraB2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-65px,-32px) scale(1.28); }
  100% { transform: translate(38px,-18px) scale(0.88); }
}
@keyframes auroraB3 {
  0%   { transform: translate(0,0) scale(1) rotate(0deg); }
  50%  { transform: translate(28px,-38px) scale(1.12) rotate(180deg); }
  100% { transform: translate(-22px,28px) scale(0.96) rotate(360deg); }
}

.aurora__star {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(245,240,232,0.85);
  animation: auroraStar var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}
@keyframes auroraStar {
  0%, 100% { opacity: 0; }
  50%       { opacity: var(--peak, 0.55); }
}

/* Responsive program pages */
@media (max-width: 1060px) {
  .prog-phases { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .prog-hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
  .prog-section { padding: 64px 0; }
  .prog-includes { padding: 28px 24px; }
  .prog-includes__list { grid-template-columns: 1fr; }
  .prog-includes__footer { flex-direction: column; align-items: flex-start; }
  .prog-whom__lists { grid-template-columns: 1fr; gap: 28px; }
  .prog-phases { grid-template-columns: 1fr; }
  .prog-steps { grid-template-columns: 1fr; }
  .prog-step { gap: 16px; padding: 28px 24px; }
  .prog-step__num { min-width: 40px; font-size: 40px; }
  .prog-hero__actions { flex-direction: column; }
  .prog-hero__actions .btn { width: 100%; justify-content: center; box-sizing: border-box; }
}

/* ═══════════════════════════ KONTAKT GLASS CARD ═══════════════════ */

.kontakt { position: relative; overflow: hidden; }

/* Animated background glow blobs behind the card */
.kbg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.kbg-glow--1 {
  top: -25%; left: 50%;
  transform: translateX(-50%);
  width: 130%; height: 75%;
  background: radial-gradient(ellipse, rgba(26,92,56,0.55) 0%, rgba(13,50,30,0.25) 50%, transparent 70%);
  filter: blur(60px);
  animation: kglow1 9s ease-in-out infinite alternate;
}
.kbg-glow--2 {
  bottom: -30%; left: 50%;
  transform: translateX(-50%);
  width: 90%; height: 65%;
  background: radial-gradient(ellipse, rgba(201,160,76,0.18) 0%, rgba(26,70,40,0.2) 50%, transparent 70%);
  filter: blur(56px);
  animation: kglow2 7s ease-in-out infinite alternate;
}
@keyframes kglow1 {
  0%   { opacity: 0.65; transform: translateX(-50%) scale(0.93); }
  100% { opacity: 1;    transform: translateX(-50%) scale(1.08); }
}
@keyframes kglow2 {
  0%   { opacity: 0.5;  transform: translateX(-50%) scale(1.05); }
  100% { opacity: 0.88; transform: translateX(-50%) scale(0.92); }
}

/* 3D tilt wrapper */
.kcard {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 1;
}

/* Beam & corner overlay — clips beams to card boundary */
.kcard__beams {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

/* Travelling light beams */
.kcard__beam { position: absolute; filter: blur(1.5px); opacity: 0; }
.kcard__beam--t {
  top: 0; left: 0; height: 2px; width: 50%;
  background: linear-gradient(to right, transparent, rgba(201,160,54,0.9), transparent);
  animation: kBeamT 3.5s ease-in-out infinite;
}
.kcard__beam--r {
  top: 0; right: 0; width: 2px; height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(201,160,54,0.9), transparent);
  animation: kBeamR 3.5s ease-in-out infinite 0.875s;
}
.kcard__beam--b {
  bottom: 0; right: 0; height: 2px; width: 50%;
  background: linear-gradient(to left, transparent, rgba(201,160,54,0.9), transparent);
  animation: kBeamB 3.5s ease-in-out infinite 1.75s;
}
.kcard__beam--l {
  bottom: 0; left: 0; width: 2px; height: 50%;
  background: linear-gradient(to top, transparent, rgba(201,160,54,0.9), transparent);
  animation: kBeamL 3.5s ease-in-out infinite 2.625s;
}
@keyframes kBeamT {
  0%   { left: -50%;  opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.55; }
  100% { left: 100%;  opacity: 0; }
}
@keyframes kBeamR {
  0%   { top: -50%;  opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.55; }
  100% { top: 100%;  opacity: 0; }
}
@keyframes kBeamB {
  0%   { right: -50%; opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.55; }
  100% { right: 100%; opacity: 0; }
}
@keyframes kBeamL {
  0%   { bottom: -50%; opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.55; }
  100% { bottom: 100%; opacity: 0; }
}

/* Corner glow dots */
.kcard__corner {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(201,160,54,0.6);
  filter: blur(1px);
}
.kcard__corner--tl { top:0;    left:0;  animation: kCorner 2.2s ease-in-out infinite; }
.kcard__corner--tr { top:0;    right:0; animation: kCorner 2.2s ease-in-out infinite 0.55s; }
.kcard__corner--br { bottom:0; right:0; animation: kCorner 2.2s ease-in-out infinite 1.1s; }
.kcard__corner--bl { bottom:0; left:0;  animation: kCorner 2.2s ease-in-out infinite 1.65s; }
@keyframes kCorner {
  0%,100% { opacity: 0.2; }
  50%     { opacity: 0.7; }
}

/* Glass face — the visible card surface */
.kcard__face {
  position: relative;
  background: rgba(10, 26, 18, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 16px;
  border: 1px solid rgba(201,160,76,0.22);
  padding: 56px 64px;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 60px rgba(26,92,56,0.18),
    0 24px 72px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(201,160,76,0.10);
  transition: border-color 0.4s ease;
}
/* Subtle grid texture */
.kcard__face::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-image:
    linear-gradient(rgba(201,160,54,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,54,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.23;
  transition: opacity 0.7s ease;
}
.kcard:hover .kcard__face { border-color: rgba(201,160,54,0.26); }
.kcard:hover .kcard__face::before { opacity: 1; }
.kcard .kontakt__inner { position: relative; z-index: 1; }

/* Kontakt page — hero section glass card */
.kontakt-page .kontakt { padding: 0 0 96px; }

/* ═══════════════════════════ SIDERING WEBGL CANVAS ════════════════ */
.sr-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
/* Elevate content above canvas */
.kontakt > .container,
.testimonials__header,
.testimonials__viewport { position: relative; z-index: 1; }
.kontakt > .kbg-glow { z-index: 0; }

/* ═══════════════════════════ TESTIMONIALS — DARK MODE ═════════════ */
.testimonials {
  background: #000 !important;
  position: relative;
}
.testimonials .section-h2   { color: var(--warm) !important; }
.testimonials .section-desc { color: var(--muted) !important; }

.tcard {
  background: rgba(13,32,24,0.72) !important;
  border-color: rgba(201,160,54,0.13) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}
.tcard:hover {
  background: rgba(20,44,28,0.88) !important;
  border-color: rgba(201,160,54,0.28) !important;
}
.tcard > p           { color: rgba(244,239,230,0.78) !important; }
.tcard__author b     { color: var(--warm) !important; }
.tcard__author span  { color: var(--muted) !important; }

@media (max-width: 960px) {
  .kcard__face { padding: 40px 36px; }
}
@media (max-width: 600px) {
  .kcard__face { padding: 28px 20px; border-radius: 12px; }
}

/* ═══════════════════════════ SHINY NAV BUTTON ══════════════════════ */

@property --sg-angle   { syntax: "<angle>";      initial-value: 0deg; inherits: false; }
@property --sg-offset  { syntax: "<angle>";      initial-value: 0deg; inherits: false; }
@property --sg-pct     { syntax: "<percentage>"; initial-value: 5%;   inherits: false; }
@property --sg-shine   { syntax: "<color>";      initial-value: #c9a04c; inherits: false; }

.btn--shiny {
  --shiny-bg:  #0d2218;
  --shiny-sub: #1a3826;
  --shiny-fg:  #f5f0e8;
  --shiny-hl:  #c9a04c;
  --shiny-hls: #e8c96d;
  --dur: 8s;
  --ease: 700ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-fg);
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(var(--shiny-bg), var(--shiny-bg)) padding-box,
    conic-gradient(
      from calc(var(--sg-angle) - var(--sg-offset)),
      transparent,
      var(--shiny-hl)  var(--sg-pct),
      var(--sg-shine)  calc(var(--sg-pct) * 2),
      var(--shiny-hl)  calc(var(--sg-pct) * 3),
      transparent      calc(var(--sg-pct) * 4)
    ) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-sub);
  transition:
    --sg-offset var(--ease),
    --sg-pct    var(--ease),
    --sg-shine  var(--ease),
    gap 0.25s ease;
  animation:
    shinyAngle var(--dur) linear infinite,
    shinyAngle calc(var(--dur) / 0.4) linear infinite reverse;
  animation-composition: add;
}
.btn--shiny::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(-50deg, transparent, var(--shiny-hl), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.35;
  animation: shinyShimmer var(--dur) linear infinite;
}
.btn--shiny .btn-arr {
  width: 0;
  opacity: 0;
  overflow: visible;
  flex-shrink: 0;
  transition: width 0.28s ease, opacity 0.28s ease, margin-left 0.28s ease;
  margin-left: 0;
}
.btn--shiny:hover,
.btn--shiny:focus-visible {
  --sg-pct: 22%;
  --sg-offset: 95deg;
  --sg-shine: var(--shiny-hls);
  --dur: 3s;
  gap: 6px;
}
.btn--shiny:hover .btn-arr,
.btn--shiny:focus-visible .btn-arr { width: 12px; opacity: 1; }
.btn--shiny:active { translate: 0 1px; }

@keyframes shinyAngle   { to { --sg-angle: 360deg; } }
@keyframes shinyShimmer { to { rotate: 360deg; } }

/* ── "Odaberite vaš tempo" grid wrapper ── */
.tempo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .tempo-grid { grid-template-columns: 1fr; }
}

/* ── "Odaberite vaš tempo" cards — dot pattern + enhanced hover ── */
.card--tempo {
  overflow: hidden;
  border-radius: 16px;
  transition:
    border-color 0.35s ease,
    transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.38s ease;
}
.card--tempo > *:not(.tempo-dots) {
  position: relative;
  z-index: 1;
}
.tempo-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  transition: opacity 0.5s ease;
  -webkit-mask: radial-gradient(ellipse 88% 82% at 50% 50%, black 0%, rgba(0,0,0,0.55) 42%, transparent 80%);
  mask: radial-gradient(ellipse 88% 82% at 50% 50%, black 0%, rgba(0,0,0,0.55) 42%, transparent 80%);
}
.card--tempo:hover .tempo-dots { opacity: 0.88; }
.card--tempo:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.68),
    0 0 0 1px rgba(201,160,54,0.28),
    0 0 50px rgba(201,160,54,0.10);
}
.card--vip.card--tempo:hover {
  box-shadow:
    0 28px 64px rgba(0,0,0,0.68),
    0 0 0 1px rgba(201,160,54,0.60),
    0 0 70px rgba(201,160,54,0.22);
}

/* Larger shiny button for prog-cta card */
.btn--shiny--cta {
  padding: 15px 42px;
  font-size: 11px;
  letter-spacing: 0.15em;
  border-radius: 100px;
  gap: 0px;
  --dur: 6s;
}

/* ═══════════════════════════ EBOOK SECTION ═════════════════════════════ */
.ebook-section {
  position: relative;
  background: var(--dark);
  padding: 100px 0 80px;
  overflow: hidden;
  border-top: 1px solid rgba(201,160,54,0.08);
  border-bottom: 1px solid rgba(201,160,54,0.08);
}
.ebook__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 15% 40%, rgba(16,54,32,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 85% 55%, rgba(201,160,54,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(201,160,54,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ── TOP ROW: cover + intro ── */
.ebook__top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}
.ebook__visual { display: flex; justify-content: center; }
.ebook__cover-wrap {
  position: relative;
  width: 280px;
}
.ebook__cover {
  width: 100%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 32px 64px rgba(0,0,0,0.55), 0 0 48px rgba(201,160,54,0.16);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.ebook__cover-wrap:hover .ebook__cover {
  box-shadow: 0 44px 80px rgba(0,0,0,0.65), 0 0 64px rgba(201,160,54,0.28);
  transform: translateY(-6px);
}
.ebook__cover-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at 50% 65%, rgba(201,160,54,0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(28px);
}
.ebook__cover-shine { display: none; }

/* ── INTRO TEXT ── */
.ebook__intro { position: relative; z-index: 1; }
.ebook__tagline {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--gold);
  margin: 8px 0 20px;
  line-height: 1.4;
}
.ebook__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
}

/* ── PRICING ── */
.ebook__pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}
.ebook__price-card {
  position: relative;
  background: rgba(11,26,17,0.75);
  border: 1px solid rgba(201,160,54,0.18);
  border-radius: 16px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.ebook__price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,160,54,0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ebook__price-card:hover {
  border-color: rgba(201,160,54,0.38);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 28px rgba(201,160,54,0.10);
  transform: translateY(-6px);
}
.ebook__price-card:hover::before { opacity: 1; }
.ebook__price-card--print {
  border-color: rgba(201,160,54,0.30);
  background: rgba(16,35,22,0.82);
}
.ebook__price-badge { display: none; }
.ebook__price-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,160,54,0.65);
}
.ebook__price-top svg { opacity: 0.65; flex-shrink: 0; }
.ebook__price-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--warm);
  line-height: 1;
}
.ebook__price-amount small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.ebook__price-card .btn { align-self: flex-start; margin-top: auto; padding-top: 14px; }

.ebook__more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(201,160,54,0.7);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.ebook__more-link:hover { color: var(--gold); gap: 10px; }
.ebook__more-link svg { transition: transform 0.25s ease; }
.ebook__more-link:hover svg { transform: translateX(3px); }

/* ── PHASE CARDS ROW ── */
.ebook__phases-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.ebook-phase-card {
  position: relative;
  background: rgba(11,24,16,0.7);
  border: 1px solid rgba(201,160,54,0.14);
  border-radius: 16px;
  padding: 28px 22px 24px;
  overflow: hidden;
  cursor: default;
  --ep-tilt-x: 0deg;
  --ep-tilt-y: 0deg;
  --ep-gx: 50%;
  --ep-gy: 50%;
  transform: perspective(600px) rotateX(var(--ep-tilt-x)) rotateY(var(--ep-tilt-y)) translateY(0);
  transition: transform 0.18s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(6px);
}
/* Top shimmer line */
.ebook-phase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(201,160,54,0.7) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
/* Cursor-following glow */
.ebook-phase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 140px at var(--ep-gx) var(--ep-gy), rgba(201,160,54,0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ebook-phase-card.is-hovered {
  border-color: rgba(201,160,54,0.36);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 32px rgba(201,160,54,0.09);
  transform: perspective(600px) rotateX(var(--ep-tilt-x)) rotateY(var(--ep-tilt-y)) translateY(-10px);
}
.ebook-phase-card.is-hovered::before { opacity: 1; }
.ebook-phase-card.is-hovered::after { opacity: 1; }

.ebook-phase-card__num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(201,160,54,0.5);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ebook-phase-card__body { position: relative; z-index: 1; }
.ebook-phase-card__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--warm);
  margin: 0 0 10px;
  line-height: 1.3;
}
.ebook-phase-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
/* Watermark */
.ebook-phase-card__wm {
  position: absolute;
  bottom: -12px; right: 10px;
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 700;
  color: rgba(201,160,54,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.35s ease;
  user-select: none;
}
.ebook-phase-card.is-hovered .ebook-phase-card__wm { color: rgba(201,160,54,0.09); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .ebook__phases-row { grid-template-columns: repeat(3, 1fr); }
  .ebook__phases-row .ebook-phase-card:nth-child(4),
  .ebook__phases-row .ebook-phase-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 1060px) {
  .ebook__top { grid-template-columns: 260px 1fr; gap: 56px; }
  .ebook__cover-wrap { width: 220px; }
}
@media (max-width: 900px) {
  .ebook__phases-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ebook-section { padding: 72px 0 60px; }
  .ebook__top { grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
  .ebook__visual { justify-content: center; }
  .ebook__cover-wrap { width: 200px; }
  .ebook__pricing { max-width: 100%; }
  .ebook__phases-row { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .ebook__pricing { grid-template-columns: 1fr; max-width: 340px; }
  .ebook__phases-row { grid-template-columns: 1fr; }
  .ebook-phase-card { padding: 22px 18px 20px; }
}

/* ══════════════════════════════ ORDER MODAL ══════════════════════════════ */
.order-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.order-modal.is-open { opacity: 1; pointer-events: all; }
.order-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(4,10,6,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.order-modal__wrap {
  position: relative; z-index: 1;
  width: min(400px, 100%);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
}
.order-modal.is-open .order-modal__wrap { transform: none; opacity: 1; }

.order-modal__card {
  position: relative;
  background: rgba(9,20,14,0.96);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 40px 32px 34px;
  overflow: hidden;
  --om-gx: 50%; --om-gy: 50%;
  --om-tilt-x: 0deg; --om-tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--om-tilt-x)) rotateY(var(--om-tilt-y));
  transition: transform 0.18s ease;
}
.order-modal__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201,160,54,0.7) 50%, transparent 95%);
  z-index: 2; pointer-events: none;
}
.order-modal__card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 180px at var(--om-gx) var(--om-gy), rgba(201,160,54,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Grid pattern (sign-in-card-2 style) */
.order-modal__grid {
  position: absolute; inset: 0; border-radius: 22px;
  pointer-events: none; z-index: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
}

/* Corner glow spots */
.order-corner { position: absolute; border-radius: 50%; pointer-events: none; z-index: 3; }
.order-corner--tl { top: 0; left: 0; width: 5px; height: 5px; background: rgba(201,160,54,0.5); filter: blur(1px); animation: om-cpulse 2s ease-in-out infinite; }
.order-corner--tr { top: 0; right: 0; width: 8px; height: 8px; background: rgba(201,160,54,0.65); filter: blur(2px); animation: om-cpulse 2.4s ease-in-out infinite 0.5s; }
.order-corner--br { bottom: 0; right: 0; width: 8px; height: 8px; background: rgba(201,160,54,0.65); filter: blur(2px); animation: om-cpulse 2.2s ease-in-out infinite 1s; }
.order-corner--bl { bottom: 0; left: 0; width: 5px; height: 5px; background: rgba(201,160,54,0.5); filter: blur(1px); animation: om-cpulse 2.3s ease-in-out infinite 1.5s; }
@keyframes om-cpulse { 0%,100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.4); } }

/* Traveling border beams (white like sign-in-card-2) */
.order-beams { position: absolute; inset: -1px; border-radius: 22px; overflow: hidden; pointer-events: none; z-index: 1; }
.order-beam { position: absolute; border-radius: 2px; }
.order-beam--t { top: 0; height: 2px; width: 50%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), transparent); animation: ob-t 2.8s ease-in-out infinite; }
.order-beam--r { right: 0; width: 2px; height: 50%; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.75), transparent); animation: ob-r 2.8s ease-in-out infinite 0.7s; }
.order-beam--b { bottom: 0; height: 2px; width: 50%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), transparent); animation: ob-b 2.8s ease-in-out infinite 1.4s; }
.order-beam--l { left: 0; width: 2px; height: 50%; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.75), transparent); animation: ob-l 2.8s ease-in-out infinite 2.1s; }
@keyframes ob-t { 0% { left: -50%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes ob-r { 0% { top: -50%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes ob-b { 0% { right: -50%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { right: 100%; opacity: 0; } }
@keyframes ob-l { 0% { bottom: -50%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { bottom: 100%; opacity: 0; } }

/* Close */
.order-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(244,239,230,0.45); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.order-modal__close:hover { background: rgba(201,160,54,0.12); color: var(--gold); border-color: rgba(201,160,54,0.35); }

/* Logo mark */
.order-modal__logo-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1; overflow: hidden;
}
.order-modal__logo-wrap img { width: 22px; height: 22px; object-fit: contain; opacity: 0.82; }
.order-modal__logo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent); }

/* Header */
.order-modal__head { text-align: center; margin-bottom: 24px; position: relative; z-index: 1; }
.order-modal__title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  background: linear-gradient(180deg, var(--warm) 0%, rgba(244,239,230,0.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.order-modal__sub { font-size: 12px; color: rgba(244,239,230,0.42); line-height: 1.55; }

/* Format toggle */
.order-format {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.order-format__opt {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 8px; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; background: rgba(255,255,255,0.03);
  color: rgba(244,239,230,0.45); font-size: 11px; font-weight: 600;
  letter-spacing: 0.03em; cursor: pointer; text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s; font-family: var(--sans);
}
.order-format__opt em { font-style: normal; font-size: 13px; color: var(--gold); display: block; }
.order-format__opt:hover { background: rgba(201,160,54,0.07); border-color: rgba(201,160,54,0.22); }
.order-format__opt--active { background: rgba(201,160,54,0.11); border-color: rgba(201,160,54,0.48); color: rgba(244,239,230,0.9); }

/* Field */
.order-form { position: relative; z-index: 1; }
.order-field { position: relative; margin-bottom: 10px; }
.order-field__icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: rgba(244,239,230,0.25); pointer-events: none; transition: color 0.25s;
  display: flex; align-items: center;
}
.order-field:focus-within .order-field__icon { color: rgba(201,160,54,0.7); }
.order-field input {
  width: 100%; height: 44px; padding: 0 14px 0 40px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; color: var(--warm); font-family: var(--sans); font-size: 14px;
  outline: none; box-sizing: border-box;
  transition: background 0.25s, border-color 0.25s; -webkit-appearance: none;
}
.order-field input::placeholder { color: rgba(244,239,230,0.25); }
.order-field input:focus { background: rgba(255,255,255,0.07); border-color: rgba(201,160,54,0.45); }

/* Error */
.order-error { font-size: 11.5px; color: rgba(255,90,90,0.85); margin-bottom: 8px; position: relative; z-index: 1; }

/* Submit */
.order-submit {
  position: relative; width: 100%; height: 46px; margin-top: 8px;
  border: none; border-radius: 11px;
  background: linear-gradient(135deg, rgba(201,160,54,0.95), rgba(222,185,72,0.95));
  color: rgba(9,19,13,0.95); font-family: var(--sans); font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: filter 0.2s, transform 0.15s;
}
.order-submit:hover { filter: brightness(1.1); }
.order-submit:active { transform: scale(0.98); }
.order-submit:disabled { opacity: 0.68; cursor: default; filter: none; transform: none; }
.order-submit__shimmer {
  position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  display: none;
}
.order-submit.is-loading .order-submit__shimmer { display: block; animation: om-shimmer 1.3s ease-in-out infinite; }
@keyframes om-shimmer { from { left: -45%; } to { left: 110%; } }
.order-submit__spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(9,19,13,0.25); border-top-color: rgba(9,19,13,0.85);
  border-radius: 50%; animation: om-spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes om-spin { to { transform: rotate(360deg); } }
.order-submit__text, .order-submit__arrow { position: relative; z-index: 1; }
.order-submit__arrow { transition: transform 0.2s; }
.order-submit:not(:disabled):hover .order-submit__arrow { transform: translateX(3px); }

/* Success */
.order-success { text-align: center; padding: 12px 0 4px; position: relative; z-index: 1; }
.order-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,160,54,0.1); border: 1px solid rgba(201,160,54,0.32);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold);
}
.order-success__title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--warm); margin-bottom: 10px; }
.order-success__msg { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; margin: 0 auto; }

@media (max-width: 480px) {
  .order-modal__card { padding: 32px 20px 28px; }
}
