:root {
  --purple-deep: #3d1a6e;
  --purple-mid: #6b2fa0;
  --purple-bright: #8b3fc8;
  --purple-light: #b06ee0;
  --purple-pale: #e8d5f5;
  --purple-mist: #f5eeff;
  --white: #fdfcff;
  --off-white: #f8f4fc;
  --text-dark: #1a0a2e;
  --text-mid: #4a2870;
  --text-light: #7a5a99;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --shadow-soft: 0 8px 40px rgba(107,47,160,0.12);
  --shadow-card: 0 4px 24px rgba(61,26,110,0.10);
  --gradient-brand: linear-gradient(135deg, #6b2fa0 0%, #a855d8 50%, #7c3aed 100%);
  --gradient-soft: linear-gradient(160deg, #f5eeff 0%, #fdfcff 50%, #ede5ff 100%);
  --gradient-hero: linear-gradient(160deg, #1a0a2e 0%, #3d1a6e 40%, #6b2fa0 100%);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── SCROLLBAR (desktop only) ── */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--purple-mist); }
  ::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 3px; }
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,10,46,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(66px, 5.5vw, 76px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(201,168,76,0.3));
  transition: filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(1.25) drop-shadow(0 0 14px rgba(201,168,76,0.5));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: clamp(3px, 0.38vw, 6px);
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-main .logo-word-soul {
  color: var(--gold-light);
  font-style: italic;
}

.nav-logo-main .logo-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(201,168,76,0.5);
  margin: 0 8px;
  vertical-align: middle;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  font-weight: 300;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.nav-logo-icon::before {
  content: '✦';
  font-size: 13px;
  color: var(--gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: clamp(5px, 0.45vw, 7px) clamp(10px, 0.8vw, 12px);
  font-size: clamp(12px, 0.85vw, 13px);
  font-weight: 400;
  letter-spacing: clamp(0.8px, 0.07vw, 1px);
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-links a:hover {
  color: var(--purple-light);
  background: rgba(176,110,224,0.1);
}

.nav-cta {
  padding: clamp(6px, 0.55vw, 8px) clamp(14px, 1.4vw, 20px) !important;
  background: var(--gradient-brand) !important;
  color: white !important;
  border-radius: 24px !important;
  font-weight: 500 !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ══ HAMBURGER ══ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: white;
  transition: all 0.38s cubic-bezier(0.77,0,0.175,1);
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 14px; margin-left: auto; }
.hamburger span:nth-child(3) { width: 22px; }

.hamburger.open span:nth-child(1) { width: 22px; transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { width: 22px; transform: translateY(-7.5px) rotate(-45deg); }

/* ══ MOBILE MENU — FULL SCREEN OVERLAY ══ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: max(100px, calc(env(safe-area-inset-top) + 80px)) 48px max(60px, calc(env(safe-area-inset-bottom) + 40px));
  background: #07030f;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.42s cubic-bezier(0.77,0,0.175,1),
              transform 0.42s cubic-bezier(0.77,0,0.175,1);
  counter-reset: mob-nav;
}

/* decorative gold S watermark */
.mobile-menu::before {
  content: 'S';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 480px;
  font-weight: 300;
  line-height: 0.9;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  user-select: none;
}

/* top gold accent line */
.mobile-menu::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.22s;
}

.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open::after {
  transform: scaleX(1);
}

.mobile-menu a {
  counter-increment: mob-nav;
  display: block;
  position: relative;
  padding: 13px 0 13px 56px;
  font-family: var(--font-display);
  font-size: clamp(30px, 8.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateX(28px);
  transition: color 0.22s ease, transform 0.22s ease,
              opacity 0s, transform 0s;
}

.mobile-menu a::before {
  counter-increment: none;
  content: "0" counter(mob-nav);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: rgba(201,168,76,0.45);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
  transition: color 0.22s ease, transform 0.22s ease,
              opacity 0.5s cubic-bezier(0.22,1,0.36,1),
              transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.13s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.19s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.31s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.37s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.43s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.49s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.55s; }
.mobile-menu.open a:nth-child(9) { transition-delay: 0.61s; }

.mobile-menu a:hover {
  color: white;
  transform: translateX(8px);
}

.mobile-menu a:hover::before { color: var(--gold); }

/* current page indicator */
.mobile-menu a.mob-active {
  color: rgba(255,255,255,0.95);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 58px;
}
.mobile-menu a.mob-active::before {
  color: var(--gold);
  left: 8px;
}

/* last link (Kontakt) — gold CTA style */
.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--gold-light);
  font-style: italic;
  margin-top: 6px;
}

.mobile-menu a:last-child::before { color: var(--gold); opacity: 0.8; }

/* ══════════════════════════════════
   ACTIVE NAV LINK
══════════════════════════════════ */
.nav-links a[aria-current="page"] {
  color: var(--purple-light);
  background: rgba(176,110,224,0.1);
}

/* ══════════════════════════════════
   HERO — EDITORIAL REDESIGN
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: #07030f;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.48;
  filter: saturate(0.55) brightness(0.85) contrast(1.1);
  pointer-events: none;
  z-index: 0;
}

/* Multi-layer cinematic overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7,3,15,0.97) 0%, rgba(7,3,15,0.72) 42%, rgba(30,8,55,0.45) 100%),
    linear-gradient(to bottom, transparent 45%, rgba(7,3,15,0.98) 100%);
  z-index: 1;
}

/* Vertical gold accent line */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 200px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201,168,76,0.0) 10%,
    rgba(201,168,76,0.25) 30%,
    rgba(201,168,76,0.12) 70%,
    transparent 100%);
  z-index: 2;
}

/* Film grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

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

.particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: rgba(201,168,76,0.7);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* ── HERO INNER LAYOUT ── */
.hero-inner {
  position: relative;
  z-index: 4;
  flex: 1;
  display: grid;
  grid-template-columns: 52px 1fr 200px;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding: 110px 64px 56px;
  gap: 0;
}

/* Vertical side label */
.hero-side-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  padding-right: 8px;
  animation: fade-in-slow 1.2s ease 0.3s both;
}

.hero-side-label span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 9px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  font-weight: 400;
  white-space: nowrap;
}

.hero-side-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.45), transparent);
  flex-shrink: 0;
}

/* Main content column */
.hero-main {
  padding-left: 40px;
  padding-right: 40px;
  border-left: 1px solid rgba(201,168,76,0.18);
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: slide-from-left 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}

.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-tag-text {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.75);
  font-weight: 300;
}

/* Big display title */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.88;
}

.hero-title-top {
  font-size: clamp(58px, 8.5vw, 128px);
  color: rgba(255,255,255,0.95);
  display: block;
  letter-spacing: -2px;
  animation: slide-from-left 1s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}

.hero-title-script {
  font-family: var(--font-script);
  font-size: clamp(48px, 7vw, 108px);
  color: var(--gold-light);
  display: block;
  line-height: 1.15;
  animation: slide-from-left 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.hero-title-bottom {
  font-size: clamp(58px, 8.5vw, 128px);
  color: rgba(255,255,255,0.95);
  display: block;
  letter-spacing: -2px;
  animation: slide-from-left 1s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}

.hero-gold-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.1));
  margin: 28px 0;
  animation: expand-rule 0.9s ease 0.9s both;
}

@keyframes expand-rule {
  to { width: 100px; }
}

@keyframes slide-from-left {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in-slow {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  max-width: 420px;
  line-height: 1.8;
  animation: fade-up 0.9s ease 1s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.9s ease 1.1s both;
}

.btn-primary {
  padding: 13px 32px;
  background: var(--gradient-brand);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(107,47,160,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(107,47,160,0.55);
}

.btn-outline {
  padding: 13px 32px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-light {
  border-color: rgba(201,168,76,0.4);
  color: rgba(255,255,255,0.8);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Right stats panel */
.hero-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.14);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  animation: fade-up 0.9s ease 1.2s both;
}

.hero-stat-item {
  padding: 22px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.25s;
}

.hero-stat-item:last-child { border-bottom: none; }
.hero-stat-item:hover { background: rgba(201,168,76,0.04); }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 300;
  color: white;
  display: block;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-top: 6px;
  display: block;
  line-height: 1.5;
}

/* Scroll hint */
.hero-scroll-hint {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 6px;
  animation: fade-up 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}

/* Bottom marquee ribbon */
.hero-marquee {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(201,168,76,0.12);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  padding: 13px 0;
  overflow: hidden;
}

.hero-marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee-run 32s linear infinite;
}

.hero-marquee-track span {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding: 0 20px;
}

.hero-marquee-track .sep {
  color: rgba(201,168,76,0.5);
  font-size: 8px;
  padding: 0 6px;
}

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

/* Logo above content */
.hero-logo-img {
  position: relative;
  z-index: 5;
  width: 130px;
  max-width: 30vw;
  display: block;
  margin: 0 auto 0;
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.3)) brightness(1.1);
  animation: logo-appear 1.2s ease 0s both;
}

@keyframes logo-appear {
  from { opacity: 0; filter: drop-shadow(0 0 0px rgba(201,168,76,0)) brightness(2); }
  to   { opacity: 1; filter: drop-shadow(0 0 24px rgba(201,168,76,0.3)) brightness(1.1); }
}

/* ── HERO RESPONSIVE ── */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 48px 1fr 170px;
    padding: 110px 40px 56px;
  }
  .hero-stat-num { font-size: 38px; }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 40px 1fr;
    padding: 100px 32px 48px;
  }
  .hero-stats-panel { display: none; }
  .hero::after { right: 40px; }
  .hero-logo-img { width: 110px; }
}

/* ═══════════════════════════════
   TABLET → PHONE: CENTER LAYOUT
═══════════════════════════════ */
@media (max-width: 768px) {

  /* Lightened central overlay — photo breathes more on mobile */
  .hero::before {
    background:
      linear-gradient(to bottom,
        rgba(7,3,15,0.78) 0%,
        rgba(7,3,15,0.38) 35%,
        rgba(7,3,15,0.52) 65%,
        rgba(7,3,15,0.97) 100%),
      radial-gradient(ellipse at 50% 38%, rgba(30,8,55,0.25), transparent 68%);
  }

  .hero {
    min-height: 100svh;
  }

  /* Logo: absolute top-centre */
  .hero-logo-img {
    position: absolute;
    top: 82px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    margin: 0;
    z-index: 5;
  }

  /* Single centred column */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 196px 28px 36px;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .hero-side-label { display: none; }
  .hero::after      { display: none; }

  .hero-main {
    border-left: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-tag {
    margin-bottom: 18px;
    justify-content: center;
  }
  .hero-tag-text { font-size: 9px; letter-spacing: 4px; }

  .hero-title {
    align-items: center;
    gap: 0;
    line-height: 0.9;
  }
  .hero-title-top,
  .hero-title-bottom {
    font-size: clamp(54px, 14vw, 72px);
    letter-spacing: -1px;
    text-align: center;
  }
  .hero-title-script {
    font-size: clamp(44px, 12vw, 62px);
    text-align: center;
  }

  .hero-gold-rule {
    margin: 22px auto;
  }

  .hero-subtitle {
    text-align: center;
    font-size: 14px;
    max-width: 320px;
    margin-bottom: 30px;
    line-height: 1.8;
  }

  .hero-tag-text { font-size: 10px; letter-spacing: 4px; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* Marquee */
  .hero-marquee { padding: 11px 0; }
  .hero-marquee-track span {
    font-size: 9px;
    letter-spacing: 2.5px;
    padding: 0 13px;
  }

  /* Scroll hint hidden — phones scroll naturally */
  .hero-scroll-hint { display: none; }
}

/* ═══════════════════════════════
   SMALL PHONE  ≤ 480px
═══════════════════════════════ */
@media (max-width: 480px) {
  .hero-inner { padding: 182px 22px 32px; }

  .hero-logo-img { width: 74px; top: 80px; }

  .hero-title-top,
  .hero-title-bottom { font-size: clamp(46px, 13vw, 60px); }
  .hero-title-script  { font-size: clamp(38px, 11vw, 52px); }

  .hero-subtitle { font-size: 13px; max-width: 290px; margin-bottom: 26px; }

  .hero-buttons { max-width: 100%; }
  .btn-primary,
  .btn-outline {
    font-size: 10px;
    padding: 13px 18px;
    letter-spacing: 1.8px;
  }

  .hero-marquee-track span { font-size: 8.5px; padding: 0 10px; letter-spacing: 2px; }
}

/* ═══════════════════════════════
   VERY SMALL  ≤ 360px  (SE / mini)
═══════════════════════════════ */
@media (max-width: 360px) {
  .hero-inner { padding: 168px 18px 28px; }
  .hero-logo-img { width: 62px; top: 77px; }

  .hero-title-top,
  .hero-title-bottom { font-size: 42px; letter-spacing: -0.5px; }
  .hero-title-script  { font-size: 34px; }

  .hero-tag  { display: none; }
  .hero-gold-rule { margin: 14px auto; }
  .hero-subtitle  { font-size: 12px; margin-bottom: 20px; }

  .btn-primary,
  .btn-outline { padding: 12px 16px; font-size: 10px; }

  .hero-marquee-track span { font-size: 7.5px; padding: 0 8px; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════
   QUOTE STRIP
══════════════════════════════════ */
.quote-strip {
  background: var(--purple-pale);
  border-top: 1px solid rgba(107,47,160,0.12);
  border-bottom: 1px solid rgba(107,47,160,0.12);
  padding: 22px 24px;
  overflow: hidden;
}

.quote-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.quote-strip-gem {
  color: var(--purple-mid);
  opacity: 0.5;
  font-size: 9px;
  flex-shrink: 0;
  letter-spacing: 2px;
}

.quote-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-mid);
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: center;
}

/* ══════════════════════════════════
   SECTION STYLES
══════════════════════════════════ */
section {
  padding: 90px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--purple-mid);
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--purple-mid);
  font-style: italic;
}

.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-brand);
  margin: 24px 0;
  border-radius: 1px;
}

/* ══════════════════════════════════
   PROGRAMS / SERVICES
══════════════════════════════════ */
.programs-section {
  background: var(--off-white);
}

.programs-intro {
  text-align: center;
  margin-bottom: 64px;
}

.programs-intro .section-lead {
  margin: 0 auto;
}

.programs-intro .divider {
  margin: 24px auto;
}

/* ── REDESIGNED PROGRAM CARDS ── */
.programs-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .programs-grid-new { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.prog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(61,26,110,0.08);
  border: 1px solid rgba(176,110,224,0.12);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(107,47,160,0.16);
}

.prog-card-top {
  padding: 28px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 220px;
  overflow: hidden;
}

.prog-card-top-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.prog-card:hover .prog-card-top-img {
  transform: scale(1.06);
}

.prog-card-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,5,40,0.45) 0%, rgba(20,5,40,0.75) 100%);
  z-index: 1;
}

.prog-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 2;
}

.prog-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  font-family: var(--font-body);
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.prog-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: white;
  line-height: 1.15;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.prog-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.prog-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
}

.prog-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.prog-card-list li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prog-card-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-light);
  flex-shrink: 0;
}

.prog-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  background: var(--gradient-brand);
  border: none;
  padding: 12px 22px;
  border-radius: 40px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(107,47,160,0.3);
}

.prog-card-cta::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.25s ease;
}

.prog-card-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107,47,160,0.4);
}

.prog-card-cta:hover::after {
  transform: translateX(4px);
}

.program-category {
  margin-bottom: 80px;
}

.program-cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--purple-pale);
}

.program-cat-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.program-cat-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--text-dark);
}

.program-cat-sub {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-mid);
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(176,110,224,0.1);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(107,47,160,0.18);
}

.service-card.featured {
  background: linear-gradient(145deg, #2d0f58 0%, #5a1f9a 100%);
  color: white;
}

.service-card.featured .service-name,
.service-card.featured .service-desc { color: white; }
.service-card.featured .service-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.service-card.featured .service-benefit { color: rgba(255,255,255,0.7); }

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--purple-mist);
  color: var(--purple-mid);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-benefit {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.service-benefit::before {
  content: '✦';
  color: var(--purple-light);
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   QUOTE SECTIONS
══════════════════════════════════ */
/* ══════════════════════════════════
   PROGRAMS PAGE REDESIGN
══════════════════════════════════ */
.pg-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 70px;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.5) brightness(0.5);
}

.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,3,20,0.3) 0%, rgba(20,6,45,0.88) 100%);
  z-index: 1;
}

.pg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
  z-index: 3;
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 40px;
  width: 100%;
}

.pg-hero-overline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pg-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }

.pg-hero-overline-text {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.75);
  font-weight: 300;
  font-family: var(--font-body);
}

.pg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 300;
  color: white;
  line-height: 0.9;
  letter-spacing: -2px;
}

.pg-hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

@keyframes pgSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
@keyframes pgRiseUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
.pg-hero-overline { animation: pgSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.pg-hero-title    { animation: pgRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

/* ── Tab Navigation ── */
.pg-tabs {
  background: #0e0618;
  position: sticky;
  top: clamp(66px, 5.5vw, 76px);
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.pg-tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
}

.pg-tab {
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  background: none;
  border: none;
  border-top: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  position: relative;
}

.pg-tab-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(201,168,76,0.4);
  transition: color 0.3s;
}

.pg-tab:hover {
  color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

.pg-tab:hover .pg-tab-num { color: rgba(201,168,76,0.7); }

.pg-tab.active {
  color: white;
  border-bottom-color: var(--gold);
}

.pg-tab.active .pg-tab-num { color: var(--gold); }

/* ── Category Section ── */
.pg-category {
  padding: 80px 0 0;
}

.pg-cat-banner-wrap {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 40px;
}

.pg-cat-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(61,26,110,0.14);
}

.pg-cat-banner.reverse { direction: rtl; }
.pg-cat-banner.reverse > * { direction: ltr; }

.pg-cat-banner-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.pg-cat-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.pg-cat-banner:hover .pg-cat-banner-img img {
  transform: scale(1.04);
}

.pg-cat-banner-body {
  background: var(--text-dark);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.pg-cat-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: -10px;
}

.pg-cat-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  font-family: var(--font-body);
}

