/* ============================================
   OPTIKA VISAGE — Liquid Glass v2
   Montserrat body, Rethink Sans logo
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand colors */
  --primary: #5B0070;
  --primary-mid: #7A1F92;
  --primary-soft: rgba(91, 0, 112, 0.08);
  --accent: #FFDA72;
  --accent-warm: #FFC939;
  --accent-soft: rgba(255, 218, 114, 0.18);

  /* Surface colors */
  --ink: #0A0A0F;
  --ink-soft: #2A2A30;
  --muted: #6B6B75;
  --muted-soft: #A8A8B0;

  --bg: #FFFFFF;
  --bg-tinted: #FAF7FB;
  --border: rgba(91, 0, 112, 0.10);
  --border-strong: rgba(91, 0, 112, 0.18);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(24px) saturate(180%);
  --glass-shadow:
    0 1px 1px rgba(255, 255, 255, 0.8) inset,
    0 -1px 1px rgba(91, 0, 112, 0.04) inset,
    0 12px 32px -12px rgba(91, 0, 112, 0.15),
    0 4px 12px -4px rgba(10, 10, 15, 0.06);

  /* Typography */
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-logo: 'Rethink Sans', system-ui, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container: 1280px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient gradient orbs in background */
body::before, body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.55;
}
body::before {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(91, 0, 112, 0.28), transparent 70%);
}
body::after {
  top: 40%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(255, 218, 114, 0.32), transparent 70%);
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--ink); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, var(--accent-warm) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
h1.display { font-size: clamp(2.6rem, 7.5vw, 5.6rem); }
h2.display { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; }

h3 { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
h4 { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.lead {
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  position: relative;
}
.section { padding: var(--space-9) 0; position: relative; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  max-width: 800px;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: var(--space-4);
}
.topbar-text { color: #DDD; }
.topbar-text::before {
  content: "●";
  color: var(--accent);
  margin-right: 6px;
  font-size: 0.55rem;
  vertical-align: middle;
}
.topbar-link {
  color: var(--accent);
  font-weight: 700;
  transition: opacity 0.2s;
}
.topbar-link:hover { opacity: 0.8; }

/* ---------- NAV (GLASS) ---------- */
.nav {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin: 12px var(--space-5) 0;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 12px var(--space-5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img {
  width: 34px;
  height: auto;
}
.nav-logo .logo-wordmark {
  font-family: var(--font-logo);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.logo-wordmark strong { font-weight: 800; }

.nav-menu {
  display: flex;
  gap: var(--space-6);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-menu a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-warm));
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--glass-bg-strong);
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6E0085 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 8px 20px -8px rgba(91, 0, 112, 0.5);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 12px 28px -8px rgba(91, 0, 112, 0.6);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-glass {
  background: var(--glass-bg-strong);
  color: var(--ink);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.8) inset,
    0 4px 16px -4px rgba(91, 0, 112, 0.12);
}
.btn-glass:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
  padding: var(--space-8) 0 var(--space-9);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: var(--space-5); }
.hero-content .eyebrow { animation: fadeUp 0.6s var(--ease) both; }
.hero-content h1 { animation: fadeUp 0.7s var(--ease) 0.08s both; }
.hero-lede {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.5;
  animation: fadeUp 0.8s var(--ease) 0.18s both;
}
.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-3);
  animation: fadeUp 0.9s var(--ease) 0.28s both;
}

