:root {
  --bg: #f4f0ed;
  --bg-deep: #ebe5e1;
  --ink: #2a1f24;
  --ink-soft: rgba(42, 31, 36, 0.84);
  --muted: rgba(42, 31, 36, 0.56);
  --faint: rgba(42, 31, 36, 0.38);
  --burgundy: #7a2840;
  --wine: #5c1a32;
  --heading: #351a22;
  --rose: #b84a62;
  --grad-text: linear-gradient(135deg, #5c1a32 0%, #7a2840 50%, #9a3a52 100%);
  --glass-bg: rgba(255, 255, 255, 0.38);
  --glass-bg-strong: rgba(255, 255, 255, 0.52);
  --glass-border: rgba(255, 255, 255, 0.78);
  --glass-edge: rgba(122, 40, 64, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.95);
  --radius: 26px;
  --radius-sm: 16px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Sora", "Inter", sans-serif;
  --maxw: 1180px;
  --blur: blur(52px) saturate(195%) brightness(1.06);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html[dir="rtl"] body { letter-spacing: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
  min-height: 100vh;
}
body > :not(.ambient):not(.loader):not(.mobile-cta-bar):not(.lang-modal):not(.mobile-drawer):not(.site-nav) { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Ambient glow (visible through glass) ── */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(88px); will-change: transform;
}
.b1 {
  width: min(58vw, 560px); height: min(58vw, 560px);
  background: radial-gradient(circle, rgba(184, 74, 98, 0.38), rgba(184, 74, 98, 0));
  top: -12%; right: 4%;
  animation: drift1 26s ease-in-out infinite;
}
.b2 {
  width: min(50vw, 480px); height: min(50vw, 480px);
  background: radial-gradient(circle, rgba(122, 40, 64, 0.32), rgba(122, 40, 64, 0));
  bottom: 8%; left: -8%;
  animation: drift2 30s ease-in-out infinite;
}
.b3 {
  width: min(42vw, 400px); height: min(42vw, 400px);
  background: radial-gradient(circle, rgba(154, 58, 82, 0.28), rgba(154, 58, 82, 0));
  top: 38%; left: 32%;
  animation: drift3 24s ease-in-out infinite;
}
.b4 {
  width: min(36vw, 340px); height: min(36vw, 340px);
  background: radial-gradient(circle, rgba(92, 26, 50, 0.22), rgba(92, 26, 50, 0));
  top: 62%; right: 18%;
  animation: drift4 28s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,24px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(36px,-20px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-24px,-28px)} }
@keyframes drift4 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,16px)} }

/* ── Loader (brand intro) ──────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader-bg {
  position: absolute; inset: 0;
  background:
    url("images/hero-wine-glow.webp") center/cover no-repeat,
    var(--bg);
  opacity: 1;
}
.loader-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(244, 240, 237, 0.82);
  backdrop-filter: blur(8px);
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader.done .loader-stage { transform: scale(0.96); opacity: 0; }
.loader-stage {
  position: relative; z-index: 1; text-align: center;
  width: min(420px, calc(100vw - 40px));
  max-height: min(90dvh, 560px);
  overflow-y: auto;
  padding: 28px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.42) 100%);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 24px 64px rgba(42,31,36,0.12), 0 0 80px rgba(122,40,64,0.08), inset 0 1px 0 #fff;
  backdrop-filter: blur(44px) saturate(185%);
  -webkit-backdrop-filter: blur(44px) saturate(185%);
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .45s ease;
}
.loader-ring {
  width: 64px; height: 64px; margin: 0 auto 16px;
  animation: loaderRingPulse 2s ease-in-out infinite;
}
.loader-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { stroke: rgba(122,40,64,0.12); }
.ring-fill {
  stroke: var(--burgundy);
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
}
@keyframes loaderRingPulse { 0%,100%{opacity:.85;transform:scale(1)} 50%{opacity:1;transform:scale(1.04)} }
.loader-mark { margin: 0 auto 14px; height: 28px; width: auto; }
.loader-tag {
  font-family: var(--display); font-size: 1.02rem; font-weight: 600;
  letter-spacing: -.02em; color: var(--ink-soft); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-fade, .hero-dots { display: none; }
.hero-fade-left, .hero-fade-right { display: none; }

/* Burgundy icon strokes (replace legacy blue/teal) */
svg [stroke="#7aa2ff"], svg [stroke="#5eead4"], svg [stroke="#c084fc"] { stroke: var(--burgundy); }
.panel .pin svg [stroke="#fff"], .panel .pin svg [stroke="#fff"] { stroke: #fff; }

.loader-skip {
  position: absolute; top: max(16px, env(safe-area-inset-top)); right: 16px; z-index: 2;
  font: 600 .72rem var(--font); padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(122,40,64,0.14); background: rgba(255,255,255,0.55);
  color: var(--muted); cursor: pointer;
}
@media (hover: hover) { .loader-skip:hover { color: var(--burgundy); border-color: rgba(122,40,64,0.28); } }
.loader-steps {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  margin: 16px 0 18px; text-align: left;
}
.loader-steps li {
  font-size: .78rem; font-weight: 500; padding: 9px 12px; border-radius: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(122,40,64,0.08);
  opacity: .45;
  transform: translateY(4px);
  transition: opacity .35s ease, transform .35s ease, color .35s, border-color .35s, background .35s;
}
.loader-steps li.active {
  opacity: 1; transform: none;
  color: var(--burgundy); font-weight: 600;
  background: rgba(255,255,255,0.65);
  border-color: rgba(122,40,64,0.18);
  box-shadow: 0 4px 16px rgba(122,40,64,0.08);
}
.loader-progress {
  height: 3px; border-radius: 99px; overflow: hidden;
  background: rgba(122,40,64,0.12);
}
.loader-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-text);
  border-radius: 99px;
  transition: width .15s linear;
}
.loader-foot { margin-top: 14px; font-size: .74rem; color: var(--muted); }