.pg-cat-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}

.pg-cat-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
}

/* ── Service Cards Grid ── */
.pg-services {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pg-scard {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(176,110,224,0.1);
  box-shadow: 0 2px 20px rgba(61,26,110,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(107,47,160,0.15);
}

.pg-scard-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.pg-scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.7) brightness(0.9);
}

.pg-scard:hover .pg-scard-img img { transform: scale(1.07); }

.pg-scard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  background: rgba(20,6,45,0.75);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(201,168,76,0.3);
}

.pg-scard-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-scard-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.pg-scard-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-light);
}

.pg-scard-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pg-scard-benefits li {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-scard-benefits li::before {
  content: '✦';
  font-size: 8px;
  color: var(--purple-light);
  flex-shrink: 0;
}

.pg-scard-cta {
  text-decoration: none;
  margin-top: 16px;
  padding: 11px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--purple-mid);
  background: transparent;
  color: var(--purple-mid);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: color 0.35s ease, border-color 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pg-scard-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.pg-scard-cta::after { content: '→'; }

.pg-scard-cta:hover {
  color: white;
  border-color: transparent;
}

.pg-scard-cta:hover::before {
  transform: scaleY(1);
}

/* ── Category Divider ── */
.pg-cat-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,110,224,0.2), transparent);
}

/* ── Programs Page CTA ── */
.pg-cta {
  background: var(--text-dark);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pg-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}
.pg-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
@keyframes pgCtaSpin    { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pgCtaSpinRev { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.pg-cta-ring-1 {
  position: absolute;
  top: 50%; left: 50%;
  width: 480px; height: 480px;
  border: 1px solid rgba(201,168,76,0.05);
  transform: translate(-50%, -50%);
  animation: pgCtaSpin 60s linear infinite;
  pointer-events: none;
}
.pg-cta-ring-2 {
  position: absolute;
  top: 50%; left: 50%;
  width: 360px; height: 360px;
  border: 1px solid rgba(201,168,76,0.08);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: pgCtaSpinRev 45s linear infinite;
  pointer-events: none;
}
.pg-cta-ring-3 {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  border: 1px solid rgba(201,168,76,0.1);
  transform: translate(-50%, -50%) rotate(20deg);
  animation: pgCtaSpin 30s linear infinite;
  pointer-events: none;
}
.pg-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.pg-cta-body {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}
@keyframes pgGemPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.75; } }
.pg-cta-gem {
  display: inline-block;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 8px;
  margin-bottom: 28px;
  animation: pgGemPulse 3s ease-in-out infinite;
}
.pg-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 20px;
}
.pg-cta-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  color: white;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.pg-cta-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}
.pg-cta-rule {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
}
.pg-cta-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  font-weight: 300;
  font-family: var(--font-body);
  margin-bottom: 44px;
}
.pg-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pg-cta { padding: 72px 0 64px; }
  .pg-cta-ring-1 { width: 280px; height: 280px; }
  .pg-cta-ring-2 { width: 200px; height: 200px; }
  .pg-cta-ring-3 { width: 130px; height: 130px; }
  .pg-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 900px) {
  .pg-cat-banner { grid-template-columns: 1fr; }
  .pg-cat-banner.reverse { direction: ltr; }
  .pg-cat-banner-img { min-height: 220px; }
  .pg-cat-banner-body { padding: 36px 28px; }
  .pg-cat-banner-wrap { padding: 0 16px; }
  .pg-services { grid-template-columns: 1fr; max-width: 480px; }
  .pg-tabs-inner { padding: 0 16px; }
  .pg-tab { padding: 14px 14px; font-size: 9px; letter-spacing: 2px; }
  .pg-hero { min-height: 340px; }
  .pg-hero-content { padding: 0 24px 40px; }
  .pg-hero-overline-text { font-size: 9px; letter-spacing: 3px; }
}

.quote-section {
  background: var(--gradient-hero);
  padding: 80px 24px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: white;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.quote-author {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-hero {
  background: var(--gradient-hero);
  padding: 130px 24px 80px;
  text-align: center;
}

.about-hero .section-title { color: white; }
.about-hero .section-eyebrow { color: var(--purple-light); }
.about-hero .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto; }
.about-hero .divider { margin: 24px auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--purple-mist), var(--purple-pale));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176,110,224,0.2);
  overflow: hidden;
  position: relative;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(107,47,160,0.15), transparent 70%);
}

.about-image-icon {
  font-size: 60px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.about-image-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-mid);
  font-weight: 300;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(107,47,160,0.4);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: white;
  line-height: 1;
}

.about-badge-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-value {
  padding: 20px;
  background: var(--purple-mist);
  border-radius: 12px;
  border: 1px solid rgba(176,110,224,0.15);
}

.about-value-icon { font-size: 22px; margin-bottom: 8px; }
.about-value-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.about-value-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-section {
  background: var(--gradient-soft);
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .rv-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ── Unified Review Card ── */
.rv-card {
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.rv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.rv-card:hover {
  border-color: rgba(201,168,76,0.22);
  box-shadow: 0 8px 40px rgba(61,26,110,0.1);
  transform: translateY(-3px);
}

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

.rv-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rv-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
}

.rv-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rv-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.rv-card-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.rv-card-google {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

.rv-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.rv-card-stars span {
  color: #fbbc04;
  font-size: 14px;
}

.rv-card-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  font-style: italic;
  overflow: hidden;
}

.rv-card-text::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(201,168,76,0.3);
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 2px;
}

.rv-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rv-card-service {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 400;
}

.rv-card-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  font-weight: 300;
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-section {
  background: white;
}

.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 10px 24px;
  background: var(--purple-mist);
  border: 1px solid var(--purple-pale);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.pricing-tab.active {
  background: var(--gradient-brand);
  color: white;
  border-color: transparent;
}

.pricing-content { display: none; }
.pricing-content.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(176,110,224,0.15);
  transition: all 0.3s ease;
}

.price-card:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.price-card.popular {
  background: var(--gradient-brand);
  border-color: transparent;
  color: white;
}

.price-card.popular .price-name,
.price-card.popular .price-amount,
.price-card.popular .price-unit,
.price-card.popular .price-desc { color: white; }

.price-popular-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.price-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--purple-mid);
}

.price-unit {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 1px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ══════════════════════════════════
   CALENDAR
══════════════════════════════════ */
.calendar-section {
  background: var(--gradient-soft);
}

.calendar-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
  border-radius: 16px;
}

.calendar-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.calendar-table th {
  background: var(--gradient-brand);
  color: white;
  padding: 16px 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

.calendar-table td {
  padding: 10px 8px;
  border: 1px solid rgba(176,110,224,0.1);
  vertical-align: top;
  min-width: 100px;
}

.time-cell {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--purple-mist);
  text-align: right;
  white-space: nowrap;
}

.cal-slot {
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
  line-height: 1.3;
}

.cal-slot:hover { transform: scale(1.02); opacity: 0.85; }

.cal-slot.trening {
  background: linear-gradient(135deg, #ede5ff, #d4b8f5);
  border-left: 3px solid var(--purple-mid);
}

.cal-slot.tretman {
  background: linear-gradient(135deg, #f0e6ff, #c9a0e8);
  border-left: 3px solid var(--purple-deep);
}

.cal-slot.masaza {
  background: linear-gradient(135deg, #f5edff, #e0c4f7);
  border-left: 3px solid var(--purple-light);
}

.cal-slot-name { font-weight: 500; color: var(--text-dark); }
.cal-slot-info { color: var(--text-mid); font-size: 11px; }

.calendar-legend {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   PARTNERS
══════════════════════════════════ */
.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.partner-card {
  border: 1px solid rgba(176,110,224,0.2);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.partner-logo {
  font-size: 36px;
  margin-bottom: 12px;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.partner-discount {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-brand);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partner-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-section {
  background: var(--gradient-soft);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(176,110,224,0.15);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--purple-mid); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--purple-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--purple-mid);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--gradient-brand);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
}

.faq-item.open .faq-a { max-height: 300px; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-hero {
  background: var(--gradient-hero);
  padding: 130px 24px 80px;
  text-align: center;
}
.contact-hero .section-title { color: white; }
.contact-hero .section-eyebrow { color: var(--purple-light); }
.contact-hero .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto; }
.contact-hero .divider { margin: 24px auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--purple-mist);
  border-radius: 12px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.map-placeholder {
  background: linear-gradient(145deg, var(--purple-mist), var(--purple-pale));
  border-radius: 16px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176,110,224,0.2);
  margin-top: 24px;
  gap: 8px;
  color: var(--text-mid);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
}

.form-input,
.form-textarea,
.form-select {
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid rgba(176,110,224,0.25);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.25s;
  outline: none; /* :focus-visible overrides this for keyboard users */
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--purple-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(107,47,160,0.1);
}

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

.socials-section {
  background: white;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.social-card {
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.social-card.instagram {
  background: linear-gradient(135deg, #f5eeff, #e8d5f5);
  border: 1px solid rgba(176,110,224,0.2);
}
.social-card.facebook {
  background: linear-gradient(135deg, #eef0ff, #dde2ff);
  border: 1px solid rgba(100,120,210,0.2);
}
.social-card.tiktok {
  background: linear-gradient(135deg, #f0fffe, #d5f5f2);
  border: 1px solid rgba(0,200,180,0.2);
}
.social-card.viber {
  background: linear-gradient(135deg, #f5eeff, #eed5ff);
  border: 1px solid rgba(130,60,200,0.2);
}

.social-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.social-name {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 4px;
}
.social-handle { font-size: 13px; color: var(--text-light); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  position: relative;
  background: var(--text-dark);
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(107,47,160,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(201,168,76,0.05) 0%, transparent 50%);
  padding: 0 24px 32px;
}

.footer-gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.6) 20%, rgba(176,110,224,0.6) 50%, rgba(201,168,76,0.6) 80%, transparent 100%);
  margin-bottom: 64px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(176,110,224,0.15);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  max-width: 280px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
}

.footer-contact-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(176,110,224,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  gap: 8px;
}

.fh-day {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.fh-time {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.fh-closed {
  color: var(--purple-light);
  font-style: italic;
  font-size: 12px;
}

.footer-cta-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s, border-color 0.2s;
}

.footer-cta-link:hover {
  opacity: 1;
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-love {
  font-family: var(--font-script);
  font-size: 16px;
  color: rgba(176,110,224,0.7);
}

/* ══════════════════════════════════
   MOTIVATIONAL QUOTES (home)
══════════════════════════════════ */
.quotes-carousel {
  position: relative;
  padding: 60px 24px;
  text-align: center;
  overflow: hidden;
}

.quotes-carousel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.4) brightness(0.35);
}

.quotes-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,3,20,0.6) 0%, rgba(30,10,60,0.7) 100%);
  z-index: 1;
}

.quotes-carousel-track {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.quote-item {
  display: none;
}

.quote-item.active { display: block; }

@keyframes quoteEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes quoteExit {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(4px);
  }
}

.quote-item.quote-exiting {
  display: block;
  animation: quoteExit 0.38s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.quote-item.quote-entering {
  animation: quoteEnter 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.quote-carousel-openmark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 20px;
}

.quote-carousel-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.45;
  margin-bottom: 28px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-carousel-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 18px;
}

.quote-carousel-author {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-bottom: 40px;
  font-family: var(--font-body);
  font-weight: 300;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(176,110,224,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.quote-dot.active {
  background: var(--purple-light);
  transform: scale(1.3);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .footer-top {
    gap: 24px 20px;
  }
  .footer-inner {
    padding: 0 8px;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(176,110,224,0.1);
    margin-bottom: 4px;
  }
  .footer-brand .nav-logo { flex: 0 0 auto; }
  .footer-brand p { flex: 1 1 200px; margin-top: 0; }
  .footer-brand .footer-contact-info { flex: 1 1 200px; margin-top: 0; }
  .footer-brand .footer-socials { flex: 0 0 auto; margin-top: 0; align-self: flex-end; }
}

@media (max-width: 768px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(176,110,224,0.1);
    margin-bottom: 4px;
  }
  .footer-brand .nav-logo { flex: 0 0 auto; margin-bottom: 0; }
  .footer-brand p { flex: 1 1 180px; margin-top: 0; font-size: 13px; }
  .footer-brand .footer-contact-info { flex: 1 1 160px; margin-top: 0; }
  .footer-brand .footer-socials { flex: 0 0 auto; margin-top: 0; align-self: flex-end; }
  .footer-gold-rule { margin-bottom: 40px; }

  .about-badge {
    bottom: -12px;
    right: -12px;
    width: 90px;
    height: 90px;
  }

  .about-badge-num { font-size: 28px; }

  .hero-stats { gap: 28px; }

  section { padding: 60px 20px; }
  .pg-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
  .pg-hero-content { padding: 0 24px 40px !important; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer-brand { gap: 12px 20px; }
  .footer-brand p { font-size: 12px; flex-basis: 140px; }
  .footer-brand .footer-contact-info { flex-basis: 140px; }
  .fh-day { font-size: 11px; }
  .fh-time { font-size: 11px; }
  .footer-col-title { font-size: 9px; letter-spacing: 2px; }
  .footer-col a { font-size: 13px; }
  .pg-hero { min-height: 300px; }
  .pg-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════
   UTILITIES
══════════════════════════════════ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.hidden { display: none; }

/* Page entrance animation */
main {
  animation: page-in 0.2s ease both;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--purple-bright) 50%, var(--gold-light) 100%);
  z-index: 2000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,63,200,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
@media (pointer: coarse), (max-width: 1024px) {
  .cursor-glow { display: none; }
}

/* ── HERO STAGGERED ENTRANCE ── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-tag        { animation: hero-rise 0.85s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.hero-title      { animation: hero-rise 1s   cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.hero-gold-rule  { animation: hero-fade 0.6s ease 0.8s both; }
.hero-subtitle   { animation: hero-rise 0.75s cubic-bezier(0.22,1,0.36,1) 0.85s both; }
.hero-buttons    { animation: hero-rise 0.75s cubic-bezier(0.22,1,0.36,1) 1.05s both; }
.hero-stats-panel{ animation: hero-rise 0.75s cubic-bezier(0.22,1,0.36,1) 1.25s both; }
.hero-side-label { animation: hero-fade 1s ease 1.1s both; }
.hero-scroll-hint{ animation: hero-fade 1s ease 1.5s both; }

/* ══ LANGUAGE SWITCHER ══ */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 14px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 6px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 100px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.15s;
  outline: none; /* replaced by :focus-visible rule below */
  line-height: 1;
}
.lang-btn:hover {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.52);
  color: rgba(255,255,255,0.95);
}
.lang-btn:active { transform: scale(0.94); }

.lang-flag { display: flex; align-items: center; flex-shrink: 0; line-height: 1; }
.lang-flag img { width: 20px; height: auto; border-radius: 2px; box-shadow: 0 1px 4px rgba(0,0,0,0.45); display: block; }
.lang-option-flag img { width: 28px; height: auto; border-radius: 2px; box-shadow: 0 1px 4px rgba(0,0,0,0.4); display: block; }
.mobile-lang-flag img { width: 22px; height: auto; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.35); display: block; }

.lang-code {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: inherit;
}

.lang-caret {
  width: 9px; height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.lang-switcher.open .lang-caret { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: rgba(8,2,18,0.97);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  padding: 7px;
  min-width: 172px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.22s, visibility 0.22s, transform 0.28s cubic-bezier(0.22,1,0.36,1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(201,168,76,0.05);
  z-index: 500;
}
.lang-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; right: 18px;
  width: 8px; height: 8px;
  background: rgba(8,2,18,0.97);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-left: 1px solid rgba(201,168,76,0.18);
  transform: rotate(45deg);
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 13px;
  background: none;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.18s;
  text-align: left;
  position: relative;
}
.lang-option:hover { background: rgba(201,168,76,0.07); }

.lang-option-flag {
  font-size: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
}

.lang-option-info { display: flex; flex-direction: column; gap: 2px; }

.lang-option-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.3px;
  transition: color 0.18s;
}
.lang-option-code {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.42);
  transition: color 0.18s;
}
.lang-option:hover .lang-option-name { color: rgba(255,255,255,0.95); }
.lang-option:hover .lang-option-code { color: rgba(201,168,76,0.78); }

.lang-option.lang-active { background: rgba(201,168,76,0.08); }
.lang-option.lang-active .lang-option-name { color: white; }
.lang-option.lang-active .lang-option-code { color: var(--gold); }
.lang-option.lang-active::after {
  content: '';
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 7px rgba(201,168,76,0.55);
}

.lang-divider { height: 1px; background: rgba(201,168,76,0.1); margin: 5px 8px; }

/* ── Mobile lang row ── */
.mobile-lang-row {
  display: flex;
  gap: 10px;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin-top: 12px;
}
.mobile-lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mobile-lang-btn:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.8);
}
.mobile-lang-btn.mobile-lang-active {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  color: white;
}
.mobile-lang-flag { font-size: 18px; }

@media (max-width: 1180px) { .lang-switcher { display: none; } }

/* ══════════════════════════════════
   FOCUS STYLES — visible keyboard navigation
══════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons and links already have border-radius — match it */
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.prog-card-cta:focus-visible,
.pg-scard-cta:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 4px;
  border-radius: 100px;
}

.nav-links a:focus-visible {
  outline-offset: 2px;
}

/* Form inputs: replace outline:none with visible ring */
.kt-input:focus-visible,
.kt-select:focus-visible,
.kt-textarea:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
}

/* Lang button */
.lang-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 100px;
}

/* Footer social buttons */
.footer-social-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 50%;
}