/* Hero glass card */
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--glass-shadow);
  animation: fadeUp 1s var(--ease) 0.4s both;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.stars {
  color: var(--accent-warm);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.hero-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-card-quote {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.hero-card-name {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-pills {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
  flex-wrap: wrap;
  animation: fadeUp 1.1s var(--ease) 0.5s both;
}
.hero-pill {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px -6px rgba(91, 0, 112, 0.15);
}
.hero-pill .pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}
.hero-pill .pill-dot.accent { background: var(--accent-warm); }

/* ---------- MARQUEE ---------- */
.marquee-section {
  padding: var(--space-7) 0;
  overflow: hidden;
  position: relative;
}
.marquee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(91, 0, 112, 0.03) 50%, transparent 100%);
  pointer-events: none;
}
.marquee-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: var(--space-6);
  animation: marquee 45s linear infinite;
}
.marquee-label span { margin-right: 30px; opacity: 0.4; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee-track picture { flex-shrink: 0; }
.marquee-track img {
  width: 280px;
  height: 200px;
  object-fit: contain;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: var(--space-3);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.8) inset,
    0 8px 24px -10px rgba(91, 0, 112, 0.15);
  transition: transform 0.35s var(--ease-spring);
}
.marquee-track picture:hover img {
  transform: scale(1.05) rotate(-1deg);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.8) inset,
    0 14px 36px -10px rgba(91, 0, 112, 0.25);
}
.marquee:hover .marquee-track { animation-play-state: paused; }

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

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.about-text .lead { margin-bottom: var(--space-5); font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.about-text p { margin-bottom: var(--space-4); color: var(--ink-soft); }
.about-team {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
.about-team h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.stat {
  padding: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.stat:hover { transform: translateY(-4px); }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: var(--space-2);
}
.stat strong small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}
.stat span { font-size: 0.86rem; color: var(--ink-soft); font-weight: 500; }
.stat-accent {
  background: linear-gradient(135deg, var(--ink) 0%, #1A1A22 100%);
  border-color: var(--ink);
  color: #fff;
}
.stat-accent strong {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}
.stat-accent span { color: #CCC; }

/* ---------- GALLERY (RADNJA) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  background: var(--glass-bg);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item picture, .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item-tall img { aspect-ratio: 4/5; }
.gallery-item:not(.gallery-item-tall) img { aspect-ratio: 3/4; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.85) 70%);
  color: #fff;
}
.gallery-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: var(--space-2);
}
.gallery-caption p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.service-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.8) inset,
    0 24px 60px -16px rgba(91, 0, 112, 0.25);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  flex-grow: 1;
}
.service-card-feature {
  background: linear-gradient(135deg, var(--ink) 0%, #1F1F2A 100%);
  color: #fff;
  border-color: var(--ink);
  grid-column: span 2;
  position: relative;
}
.service-card-feature::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 218, 114, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.service-card-feature h3 { color: #fff; font-size: 1.9rem; }
.service-card-feature p { color: #CFCFD8; font-size: 1.05rem; }
.service-card-feature:hover { transform: translateY(-6px); }

.service-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
  box-shadow: 0 4px 12px -4px rgba(255, 201, 57, 0.5);
}
.service-price, .service-bonus {
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-weight: 500;
}
.service-price { color: var(--muted); }
.service-bonus { color: var(--primary); font-weight: 600; }
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--accent-warm); }

/* ---------- PROCESS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.process-list li {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.process-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.process-list li:hover { transform: translateY(-4px); }
.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-list h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.process-list p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.review-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.review-card:hover { transform: translateY(-3px); }
.review-card p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}
.review-source {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.94rem;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--primary);
  transition: gap 0.2s;
}
.reviews-link:hover { gap: 12px; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color 0.2s;
  padding: 6px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.2s;
  color: var(--primary);
}
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.faq-item p {
  margin-top: var(--space-3);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 85%;
  animation: fadeIn 0.4s var(--ease);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  align-items: stretch;
}
.contact-info {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.contact-block p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}
.contact-block a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.contact-block a:hover { border-bottom-color: var(--primary); color: var(--primary); }
.contact-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
  flex-wrap: wrap;
}
.contact-map {
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 560px; border: 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, var(--ink) 0%, #1A0A1F 100%);
  color: #DDD;
  padding: var(--space-8) 0 0;
  margin-top: var(--space-7);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-warm), var(--primary));
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 218, 114, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  position: relative;
}
.footer-brand .nav-logo { color: #fff; }
.footer-brand .logo-wordmark { color: #fff; }
.footer-tagline {
  margin-top: var(--space-4);
  color: #AAA;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.footer-cols h4 {
  color: var(--accent);
  margin-bottom: var(--space-4);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}
.footer-cols ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-cols a, .footer-cols li {
  font-size: 0.92rem;
  font-weight: 500;
  color: #BBB;
  transition: color 0.2s;
}
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-4) 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: #888;
  gap: var(--space-4);
}

/* ---------- FLOATING VIBER ---------- */
.float-viber {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7360F2 0%, #59267A 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(115, 96, 242, 0.55);
  z-index: 90;
  transition: transform 0.25s var(--ease-spring);
}
.float-viber:hover { transform: scale(1.1); }
.float-viber::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #7360F2;
  opacity: 0.4;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .gallery-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .gallery-item img { aspect-ratio: 16/10 !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-feature { grid-column: span 2; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-6); }
}

@media (max-width: 720px) {
  .section { padding: var(--space-7) 0; }
  .container { padding: 0 var(--space-4); }

  .nav { margin: 8px var(--space-4) 0; top: 8px; }
  .nav-inner { padding: 10px var(--space-4); gap: var(--space-3); }

  .topbar-inner { font-size: 0.72rem; }
  .topbar-text::before { display: none; }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: var(--space-5);
    gap: var(--space-3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: var(--space-6) 0 var(--space-7); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-pills { gap: var(--space-2); }
  .hero-pill { font-size: 0.78rem; padding: 8px 14px; }

  .marquee-track img { width: 220px; height: 160px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-feature { grid-column: span 1; }

  .process-list { grid-template-columns: 1fr; gap: var(--space-3); }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .faq-item summary { font-size: 1rem; }
  .faq-item summary::after { width: 28px; height: 28px; font-size: 1.2rem; }
  .faq-item p { max-width: 100%; font-size: 0.94rem; }

  .contact-map { min-height: 360px; }
  .contact-map iframe { min-height: 360px; }

  .footer-cols { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom-inner { flex-direction: column; gap: var(--space-2); text-align: center; }

  .float-viber { width: 50px; height: 50px; bottom: 16px; right: 16px; }

  /* Reduce blur on mobile for performance */
  .nav, .hero-card, .stat, .service-card, .process-list li, .review-card, .faq-item, .contact-info, .marquee-track img, .hero-pill {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