/* ── Liquid Glass (matte, borderless) ────── */
.glass {
  position: relative;
  background: linear-gradient(148deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 52%, rgba(255,255,255,0.14) 100%);
  border: none;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow:
    0 10px 36px rgba(42, 31, 36, 0.06),
    0 0 40px rgba(122, 40, 64, 0.07);
}
.glass::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(165deg, rgba(255,255,255,0.38) 0%, transparent 42%, rgba(122,40,64,0.04) 100%);
}
.glass::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 35%);
  opacity: 0.85;
}
.glass > * { position: relative; z-index: 1; }

.glass-glow {
  box-shadow:
    0 14px 44px rgba(122, 40, 64, 0.11),
    0 0 56px rgba(122, 40, 64, 0.09);
}

@media (hover: hover) {
  .glass-hover { transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease; will-change: transform; }
  .glass-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(122,40,64,0.12), 0 0 52px rgba(122,40,64,0.1);
  }
}

/* ── Buttons ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: .875rem;
  cursor: pointer; border: none; white-space: nowrap; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary {
  padding: 12px 22px; color: #fff;
  background: linear-gradient(145deg, var(--wine) 0%, var(--burgundy) 55%, var(--rose) 100%);
  box-shadow: 0 6px 24px rgba(122, 40, 64, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
}
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(122,40,64,0.36); }
}
.btn-ghost {
  padding: 11px 20px; color: var(--ink-soft);
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
@media (hover: hover) {
  .btn-ghost:hover { background: rgba(255,255,255,0.55); color: var(--ink); }
}
.btn-ghost .play {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(122,40,64,0.1); color: var(--burgundy);
}
.btn-sm { padding: 9px 16px; font-size: .8125rem; }

/* ── Nav ───────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--nav-h); padding: 12px 28px;
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(244, 240, 237, 0.55);
  border-bottom-color: rgba(122, 40, 64, 0.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 8px 32px rgba(42, 31, 36, 0.05);
}
.brand .logo-svg { height: 26px; width: auto; }
.navlinks { display: flex; gap: 2px; padding: 4px; border-radius: 999px; }
.navlinks a {
  font-size: .84rem; color: var(--muted); padding: 8px 14px; border-radius: 999px;
  transition: color .15s, background .15s;
}
@media (hover: hover) { .navlinks a:hover { color: var(--ink-soft); background: rgba(255,255,255,0.35); } }
.navlinks a.active { color: var(--burgundy); background: rgba(255,255,255,0.5); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-mobile-links { display: none; }
.lang-btn {
  width: 40px; height: 40px; border-radius: 12px; padding: 0;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,0.45); border: none;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.lang-btn .lang-flag { font-size: 1.15rem; line-height: 1; }
@media (hover: hover) {
  .lang-btn:hover { background: rgba(255,255,255,0.65); border-color: rgba(122,40,64,0.18); }
}
.lang-switch {
  display: none;
}
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 12px;
  align-items: center; justify-content: center; cursor: pointer;
  background: rgba(255,255,255,0.45); border: none;
  color: var(--ink);
}
.nav-toggle svg { width: 18px; height: 18px; }

/* Mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.mobile-drawer.open { pointer-events: auto; visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(42,31,36,0.22); opacity: 0; transition: opacity .35s; }
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 360px);
  padding: 28px 24px;
  background: rgba(244,240,237,0.72);
  border-left: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.drawer-close {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(122,40,64,0.12); background: rgba(255,255,255,0.6);
  color: var(--ink); cursor: pointer; font-size: 1.2rem;
}
.drawer-panel a {
  font-family: var(--display); font-size: 1.12rem; font-weight: 500;
  color: var(--ink-soft); padding: 14px 0; border-bottom: 1px solid rgba(122,40,64,0.08);
}
.drawer-panel a.active { color: var(--burgundy); }
.drawer-cta { margin-top: auto; padding-top: 24px; }
.drawer-cta .btn { width: 100%; }

/* Language modal */
.lang-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; place-items: center; padding: 20px;
  pointer-events: none; visibility: hidden;
}
.lang-modal.open { display: grid; pointer-events: auto; visibility: visible; }
.lang-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(42,31,36,0.28);
  opacity: 0; transition: opacity .3s ease;
}
.lang-modal.open .lang-modal-backdrop { opacity: 1; }
.lang-modal-panel {
  position: relative; z-index: 1;
  width: min(360px, calc(100vw - 32px));
  padding: 22px 20px 18px;
  border-radius: 24px;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.lang-modal.open .lang-modal-panel { transform: none; opacity: 1; }
.lang-modal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.lang-modal-head h2 {
  font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink-soft);
}
.lang-modal-close {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(122,40,64,0.12); background: rgba(255,255,255,0.6);
  color: var(--ink); cursor: pointer; font-size: 1.15rem; line-height: 1;
}
.lang-options { display: flex; flex-direction: column; gap: 8px; }
.lang-option {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 14px 16px; border-radius: 16px;
  border: 1px solid rgba(122,40,64,0.1);
  background: rgba(255,255,255,0.42);
  cursor: pointer; text-align: left;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.lang-option-flag { font-size: 1.35rem; line-height: 1; }
.lang-option-label { font-family: var(--display); font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
@media (hover: hover) {
  .lang-option:hover { background: rgba(255,255,255,0.72); border-color: rgba(122,40,64,0.2); }
}
.lang-option.active {
  background: rgba(255,255,255,0.82);
  border-color: rgba(122,40,64,0.28);
  box-shadow: 0 4px 16px rgba(122,40,64,0.08);
}
.lang-option.active .lang-option-label { color: var(--burgundy); }

/* ── Hero ──────────────────────────── */
.hero-sec {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100dvh - var(--nav-h));
  padding-top: 28px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("images/hero-wine-glow.webp") center 40% / cover no-repeat;
}
.hero-sec::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244,240,237,0.35) 0%, rgba(244,240,237,0.08) 42%, rgba(244,240,237,0.55) 100%);
}
.hero-sec > .wrap {
  min-height: calc(100dvh - var(--nav-h) - 28px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero {
  display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr);
  gap: clamp(18px, 2.5vw, 28px); align-items: center;
  padding: clamp(12px, 2vh, 24px) 0 clamp(10px, 1.5vh, 18px);
}
.hero .copy { grid-column: 1; grid-row: 1; }
.hero .panel { grid-column: 2; grid-row: 1; }
.hero-feats-wrap { grid-column: 1 / -1; grid-row: 2; }
.hero-swipe-hint { display: none; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--burgundy));
}
.eyebrow strong { color: var(--burgundy); font-weight: 700; }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.06; letter-spacing: -.035em; margin-top: 12px; color: var(--heading);
}
.grad-text { color: var(--burgundy); }
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.hero-chips span {
  font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  padding: 6px 12px; border-radius: 999px;
  color: var(--burgundy);
  background: rgba(122,40,64,0.07);
  border: 1px solid rgba(122,40,64,0.14);
}
.hero-trust-mobile { display: none; }
html.pitch-mode .loader { display: none !important; }
html.pitch-mode body { overflow: auto; }
html.pitch-mode body.loaded > :not(.ambient):not(.loader) { opacity: 1; visibility: visible; }
.tier .tprice-eur { color: var(--burgundy); font-size: clamp(1.5rem, 2.4vw, 2rem); }
.hero .sub {
  margin-top: 12px; max-width: 44ch;
  font-size: clamp(.86rem, 1.05vw, .98rem); line-height: 1.6; color: var(--muted);
}
.cta-row { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.founder {
  display: flex; align-items: center; gap: 12px; margin-top: 16px;
  padding: 8px 16px 8px 8px; border-radius: 999px; width: fit-content;
}
.founder .ava {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  color: #fff; background: linear-gradient(135deg, var(--wine), var(--burgundy));
}
.founder .txt b { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-soft); }
.founder .txt span { font-size: .74rem; color: var(--muted); }