/* Pricing/FAQ interactive elements */
.pricing-tab:focus-visible,
.pg-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ══════════════════════════════════
   PREFERS-REDUCED-MOTION
   — respects user OS accessibility setting
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Keep scroll-behavior but don't animate page entrance */
  html { scroll-behavior: auto; }

  /* Marquee: pause instead of infinite scroll */
  .hero-marquee-track { animation: none; }

  /* Particles: hide on reduced-motion */
  .hero-particles { display: none; }

  /* CTA spinning rings: freeze */
  .pg-cta-ring-1,
  .pg-cta-ring-2,
  .pg-cta-ring-3 { animation: none; }

  /* Scroll progress bar: still works, just no transition */
  .scroll-progress { transition: none; }
}

/* ══════════════════════════════════
   GOOGLE FONTS PRECONNECT hint
   (added via HTML — see index.html)
   Cursor glow pointer-events fix
══════════════════════════════════ */
.cursor-glow { will-change: left, top; }

/* ══════════════════════════════════
   IMBODY STRIP — keyboard accessible
   (div with onclick → add tabindex)
══════════════════════════════════ */
.imbody-strip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 20px;
}

/* ══════════════════════════════════
   MOBILE MENU — a11y improvements
══════════════════════════════════ */
.mobile-menu[aria-hidden="true"] {
  visibility: hidden;
}
.mobile-menu[aria-hidden="false"] {
  visibility: visible;
}

/* ══════════════════════════════════
   CONTACT FORM SUCCESS STATE
   — cleaner UX: hide form entirely
══════════════════════════════════ */
.kt-form.form-submitted {
  display: none;
}
.kt-success[role="alert"] {
  display: block;
}

/* ══════════════════════════════════
   IMBODY POWER S — HOMEPAGE STRIP
══════════════════════════════════ */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.55); }
  50%       { box-shadow: 0 0 0 7px rgba(201,168,76,0); }
}

.imbody-strip {
  margin-top: 24px;
  display: flex;
  align-items: stretch;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.28);
  background: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(61,26,110,0.15);
}

.imbody-strip:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 14px 52px rgba(61,26,110,0.28);
}

.imbody-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold-light), var(--purple-bright), var(--gold));
  z-index: 10;
  flex-shrink: 0;
}

/* ── image column ── */
.imbody-strip-img {
  flex: 0 0 260px;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.imbody-strip-img img {
  width: 260px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.imbody-strip:hover .imbody-strip-img img {
  transform: scale(1.07);
}

.imbody-strip-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 100%;
  background: linear-gradient(to right, transparent, var(--text-dark));
  pointer-events: none;
}

/* ── main text column ── */
.imbody-strip-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  background: radial-gradient(ellipse 90% 140% at 90% 50%, rgba(107,47,160,0.25) 0%, transparent 65%);
}

.imbody-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.42);
  border-radius: 20px;
  padding: 5px 14px 5px 9px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.imbody-strip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-gold 2.2s ease-in-out infinite;
}

.imbody-strip-badge-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.imbody-strip-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 10px;
}

.imbody-strip-title em {
  font-style: italic;
  color: var(--gold-light);
}

.imbody-strip-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  max-width: 460px;
}

.imbody-strip-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 32px;
  margin-top: 18px;
}

.imbody-strip-features li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.4;
}

.imbody-strip-features li::before {
  content: '✦';
  font-size: 7px;
  color: var(--gold);
  flex-shrink: 0;
}

.imbody-strip-btns {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.imbody-strip-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 11px 26px;
  background: var(--gradient-brand);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: opacity 0.25s, transform 0.25s;
}

.imbody-strip-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.imbody-strip-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
}

.imbody-strip-btn--outline:hover {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.5);
  opacity: 1;
}

/* ── responsive ── */
@media (max-width: 860px) {
  .imbody-strip { height: auto; flex-direction: column; }
  .imbody-strip-img { flex: 0 0 auto; height: 280px; }
  .imbody-strip-img img { width: 100%; height: 280px; object-position: center center; }
  .imbody-strip-img::after {
    width: 100%; height: 100px;
    top: auto; bottom: 0;
    background: linear-gradient(to bottom, transparent, var(--text-dark));
  }
  .imbody-strip-main { padding: 26px 28px 32px; }
  .imbody-strip::before {
    bottom: auto; right: 0;
    width: 100%; height: 4px;
    background: linear-gradient(to right, var(--gold-light), var(--purple-bright), var(--gold));
  }
}

@media (max-width: 480px) {
  .imbody-strip-features { gap: 6px 20px; }
  .imbody-strip-features li { font-size: 12px; }
  .imbody-strip-title { font-size: 28px; }
  .imbody-strip-btns { flex-direction: column; align-items: stretch; }
  .imbody-strip-btn { justify-content: center; }
}

/* ══════════════════════════════════
   IMBODY POWER S — PROGRAMI FEATURED
══════════════════════════════════ */
.imbody-featured {
  max-width: 1280px;
  margin: -40px auto 80px;
  padding: 0 40px;
}

.imbody-featured-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: var(--text-dark);
  box-shadow: 0 12px 40px rgba(61,26,110,0.22);
  position: relative;
  border: 1px solid rgba(201,168,76,0.16);
}

.imbody-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.imbody-featured-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.imbody-featured-inner:hover .imbody-featured-img img {
  transform: scale(1.04);
}

.imbody-featured-body {
  padding: 32px 36px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse 80% 100% at 90% 30%, rgba(107,47,160,0.3) 0%, transparent 65%);
}

/* ── badge ── */
.imbody-feat-novo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 30px;
  padding: 4px 13px 4px 8px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.imbody-feat-novo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2.2s ease-in-out infinite;
}

.imbody-feat-novo-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── title ── */
.imbody-feat-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 8px;
}

.imbody-feat-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── tagline ── */
.imbody-feat-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 18px;
}

/* ── specs 2-col grid ── */
.imbody-feat-specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.imbody-feat-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}

.imbody-feat-specs li::before {
  content: '✦';
  font-size: 7px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── bottom row: stats + cta ── */
.imbody-feat-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.imbody-feat-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.imbody-feat-hl {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
}

.imbody-feat-hl-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.imbody-feat-hl-label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.imbody-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--gradient-brand);
  color: white;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  flex-shrink: 0;
  transition: opacity 0.25s, transform 0.25s;
}

.imbody-feat-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.imbody-feat-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.imbody-feat-price-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}

.imbody-feat-price-cta:hover {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .imbody-featured { padding: 0 16px; margin: -24px auto 60px; }
  .imbody-featured-inner { grid-template-columns: 1fr; }
  .imbody-featured-img { min-height: 280px; }
  .imbody-featured-img img { object-position: center center; }
  .imbody-featured-body { padding: 28px 24px 32px; }
  .imbody-feat-specs { grid-template-columns: 1fr; gap: 7px; }
  .imbody-feat-highlights { display: none; }
  .imbody-feat-bottom { justify-content: center; padding-top: 20px; }
  .imbody-feat-btns { width: 100%; flex-direction: column; gap: 10px; }
  .imbody-feat-price-cta { width: 100%; justify-content: center; padding: 15px 20px; font-size: 11px; letter-spacing: 2.5px; }
  .imbody-feat-cta { width: 100%; justify-content: center; padding: 15px 20px; font-size: 11px; letter-spacing: 2.5px; }
}



/* ══════════ o-nama.html ══════════ */

    /* ══ HERO ══ */
    .ab-hero {
      min-height: 490px;
      background: #07030f;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .ab-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      filter: saturate(0.55) brightness(0.48);
    }
    .ab-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,3,20,0.15) 0%, rgba(10,3,20,0.45) 50%, rgba(20,6,45,0.92) 100%);
      z-index: 1;
    }
    .ab-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px 48px;
    }
    .ab-hero-overline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .ab-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
    .ab-hero-overline-text {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
      font-weight: 300;
      font-family: var(--font-body);
    }
    .ab-hero-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(56px, 8vw, 108px);
      line-height: 0.9;
      color: white;
      letter-spacing: -2px;
    }
    .ab-hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }

    /* bottom separator line */
    .ab-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
      z-index: 3;
    }

    /* entrance */
    @keyframes abSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
    @keyframes abRiseUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
    .ab-hero-overline { animation: abSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .ab-hero-title    { animation: abRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

    /* ══ O STUDIJU ══ */
    .ab-studio {
      background: white;
      padding: 100px 0 110px;
    }
    .ab-studio-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 480px 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Image side */
    .ab-img-wrap {
      position: relative;
    }
    .ab-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
    }
    .ab-img-frame {
      position: absolute;
      top: 20px; left: 20px;
      right: -20px; bottom: -20px;
      border: 1px solid rgba(201,168,76,0.28);
      pointer-events: none;
      z-index: -1;
    }
    .ab-img-badge {
      position: absolute;
      bottom: -24px; right: 28px;
      background: var(--gradient-brand);
      padding: 18px 24px;
      text-align: center;
      min-width: 100px;
      border-radius: 12px;
    }
    .ab-img-badge-num {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
    }
    .ab-img-badge-label {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
    }

    /* Text side */
    .ab-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ab-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .ab-title {
      font-family: var(--font-display);
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .ab-title em { font-style: italic; color: var(--purple-mid); }
    .ab-rule {
      width: 40px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 28px;
    }
    .ab-body p {
      font-size: 15px;
      line-height: 1.85;
      color: var(--text-mid);
      font-weight: 300;
      margin-bottom: 16px;
    }

    /* Values grid */
    .ab-values {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .ab-value {
      padding: 22px 20px;
      background: var(--off-white);
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 16px;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .ab-value:hover {
      border-color: rgba(201,168,76,0.28);
      box-shadow: 0 4px 20px rgba(61,26,110,0.07);
      transform: translateY(-2px);
    }
    .ab-value-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(61,26,110,0.08));
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .ab-value-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .ab-value-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 6px;
      letter-spacing: -0.3px;
    }
    .ab-value-desc {
      font-size: 12.5px;
      color: var(--text-light);
      font-weight: 300;
      line-height: 1.65;
    }

    /* ══ QUOTE PANEL ══ */
    .ab-quote {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .ab-quote-bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: saturate(0.35) brightness(0.28);
    }
    .ab-quote::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(8,2,18,0.65) 0%, rgba(61,26,110,0.48) 100%);
      z-index: 1;
    }
    /* thin top/bottom gold lines */
    .ab-quote::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
      z-index: 2;
    }
    .ab-quote-inner {
      position: relative;
      z-index: 3;
      max-width: 840px;
      margin: 0 auto;
      padding: 80px 64px;
      text-align: center;
    }
    .ab-quote-gem {
      display: block;
      font-family: var(--font-display);
      font-size: 100px;
      line-height: 0.5;
      color: var(--gold);
      opacity: 0.2;
      margin-bottom: 20px;
    }
    .ab-quote-text {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.8vw, 38px);
      font-weight: 300;
      font-style: italic;
      color: white;
      line-height: 1.45;
      letter-spacing: -0.5px;
      margin-bottom: 28px;
    }
    .ab-quote-sep {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 18px;
    }
    .ab-quote-sep::before,
    .ab-quote-sep::after { content: ''; width: 32px; height: 1px; background: rgba(201,168,76,0.5); }
    .ab-quote-sep-gem { color: var(--gold); opacity: 0.6; font-size: 10px; }
    .ab-quote-author {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.65);
      font-weight: 300;
    }
    /* bottom gold line */
    .ab-quote-bottom-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
      z-index: 2;
    }

    /* ══ O VLASNICI ══ */
    .ab-owner {
      background: var(--off-white);
      padding: 100px 0 110px;
    }
    .ab-owner-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: 80px;
      align-items: start;
    }

    /* Stats */
    .ab-stats {
      display: flex;
      gap: 2px;
      margin-top: 40px;
    }
    .ab-stat {
      flex: 1;
      padding: 20px 16px;
      background: white;
      border: 1px solid rgba(176,110,224,0.1);
      border-radius: 16px;
      text-align: center;
      transition: border-color 0.25s;
    }
    .ab-stat:hover { border-color: rgba(201,168,76,0.3); }
    .ab-stat-num {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 300;
      color: var(--purple-mid);
      line-height: 1;
      margin-bottom: 6px;
    }
    .ab-stat-label {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
    }

    /* Portrait */
    .ab-portrait-wrap {
      position: relative;
      margin-top: 8px;
    }
    .ab-portrait {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .ab-portrait-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, var(--purple-deep) 0%, #1a0a40 60%, #0d0620 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .ab-portrait-placeholder::before {
      content: 'S';
      position: absolute;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 340px;
      font-weight: 300;
      color: rgba(201,168,76,0.07);
      line-height: 1;
      bottom: -40px;
      right: -20px;
    }
    .ab-portrait-placeholder-label {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 18px;
      color: rgba(255,255,255,0.3);
      z-index: 1;
    }
    .ab-portrait-placeholder-hint {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.3);
      margin-top: 8px;
      z-index: 1;
    }
    .ab-portrait-frame {
      position: absolute;
      top: -16px; right: -16px;
      bottom: 16px; left: 16px;
      border: 1px solid rgba(201,168,76,0.22);
      pointer-events: none;
      z-index: -1;
    }
    .ab-portrait-tag {
      position: absolute;
      bottom: 36px;
      left: -24px;
      background: white;
      padding: 14px 20px;
      border-left: 3px solid var(--gold);
      box-shadow: 0 8px 32px rgba(61,26,110,0.14);
    }
    .ab-portrait-tag-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      font-style: italic;
      color: var(--text-dark);
      margin-bottom: 2px;
    }
    .ab-portrait-tag-role {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .ab-hero-content { padding: 0 32px 40px; }
      .ab-studio-inner, .ab-owner-inner { padding: 0 32px; gap: 48px; }
      .ab-studio-inner { grid-template-columns: 360px 1fr; }
      .ab-owner-inner { grid-template-columns: 1fr 340px; }
    }

    @media (max-width: 768px) {
      /* Hero */
      .ab-hero { min-height: 340px; }
      .ab-hero-content { padding: 0 20px 40px; }
      .ab-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
      .ab-hero-overline-text { font-size: 9px; letter-spacing: 3px; }

      /* O studiju */
      .ab-studio { padding: 52px 0 56px; }
      .ab-studio-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
      }
      .ab-img-wrap { margin-bottom: 40px; }
      .ab-img { aspect-ratio: 16/9; }
      .ab-img-frame { display: none; }
      .ab-img-badge {
        right: 16px;
        bottom: -20px;
        padding: 12px 18px;
        border-radius: 10px;
        min-width: 80px;
      }
      .ab-img-badge-num { font-size: 28px; }

      /* Values */
      .ab-values { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 28px; }
      .ab-value { padding: 16px 12px; border-radius: 12px; }
      .ab-value-icon { width: 36px; height: 36px; margin-bottom: 10px; }
      .ab-value-icon svg { width: 16px; height: 16px; }
      .ab-value-title { font-size: 16px; }
      .ab-value-desc { font-size: 11.5px; }

      /* Quote */
      .ab-quote { min-height: 320px; }
      .ab-quote-inner { padding: 52px 20px; }
      .ab-quote-gem { font-size: 72px; }

      /* O vlasnici */
      .ab-owner { padding: 52px 0 60px; }
      .ab-owner-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
      }
      .ab-portrait-wrap {
        order: -1;
        margin-bottom: 40px;
        padding-bottom: 0;
      }
      .ab-portrait {
        aspect-ratio: 16/9;
        max-height: none;
        object-position: center 20%;
      }
      .ab-portrait-frame { display: none; }
      .ab-portrait-tag {
        left: 12px;
        bottom: 20px;
        padding: 10px 14px;
      }
      .ab-portrait-tag-name { font-size: 16px; }

      /* Stats */
      .ab-stats { flex-wrap: wrap; gap: 8px; margin-top: 28px; }
      .ab-stat {
        flex: 0 0 calc(50% - 4px);
        border-radius: 12px;
        padding: 16px 12px;
      }
      .ab-stat-num { font-size: 28px; }
    }

    @media (max-width: 420px) {
      .ab-values { grid-template-columns: 1fr; }
      .ab-stat { flex: 0 0 100%; }
    }

    /* ══ CLOSING CTA ══ */
    .ab-cta {
      background: var(--text-dark);
      padding: 110px 0 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    /* top separator */
    .ab-cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
    }
    /* bottom separator */
    .ab-cta::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    }

    /* rotating background ornament */
    @keyframes abSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes abSpinRev { to { transform: translate(-50%, -50%) rotate(-360deg); } }
    .ab-cta-ring-1 {
      position: absolute;
      top: 50%; left: 50%;
      width: 480px; height: 480px;
      border: 1px solid rgba(201,168,76,0.05);
      transform: translate(-50%, -50%) rotate(0deg);
      animation: abSpin 60s linear infinite;
      pointer-events: none;
    }
    .ab-cta-ring-2 {
      position: absolute;
      top: 50%; left: 50%;
      width: 360px; height: 360px;
      border: 1px solid rgba(201,168,76,0.08);
      transform: translate(-50%, -50%) rotate(45deg);
      animation: abSpinRev 45s linear infinite;
      pointer-events: none;
    }
    .ab-cta-ring-3 {
      position: absolute;
      top: 50%; left: 50%;
      width: 220px; height: 220px;
      border: 1px solid rgba(201,168,76,0.1);
      transform: translate(-50%, -50%) rotate(20deg);
      animation: abSpin 30s linear infinite;
      pointer-events: none;
    }

    /* dot grid texture */
    .ab-cta-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    .ab-cta-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* animated gem symbol */
    @keyframes abGemPulse {
      0%, 100% { opacity: 0.45; }
      50% { opacity: 0.75; }
    }
    .ab-cta-gem {
      display: inline-block;
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 8px;
      margin-bottom: 28px;
      animation: abGemPulse 3s ease-in-out infinite;
    }
    .ab-cta-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      margin-bottom: 20px;
    }
    .ab-cta-title {
      font-family: var(--font-display);
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 300;
      color: white;
      line-height: 1.0;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
    }
    .ab-cta-title em {
      display: block;
      font-style: italic;
      color: var(--gold-light);
    }
    .ab-cta-rule {
      width: 40px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 28px;
    }
    .ab-cta-lead {
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 44px;
    }
    .ab-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* gem pulse only — scroll reveal handled by JS */
    .ab-cta-gem { animation: abGemPulse 3s ease-in-out infinite; }

    @media (max-width: 768px) {
      .ab-cta { padding: 72px 0 64px; }
      .ab-cta-ring-1 { width: 280px; height: 280px; }
      .ab-cta-ring-2 { width: 200px; height: 200px; }
      .ab-cta-ring-3 { width: 130px; height: 130px; }
      .ab-cta-btns { flex-direction: column; align-items: center; }
      .ab-cta-btns .btn-primary,
      .ab-cta-btns .btn-outline { width: 100%; max-width: 280px; text-align: center; }
    }
    @media (max-width: 480px) {
      .ab-hero { min-height: 300px; }
      .ab-hero-content { padding: 0 20px 36px; }
      .ab-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
      .ab-hero-overline-text { font-size: 8px; letter-spacing: 2px; }
      .ab-hero-overline { gap: 10px; margin-bottom: 14px; }
    }