.panel { border-radius: var(--radius); padding: clamp(16px, 2vw, 22px); }
.panel .head { display: flex; justify-content: space-between; align-items: flex-start; }
.panel .loc { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.panel .loc small { display: block; font-size: .7rem; color: var(--muted); margin-top: 2px; }
.panel .pin {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.45); border: none;
}
.panel .pin svg { stroke: var(--burgundy); }
.panel .big {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem); line-height: 1; letter-spacing: -.03em;
  margin: 14px 0 2px; color: var(--ink);
}
.panel .big em { font-style: normal; font-size: 1.05rem; color: var(--muted); }
.panel .stat-line { font-size: .8rem; color: var(--muted); }
.panel .divider { height: 1px; background: rgba(122,40,64,0.1); margin: 14px 0; }
.panel .prow { display: flex; justify-content: space-between; padding: 4px 0; font-size: .78rem; }
.panel .prow span { color: var(--muted); }
.panel .prow b { font-weight: 600; color: var(--ink-soft); }
.panel .live { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; color: var(--burgundy); font-weight: 600; }
.panel .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy); animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.panel .foot {
  display: flex; justify-content: space-between; margin-top: 4px; padding-top: 12px;
  border-top: 1px solid rgba(122,40,64,0.1); font-size: .78rem;
}
.panel .foot .rate { font-family: var(--display); font-weight: 600; }