/* ══════════ kontakt.html ══════════ */

    /* ══ HERO ══ */
    .kt-hero {
      min-height: 490px;
      background: #07030f;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .kt-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: saturate(0.55) brightness(0.48);
    }
    .kt-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,3,20,0.15) 0%, rgba(10,3,20,0.45) 50%, rgba(20,6,45,0.92) 100%);
      z-index: 1;
    }
    .kt-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
      z-index: 3;
    }
    .kt-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px 48px;
    }
    .kt-hero-overline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .kt-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
    .kt-hero-overline-text {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
      font-weight: 300;
      font-family: var(--font-body);
    }
    .kt-hero-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(56px, 8vw, 108px);
      line-height: 0.9;
      color: white;
      letter-spacing: -2px;
    }
    .kt-hero-title em { font-style: italic; color: var(--gold-light); display: block; }
    @keyframes ktSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
    @keyframes ktRiseUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
    .kt-hero-overline { animation: ktSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .kt-hero-title    { animation: ktRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

    /* ══ MAIN SECTION ══ */
    .kt-main {
      background: white;
      padding: 100px 0 110px;
    }
    .kt-main-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 80px;
      align-items: start;
    }

    /* ══ LEFT: CONTACT INFO ══ */
    .kt-info-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kt-info-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

    .kt-info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }

    .kt-info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(61,26,110,0.07);
    }
    .kt-info-item:first-child { border-top: 1px solid rgba(61,26,110,0.07); }

    .kt-info-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .kt-info-icon svg {
      width: 16px; height: 16px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .kt-info-label {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 6px;
    }
    .kt-info-value {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1.5;
    }
    .kt-info-value a {
      color: var(--text-dark);
      text-decoration: none;
      transition: color 0.2s;
    }
    .kt-info-value a:hover { color: var(--purple-mid); }

    /* hours table */
    .kt-hours { display: flex; flex-direction: column; gap: 4px; }
    .kt-hours-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      font-size: 14px;
      font-family: var(--font-body);
      font-weight: 300;
      color: var(--text-mid);
    }
    .kt-hours-day { color: var(--text-dark); font-weight: 400; }
    .kt-hours-closed { color: rgba(107,47,160,0.5); font-style: italic; font-size: 13px; }

    /* socials row under info */
    .kt-socials {
      display: flex;
      gap: 12px;
      margin-bottom: 36px;
    }
    .kt-social-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border: 1px solid rgba(201,168,76,0.15);
      background: var(--off-white);
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s;
      flex: 1;
    }
    .kt-social-link:hover {
      border-color: rgba(201,168,76,0.4);
      background: white;
    }
    .kt-social-link svg {
      width: 16px; height: 16px;
      fill: var(--purple-mid);
      flex-shrink: 0;
    }
    .kt-social-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
    .kt-social-name {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
      font-weight: 400;
    }
    .kt-social-handle {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* map */
    .kt-map-wrap {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.12);
    }
    .kt-map-wrap iframe {
      display: block;
      width: 100%;
      height: 260px;
      border: 0;
      filter: saturate(0.7) contrast(0.9);
    }

    /* ══ RIGHT: FORM ══ */
    .kt-form-header { margin-bottom: 40px; }
    .kt-form-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kt-form-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .kt-form-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 10px;
    }
    .kt-form-title em { font-style: italic; color: var(--purple-mid); }
    .kt-form-rule { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 16px; }
    .kt-form-lead {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* form fields — bottom border only */
    .kt-form { display: flex; flex-direction: column; gap: 0; }
    .kt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .kt-field { position: relative; padding-bottom: 32px; }
    .kt-label {
      display: block;
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      font-weight: 400;
      margin-bottom: 10px;
      transition: color 0.25s;
    }
    .kt-field:focus-within .kt-label { color: var(--gold); }
    .kt-input, .kt-select, .kt-textarea {
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid rgba(61,26,110,0.18);
      padding: 8px 0 12px;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 300;
      color: var(--text-dark);
      transition: border-color 0.25s;
      outline: none;
      box-sizing: border-box;
    }
    .kt-input:focus, .kt-select:focus, .kt-textarea:focus {
      border-bottom-color: var(--gold);
    }
    .kt-input::placeholder, .kt-textarea::placeholder {
      color: rgba(74,40,112,0.25);
      font-style: italic;
    }
    .kt-select {
      appearance: none;
      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='%23c9a84c' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 4px center;
      padding-right: 24px;
    }
    .kt-textarea { resize: none; min-height: 100px; line-height: 1.6; }

    /* focus underline accent */
    .kt-field::after {
      content: '';
      position: absolute;
      bottom: 32px; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold), rgba(107,47,160,0.5));
      transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .kt-field:focus-within::after { width: 100%; }

    .kt-submit-wrap { padding-top: 8px; }
    .kt-submit {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 18px 32px;
      background: var(--gradient-brand);
      color: var(--gold-light);
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 4px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: opacity 0.25s, box-shadow 0.25s;
    }
    .kt-submit:hover {
      opacity: 0.88;
      box-shadow: 0 8px 32px rgba(61,26,110,0.3);
    }
    .kt-submit-gem { opacity: 0.7; transition: transform 0.3s; }
    .kt-submit:hover .kt-submit-gem { transform: rotate(90deg); }

    /* success state */
    .kt-success {
      display: none;
      margin-top: 24px;
      padding: 28px 32px;
      border: 1px solid rgba(201,168,76,0.2);
      background: var(--off-white);
      text-align: center;
    }
    .kt-success-gem {
      font-size: 24px;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }
    .kt-success-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .kt-success-desc {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--text-light);
      font-weight: 300;
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .kt-hero-content { padding: 0 32px 40px; }
      .kt-main-inner { padding: 0 32px; grid-template-columns: 340px 1fr; gap: 56px; }
    }
    @media (max-width: 768px) {
      .kt-hero { min-height: 340px; }
      .kt-hero-content { padding: 0 20px 32px; }
      .kt-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
      .kt-hero-overline-text { font-size: 9px; letter-spacing: 3px; }
      .kt-main { padding: 60px 0 72px; }
      .kt-main-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 56px; }
      .kt-row { grid-template-columns: 1fr; gap: 0; }
      .kt-socials { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .kt-hero { min-height: 300px; }
      .kt-hero-content { padding: 0 20px 28px; }
      .kt-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
      .kt-hero-overline-text { font-size: 8px; letter-spacing: 2px; }
      .kt-hero-overline { gap: 10px; margin-bottom: 14px; }
    }



/* ══════════ cenovnik.html ══════════ */
    /* ══ PRICE HERO ══ */
    .price-hero {
      min-height: 420px;
      background: var(--text-dark);
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .price-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: saturate(0.5) brightness(0.5);
    }
    .price-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,3,20,0.3) 0%, rgba(20,6,45,0.88) 100%);
      z-index: 1;
    }
    .price-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
      z-index: 3;
    }
    .price-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px 40px;
    }
    .price-hero-overline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .price-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
    .price-hero-overline-text {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
      font-weight: 300;
      font-family: var(--font-body);
    }
    .price-hero-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(56px, 8vw, 108px);
      line-height: 0.9;
      color: white;
      letter-spacing: -2px;
    }
    .price-hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }

    /* ══ TABS ══ */
    .cn-tabs {
      background: rgba(7,3,15,0.97);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      position: sticky;
      top: clamp(66px, 5.5vw, 76px);
      z-index: 90;
    }
    .cn-tabs-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      gap: 0;
    }
    .cn-tab {
      padding: 16px 36px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      background: none;
      border: none;
      border-top: none;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      margin-bottom: 0;
      position: relative;
    }
    .cn-tab:hover { color: rgba(255,255,255,0.75); }
    .cn-tab.active { color: white; border-bottom-color: var(--gold); }
    .cn-tab-num {
      font-family: var(--font-display);
      font-size: 13px;
      font-style: italic;
      color: rgba(201,168,76,0.4);
      margin-right: 8px;
      transition: color 0.3s;
    }
    .cn-tab:hover .cn-tab-num { color: rgba(201,168,76,0.7); }
    .cn-tab.active .cn-tab-num { color: var(--gold); }

    /* ══ PANELS ══ */
    .cn-panel { display: none; background: var(--off-white); }
    .cn-panel.active { display: block; }

    /* ══ CATEGORY HEADER ══ */
    .cn-cat-header {
      background: #f7f3ee;
      padding: 60px 64px 48px;
      position: relative;
      overflow: hidden;
    }
    .cn-cat-header::after {
      content: attr(data-num);
      position: absolute;
      right: 64px;
      top: 38%;
      transform: translateY(-38%);
      font-family: var(--font-display);
      font-size: 180px;
      font-weight: 300;
      color: rgba(61,26,110,0.05);
      line-height: 1;
      pointer-events: none;
      letter-spacing: -8px;
    }
    .cn-cat-header-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .cn-cat-eyebrow {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--purple-mid);
      opacity: 0.7;
      font-family: var(--font-body);
      font-weight: 400;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cn-cat-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }
    .cn-cat-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      color: var(--purple-deep);
      line-height: 1;
      letter-spacing: -1px;
    }
    .cn-cat-title em { font-style: italic; color: var(--purple-mid); }

    /* ══ SERVICES AREA ══ */
    .cn-services {
      max-width: 1280px;
      margin: 0 auto;
      padding: 64px 64px 80px;
    }
    .cn-panel.active > .cn-services,
    .cn-panel.active > .tr-slider-shell {
      border-top: 1px solid rgba(61,26,110,0.1);
    }
    .cn-service-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-bottom: 2px;
    }
    .cn-service-row--3 {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .cn-pkg-gratis {
      color: #2e7d32 !important;
      font-style: italic;
      font-family: var(--font-display);
      font-size: 18px !important;
      font-weight: 400;
    }

    /* ══ CARD ══ */
    .cn-card {
      background: white;
      padding: 40px 44px;
      border: 1px solid rgba(176,110,224,0.08);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }
    .cn-card .cn-book-btn { margin-top: auto; }
    .cn-card .cn-rok { margin-top: auto; }
    .cn-card .cn-rok + .cn-book-btn { margin-top: 16px; }
    .cn-card:hover {
      border-color: rgba(201,168,76,0.2);
      box-shadow: 0 8px 48px rgba(61,26,110,0.08);
      transform: translateY(-2px);
    }
    .cn-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      font-family: var(--font-body);
      margin-bottom: 20px;
      padding: 6px 12px;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 20px;
    }
    .cn-card-badge.signature {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #1a0a2e;
      border-color: transparent;
    }
    .cn-card-name {
      font-family: var(--font-display);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.1;
      margin-bottom: 6px;
      letter-spacing: -0.5px;
    }
    .cn-card-name em { font-style: italic; color: var(--purple-mid); }
    .cn-card-subtitle {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 1px;
      font-weight: 300;
      margin-bottom: 28px;
    }

    /* dark card */
    .cn-card.dark {
      background: var(--text-dark);
      border-color: rgba(201,168,76,0.12);
    }
    .cn-card.dark:hover { border-color: rgba(201,168,76,0.3); }
    @keyframes cn-ping { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,0)} 30%{box-shadow:0 0 0 10px rgba(201,168,76,0.35)} 60%{box-shadow:0 0 0 20px rgba(201,168,76,0)} }
    .cn-highlight { animation: cn-ping 0.9s ease 0.1s 2; outline: 2px solid rgba(201,168,76,0.6); outline-offset: 3px; }
    .cn-card.dark .cn-card-name { color: white; }
    .cn-card.dark .cn-card-name em { color: var(--gold-light); }
    .cn-card.dark .cn-card-subtitle { color: rgba(255,255,255,0.35); }

    /* ══ PACKAGES LIST ══ */
    .cn-packages { display: flex; flex-direction: column; }
    .cn-pkg-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 15px 0;
      border-bottom: 1px solid rgba(176,110,224,0.07);
      gap: 12px;
    }
    .cn-pkg-row:last-child { border-bottom: none; }
    .cn-pkg-row.highlight .cn-pkg-label { color: var(--purple-mid); }
    .cn-pkg-row.highlight .cn-pkg-price { color: var(--purple-mid); }
    .cn-pkg-label { font-size: 13px; color: var(--text-mid); font-weight: 300; }
    .cn-pkg-label strong { font-weight: 500; color: var(--text-dark); }
    .cn-pkg-price {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      color: var(--purple-deep);
      white-space: nowrap;
      letter-spacing: -0.5px;
    }
    .cn-pkg-price small {
      font-size: 11px;
      color: var(--text-light);
      font-family: var(--font-body);
      font-weight: 300;
      margin-left: 2px;
      letter-spacing: 0;
    }
    .cn-card.dark .cn-pkg-row { border-bottom-color: rgba(255,255,255,0.06); }
    .cn-card.dark .cn-pkg-row.highlight .cn-pkg-label { color: var(--gold-light); }
    .cn-card.dark .cn-pkg-row.highlight .cn-pkg-price { color: var(--gold-light); }
    .cn-card.dark .cn-pkg-label { color: rgba(255,255,255,0.5); }
    .cn-card.dark .cn-pkg-label strong { color: rgba(255,255,255,0.85); }
    .cn-card.dark .cn-pkg-price { color: rgba(255,255,255,0.8); }
    .cn-card.dark .cn-pkg-price small { color: rgba(255,255,255,0.3); }

    /* ══ DURATION GROUP ══ */
    .cn-duration-group { display: flex; flex-direction: column; gap: 10px; }
    .cn-duration-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 13px 16px;
      background: var(--off-white);
      border-radius: 8px;
      border: 1px solid rgba(176,110,224,0.08);
      transition: all 0.2s;
    }
    .cn-duration-item:hover { background: var(--purple-mist); border-color: rgba(176,110,224,0.2); }
    .cn-duration-time { display: flex; align-items: baseline; gap: 3px; }
    .cn-duration-mins {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 300;
      color: var(--purple-mid);
      line-height: 1;
    }
    .cn-duration-unit { font-size: 11px; color: var(--text-light); }
    .cn-duration-price-val {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }
    .cn-duration-price-rsd { font-size: 11px; color: var(--text-light); font-family: var(--font-body); margin-left: 3px; }
    .cn-card.dark .cn-duration-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.07); }
    .cn-card.dark .cn-duration-item:hover { background: rgba(255,255,255,0.07); }
    .cn-card.dark .cn-duration-mins { color: var(--gold-light); }
    .cn-card.dark .cn-duration-price-val { color: white; }
    .cn-card.dark .cn-duration-price-rsd { color: rgba(255,255,255,0.35); }
    .cn-card.dark .cn-duration-unit { color: rgba(255,255,255,0.35); }

    /* ══ SECTION SUBHEADER ══ */
    .cn-pkg-section { margin-top: 24px; }
    .cn-pkg-section-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 10px;
      font-family: var(--font-body);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cn-pkg-section-label::after { content: ''; flex: 1; height: 1px; background: rgba(176,110,224,0.12); }
    .cn-card.dark .cn-pkg-section-label { color: rgba(255,255,255,0.25); }
    .cn-card.dark .cn-pkg-section-label::after { background: rgba(255,255,255,0.07); }

    /* ══ SINGLE PRICE ══ */
    .cn-single-price { display: flex; align-items: baseline; gap: 8px; margin-top: 24px; }
    .cn-single-price-val {
      font-family: var(--font-display);
      font-size: 52px;
      font-weight: 300;
      color: var(--purple-mid);
      line-height: 1;
      letter-spacing: -2px;
    }
    .cn-single-price-unit { font-size: 14px; color: var(--text-light); font-weight: 300; letter-spacing: 0.5px; }
    .cn-card.dark .cn-single-price-val { color: var(--gold-light); }
    .cn-card.dark .cn-single-price-unit { color: rgba(255,255,255,0.35); }

    /* ══ ADDON TAG ══ */
    .cn-addon {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(201,168,76,0.7);
      font-weight: 300;
      margin-top: 14px;
    }
    .cn-addon::before { content: '+'; font-size: 14px; color: var(--gold); }

    /* ══ ROK BADGE ══ */
    .cn-rok {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: var(--purple-mist);
      border-radius: 20px;
      margin-top: 24px;
      font-size: 12px;
      color: var(--text-mid);
      font-family: var(--font-body);
    }
    .cn-rok strong { color: var(--purple-mid); font-weight: 500; }
    .cn-rok-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-light); flex-shrink: 0; }
    .cn-card.dark .cn-rok { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
    .cn-card.dark .cn-rok strong { color: var(--gold-light); }
    .cn-card.dark .cn-rok-dot { background: var(--gold); }

    /* ══ MASAŽE MASTER-DETAIL ══ */
    .ms-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      min-height: 520px;
      border-top: 1px solid rgba(61,26,110,0.1);
    }
    .ms-menu {
      background: var(--text-dark);
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(201,168,76,0.1);
    }
    .ms-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 24px;
      background: transparent;
      border: none;
      border-left: 3px solid transparent;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      cursor: pointer;
      text-align: left;
      transition: all 0.25s ease;
      width: 100%;
    }
    .ms-item:hover { background: rgba(255,255,255,0.03); border-left-color: rgba(201,168,76,0.3); }
    .ms-item.active { background: rgba(201,168,76,0.06); border-left-color: var(--gold); }
    .ms-num {
      font-family: var(--font-display);
      font-size: 13px;
      color: rgba(255,255,255,0.2);
      font-weight: 300;
      flex-shrink: 0;
      width: 22px;
      transition: color 0.25s;
    }
    .ms-item.active .ms-num { color: var(--gold); }
    .ms-item-text { flex: 1; min-width: 0; }
    .ms-item-name {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      line-height: 1.2;
      transition: color 0.25s;
    }
    .ms-item.active .ms-item-name, .ms-item:hover .ms-item-name { color: white; }
    .ms-item-hint {
      font-size: 10px;
      color: rgba(255,255,255,0.2);
      font-family: var(--font-body);
      font-weight: 300;
      margin-top: 2px;
      letter-spacing: 0.5px;
      transition: color 0.25s;
    }
    .ms-item.active .ms-item-hint { color: rgba(201,168,76,0.5); }
    .ms-item-arrow {
      font-size: 12px;
      color: rgba(255,255,255,0.15);
      transition: all 0.25s;
      flex-shrink: 0;
    }
    .ms-item.active .ms-item-arrow { color: var(--gold); transform: translateX(2px); }

    /* Detail panel */
    .ms-detail-wrap {
      position: relative;
      background: white;
      overflow: hidden;
    }
    .ms-detail {
      position: absolute;
      inset: 0;
      padding: 44px 52px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateX(16px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      pointer-events: none;
    }
    .ms-detail.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
      position: relative;
    }
    .ms-d-head { margin-bottom: 28px; }
    .ms-d-name {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.05;
      letter-spacing: -0.5px;
      margin-bottom: 6px;
    }
    .ms-d-name em { font-style: italic; color: var(--purple-mid); }
    .ms-d-sub { font-size: 12px; color: var(--text-light); letter-spacing: 1px; font-weight: 300; }
    .ms-d-body { display: flex; gap: 32px; flex: 1; }
    .ms-d-section { flex: 1; }
    .ms-d-section-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      font-family: var(--font-body);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(176,110,224,0.1);
    }
    .ms-price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 11px 0;
      border-bottom: 1px solid rgba(176,110,224,0.06);
      gap: 12px;
    }
    .ms-price-row:last-child { border-bottom: none; }
    .ms-price-row.highlight .ms-dur { color: var(--purple-mid); font-weight: 500; }
    .ms-price-row.highlight .ms-price { color: var(--purple-mid); }
    .ms-dur { font-size: 13px; color: var(--text-mid); font-family: var(--font-body); font-weight: 300; }
    .ms-price {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      color: var(--purple-deep);
      white-space: nowrap;
      letter-spacing: -0.5px;
    }
    .ms-price small { font-size: 10px; color: var(--text-light); font-family: var(--font-body); font-weight: 300; margin-left: 2px; }
    .ms-d-body--single { align-items: center; justify-content: center; flex-direction: column; text-align: center; }
    .ms-big-price {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 300;
      color: var(--purple-deep);
      letter-spacing: -2px;
      line-height: 1;
    }
    .ms-big-price small { font-size: 18px; color: var(--text-light); font-family: var(--font-body); font-weight: 300; }
    .ms-big-dur { font-size: 12px; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-body); margin-top: 8px; }
    .ms-d-footer {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(176,110,224,0.08);
    }
    .ms-book-btn {
      width: auto !important;
      display: inline-block !important;
      margin-top: 0 !important;
      flex-shrink: 0;
    }
    @media (max-width: 1024px) {
      .ms-layout { grid-template-columns: 240px 1fr; }
    }
    @media (max-width: 768px) {
      .ms-layout { grid-template-columns: 1fr; }
      .ms-menu { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
      .ms-item { flex-direction: column; align-items: center; text-align: center; padding: 14px 12px; border-left: none; border-bottom: 3px solid transparent; min-width: 100px; }
      .ms-item.active { border-bottom-color: var(--gold); border-left-color: transparent; }
      .ms-item-arrow { display: none; }
      .ms-detail { padding: 28px 24px; position: relative; }
      .ms-d-body { flex-direction: column; gap: 20px; }
      .ms-d-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
      .ms-book-btn { width: 100% !important; display: block !important; }
    }

    /* ══ MASAŽE SLIDER OVERRIDES ══ */
    .ms-slider-shell { background: #fff; }
    .tr-slide-inner.ms-compact { min-height: 360px; }
    .tr-slide-left { padding: 36px 36px 36px 40px; }
    .tr-slide-right { padding: 36px 40px 36px 36px; }

    /* Price table */
    .ms-price-table { width: 100%; }
    .ms-pt-head {
      display: grid;
      grid-template-columns: 1fr repeat(auto-fill, minmax(80px,1fr));
      gap: 0 16px;
      padding: 0 0 10px;
      border-bottom: 2px solid rgba(61,26,110,0.12);
      margin-bottom: 4px;
    }
    .ms-pt-head span {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      font-family: var(--font-body);
      font-weight: 400;
    }
    .ms-pt-head span:not(:first-child) { text-align: right; }
    .ms-pt-row {
      display: grid;
      grid-template-columns: 1fr repeat(auto-fill, minmax(80px,1fr));
      gap: 0 16px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(176,110,224,0.07);
      align-items: baseline;
    }
    .ms-pt-row:last-of-type { border-bottom: none; }
    .ms-pt-row.highlight { background: rgba(107,47,160,0.04); margin: 0 -8px; padding: 12px 8px; border-radius: 4px; border-bottom: none; }
    .ms-pt-row.highlight .ms-pt-dur { color: var(--purple-mid); font-weight: 500; }
    .ms-pt-row.highlight .ms-pt-val { color: var(--purple-mid); }
    .ms-pt-dur { font-size: 13px; color: var(--text-mid); font-family: var(--font-body); }
    .ms-pt-val {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--purple-deep);
      text-align: right;
      letter-spacing: -0.5px;
    }
    .ms-pt-unit { font-size: 10px; color: var(--text-light); font-family: var(--font-body); margin-top: 10px; text-align: right; letter-spacing: 0.5px; }

    /* Dark table */
    .ms-price-table.dark .ms-pt-head { border-bottom-color: rgba(255,255,255,0.08); }
    .ms-price-table.dark .ms-pt-head span { color: rgba(255,255,255,0.3); }
    .ms-price-table.dark .ms-pt-row { border-bottom-color: rgba(255,255,255,0.05); }
    .ms-price-table.dark .ms-pt-row.highlight { background: rgba(201,168,76,0.07); }
    .ms-price-table.dark .ms-pt-row.highlight .ms-pt-dur { color: var(--gold-light); }
    .ms-price-table.dark .ms-pt-row.highlight .ms-pt-val { color: var(--gold-light); }
    .ms-price-table.dark .ms-pt-dur { color: rgba(255,255,255,0.5); }
    .ms-price-table.dark .ms-pt-val { color: rgba(255,255,255,0.85); }
    .ms-price-table.dark .ms-pt-unit { color: rgba(255,255,255,0.2); }

    /* Single price right panel */
    .ms-single-right { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
    .ms-single-val {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 300;
      color: var(--purple-deep);
      letter-spacing: -2px;
      line-height: 1;
    }
    .tr-slide-inner.dark .ms-single-val { color: var(--gold-light); }
    .ms-single-meta { font-size: 12px; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; font-family: var(--font-body); }
    .tr-slide-inner.dark .ms-single-meta { color: rgba(255,255,255,0.3); }

    /* ══ TRETMANI SLIDER ══ */
    .tr-slider-shell {
      background: #ffffff;
      padding: 48px 64px 56px;
    }
    .tr-slider-meta {
      max-width: 1280px;
      margin: 0 auto 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .tr-slider-counter {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 300;
      color: var(--purple-deep);
      letter-spacing: -1px;
    }
    .tr-slider-arrows {
      display: flex;
      gap: 8px;
    }
    .tr-arrow {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(61,26,110,0.2);
      background: white;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple-deep);
      transition: all 0.25s ease;
    }
    .tr-arrow:hover {
      background: var(--purple-deep);
      color: white;
      border-color: var(--purple-deep);
      transform: scale(1.05);
    }
    .tr-slider-viewport {
      max-width: 1280px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 2px;
    }
    .tr-slider-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .tr-slide {
      min-width: 100%;
    }
    .tr-slide-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 440px;
    }
    .tr-slide-inner.dark { background: var(--text-dark); }
    .tr-slide-inner.light { background: white; border: 1px solid rgba(176,110,224,0.08); }
    .tr-slide-left {
      padding: 48px 48px 48px 52px;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(176,110,224,0.1);
    }
    .tr-slide-inner.dark .tr-slide-left { border-right-color: rgba(255,255,255,0.06); }
    .tr-slide-right {
      padding: 48px 52px 48px 48px;
    }
    .tr-slide-name {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 8px;
    }
    .tr-slide-inner.dark .tr-slide-name { color: white; }
    .tr-slide-name em { font-style: italic; color: var(--purple-mid); }
    .tr-slide-inner.dark .tr-slide-name em { color: var(--gold-light); }
    .tr-slide-sub {
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--text-light);
      font-weight: 300;
      margin-bottom: 20px;
    }
    .tr-slide-inner.dark .tr-slide-sub { color: rgba(255,255,255,0.35); }
    .tr-slide-desc {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-mid);
      font-weight: 300;
      max-width: 360px;
      flex: 1;
    }
    .tr-slide-inner.dark .tr-slide-desc { color: rgba(255,255,255,0.45); }
    .tr-book-btn {
      margin-top: 32px;
      width: auto !important;
      display: inline-block !important;
      align-self: flex-start;
    }
    /* dark card pkg overrides inside slides */
    .tr-slide-inner.dark .cn-pkg-row { border-bottom-color: rgba(255,255,255,0.06); }
    .tr-slide-inner.dark .cn-pkg-row.highlight .cn-pkg-label { color: var(--gold-light); }
    .tr-slide-inner.dark .cn-pkg-row.highlight .cn-pkg-price { color: var(--gold-light); }
    .tr-slide-inner.dark .cn-pkg-label { color: rgba(255,255,255,0.5); }
    .tr-slide-inner.dark .cn-pkg-label strong { color: rgba(255,255,255,0.85); }
    .tr-slide-inner.dark .cn-pkg-price { color: rgba(255,255,255,0.8); }
    .tr-slide-inner.dark .cn-pkg-price small { color: rgba(255,255,255,0.3); }
    .tr-slide-inner.dark .cn-rok { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
    .tr-slide-inner.dark .cn-rok strong { color: var(--gold-light); }
    .tr-slide-inner.dark .cn-rok-dot { background: var(--gold); }
    .tr-slide-inner.dark .cn-book-btn { color: var(--gold-light); border-color: rgba(201,168,76,0.25); }
    .tr-slide-inner.dark .cn-book-btn:hover { background: var(--gold); color: #1a0a2e; border-color: var(--gold); }
    /* Dots */
    .tr-dots {
      max-width: 1280px;
      margin: 24px auto 0;
      display: flex;
      gap: 8px;
    }
    .tr-dot {
      width: 28px;
      height: 3px;
      background: rgba(61,26,110,0.15);
      border: none;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.3s ease;
      padding: 0;
    }
    .tr-dot.active {
      background: var(--purple-deep);
      width: 48px;
    }
    @media (max-width: 768px) {
      .tr-slider-shell { padding: 32px 24px 40px; }
      .tr-slide-inner { grid-template-columns: 1fr; min-height: auto; }
      .tr-slide-left { padding: 28px 24px 20px; border-right: none; border-bottom: 1px solid rgba(176,110,224,0.1); }
      .tr-slide-right { padding: 24px 24px 28px; }
      .tr-book-btn { width: 100% !important; display: block !important; }
    }

    /* ══ BOOK BUTTON ══ */
    .cn-book-btn {
      display: block;
      width: 100%;
      margin-top: 20px;
      padding: 14px 20px;
      text-align: center;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--purple-deep);
      background: transparent;
      border: 1px solid rgba(61,26,110,0.25);
      border-radius: 4px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .cn-book-btn:hover {
      background: var(--purple-deep);
      color: white;
      border-color: var(--purple-deep);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(61,26,110,0.2);
    }
    .cn-card.dark .cn-book-btn {
      color: var(--gold-light);
      border-color: rgba(201,168,76,0.25);
    }
    .cn-card.dark .cn-book-btn:hover {
      background: var(--gold);
      color: #1a0a2e;
      border-color: var(--gold);
      box-shadow: 0 6px 24px rgba(201,168,76,0.2);
    }

    /* ══ TRETMANI DODACI ══ */
    .cn-tretmani-dodaci {
      margin-top: 20px;
      padding: 16px 18px;
      background: rgba(201,168,76,0.06);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 8px;
    }
    .cn-tretmani-dodaci-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.5);
      font-family: var(--font-body);
      margin-bottom: 10px;
    }
    .cn-tretmani-dodaci-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
    }
    .cn-tretmani-dodaci-item {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      font-family: var(--font-body);
      font-weight: 300;
      padding: 4px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .cn-tretmani-dodaci-item span {
      color: var(--gold-light);
      font-weight: 400;
    }

    /* ══ WIDE CARD (full-width row) ══ */
    .cn-service-row--full {
      grid-template-columns: 1fr;
    }
    .cn-card--wide {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .cn-card--wide .cn-card-badge,
    .cn-card--wide .cn-card-name,
    .cn-card--wide .cn-card-subtitle {
      grid-column: 1 / -1;
    }
    .cn-packages--wide {
      min-width: 0;
    }
    .cn-napomena--light p {
      color: var(--text-light) !important;
    }
    @media (max-width: 768px) {
      .cn-card--wide { grid-template-columns: 1fr; gap: 20px; }
      .cn-tretmani-dodaci-grid { grid-template-columns: 1fr; }
    }

    /* ══ NAPOMENA ══ */
    .cn-napomena {
      margin-top: 20px;
      margin-bottom: 16px;
      padding: 14px 18px;
      background: rgba(201,168,76,0.05);
      border-left: 2px solid rgba(201,168,76,0.25);
      border-radius: 0 6px 6px 0;
    }
    .cn-napomena p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; font-style: italic; }

    /* ══ INFO STRIP ══ */
    /* ══ INFO STRIP ══ */
    .cn-info-strip {
      background: #07030f;
      border-top: 1px solid rgba(201,168,76,0.2);
      padding: 40px 64px 48px;
    }
    .cn-info-strip-inner { max-width: 1280px; margin: 0 auto; }
    .cn-info-title {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .cn-info-title::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.15); }
    .cn-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .cn-info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px 24px;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(201,168,76,0.08);
      transition: background 0.25s ease, border-color 0.25s ease;
    }
    .cn-info-item:hover {
      background: rgba(201,168,76,0.04);
      border-color: rgba(201,168,76,0.18);
    }
    .cn-info-icon {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
      background: rgba(201,168,76,0.06);
    }
    .cn-info-text-title {
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      font-weight: 500;
      margin-bottom: 5px;
      font-family: var(--font-body);
    }
    .cn-info-text-body {
      font-size: 13px;
      color: rgba(255,255,255,0.62);
      font-weight: 300;
      line-height: 1.75;
    }
    .cn-info-text-body strong { color: var(--gold-light); font-weight: 400; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .price-hero-content, .cn-tabs-inner, .cn-cat-header, .cn-services, .cn-info-strip { padding-left: 32px; padding-right: 32px; }
      .cn-cat-header { padding-top: 56px; padding-bottom: 48px; }
    }
    @media (max-width: 768px) {
      .price-hero { min-height: 340px; }
      .price-hero-content { padding: 0 24px 40px; }
      .price-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
      .price-hero-overline-text { font-size: 9px; letter-spacing: 3px; }
      .cn-tabs-inner { padding: 0 16px; }
      .cn-tab { padding: 16px 18px 14px; font-size: 10px; letter-spacing: 2px; }
      .cn-service-row, .cn-service-row--3 { grid-template-columns: 1fr; }
      .cn-cat-header { padding: 48px 24px 40px; }
      .cn-cat-header::after { display: none; }
      .cn-services { padding: 32px 24px 48px; }
      .cn-card { padding: 28px 22px; }
      .cn-info-grid { grid-template-columns: 1fr; gap: 24px; }
      .cn-info-strip { padding: 40px 24px; }
      .cn-dijastaza-card { grid-template-columns: 1fr !important; }
      .cn-dijastaza-card .cn-dijastaza-divider { display: none !important; }
      .cn-imbody-card { grid-template-columns: 1fr !important; }
      .cn-imbody-card .cn-imbody-divider { display: none !important; }
      .cn-imbody-card > div:first-child { display: none !important; }
      .cn-imbody-card > div:last-child { padding: 28px 22px !important; }

      /* ── Alternating light/dark on mobile ── */

      /* #price-presso: light → dark */
      #price-presso { background: var(--text-dark) !important; border-color: rgba(201,168,76,0.12) !important; }
      #price-presso .cn-card-name { color: white; }
      #price-presso .cn-card-name em { color: var(--gold-light); }
      #price-presso .cn-card-subtitle { color: rgba(255,255,255,0.35); }
      #price-presso .cn-pkg-row { border-bottom-color: rgba(255,255,255,0.06); }
      #price-presso .cn-pkg-row.highlight .cn-pkg-label { color: var(--gold-light); }
      #price-presso .cn-pkg-row.highlight .cn-pkg-price { color: var(--gold-light); }
      #price-presso .cn-pkg-label { color: rgba(255,255,255,0.5); }
      #price-presso .cn-pkg-label strong { color: rgba(255,255,255,0.85); }
      #price-presso .cn-pkg-price { color: rgba(255,255,255,0.8); }
      #price-presso .cn-pkg-price small { color: rgba(255,255,255,0.3); }
      #price-presso .cn-rok { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
      #price-presso .cn-rok strong { color: var(--gold-light); }
      #price-presso .cn-rok-dot { background: var(--gold); }
      #price-presso .cn-book-btn { color: var(--gold-light); border-color: rgba(201,168,76,0.25); }
      #price-presso .cn-book-btn:hover { background: var(--gold); color: #1a0a2e; border-color: var(--gold); }

      /* #price-vacuslim: dark → light */
      #price-vacuslim { background: white !important; border-color: rgba(176,110,224,0.08) !important; }
      #price-vacuslim .cn-card-name { color: var(--text-dark); }
      #price-vacuslim .cn-card-name em { color: var(--purple-mid); }
      #price-vacuslim .cn-card-subtitle { color: var(--text-light); }
      #price-vacuslim .cn-pkg-row { border-bottom-color: rgba(176,110,224,0.07); }
      #price-vacuslim .cn-pkg-row.highlight .cn-pkg-label { color: var(--purple-mid); }
      #price-vacuslim .cn-pkg-row.highlight .cn-pkg-price { color: var(--purple-mid); }
      #price-vacuslim .cn-pkg-label { color: var(--text-mid); }
      #price-vacuslim .cn-pkg-label strong { color: var(--text-dark); }
      #price-vacuslim .cn-pkg-price { color: var(--purple-deep); }
      #price-vacuslim .cn-pkg-price small { color: var(--text-light); }
      #price-vacuslim .cn-rok { background: var(--purple-mist); color: var(--text-mid); }
      #price-vacuslim .cn-rok strong { color: var(--purple-mid); }
      #price-vacuslim .cn-rok-dot { background: var(--purple-light); }
      #price-vacuslim .cn-book-btn { color: var(--purple-deep); border-color: rgba(61,26,110,0.25); }
      #price-vacuslim .cn-book-btn:hover { background: var(--purple-deep); color: white; border-color: var(--purple-deep); }
      #price-vacuslim .cn-tretmani-dodaci { background: rgba(107,47,160,0.05); border-color: rgba(107,47,160,0.15); }
      #price-vacuslim .cn-tretmani-dodaci-label { color: var(--purple-mid); opacity: 0.7; }
      #price-vacuslim .cn-tretmani-dodaci-item { color: var(--text-mid); border-bottom-color: rgba(176,110,224,0.1); }
      #price-vacuslim .cn-tretmani-dodaci-item span { color: var(--purple-mid); }
      #price-vacuslim .cn-napomena p { color: var(--text-light) !important; }

      /* #price-soulrelax: dark → light */
      #price-soulrelax { background: white !important; border-color: rgba(176,110,224,0.08) !important; }
      #price-soulrelax .cn-card-name { color: var(--text-dark); }
      #price-soulrelax .cn-card-name em { color: var(--purple-mid); }
      #price-soulrelax .cn-card-subtitle { color: var(--text-light); }
      #price-soulrelax .cn-pkg-row { border-bottom-color: rgba(176,110,224,0.07); }
      #price-soulrelax .cn-pkg-row.highlight .cn-pkg-label { color: var(--purple-mid); }
      #price-soulrelax .cn-pkg-row.highlight .cn-pkg-price { color: var(--purple-mid); }
      #price-soulrelax .cn-pkg-label { color: var(--text-mid); }
      #price-soulrelax .cn-pkg-label strong { color: var(--text-dark); }
      #price-soulrelax .cn-pkg-price { color: var(--purple-deep); }
      #price-soulrelax .cn-pkg-price small { color: var(--text-light); }
      #price-soulrelax .cn-rok { background: var(--purple-mist); color: var(--text-mid); }
      #price-soulrelax .cn-rok strong { color: var(--purple-mid); }
      #price-soulrelax .cn-rok-dot { background: var(--purple-light); }
      #price-soulrelax .cn-book-btn { color: var(--purple-deep); border-color: rgba(61,26,110,0.25); }
      #price-soulrelax .cn-book-btn:hover { background: var(--purple-deep); color: white; border-color: var(--purple-deep); }

      /* #price-balance: light → dark */
      #price-balance { background: var(--text-dark) !important; border-color: rgba(201,168,76,0.12) !important; }
      #price-balance .cn-card-name { color: white; }
      #price-balance .cn-card-name em { color: var(--gold-light); }
      #price-balance .cn-card-subtitle { color: rgba(255,255,255,0.35); }
      #price-balance .cn-pkg-row { border-bottom-color: rgba(255,255,255,0.06); }
      #price-balance .cn-pkg-row.highlight .cn-pkg-label { color: var(--gold-light); }
      #price-balance .cn-pkg-row.highlight .cn-pkg-price { color: var(--gold-light); }
      #price-balance .cn-pkg-label { color: rgba(255,255,255,0.5); }
      #price-balance .cn-pkg-label strong { color: rgba(255,255,255,0.85); }
      #price-balance .cn-pkg-price { color: rgba(255,255,255,0.8); }
      #price-balance .cn-pkg-price small { color: rgba(255,255,255,0.3); }
      #price-balance .cn-rok { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
      #price-balance .cn-rok strong { color: var(--gold-light); }
      #price-balance .cn-rok-dot { background: var(--gold); }
      #price-balance .cn-book-btn { color: var(--gold-light); border-color: rgba(201,168,76,0.25); }
      #price-balance .cn-book-btn:hover { background: var(--gold); color: #1a0a2e; border-color: var(--gold); }
    }
    @media (max-width: 480px) {
      .price-hero { min-height: 300px; }
      .price-hero-content { padding: 0 20px 36px; }
      .price-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
      .price-hero-overline-text { font-size: 8px; letter-spacing: 2px; }
      .price-hero-overline { gap: 10px; margin-bottom: 14px; }
    }

    /* ══════════════════════════════════════
       FINAL TOUCH — ANIMACIJE & POLISH
    ══════════════════════════════════════ */

    /* 1 · HERO ENTRANCE */
    @keyframes heroSlideIn { from { opacity:0; transform:translateX(-22px); } to { opacity:1; transform:none; } }
    @keyframes heroRiseUp  { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:none; } }
    @keyframes goldFlow    { 0%,100%{ background-position:200% center } 50%{ background-position:-100% center } }

    .price-hero-overline { animation: heroSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .price-hero-title    { animation: heroRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s  both; }
    .price-hero-title em {
      display: block;
      color: var(--gold-light);
      animation: heroRiseUp 0.95s cubic-bezier(0.22,1,0.36,1) 0.5s both;
    }

    /* 2 · TABS BAR ENTRANCE */
    @keyframes tabsSlideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
    .cn-tabs { animation: tabsSlideDown 0.5s cubic-bezier(0.22,1,0.36,1) 0.65s both; }

    /* 3 · PANEL FADE ON TAB SWITCH */
    @keyframes panelFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
    .cn-panel.active { animation: panelFadeIn 0.38s cubic-bezier(0.22,1,0.36,1) both; }

    /* 4 · STAGGERED CARD REVEAL */
    @keyframes cardRise {
      from { opacity:0; transform:translateY(22px) scale(0.987); }
      to   { opacity:1; transform:none; }
    }
    .cn-panel.active .cn-card { animation: cardRise 0.6s cubic-bezier(0.22,1,0.36,1) both; }
    .cn-panel.active .cn-service-row:nth-child(1) .cn-card:nth-child(1) { animation-delay:  80ms; }
    .cn-panel.active .cn-service-row:nth-child(1) .cn-card:nth-child(2) { animation-delay: 160ms; }
    .cn-panel.active .cn-service-row:nth-child(1) .cn-card:nth-child(3) { animation-delay: 240ms; }
    .cn-panel.active .cn-service-row:nth-child(2) .cn-card:nth-child(1) { animation-delay: 280ms; }
    .cn-panel.active .cn-service-row:nth-child(2) .cn-card:nth-child(2) { animation-delay: 360ms; }
    .cn-panel.active .cn-service-row:nth-child(3) .cn-card:nth-child(1) { animation-delay: 400ms; }
    .cn-panel.active .cn-service-row:nth-child(3) .cn-card:nth-child(2) { animation-delay: 480ms; }
    .cn-panel.active .cn-service-row--full .cn-card                     { animation-delay: 420ms; }

    /* 5 · SIGNATURE BADGE SHINE SWEEP */
    .cn-card-badge.signature { position: relative; overflow: hidden; }
    .cn-card-badge.signature::after {
      content: '';
      position: absolute;
      top: -5%; left: -80%;
      width: 55%;
      height: 110%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
      transform: skewX(-12deg);
      animation: badgeSweep 4.5s ease-in-out 1.4s infinite;
      pointer-events: none;
    }
    @keyframes badgeSweep {
      0%,62%,100% { left:-80%; opacity:0; }
      66%          { opacity:1; }
      90%          { left:135%; opacity:0; }
    }

    /* 6 · BOOK BUTTON IDLE GLOW */
    @keyframes bookGlow {
      0%,100% { box-shadow: 0 4px 14px rgba(61,26,110,0.22); }
      50%      { box-shadow: 0 6px 28px rgba(61,26,110,0.42), 0 0 0 3px rgba(201,168,76,0.09); }
    }
    .cn-book-btn { animation: bookGlow 3s ease-in-out infinite; }

    /* 7 · PKG ROW HOVER */
    .cn-pkg-row { border-radius: 4px; transition: background 0.18s, padding-left 0.18s; }
    .cn-pkg-row:hover { background: rgba(176,110,224,0.05); padding-left: 7px; }
    .cn-card.dark .cn-pkg-row:hover { background: rgba(255,255,255,0.04); }

    /* 8 · INFO STRIP ITEM STAGGER */
    @keyframes infoItemIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }
    .cn-info-item:nth-child(1) { animation: infoItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.85s both; }
    .cn-info-item:nth-child(2) { animation: infoItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.97s both; }
    .cn-info-item:nth-child(3) { animation: infoItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 1.09s both; }
    .cn-info-item:nth-child(4) { animation: infoItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 1.21s both; }
    .cn-info-item:nth-child(5) { animation: infoItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 1.33s both; }
    .cn-info-item:nth-child(6) { animation: infoItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 1.45s both; }