.hero-feats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
  padding-bottom: clamp(14px, 2vh, 22px); margin-top: auto;
}
.feat { border-radius: var(--radius-sm); padding: clamp(12px, 1.4vw, 16px); }
.feat .fic {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 10px;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.65);
}
.feat .fic svg { width: 17px; height: 17px; }
.feat .fic svg path, .feat .fic svg rect, .feat .fic svg circle { stroke: var(--burgundy); }
.feat h3 { font-family: var(--display); font-size: .86rem; font-weight: 600; color: var(--heading); }
.feat p { margin-top: 4px; font-size: .72rem; line-height: 1.45; color: var(--muted); }

/* ── Sections ──────────────────────── */
section { content-visibility: auto; contain-intrinsic-size: auto 600px; }
.sec { padding: clamp(52px, 8vh, 92px) 0; }
.sec-ambient { display: none; }
.sec-head { max-width: 620px; margin: 0 auto clamp(32px, 4vh, 48px); text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.kicker {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--burgundy);
}
.sec-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.08; letter-spacing: -.03em; margin-top: 12px;
}
.sec-head p { margin-top: 12px; font-size: .98rem; line-height: 1.6; color: var(--muted); }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.svc { border-radius: var(--radius); padding: 24px; }
.svc .sic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(255,255,255,0.42); border: none;
}
.svc .sic svg path, .svc .sic svg rect, .svc .sic svg circle { stroke: var(--burgundy); }
.svc h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--heading); }
.svc p { margin-top: 8px; font-size: .86rem; line-height: 1.6; color: var(--muted); }
.svc ul { margin-top: 12px; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.svc ul li {
  font-size: .72rem; color: var(--muted); padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.35); border: none;
}

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step { border-radius: var(--radius); padding: 22px; }
.step .no { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--burgundy); opacity: .75; }
.step h3 { font-family: var(--display); font-size: .98rem; font-weight: 600; margin-top: 10px; color: var(--heading); }
.step p { margin-top: 6px; font-size: .82rem; line-height: 1.55; color: var(--muted); }
.step .dur { margin-top: 10px; font-size: .68rem; color: var(--burgundy); font-weight: 600; }

.cases { display: flex; flex-direction: column; gap: 24px; }
.case-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.case-card:nth-child(even) .case-cover { order: 2; }
.case-cover {
  position: relative;
  min-height: 320px;
  background: #ebe4e0;
  overflow: hidden;
}
.case-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 320px;
}
.case-cover .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 11px; border-radius: 999px; font-size: .68rem; font-weight: 600; color: var(--burgundy);
}
.case-body {
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-body .sector { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--burgundy); }
.case-body h3 {
  font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600; letter-spacing: -.02em; margin-top: 10px; line-height: 1.15; color: var(--heading);
}
.case-body p { margin-top: 10px; font-size: .88rem; line-height: 1.6; color: var(--muted); }
.case-metrics { display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
.case-metrics div strong { display: block; font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--burgundy); }
.case-metrics div span { font-size: .72rem; color: var(--muted); }

/* legacy aliases */
.case-item { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.case-visual { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background: #e8e2de; }
.case-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-glass { border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); display: flex; flex-direction: column; justify-content: center; }
.case-glass .sector { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--burgundy); }
.case-glass h3 { font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -.02em; margin-top: 10px; line-height: 1.15; }
.case-glass p { margin-top: 10px; font-size: .88rem; line-height: 1.6; color: var(--muted); }

.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; }
.why-media {
  border-radius: var(--radius); overflow: hidden; position: relative;
  min-height: 380px; background: #e8e2de;
  box-shadow: 0 16px 48px rgba(42,31,36,0.08);
  border: none;
}
.why-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.why-media .badge {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 12px;
}
.why-media .badge .ava {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  color: #fff; background: linear-gradient(135deg, var(--wine), var(--burgundy));
}
.why-media .badge b { display: block; font-size: .88rem; color: var(--ink-soft); }
.why-media .badge span { font-size: .76rem; color: var(--muted); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; }
.why-list .ck {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.42); border: none;
}
.why-list .ck svg path { stroke: var(--burgundy); }
.why-list b { font-family: var(--display); font-size: .94rem; font-weight: 600; color: var(--ink-soft); }
.why-list p { font-size: .84rem; color: var(--muted); margin-top: 2px; }

.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: stretch; }
.tier { border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; }
.tier.pop { box-shadow: 0 20px 56px rgba(122,40,64,0.12), inset 0 1px 0 #fff; }
.tier .badge-pop {
  align-self: flex-start; margin-bottom: 10px; padding: 4px 10px; border-radius: 999px;
  font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, var(--wine), var(--burgundy));
}
.tier .tname { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink-soft); }
.tier .tprice { font-family: var(--display); font-size: 2rem; font-weight: 700; letter-spacing: -.02em; margin: 6px 0 2px; }
.tier .tprice small { font-size: .82rem; font-weight: 400; color: var(--muted); }
.tier .tdesc { font-size: .82rem; color: var(--muted); min-height: 32px; }
.tier ul { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tier ul li { display: flex; gap: 9px; align-items: flex-start; font-size: .84rem; color: var(--ink-soft); }
.tier .btn { width: 100%; }

.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.quote { border-radius: var(--radius); padding: 22px; }
.quote .stars { color: var(--burgundy); font-size: .82rem; letter-spacing: 2px; }
.quote p { margin-top: 12px; font-size: .92rem; line-height: 1.6; color: var(--ink-soft); }
.quote .who {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(122,40,64,0.08);
}
.quote .who .av {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  background: rgba(255,255,255,0.45); color: var(--burgundy);
  border: none;
}
.quote .who b { display: block; font-size: .84rem; color: var(--ink-soft); }
.quote .who span { font-size: .72rem; color: var(--muted); }

.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.qa { border-radius: var(--radius-sm); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: var(--display); font-size: .94rem; font-weight: 500; color: var(--ink-soft);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .ico {
  width: 24px; height: 24px; flex: none; border-radius: 7px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.42); border: none;
  transition: transform .25s;
}
.qa summary .ico svg path { stroke: var(--burgundy); }
.qa[open] summary .ico { transform: rotate(45deg); }
.qa .ans { padding: 0 20px 18px; font-size: .88rem; line-height: 1.65; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.info-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius-sm); }
.info-row .ii {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.42); border: none;
}
.info-row .ii svg path, .info-row .ii svg circle, .info-row .ii svg rect { stroke: var(--burgundy); }
.info-row b { display: block; font-size: .88rem; color: var(--ink-soft); }
.info-row span { font-size: .78rem; color: var(--muted); }
.cform { border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.cform .fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform label { display: block; font-size: .74rem; color: var(--muted); margin-bottom: 6px; }
.cform input, .cform textarea, .cform select {
  width: 100%; padding: 11px 13px; border-radius: 10px;
  background: rgba(255,255,255,0.45); border: none;
  color: var(--ink); font-family: var(--font); font-size: .88rem;
}
.cform input:focus, .cform textarea:focus, .cform select:focus {
  outline: none; border-color: rgba(122,40,64,0.35);
  box-shadow: 0 0 0 3px rgba(122,40,64,0.08);
}
.cform textarea { min-height: 96px; resize: vertical; }
.cform .note { font-size: .7rem; color: var(--faint); text-align: center; }

.site-foot {
  border-top: 1px solid rgba(122,40,64,0.08); padding: 44px 0 32px; margin-top: 24px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.foot-grid .col h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 12px;
}
.foot-grid .col a { display: block; font-size: .84rem; color: var(--muted); padding: 4px 0; transition: color .15s; }
@media (hover: hover) { .foot-grid .col a:hover { color: var(--burgundy); } }
.foot-grid .about p { font-size: .84rem; color: var(--muted); margin-top: 12px; max-width: 30ch; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(122,40,64,0.06);
  font-size: .76rem; color: var(--faint); flex-wrap: wrap;
}
.foot-bottom .socials { display: flex; gap: 8px; }
.foot-bottom .socials a {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.65);
  color: var(--ink-soft);
}
.foot-bottom .socials a svg { fill: var(--ink-soft); }