/* ══════════ faq.html ══════════ */

    /* ══ HERO ══ */
    .fq-hero {
      min-height: 420px;
      background: #07030f;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .fq-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: saturate(0.5) brightness(0.5);
    }
    .fq-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,3,20,0.3) 0%, rgba(20,6,45,0.88) 100%);
      z-index: 1;
    }
    .fq-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
      z-index: 3;
    }
    .fq-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px 48px;
    }
    .fq-hero-overline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .fq-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
    .fq-hero-overline-text {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
      font-weight: 300;
      font-family: var(--font-body);
    }
    .fq-hero-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(56px, 8vw, 108px);
      line-height: 0.9;
      color: white;
      letter-spacing: -2px;
    }
    .fq-hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }
    @keyframes fqSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
    @keyframes fqRiseUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
    @keyframes fqScan    { from { left:-40%; opacity:1; } to { left:110%; opacity:0; } }
    .fq-hero-overline { animation: fqSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .fq-hero-title    { animation: fqRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
    .fq-hero-scan {
      position: absolute;
      top: 0; left: -40%;
      width: 35%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.07) 50%, transparent);
      z-index: 2;
      pointer-events: none;
      animation: fqScan 2.2s cubic-bezier(0.4,0,0.2,1) 0.6s both;
    }

    /* ══ CATEGORY BAR ══ */
    .fq-cats-wrap {
      background: rgba(7,3,15,0.97);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      position: sticky;
      top: clamp(66px, 5.5vw, 76px);
      z-index: 80;
    }
    .fq-cats-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      gap: 0;
      align-items: center;
    }
    .fq-cat {
      padding: 16px 36px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      transition: all 0.25s;
      display: flex;
      align-items: center;
      margin-bottom: 0;
      position: relative;
    }
    .fq-cat:hover { color: rgba(255,255,255,0.75); }
    .fq-cat.active {
      color: white;
      border-bottom-color: var(--gold);
    }
    .fq-cat-num {
      font-family: var(--font-display);
      font-size: 13px;
      font-style: italic;
      color: rgba(201,168,76,0.35);
      margin-right: 6px;
      transition: color 0.25s;
    }
    .fq-cat:hover .fq-cat-num { color: rgba(201,168,76,0.65); }
    .fq-cat.active .fq-cat-num { color: var(--gold); }

    /* ══ FAQ SECTION ══ */
    .fq-section {
      background: var(--off-white);
      padding: 0 0 80px;
      overflow: hidden;
    }
    .fq-list {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
    }

    /* ══ SCROLL REVEAL ══ */
    .fq-item {
      border-bottom: 1px solid rgba(61,26,110,0.07);
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
    }
    .fq-item:first-child { border-top: 1px solid rgba(61,26,110,0.07); }
    .fq-item.fq-revealed { opacity: 1; transform: translateY(0); }

    .fq-cat-label-text {
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.1s;
    }
    .fq-cat-label-line {
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.25s;
    }
    .fq-cat-label.fq-label-revealed .fq-cat-label-text { opacity: 1; transform: translateX(0); }
    .fq-cat-label.fq-label-revealed .fq-cat-label-line { transform: scaleX(1); }

    /* ══ NUMBER BLOOM ON OPEN ══ */
    @keyframes fqNumBloom {
      0%   { color: rgba(61,26,110,0.12); transform: scale(1); }
      35%  { color: rgba(201,168,76,0.7); transform: scale(1.1); text-shadow: 0 0 24px rgba(201,168,76,0.3); }
      100% { color: rgba(201,168,76,0.45); transform: scale(1); text-shadow: none; }
    }
    .fq-item.open .fq-num { animation: fqNumBloom 0.55s cubic-bezier(0.22,1,0.36,1) both; }

    /* ══ PARTICLES CANVAS ══ */
    .fq-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
    }
    .fq-section { position: relative; }
    .fq-list { position: relative; z-index: 1; }

    /* ══ FAQ ITEM ══ */

    .fq-item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .fq-item.open::before { transform: scaleY(1); }

    .fq-btn {
      width: 100%;
      display: grid;
      grid-template-columns: 80px 1fr 48px;
      align-items: center;
      gap: 32px;
      padding: 32px 0 32px 16px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s;
    }
    .fq-btn:hover { background: rgba(61,26,110,0.025); }
    .fq-item.open .fq-btn { background: rgba(201,168,76,0.03); }

    .fq-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 300;
      font-style: italic;
      color: rgba(61,26,110,0.12);
      line-height: 1;
      transition: color 0.3s;
      user-select: none;
    }
    .fq-item.open .fq-num { color: rgba(201,168,76,0.45); }

    .fq-question {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1.4;
      letter-spacing: -0.2px;
      transition: color 0.25s;
    }
    .fq-item.open .fq-question { color: var(--purple-deep); }

    .fq-category-pill {
      display: inline-block;
      margin-top: 6px;
      font-size: 9px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text-light);
      font-family: var(--font-body);
      font-weight: 300;
    }

    .fq-toggle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(61,26,110,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
      flex-shrink: 0;
      justify-self: end;
    }
    .fq-toggle svg {
      width: 14px;
      height: 14px;
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
      stroke: var(--purple-mid);
    }
    .fq-item.open .fq-toggle {
      background: var(--gold);
      border-color: var(--gold);
    }
    .fq-item.open .fq-toggle svg {
      transform: rotate(45deg);
      stroke: white;
    }

    /* ══ ANSWER ══ */
    .fq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .fq-item.open .fq-answer { grid-template-rows: 1fr; }
    .fq-answer-inner { overflow: hidden; }

    /* warm background wash on open item */
    .fq-item.open {
      background: linear-gradient(108deg,
        rgba(201,168,76,0.05) 0%,
        rgba(248,244,252,0.35) 55%,
        transparent 100%);
    }
    /* gold bar glow */
    .fq-item.open::before {
      box-shadow: 3px 0 18px rgba(201,168,76,0.28), 6px 0 40px rgba(201,168,76,0.1);
    }

    /* answer reveal animation */
    @keyframes fqAnswerReveal {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: none; }
    }
    .fq-item.open .fq-answer-inner {
      animation: fqAnswerReveal 0.5s cubic-bezier(0.22,1,0.36,1) 0.15s both;
    }

    /* Answer — clean text only */
    .fq-answer-body {
      margin: 0 0 0 112px;
      padding: 12px 0 40px 0;
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.85;
      color: var(--text-dark);
      max-width: 600px;
      position: relative;
      letter-spacing: 0.15px;
    }
    .fq-answer-body::before { content: none; }

    /* ══ CATEGORY HIDDEN STATE ══ */
    .fq-item[data-hidden="true"] {
      display: none;
    }

    /* ══ EMPTY STATE ══ */
    .fq-empty {
      display: none;
      text-align: center;
      padding: 80px 0;
      font-family: var(--font-display);
      font-size: 28px;
      font-style: italic;
      color: var(--text-light);
    }
    .fq-empty.visible { display: block; }

    /* ══ SECTION DIVIDER ══ */
    .fq-cat-label {
      max-width: 1280px;
      margin: 0 auto;
      padding: 48px 64px 16px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .fq-cat-label-text {
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-family: var(--font-body);
      font-weight: 400;
      white-space: nowrap;
    }
    .fq-cat-label-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(201,168,76,0.3), transparent);
      /* scaleX animation handled by .fq-revealed rules above */
    }

    /* ══ CTA ══ */
    .fq-cta {
      background: var(--text-dark);
      padding: 110px 0 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .fq-cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
    }
    .fq-cta::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    }
    @keyframes fqSpin    { to { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes fqSpinRev { to { transform: translate(-50%, -50%) rotate(-360deg); } }
    .fq-cta-ring-1 {
      position: absolute;
      top: 50%; left: 50%;
      width: 480px; height: 480px;
      border: 1px solid rgba(201,168,76,0.05);
      transform: translate(-50%, -50%);
      animation: fqSpin 60s linear infinite;
      pointer-events: none;
    }
    .fq-cta-ring-2 {
      position: absolute;
      top: 50%; left: 50%;
      width: 360px; height: 360px;
      border: 1px solid rgba(201,168,76,0.08);
      transform: translate(-50%, -50%) rotate(45deg);
      animation: fqSpinRev 45s linear infinite;
      pointer-events: none;
    }
    .fq-cta-ring-3 {
      position: absolute;
      top: 50%; left: 50%;
      width: 220px; height: 220px;
      border: 1px solid rgba(201,168,76,0.1);
      transform: translate(-50%, -50%) rotate(20deg);
      animation: fqSpin 30s linear infinite;
      pointer-events: none;
    }
    .fq-cta-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .fq-cta-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
      padding: 0 32px;
    }
    @keyframes fqGemPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.75; } }
    .fq-cta-gem {
      display: inline-block;
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 8px;
      margin-bottom: 28px;
      animation: fqGemPulse 3s ease-in-out infinite;
    }
    .fq-cta-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      margin-bottom: 20px;
    }
    .fq-cta-title {
      font-family: var(--font-display);
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 300;
      color: white;
      line-height: 1.0;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
    }
    .fq-cta-title em {
      display: block;
      font-style: italic;
      color: var(--gold-light);
    }
    .fq-cta-rule {
      width: 40px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 28px;
    }
    .fq-cta-lead {
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      line-height: 1.85;
      font-weight: 300;
      font-family: var(--font-body);
      margin-bottom: 44px;
    }
    .fq-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .fq-hero-content { padding: 0 40px 40px; }
      .fq-cats-inner { padding: 0 40px; }
      .fq-list { padding: 0 40px; }
      .fq-cat-label { padding: 40px 40px 12px; }
      .fq-btn { padding: 28px 0 28px 12px; gap: 24px; }
      .fq-answer-body { margin-left: 86px; padding: 8px 0 28px 22px; font-size: 19px; }
      .fq-answer-body::before { top: 8px; bottom: 28px; }
    }
    @media (max-width: 768px) {
      .fq-hero { min-height: 340px; }
      .fq-hero-content { padding: 0 24px 40px; }
      .fq-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
      .fq-hero-overline-text { font-size: 9px; letter-spacing: 3px; }
      .fq-cats-inner { padding: 0 16px; overflow-x: auto; }
      .fq-cat { padding: 16px 20px; letter-spacing: 2px; white-space: nowrap; }
      .fq-cats-count { display: none; }
      .fq-cat[data-filter="sve"] { display: none; }
      .fq-list { padding: 0 20px; }
      .fq-cat-label { padding: 32px 20px 8px; }
      .fq-btn {
        grid-template-columns: 52px 1fr 36px;
        gap: 16px;
        padding: 24px 0 24px 8px;
      }
      .fq-num { font-size: 34px; }
      .fq-question { font-size: 15px; }
      .fq-category-pill { display: none; }
      .fq-answer-body { margin-left: 44px; padding: 8px 0 24px 16px; font-size: 17px; }
      .fq-answer-body::before { top: 8px; bottom: 24px; }
      .fq-cta { padding: 72px 0 64px; }
      .fq-cta-ring-1 { width: 280px; height: 280px; }
      .fq-cta-ring-2 { width: 200px; height: 200px; }
      .fq-cta-ring-3 { width: 130px; height: 130px; }
      .fq-cta-btns { flex-direction: column; align-items: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      .fq-item, .fq-cat-label-text, .fq-cat-label-line, .fq-hero-scan { animation: none !important; transition: none !important; }
      .fq-item { opacity: 1 !important; transform: none !important; }
      .fq-cat-label-text { opacity: 1 !important; transform: none !important; }
      .fq-cat-label-line { transform: scaleX(1) !important; }
    }
    @media (max-width: 480px) {
      .fq-hero { min-height: 300px; }
      .fq-hero-content { padding: 0 20px 36px; }
      .fq-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
      .fq-hero-overline-text { font-size: 8px; letter-spacing: 2px; }
      .fq-hero-overline { gap: 10px; margin-bottom: 14px; }
      .fq-btn {
        grid-template-columns: 40px 1fr 32px;
        gap: 12px;
      }
      .fq-num { font-size: 26px; }
      .fq-toggle { width: 30px; height: 30px; }
      .fq-answer-body { margin-left: 28px; padding: 6px 0 20px 14px; font-size: 16px; }
      .fq-answer-body::before { top: 6px; bottom: 20px; }
    }



/* ══════════ recenzije.html ══════════ */

    /* ══ HERO ══ */
    .rv-hero {
      min-height: 490px;
      background: #07030f;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .rv-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: saturate(0.55) brightness(0.48);
    }
    .rv-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,3,20,0.15) 0%, rgba(10,3,20,0.45) 50%, rgba(20,6,45,0.92) 100%);
      z-index: 1;
    }
    .rv-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
      z-index: 3;
    }
    .rv-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px 48px;
    }
    .rv-hero-overline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .rv-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
    .rv-hero-overline-text {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
      font-weight: 300;
      font-family: var(--font-body);
    }
    .rv-hero-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(56px, 8vw, 108px);
      line-height: 0.9;
      color: white;
      letter-spacing: -2px;
    }
    .rv-hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }
    @keyframes rvSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
    @keyframes rvRiseUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
    .rv-hero-overline { animation: rvSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .rv-hero-title    { animation: rvRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

    /* ══ GOOGLE BADGE STRIP ══ */
    .rv-google-strip {
      background: white;
      border-bottom: 1px solid rgba(61,26,110,0.06);
      padding: 28px 0;
    }
    .rv-google-strip-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .rv-google-badge {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .rv-google-logo {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    /* Google G SVG letters */
    .rv-g-letter {
      width: 28px;
      height: 28px;
    }
    .rv-google-wordmark {
      font-family: var(--font-body);
      font-size: 20px;
      font-weight: 400;
      color: #3c4043;
      letter-spacing: -0.5px;
    }
    .rv-google-wordmark span { color: #3c4043; }
    .rv-google-divider {
      width: 1px;
      height: 32px;
      background: rgba(0,0,0,0.12);
    }
    .rv-google-desc {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--text-light);
      font-weight: 300;
      letter-spacing: 0.5px;
    }
    .rv-google-desc strong {
      color: var(--text-mid);
      font-weight: 400;
    }
    .rv-google-maps-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 24px;
      border: 1.5px solid rgba(61,26,110,0.15);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-mid);
      text-decoration: none;
      transition: all 0.25s ease;
      background: white;
    }
    .rv-google-maps-btn:hover {
      border-color: var(--purple-mid);
      color: var(--purple-mid);
      box-shadow: 0 4px 20px rgba(107,47,160,0.1);
      transform: translateY(-1px);
    }
    .rv-google-maps-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ══ RATING SUMMARY ══ */
    .rv-summary {
      background: var(--off-white);
      padding: 80px 0 90px;
    }
    .rv-summary-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 80px;
      align-items: center;
    }
    .rv-score-block {
      text-align: center;
      padding: 52px 40px;
      background: white;
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 24px;
      box-shadow: 0 8px 48px rgba(61,26,110,0.08);
      position: relative;
    }
    .rv-score-block::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
      pointer-events: none;
    }
    .rv-score-num {
      font-family: var(--font-display);
      font-size: 96px;
      font-weight: 300;
      color: var(--purple-mid);
      line-height: 1;
      letter-spacing: -4px;
    }
    .rv-score-stars {
      color: #fbbc04;
      font-size: 24px;
      letter-spacing: 4px;
      margin: 8px 0 12px;
      display: block;
    }
    .rv-score-label {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text-light);
      font-weight: 300;
    }
    .rv-score-count {
      margin-top: 16px;
      font-size: 13px;
      color: var(--text-light);
      font-weight: 300;
    }
    .rv-score-google-badge {
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(66,133,244,0.06);
      border: 1px solid rgba(66,133,244,0.15);
      border-radius: 100px;
      font-size: 11px;
      color: #4285f4;
      font-weight: 400;
      font-family: var(--font-body);
    }

    /* Right: eyebrow + bars + quote */
    .rv-summary-right {}
    .rv-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .rv-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .rv-title {
      font-family: var(--font-display);
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }
    .rv-title em { font-style: italic; color: var(--purple-mid); }
    .rv-rule {
      width: 40px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 32px;
    }
    .rv-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
    .rv-bar-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .rv-bar-label {
      font-size: 12px;
      color: var(--text-mid);
      width: 24px;
      text-align: right;
      font-weight: 400;
      font-family: var(--font-body);
    }
    .rv-bar-label .rv-star { color: #fbbc04; font-size: 11px; }
    .rv-bar-track {
      flex: 1;
      height: 8px;
      background: var(--purple-pale);
      border-radius: 4px;
      overflow: hidden;
    }
    .rv-bar-fill {
      height: 100%;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--purple-mid), var(--purple-light));
      transform-origin: left;
      animation: barGrow 1.2s cubic-bezier(0.22,1,0.36,1) both;
    }
    @keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
    .rv-bar-pct {
      font-size: 11px;
      color: var(--text-light);
      width: 36px;
      font-family: var(--font-body);
      font-weight: 300;
    }
    .rv-summary-note {
      font-size: 13.5px;
      color: var(--text-mid);
      font-weight: 300;
      line-height: 1.85;
    }

    /* ══ QUOTE STRIP ══ */
    .rv-quote {
      position: relative;
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .rv-quote-bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: saturate(0.3) brightness(0.24);
    }
    .rv-quote::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(8,2,18,0.7) 0%, rgba(61,26,110,0.5) 100%);
      z-index: 1;
    }
    .rv-quote::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
      z-index: 2;
    }
    .rv-quote-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent); z-index: 2; }
    .rv-quote-inner {
      position: relative;
      z-index: 3;
      max-width: 820px;
      margin: 0 auto;
      padding: 72px 64px;
      text-align: center;
    }
    .rv-quote-mark {
      display: block;
      font-family: var(--font-display);
      font-size: 100px;
      line-height: 0.5;
      color: var(--gold);
      opacity: 0.2;
      margin-bottom: 20px;
    }
    .rv-quote-text {
      font-family: var(--font-display);
      font-size: clamp(22px, 3.5vw, 36px);
      font-weight: 300;
      font-style: italic;
      color: white;
      line-height: 1.45;
      letter-spacing: -0.5px;
      margin-bottom: 28px;
    }
    .rv-quote-sep {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .rv-quote-sep::before,
    .rv-quote-sep::after { content: ''; width: 32px; height: 1px; background: rgba(201,168,76,0.5); }
    .rv-quote-sep-gem { color: var(--gold); opacity: 0.6; font-size: 10px; }
    .rv-quote-author {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.65);
      font-weight: 300;
    }

    /* ══ REVIEWS SECTION ══ */
    .rv-section {
      background: white;
      padding: 100px 0 110px;
    }
    .rv-section-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
    }
    .rv-section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .rv-section-header-left {}
    .rv-google-source {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 6px 14px 6px 8px;
      background: rgba(66,133,244,0.06);
      border: 1px solid rgba(66,133,244,0.15);
      border-radius: 100px;
    }
    .rv-google-source-g {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }
    .rv-google-source-text {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 400;
      color: #4285f4;
      letter-spacing: 0.5px;
    }

    /* ══ REVIEW CARDS — grid layout override for this page ══ */
    .rv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 340px;
      gap: 20px;
    }
    .rv-card {
      height: 340px;
    }

    /* ══ CLOSING CTA ══ */
    .rv-cta {
      background: var(--text-dark);
      padding: 110px 0 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .rv-cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
    }
    .rv-cta::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    }
    @keyframes rvSpin    { to { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes rvSpinRev { to { transform: translate(-50%, -50%) rotate(-360deg); } }
    .rv-cta-ring-1 {
      position: absolute; top: 50%; left: 50%;
      width: 480px; height: 480px;
      border: 1px solid rgba(201,168,76,0.05);
      transform: translate(-50%, -50%) rotate(0deg);
      animation: rvSpin 60s linear infinite;
      pointer-events: none;
    }
    .rv-cta-ring-2 {
      position: absolute; top: 50%; left: 50%;
      width: 360px; height: 360px;
      border: 1px solid rgba(201,168,76,0.08);
      transform: translate(-50%, -50%) rotate(45deg);
      animation: rvSpinRev 45s linear infinite;
      pointer-events: none;
    }
    .rv-cta-ring-3 {
      position: absolute; top: 50%; left: 50%;
      width: 220px; height: 220px;
      border: 1px solid rgba(201,168,76,0.1);
      transform: translate(-50%, -50%) rotate(20deg);
      animation: rvSpin 30s linear infinite;
      pointer-events: none;
    }
    .rv-cta-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .rv-cta-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
      padding: 0 32px;
    }
    @keyframes rvGemPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.75; } }
    .rv-cta-gem {
      display: inline-block;
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 8px;
      margin-bottom: 28px;
      animation: rvGemPulse 3s ease-in-out infinite;
    }
    .rv-cta-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      margin-bottom: 20px;
    }
    .rv-cta-title {
      font-family: var(--font-display);
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 300;
      color: white;
      line-height: 1.0;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
    }
    .rv-cta-title em {
      display: block;
      font-style: italic;
      color: var(--gold-light);
    }
    .rv-cta-rule {
      width: 40px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 28px;
    }
    .rv-cta-lead {
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 44px;
    }
    .rv-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }
    /* Google Maps review button */
    .rv-btn-google {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 32px;
      background: white;
      border: none;
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      color: #3c4043;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    }
    .rv-btn-google:hover {
      box-shadow: 0 6px 32px rgba(0,0,0,0.25);
      transform: translateY(-2px);
    }
    .rv-btn-google-g {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .rv-hero-content { padding: 0 32px 40px; }
      .rv-summary-inner { padding: 0 32px; gap: 48px; grid-template-columns: 280px 1fr; }
      .rv-section-inner { padding: 0 32px; }
      .rv-google-strip-inner { padding: 0 32px; }
      .rv-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
    }

    @media (max-width: 768px) {
      /* Hero */
      .rv-hero { min-height: 340px; }
      .rv-hero-content { padding: 0 24px 40px; }
      .rv-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
      .rv-hero-overline-text { font-size: 9px; letter-spacing: 3px; }
      .rv-hero-overline-line { width: 32px; }

      /* Google strip */
      .rv-google-strip { padding: 20px 0; }
      .rv-google-strip-inner {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
      .rv-google-badge { flex-wrap: wrap; gap: 10px; }
      .rv-google-divider { display: none; }
      .rv-google-desc { font-size: 11px; }
      .rv-google-maps-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
      }

      /* Rating summary */
      .rv-summary { padding: 44px 0 52px; }
      .rv-summary-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 32px; }
      .rv-score-block { padding: 32px 24px; }
      .rv-score-num { font-size: 80px; }
      .rv-score-stars { font-size: 20px; letter-spacing: 3px; }
      .rv-bars { gap: 8px; margin-bottom: 24px; }
      .rv-bar-track { width: 100% !important; }
      .rv-summary-note { font-size: 13px; }

      /* Reviews section */
      .rv-section { padding: 44px 0 52px; }
      .rv-section-inner { padding: 0 16px; }
      .rv-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; gap: 14px; }
      .rv-section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
      .rv-section-header .rv-google-maps-btn { width: 100%; justify-content: center; }
      .rv-title { font-size: clamp(26px, 7vw, 36px) !important; }

      /* Review cards */
      .rv-card { padding: 20px 18px 18px; border-radius: 16px; height: 320px; }
      .rv-card-name { font-size: 15px; }
      .rv-card-meta { font-size: 10px; }
      .rv-card-text { font-size: 13px; }
      .rv-card-footer { margin-top: 14px; padding-top: 12px; }
      .rv-card-service { font-size: 9px; letter-spacing: 1.5px; }
      .rv-card-date { font-size: 10px; }

      /* Quote */
      .rv-quote { min-height: 260px; }
      .rv-quote-inner { padding: 44px 20px; }
      .rv-quote-mark { font-size: 64px; }
      .rv-quote-text { font-size: clamp(18px, 5vw, 28px); }

      /* CTA */
      .rv-cta { padding: 64px 0 56px; }
      .rv-cta-ring-1 { width: 260px; height: 260px; }
      .rv-cta-ring-2 { width: 180px; height: 180px; }
      .rv-cta-ring-3 { width: 110px; height: 110px; }
      .rv-cta-inner { padding: 0 20px; }
      .rv-cta-title { font-size: clamp(32px, 9vw, 52px); }
      .rv-cta-lead { font-size: 13.5px; margin-bottom: 32px; }
      .rv-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
      .rv-cta-btns .btn-outline,
      .rv-cta-btns .rv-btn-google { width: 100%; max-width: 300px; justify-content: center; }
    }

    @media (max-width: 480px) {
      /* Hero */
      .rv-hero { min-height: 300px; }
      .rv-hero-content { padding: 0 20px 36px; }
      .rv-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
      .rv-hero-overline { gap: 10px; margin-bottom: 14px; }
      .rv-hero-overline-text { font-size: 8px; letter-spacing: 2px; }
      .rv-hero-overline-line { width: 24px; }

      /* Google strip */
      .rv-google-logo { gap: 4px; }
      .rv-google-wordmark { font-size: 17px; }
      .rv-g-letter { width: 22px; height: 22px; }

      /* Summary */
      .rv-summary { padding: 36px 0 44px; }
      .rv-score-block { padding: 28px 20px; border-radius: 18px; }
      .rv-score-num { font-size: 68px; letter-spacing: -2px; }
      .rv-eyebrow { font-size: 9px; letter-spacing: 3px; }
      .rv-rule { margin-bottom: 20px; }

      /* Cards */
      .rv-section-inner { padding: 0 14px; }
      .rv-card { padding: 18px 16px 16px; border-radius: 14px; height: 300px; }
      .rv-card-avatar { width: 38px; height: 38px; font-size: 15px; }
      .rv-card-header { margin-bottom: 12px; }
      .rv-card-stars span { font-size: 13px; }
      .rv-card-footer { flex-direction: column; align-items: flex-start; gap: 4px; }

      /* Quote */
      .rv-quote-inner { padding: 36px 16px; }
      .rv-quote-text { font-size: clamp(16px, 5vw, 22px); }

      /* CTA */
      .rv-cta { padding: 52px 0 48px; }
      .rv-cta-gem { font-size: 14px; letter-spacing: 6px; margin-bottom: 20px; }
      .rv-cta-eyebrow { font-size: 9px; letter-spacing: 3px; }
      .rv-cta-btns .btn-outline,
      .rv-cta-btns .rv-btn-google { max-width: 100%; }
      .rv-btn-google { font-size: 12px; padding: 12px 24px; }

      /* Google source badge */
      .rv-google-source-text { font-size: 10px; }
    }


/* ══════════ raspored.html ══════════ */

    /* ══ HERO ══ */
    .sc-hero {
      min-height: 460px;
      background: #07030f;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .sc-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      filter: saturate(0.45) brightness(0.42);
    }
    .sc-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(7,3,15,0.25) 0%,
        rgba(20,8,40,0.5) 40%,
        rgba(7,3,15,0.93) 100%
      );
    }
    .sc-hero-gold {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
      opacity: 0.5;
      z-index: 3;
    }
    .sc-hero-scan {
      position: absolute;
      top: 0; left: -40%;
      width: 35%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.06) 50%, transparent);
      z-index: 2;
      pointer-events: none;
      animation: scScan 2.2s cubic-bezier(0.4,0,0.2,1) 0.6s both;
    }
    @keyframes scScan    { from { left:-40%; opacity:1; } to { left:110%; opacity:0; } }
    @keyframes scSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
    @keyframes scRiseUp  { from { opacity:0; transform:translateY(24px); }  to { opacity:1; transform:none; } }
    .sc-hero-content {
      position: relative;
      z-index: 4;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 60px 60px;
    }
    .sc-hero-overline {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 22px;
      animation: scSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both;
    }
    .sc-hero-overline-line {
      width: 40px;
      height: 1px;
      background: var(--gold);
      opacity: 0.7;
      flex-shrink: 0;
    }
    .sc-hero-overline-text {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
    }
    .sc-hero-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 6.5vw, 86px);
      font-weight: 300;
      color: white;
      line-height: 0.93;
      letter-spacing: -2px;
      animation: scRiseUp 0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both;
    }
    .sc-hero-title em {
      display: block;
      font-style: italic;
      color: rgba(201,168,76,0.88);
    }

    /* ══ CALENDAR SECTION ══ */
    .sc-cal-section {
      background: linear-gradient(180deg, #fdfcff 0%, #f8f4fc 55%, #f3eafc 100%);
      padding: 96px 0 110px;
      position: relative;
      overflow: hidden;
    }
    .sc-cal-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 600px 420px at 6% 12%, rgba(176,110,224,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 720px 520px at 96% 92%, rgba(201,168,76,0.08) 0%, transparent 55%);
      pointer-events: none;
    }
    .sc-cal-section::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 4%, rgba(201,168,76,0.5) 50%, transparent 96%);
    }
    .sc-cal-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
    }

    /* ── Legend bar ── */
    .sc-legend-bar {
      display: flex;
      align-items: center;
      gap: 28px;
      justify-content: flex-end;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    .sc-legend-title {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-right: 4px;
    }
    .sc-legend-title::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }
    .sc-legend-item {
      display: flex;
      align-items: center;
      gap: 9px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text-mid);
      white-space: nowrap;
    }
    .sc-legend-glow {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .sc-legend-glow.trening {
      background: var(--purple-mid);
      box-shadow: 0 0 10px 2px rgba(107,47,160,0.30);
    }
    .sc-legend-glow.tretman {
      background: var(--purple-deep);
      box-shadow: 0 0 10px 2px rgba(61,26,110,0.30);
    }
    .sc-legend-glow.masaza {
      background: var(--gold);
      box-shadow: 0 0 10px 2px rgba(201,168,76,0.40);
    }

    /* ══ WEEK GRID ══ */
    .sc-week-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 1px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.22);
      background: rgba(201,168,76,0.18);
      box-shadow: 0 14px 50px rgba(107,47,160,0.10), 0 2px 10px rgba(61,26,110,0.05);
    }

    .sc-day-col {
      background: var(--white);
      display: flex;
      flex-direction: column;
      min-height: 480px;
      transition: background 0.3s;
    }

    .sc-day-label {
      padding: 18px 10px 14px;
      border-bottom: 1px solid rgba(201,168,76,0.14);
      text-align: center;
      background: var(--off-white);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .sc-day-abbr {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text-mid);
      display: block;
    }

    .sc-today-badge {
      display: none;
      font-family: var(--font-body);
      font-size: 7.5px;
      font-weight: 400;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 20px;
      padding: 2px 8px;
      line-height: 1.6;
    }

    .sc-today-col { background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0) 80%); }
    .sc-today-col .sc-day-label {
      background: rgba(201,168,76,0.10);
      border-bottom: 2px solid var(--gold);
    }
    .sc-today-col .sc-day-abbr { color: #8a6d2f; font-weight: 500; }
    .sc-today-col .sc-today-badge { display: block; }

    .sc-day-body {
      padding: 12px 9px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
    }

    .sc-slot {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .sc-slot-time {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: var(--text-light);
      padding-left: 4px;
    }

    .sc-slot-pill {
      border-radius: 8px;
      padding: 9px 11px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      cursor: default;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
      position: relative;
      overflow: hidden;
      border-left: 2px solid;
    }

    .sc-slot-pill:hover { transform: translateY(-1px); }

    .sc-slot-pill b {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 10.5px;
      color: var(--text-dark);
      line-height: 1.25;
      letter-spacing: 0.1px;
    }

    .sc-slot-pill span {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: 0.4px;
    }

    /* Trening — bright purple */
    .sc-slot.trening .sc-slot-pill {
      background: linear-gradient(135deg, rgba(176,110,224,0.10) 0%, rgba(139,63,200,0.14) 100%);
      border-left-color: var(--purple-mid);
      box-shadow: 0 1px 3px rgba(107,47,160,0.06);
    }
    .sc-slot.trening .sc-slot-pill:hover {
      background: linear-gradient(135deg, rgba(176,110,224,0.18) 0%, rgba(139,63,200,0.22) 100%);
      border-left-color: var(--purple-bright);
      box-shadow: 0 6px 20px rgba(107,47,160,0.18);
    }
    .sc-slot.trening .sc-slot-pill span { color: var(--purple-mid); }

    /* Tretman — deep purple */
    .sc-slot.tretman .sc-slot-pill {
      background: linear-gradient(135deg, rgba(61,26,110,0.06) 0%, rgba(107,47,160,0.10) 100%);
      border-left-color: var(--purple-deep);
      box-shadow: 0 1px 3px rgba(61,26,110,0.06);
    }
    .sc-slot.tretman .sc-slot-pill:hover {
      background: linear-gradient(135deg, rgba(61,26,110,0.10) 0%, rgba(107,47,160,0.16) 100%);
      border-left-color: var(--purple-mid);
      box-shadow: 0 6px 20px rgba(61,26,110,0.18);
    }
    .sc-slot.tretman .sc-slot-pill span { color: var(--purple-deep); }

    /* Masaza — gold */
    .sc-slot.masaza .sc-slot-pill {
      background: linear-gradient(135deg, rgba(232,204,122,0.16) 0%, rgba(201,168,76,0.20) 100%);
      border-left-color: var(--gold);
      box-shadow: 0 1px 3px rgba(201,168,76,0.10);
    }
    .sc-slot.masaza .sc-slot-pill:hover {
      background: linear-gradient(135deg, rgba(232,204,122,0.24) 0%, rgba(201,168,76,0.28) 100%);
      border-left-color: #b8932d;
      box-shadow: 0 6px 20px rgba(201,168,76,0.22);
    }
    .sc-slot.masaza .sc-slot-pill span { color: #a88835; }

    /* Note */
    .sc-note {
      margin-top: 36px;
      padding: 24px 32px 24px 44px;
      background: var(--white);
      border: 1px solid rgba(201,168,76,0.20);
      border-radius: 16px;
      position: relative;
      box-shadow: 0 2px 18px rgba(107,47,160,0.05);
    }
    .sc-note::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      border-radius: 16px 0 0 16px;
      background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
    }
    .sc-note p {
      font-family: var(--font-body);
      font-size: 13.5px;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.85;
    }
    .sc-note p strong { color: var(--purple-deep); font-weight: 500; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1100px) {
      .sc-cal-section { padding: 72px 0 90px; }
      .sc-cal-inner { padding: 0 24px; }
    }
    @media (max-width: 960px) {
      .sc-week-grid {
        grid-template-columns: repeat(7, minmax(140px, 1fr));
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 0;
        border-radius: 14px;
      }
      .sc-day-col { scroll-snap-align: start; flex-shrink: 0; }
    }
    @media (max-width: 900px) {
      .sc-hero-content { padding: 0 32px 48px; }
      .sc-cal-section { padding: 64px 0 84px; }
      .sc-note { padding: 22px 24px 22px 38px; }
    }
    @media (max-width: 600px) {
      .sc-week-grid {
        grid-template-columns: repeat(7, 82vw);
        gap: 1px;
      }
      .sc-legend-bar { justify-content: flex-start; gap: 18px; margin-bottom: 22px; }
      .sc-cal-section { padding: 52px 0 68px; }
      .sc-slot-pill b { font-size: 12px; }
      .sc-slot-pill span { font-size: 10px; }
      .sc-slot-time { font-size: 13px; }
      .sc-day-col { min-height: 440px; }
      .sc-hero { min-height: 360px; }
      .sc-hero-content { padding: 0 20px 36px; }
      .sc-hero-title { font-size: clamp(40px, 12vw, 54px); letter-spacing: -0.5px; }
      .sc-hero-overline-text { font-size: 8.5px; letter-spacing: 2.5px; }
    }



/* ══════════ partneri.html ══════════ */

    /* ══ HERO ══ */
    .pt-hero {
      min-height: 490px;
      background: #07030f;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 70px;
    }
    .pt-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 55%;
      filter: saturate(0.55) brightness(0.48);
    }
    .pt-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,3,20,0.15) 0%, rgba(10,3,20,0.45) 50%, rgba(20,6,45,0.92) 100%);
      z-index: 1;
    }
    /* bottom gold separator */
    .pt-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.55) 30%, rgba(201,168,76,0.75) 50%, rgba(201,168,76,0.55) 70%, transparent 100%);
      z-index: 3;
    }
    .pt-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px 48px;
    }
    .pt-hero-overline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .pt-hero-overline-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
    .pt-hero-overline-text {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.75);
      font-weight: 300;
      font-family: var(--font-body);
    }
    .pt-hero-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(56px, 8vw, 108px);
      line-height: 0.9;
      color: white;
      letter-spacing: -2px;
    }
    .pt-hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }
    @keyframes ptSlideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
    @keyframes ptRiseUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
    .pt-hero-overline { animation: ptSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .pt-hero-title    { animation: ptRiseUp  0.95s cubic-bezier(0.22,1,0.36,1) 0.3s both; }



    /* ══ MAIN SECTION ══ */
    .pt-main {
      background: white;
      padding: 100px 0 110px;
    }
    .pt-main-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
    }

    /* section header */
    .pt-intro {
      text-align: center;
      margin-bottom: 64px;
    }
    .pt-eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .pt-eyebrow::before,
    .pt-eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }
    .pt-section-title {
      font-family: var(--font-display);
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.0;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }
    .pt-section-title em { font-style: italic; color: var(--purple-mid); }
    .pt-section-lead {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 520px;
      margin: 0 auto;
    }
    .pt-rule { width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 28px; }

    /* ══ PARTNER CARDS GRID ══ */
    .pt-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .pt-card {
      background: var(--off-white);
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 0;
      padding: 40px 36px 36px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      text-decoration: none;
      display: block;
    }
    .pt-card:hover {
      border-color: rgba(201,168,76,0.32);
      box-shadow: 0 8px 40px rgba(61,26,110,0.09);
      transform: translateY(-3px);
    }

    /* border draw — top+left corner */
    .pt-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 0;
      border-top: 2px solid #c9a84c;
      border-left: 2px solid #c9a84c;
      transition: width 0.28s cubic-bezier(0.22,1,0.36,1) 0s,
                  height 0.28s cubic-bezier(0.22,1,0.36,1) 0.28s;
      pointer-events: none;
      z-index: 1;
    }
    .pt-card:hover::before { width: 100%; height: 100%; }

    /* border draw — bottom+right corner */
    .pt-card::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 0; height: 0;
      border-bottom: 2px solid #c9a84c;
      border-right: 2px solid #c9a84c;
      transition: width 0.28s cubic-bezier(0.22,1,0.36,1) 0.28s,
                  height 0.28s cubic-bezier(0.22,1,0.36,1) 0s;
      pointer-events: none;
      z-index: 1;
    }
    .pt-card:hover::after { width: 100%; height: 100%; }

    /* partner logo mark */
    .pt-card-logo {
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      height: 52px;
    }
    .pt-card-logo img {
      max-height: 48px;
      max-width: 150px;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
      transition: opacity 0.3s, filter 0.3s;
    }
    .pt-card:hover .pt-card-logo img { opacity: 0.85; }

    /* category badge */
    .pt-card-cat {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pt-card-cat::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }

    /* big discount */
    .pt-card-discount {
      font-family: var(--font-display);
      font-size: 68px;
      font-weight: 300;
      font-style: italic;
      color: var(--purple-mid);
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 6px;
    }
    .pt-card-discount-label {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 24px;
    }

    /* divider */
    .pt-card-divider {
      width: 32px;
      height: 1px;
      background: rgba(201,168,76,0.4);
      margin-bottom: 20px;
    }

    /* partner name + desc */
    .pt-card-name {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.2;
      letter-spacing: -0.3px;
    }
    .pt-card-desc {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-light);
    }

    /* how-to tag */
    .pt-card-how {
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border: 1px solid rgba(201,168,76,0.2);
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-mid);
      font-weight: 300;
      background: white;
    }
    .pt-card-how-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* dashed "become partner" card — full-width horizontal banner */
    .pt-card-new {
      grid-column: 1 / -1;
      background: white;
      border: 1px dashed rgba(201,168,76,0.3);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      text-decoration: none;
      padding: 48px 56px;
      gap: 0;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }
    .pt-card-new:hover {
      border-color: rgba(201,168,76,0.55);
      box-shadow: 0 8px 40px rgba(61,26,110,0.09);
      transform: translateY(-3px);
    }
    .pt-card-new::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 0;
      border-top: 2px solid #c9a84c;
      border-left: 2px solid #c9a84c;
      transition: width 0.28s cubic-bezier(0.22,1,0.36,1) 0s,
                  height 0.28s cubic-bezier(0.22,1,0.36,1) 0.28s;
      pointer-events: none;
      z-index: 1;
    }
    .pt-card-new:hover::before { width: 100%; height: 100%; }
    .pt-card-new::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 0; height: 0;
      border-bottom: 2px solid #c9a84c;
      border-right: 2px solid #c9a84c;
      transition: width 0.28s cubic-bezier(0.22,1,0.36,1) 0.28s,
                  height 0.28s cubic-bezier(0.22,1,0.36,1) 0s;
      pointer-events: none;
      z-index: 1;
    }
    .pt-card-new:hover::after { width: 100%; height: 100%; }
    .pt-card-new-left {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-right: 52px;
      border-right: 1px solid rgba(201,168,76,0.15);
    }
    .pt-card-new-center {
      flex: 1;
      padding: 0 52px;
    }
    .pt-card-new-center .pt-card-new-desc { margin-bottom: 0; }
    .pt-card-new-right {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      padding-left: 52px;
      border-left: 1px solid rgba(201,168,76,0.15);
      gap: 20px;
    }
    .pt-card-new-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
    }
    .pt-card-new-icon svg {
      width: 24px; height: 24px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .pt-card-new-label {
      font-family: var(--font-body);
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      margin-bottom: 10px;
    }
    .pt-card-new-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .pt-card-new-title em { font-style: italic; color: var(--purple-mid); }
    .pt-card-new-desc {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .pt-card-new-arrow {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: gap 0.25s;
    }
    .pt-card-new:hover .pt-card-new-arrow { gap: 16px; }
    .pt-card-new-arrow::after { content: '→'; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .pt-hero-content, .pt-main-inner { padding: 0 32px; }
      .pt-main-inner { padding: 0 32px; }
      .pt-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .pt-hero { min-height: 340px; }
      .pt-hero-content { padding: 0 20px 40px; }
      .pt-hero-title { font-size: clamp(44px, 12vw, 62px); letter-spacing: -1px; line-height: 0.95; }
      .pt-hero-overline-text { font-size: 9px; letter-spacing: 3px; }
      .pt-main { padding: 60px 0 72px; }
      .pt-main-inner { padding: 0 20px; }
      .pt-grid { grid-template-columns: 1fr; gap: 14px; }
      .pt-card-discount { font-size: 52px; }
      .pt-card-new { flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 0; }
      .pt-card-new-left { padding-right: 0; border-right: none; margin-bottom: 28px; }
      .pt-card-new-center { padding: 0; margin-bottom: 28px; }
      .pt-card-new-center .pt-card-new-desc { margin-bottom: 0; }
      .pt-card-new-right { padding-left: 0; border-left: none; align-items: flex-start; }
      .pt-cta { padding: 72px 0 64px; }
      .pt-cta-ring-1 { width: 280px; height: 280px; }
      .pt-cta-ring-2 { width: 200px; height: 200px; }
      .pt-cta-ring-3 { width: 130px; height: 130px; }
      .pt-cta-btns { flex-direction: column; align-items: center; }
      .pt-cta-btns .btn-primary, .pt-cta-btns .btn-outline { width: 100%; max-width: 280px; text-align: center; }
    }
    @media (max-width: 480px) {
      .pt-hero { min-height: 300px; }
      .pt-hero-content { padding: 0 20px 36px; }
      .pt-hero-title { font-size: clamp(36px, 12vw, 48px); letter-spacing: -0.5px; line-height: 1.0; }
      .pt-hero-overline-text { font-size: 8px; letter-spacing: 2px; }
      .pt-hero-overline { gap: 10px; margin-bottom: 14px; }
    }