/* Dark-burgundy headings across the page */
h1, h2, h3,
.hero h1,
.sec-head h2,
.case-glass h3,
.case-body h3,
.svc h3,
.step h3,
.feat h3,
.why-list b,
.tier .tname,
.lang-modal-head h2,
.faq .qa summary,
.info-row b { color: var(--heading); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

.mobile-cta-bar { display: none; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 18px; }
  .hero-sec, .hero-sec > .wrap { min-height: auto; }
  .navlinks, .nav-right .btn-primary { display: none; }
  .nav-mobile-links { display: flex; align-items: center; gap: 2px; margin-left: auto; margin-right: 4px; }
  .nav-mobile-links a {
    font-size: .78rem; font-weight: 600; color: var(--muted);
    padding: 8px 10px; border-radius: 999px;
    transition: color .15s, background .15s;
    white-space: nowrap;
  }
  .nav-mobile-links a.active { color: var(--burgundy); background: rgba(255,255,255,0.5); }
  @media (hover: hover) {
    .nav-mobile-links a:hover { color: var(--ink-soft); background: rgba(255,255,255,0.35); }
  }
  .nav-toggle { display: flex; }
  .hero-feats, .svc-grid, .steps, .quotes, .tiers { grid-template-columns: repeat(2,1fr); }
  .case-item { grid-template-columns: 1fr; }
  .case-item:nth-child(even) .case-visual { order: 0; }
  .case-card { grid-template-columns: 1fr; }
  .case-card:nth-child(even) .case-cover { order: 0; }
  .case-cover { aspect-ratio: 16 / 10; min-height: 0; }
  .case-cover img { min-height: 0; aspect-ratio: 16 / 10; }
  .case-body { padding: 18px 18px 20px; }
  .case-body h3 { font-size: 1.15rem; }
  .case-metrics { gap: 16px; }
  .case-metrics div strong { font-size: 1.2rem; }
  .why { grid-template-columns: 1fr; }
  .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .glass { backdrop-filter: blur(28px) saturate(170%); -webkit-backdrop-filter: blur(28px) saturate(170%); }
}

@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .site-nav { padding: 10px 18px; }
  .hero-feats, .svc-grid, .steps, .quotes, .tiers { grid-template-columns: 1fr; }
  .cform .fr { grid-template-columns: 1fr; }
}

@media (max-height: 780px) and (min-width: 1001px) {
  .hero h1 { font-size: clamp(1.65rem, 3vw, 2.45rem); }
  .hero .sub { font-size: .84rem; }
  .cta-row { margin-top: 14px; }
  .founder { margin-top: 12px; }
  .panel .big { font-size: 2rem; }
  .feat p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .panel .live::before { animation: none; }
  .loader-ring { animation: none; }
  .loader-steps li { transition: none; transform: none; opacity: 1; }
  .loader.done .loader-stage { transform: none; }
  .loader-stage { transition: opacity .3s ease; }
}
