/* ================================================================
   DanaBaby Production — OEM landing styles
   ================================================================ */
:root {
  --brand: #d30d28;
  --brand-deep: #b8031c;
  --brand-soft: #F26072;
  --cream: #F7F2D6;
  --milk: #FFFDF7;
  --beige: #FAF6E6;
  --sand: #E9D9B8;
  --sky: #CED8E2;
  --stone: #C8C8C6;
  --ink: #2F2A24;
  --ink-soft: #4A4137;
  --muted: rgba(47, 42, 36, 0.62);
  --r: 18px;
  --r-sm: 14px;
  --r-lg: 22px;
  --r-input: 14px;
  --font-brand: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --radius-card: 28px;
  --radius-lg: 32px;
  --shadow-soft: 0 18px 50px rgba(122, 90, 58, 0.10);
  --shadow-card: 0 24px 60px -20px rgba(122, 90, 58, 0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-brand);
  color: var(--ink);
  background: var(--milk);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Image placeholders (when assets/* not present) ============ */
.img-wrap {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(122,90,58,0.06) 0 18px,
      rgba(122,90,58,0.03) 18px 36px),
    linear-gradient(180deg, #F4ECD8 0%, #E7DDC4 100%);
  overflow: hidden;
}
.img-wrap::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(74, 65, 55, 0.55);
  padding: 16px;
  pointer-events: none;
}
.img-wrap img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.img-wrap img:not([src]), .img-wrap img[src=""] { display: none; }

/* ============= HEADER ============= */
.header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 22px;
  background: linear-gradient(135deg, rgba(255,253,247,0.55) 0%, rgba(206,216,226,0.18) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow:
    0 10px 30px -10px rgba(122, 90, 58, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.header-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
}
.header.scrolled .header-inner {
  background: linear-gradient(135deg, rgba(255,253,247,0.82) 0%, rgba(206,216,226,0.34) 100%);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo .logo-img { height: 56px; }
.logo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(211, 13, 40, 0.10);
  margin-left: 4px;
}
.footer-logo .logo-tag { background: rgba(255, 253, 247, 0.14); color: #FFFDF7; }
@media (max-width: 480px) {
  .logo-img { height: 30px; }
  .logo-tag { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
  margin-left: 32px;
  position: relative;
  z-index: 1;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--brand); }
.header-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.header-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 13, 40, 0.08);
  color: var(--brand);
  transition: all .15s ease;
}
.icon-btn:hover { background: rgba(211, 13, 40, 0.16); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }
.menu-toggle { display: none; }

@media (max-width: 1200px) {
  .nav { gap: 14px; margin-left: 14px; }
  .nav a { font-size: 13px; }
}
@media (max-width: 1024px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .header-contacts .icon-btn:not(.menu-toggle),
  .header-contacts .btn-primary {
    display: none !important;
  }
  .header-contacts { gap: 0; margin-left: auto; }
  .header-inner { padding: 10px 14px; }
  .menu-toggle { width: 44px; height: 44px; }
  .menu-toggle svg { width: 22px; height: 22px; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 15px;
  transition: all .18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: #d30d28;
  color: #FFFDF7;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 28px -10px rgba(211, 13, 40, 0.65), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #b8031c;
  box-shadow: 0 18px 36px -10px rgba(211, 13, 40, 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.10) 60%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: btnShine 4.2s ease-in-out infinite;
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
@keyframes btnShine {
  0%   { left: -55%; opacity: 0; }
  8%   { opacity: 1; }
  55%  { left: 130%; opacity: 1; }
  60%, 100% { left: 130%; opacity: 0; }
}
.btn-primary .cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 10px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  color: #FFFDF7;
  transition: transform .25s ease;
}
.btn-primary:hover .cta-arrow { transform: translateX(4px); }
.btn-primary .cta-arrow svg { width: 14px; height: 14px; }

.btn-ghost {
  background: linear-gradient(135deg, rgba(255,253,247,0.6) 0%, rgba(206,216,226,0.35) 100%);
  color: var(--ink);
  border: 1.5px solid rgba(184, 3, 28, 0.35);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 24px -14px rgba(184, 3, 28, 0.35);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 3, 28, 0.55);
}
.btn-ghost .cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 10px;
  background: rgba(184, 3, 28, 0.10); border: 1px solid rgba(184, 3, 28, 0.25);
  color: var(--brand-deep);
}
.btn-ghost .cta-arrow svg { width: 14px; height: 14px; }

.btn-wa {
  background: linear-gradient(135deg, rgba(255,253,247,0.55) 0%, rgba(247,242,214,0.45) 100%);
  color: var(--brand-deep);
  border: 1.5px solid rgba(184, 3, 28, 0.30);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 22px -14px rgba(184, 3, 28, 0.35);
}
.btn-wa:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,253,247,0.85) 0%, rgba(247,242,214,0.75) 100%);
  border-color: rgba(184, 3, 28, 0.55);
}
.btn-tg {
  background: #d30d28;
  color: #FFFDF7;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 28px -12px rgba(184, 3, 28, 0.50), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-tg:hover { transform: translateY(-2px); background: #b8031c; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 14px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============ Response-time badge (next to every form CTA) ============ */
.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.75);
  border: 1px solid rgba(211, 13, 40, 0.22);
  color: var(--brand-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.resp-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #20bd5a;
  box-shadow: 0 0 0 0 rgba(32, 189, 90, 0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
.resp-badge.on-dark {
  background: rgba(255, 253, 247, 0.18);
  border-color: rgba(255, 253, 247, 0.30);
  color: #FFFDF7;
}
.resp-badge.on-dark::before { background: #FFFDF7; box-shadow: 0 0 0 0 rgba(255,253,247,0.5); }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(32, 189, 90, 0.5); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px rgba(32, 189, 90, 0); transform: scale(1.1); }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(242, 96, 114, 0.32) 0%, transparent 70%),
    radial-gradient(70% 60% at 10% 80%, rgba(247, 242, 214, 0.85) 0%, transparent 70%),
    linear-gradient(180deg, #FBF6E8 0%, #FFFDF7 60%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.hero-blob.a { width: 380px; height: 380px; background: #FAD4D8; top: -80px; right: -60px; }
.hero-blob.b { width: 320px; height: 320px; background: #E9D9B8; bottom: -100px; left: 5%; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.75);
  border: 1px solid rgba(211, 13, 40, 0.20);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.hero-eyebrow-tag {
  background: #d30d28;
  color: #FFFDF7;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
}
h1.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: #d30d28;
  position: relative;
  white-space: nowrap;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 10px;
  line-height: 1.55;
}
.hero-sub-em { color: var(--ink); font-weight: 600; }
.hero-moq {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-moq b { color: var(--brand); font-weight: 800; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 14px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px 14px;
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 8px 18px -12px rgba(122, 90, 58, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 16px 30px -14px rgba(184, 3, 28, 0.30);
}
.hero-badge-ico {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFE5E8, #FAF4DC);
  color: var(--brand-deep);
  border: 1px solid rgba(184, 3, 28, 0.14);
  flex-shrink: 0;
}
.hero-badge-ico svg { width: 18px; height: 18px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(122, 90, 58, 0.28);
}
.hero-visual .img-wrap { width: 100%; height: 100%; border-radius: var(--radius-lg); }
.hero-float {
  position: absolute;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px -10px rgba(122, 90, 58, 0.30);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-float.a { top: 24px; left: -28px; }
.hero-float.b { bottom: 28px; right: -28px; }
.hero-float-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFE5E8, #FFFDF7);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(211,13,40,0.18);
}
.hero-float-ico svg { width: 22px; height: 22px; }
.hero-float-t { font-size: 11px; color: var(--muted); line-height: 1.2; font-weight: 600; }
.hero-float-v { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.05; margin-top: 2px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 110px 0 50px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-float.a { left: 12px; }
  .hero-float.b { right: 12px; }
}
@media (max-width: 640px) {
  .hero-actions { flex-wrap: wrap; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ============= SECTIONS ============= */
.section { padding: 90px 0; position: relative; }
.section-tight { padding: 60px 0; }
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 36px 0; }
}
.section-cream { background: var(--cream); }
.section-milk { background: var(--milk); }
.section-beige { background: var(--beige); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(211, 13, 40, 0.10);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
h2 .h2-accent { color: var(--brand); }
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============= FORM SECTION ============= */
.form-section {
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(242, 96, 114, 0.22), transparent 60%),
    radial-gradient(50% 60% at 100% 100%, rgba(247, 242, 214, 0.9), transparent 70%),
    var(--milk);
  position: relative;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  position: relative;
  padding: 36px;
  background: linear-gradient(160deg, #FFFFFF 0%, #FBEDEE 100%);
  border: 1.5px solid rgba(184, 3, 28, 0.18);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 30px 60px -20px rgba(122, 90, 58, 0.30),
    0 60px 120px -30px rgba(184, 3, 28, 0.22);
}
.form-card-tab {
  position: static;
  padding: 8px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d30d28 0%, #b8031c 100%);
  color: #FFFDF7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(184, 3, 28,0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.form-card-top {
  position: absolute;
  top: -14px;
  left: 36px;
  right: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.form-card-top .resp-badge {
  white-space: nowrap;
}
.form-card-tab::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFFDF7;
  animation: tabPulse 1.8s ease-in-out infinite;
}
@keyframes tabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,253,247,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,253,247,0); }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}
.field label .opt { color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border-radius: var(--r-input);
  border: 1.5px solid rgba(184, 3, 28, 0.14);
  background: #FAF6EE;
  color: var(--ink);
  outline: none;
  transition: all .15s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--brand-deep);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(184, 3, 28, 0.14);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-grid .field.row2 { grid-column: 1 / -1; }
.form-more { margin-top: -2px; }
.form-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  background: none;
  border: none;
}
.form-more-btn:hover { color: var(--brand-deep); }
.form-foot { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.form-foot-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.form-alt { display: flex; gap: 10px; }
.form-alt .btn { flex: 1; }
.form-policy { font-size: 12px; color: var(--muted); text-align: center; }
.form-policy a { text-decoration: underline; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success-ico {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(211, 13, 40, 0.12);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success-ico svg { width: 36px; height: 36px; }

/* File-upload box */
.file-drop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-input);
  border: 1.5px dashed rgba(184, 3, 28, 0.30);
  background: rgba(250, 246, 238, 0.7);
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s ease;
}
.file-drop:hover { background: #fff; border-color: var(--brand-deep); }
.file-drop input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.file-drop-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(184, 3, 28, 0.10);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.file-drop-ico svg { width: 18px; height: 18px; }
.file-drop b { color: var(--brand); }
.file-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(184, 3, 28, 0.18);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.file-chip button {
  color: var(--muted);
  font-weight: 800;
  padding: 0 0 0 2px;
  line-height: 1;
}

.what-you-get {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.what-you-get li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}
.what-you-get li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FFFDF7' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* "Use the quiz instead" bar */
.form-quiz-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FBEDEE 0%, #F7F2D6 100%);
  border: 1px solid rgba(211, 13, 40, 0.18);
  margin-bottom: 20px;
}
.form-quiz-bar-text {
  flex: 1; font-size: 13.5px; color: var(--ink-soft); line-height: 1.4;
}
.form-quiz-bar-text b { color: var(--brand); }
.form-quiz-bar .btn-sm { flex-shrink: 0; }

@media (max-width: 880px) {
  .form-wrap { grid-template-columns: 1fr; gap: 30px; }
  .what-you-get { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}
@media (max-width: 560px) {
  .form-card { padding: 20px 16px; border-radius: 22px; }
  .form-grid { gap: 0 10px; }
  .form-alt { flex-direction: column; gap: 8px; }
  .form-card-top {
    position: static;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .form-card-top .resp-badge {
    font-size: 11px;
    padding: 6px 10px 6px 9px;
  }
}
@media (max-width: 420px) {
  .form-card-tab { font-size: 11px; padding: 7px 12px; }
}

/* ============= QUIZ ============= */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(47, 42, 36, 0.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.quiz-overlay.open { opacity: 1; pointer-events: auto; }
.quiz-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  background: var(--milk);
  border-radius: 28px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.quiz-overlay.open .quiz-modal { transform: translateY(0) scale(1); }
.quiz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 14px;
  border-bottom: 1px solid rgba(122, 90, 58, 0.10);
}
.quiz-head-left { display: flex; align-items: center; gap: 12px; }
.quiz-head-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d30d28, #b8031c);
  color: #FFFDF7;
  display: flex; align-items: center; justify-content: center;
}
.quiz-head-mark svg { width: 18px; height: 18px; }
.quiz-head-mark img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.quiz-head-title { font-weight: 800; font-size: 16px; color: var(--ink); line-height: 1.1; }
.quiz-head-sub { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.quiz-close {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(47, 42, 36, 0.06);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.quiz-close:hover { background: rgba(47, 42, 36, 0.12); }
.quiz-close svg { width: 18px; height: 18px; }
.quiz-progress {
  height: 4px;
  background: rgba(184, 3, 28, 0.10);
  position: relative;
}
.quiz-progress-bar {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, #d30d28, #b8031c);
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.quiz-body {
  padding: 26px;
  overflow-y: auto;
  flex: 1;
}
.quiz-step-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.quiz-step-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.2;
  text-wrap: balance;
}
.quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quiz-opts.one-col { grid-template-columns: 1fr; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1.5px solid rgba(184, 3, 28, 0.14);
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  transition: all .18s ease;
  width: 100%;
}
.quiz-opt:hover {
  border-color: var(--brand);
  background: #FFFDF7;
  transform: translateY(-2px);
}
.quiz-opt.selected {
  border-color: var(--brand);
  background: linear-gradient(135deg, #FBEDEE 0%, #FFFDF7 100%);
  box-shadow: 0 8px 20px -8px rgba(184, 3, 28, 0.40);
}
.quiz-opt-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE5E8, #FAF4DC);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(184, 3, 28, 0.14);
}
.quiz-opt-ico svg { width: 18px; height: 18px; }
.quiz-opt-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.quiz-opt-ico.has-png img {
  transform: scale(1.5);
  transform-origin: center;
}
.quiz-opt-tail {
  margin-left: auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 3, 28, 0.20);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: all .15s ease;
}
.quiz-opt.selected .quiz-opt-tail {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.quiz-opt-tail svg { width: 12px; height: 12px; }

.quiz-form { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.quiz-form .field { margin: 0; }
.quiz-form .file-drop { font-size: 13px; padding: 12px 14px; }
.quiz-summary {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(211, 13, 40, 0.06);
  border: 1px dashed rgba(184, 3, 28, 0.25);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.quiz-summary b { color: var(--ink); }
.quiz-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 26px;
  border-top: 1px solid rgba(122, 90, 58, 0.10);
  background: rgba(247, 242, 214, 0.5);
}
.quiz-back {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.quiz-back:hover { color: var(--brand); background: rgba(0,0,0,0.04); }
.quiz-back:disabled { opacity: 0; pointer-events: none; }
.quiz-next-wrap { display: flex; align-items: center; gap: 10px; }

.quiz-done {
  text-align: center;
  padding: 30px 10px 6px;
}
.quiz-done .form-success-ico { margin: 0 auto 18px; }
.quiz-done h3 { font-size: 22px; margin: 0 0 8px; font-weight: 800; }
.quiz-done p { color: var(--ink-soft); max-width: 380px; margin: 0 auto 18px; }
.quiz-done-row { display: flex; gap: 10px; justify-content: center; }

@media (max-width: 560px) {
  .quiz-modal { border-radius: 22px; max-height: calc(100vh - 16px); }
  .quiz-head, .quiz-foot { padding-left: 18px; padding-right: 18px; }
  .quiz-body { padding: 20px 18px; }
  .quiz-opts { grid-template-columns: 1fr; }
  .quiz-step-title { font-size: 19px; }
  .quiz-foot {
    flex-wrap: wrap;
    justify-content: stretch;
  }
  .quiz-next-wrap { width: 100%; }
  .quiz-next-wrap .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.25;
    padding: 12px 16px;
  }
}

/* ============= CATEGORIES ============= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.75) 0%, rgba(206, 216, 226, 0.30) 100%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 40px -16px rgba(184, 3, 28, 0.22);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 30px 60px -18px rgba(184, 3, 28, 0.32);
}
.cat-card-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: var(--r);
  background: #F7F2D6;
}
.cat-card-media .img-wrap { width: 100%; height: 100%; border-radius: var(--r); }
.cat-card-media img { transition: transform .6s ease; }
.cat-card:hover .cat-card-media img { transform: scale(1.05); }
.cat-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cat-card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.cat-card-pricetag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(211, 13, 40, 0.08);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  align-self: flex-start;
  letter-spacing: 0.005em;
}
.cat-card-pricetag svg { width: 13px; height: 13px; }
.cat-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex: 1;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--r);
  background: linear-gradient(135deg, #d30d28 0%, #b8031c 100%);
  border: 1px solid rgba(255, 253, 247, 0.20);
  color: #FFFDF7;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  align-self: stretch;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 12px 26px -10px rgba(184, 3, 28, 0.55);
}
.cat-card-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 18px 34px -10px rgba(184, 3, 28, 0.65);
}
.cat-card-cta svg { width: 14px; height: 14px; }

.cat-after {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.cat-after-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding: 20px 24px;
  border-radius: 22px;
  background: var(--milk);
  border: 1px dashed rgba(184, 3, 28, 0.30);
  box-shadow: var(--shadow-soft);
  max-width: 820px;
}
.cat-after-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
  flex: 1 1 280px;
  min-width: 240px;
}
.cat-after-text b { color: var(--ink); font-weight: 800; }

@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-after-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
  }
  .cat-after-text { min-width: 0; }
  .cat-after-bar .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.25;
    padding: 14px 18px;
  }
}

/* ============= AUDIENCE ============= */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.aud-card {
  padding: 28px 22px;
  border-radius: var(--radius-card);
  background: var(--milk);
  border: 1px solid rgba(47, 42, 36, 0.05);
  transition: all .25s ease;
  text-align: left;
}
.aud-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  border-color: rgba(184, 3, 28, 0.18);
}
.aud-ico {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cream), #FAF1C8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand-deep);
  border: 1px solid rgba(184, 3, 28, 0.12);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.aud-card:hover .aud-ico { transform: rotate(-5deg) scale(1.06); }
.aud-ico svg { width: 36px; height: 36px; }
.aud-card h3 { font-size: 16px; margin: 0 0 6px; font-weight: 800; line-height: 1.2; }
.aud-card p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.45; }

.aud-after {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  text-align: center;
}
.aud-after-text {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 600;
}

@media (max-width: 1024px) { .aud-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .aud-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= WHY ============= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  padding: 30px 26px;
  border-radius: var(--radius-card);
  background: rgba(255, 253, 247, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 13, 40, 0.10), transparent 70%);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.25;
}
.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============= ABOUT ============= */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.stat-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, #FFFDF7 0%, #FBF6E8 100%);
  border: 1.5px solid rgba(184, 3, 28, 0.16);
  box-shadow: 0 20px 38px -16px rgba(184, 3, 28, 0.22);
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, #d30d28 0%, #b8031c 100%);
  -webkit-background-clip: text;
          background-clip: text;
  line-height: 1;
  letter-spacing: -0.025em;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 600;
}
.about-marketplaces {
  margin: 24px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-marketplaces-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-marketplaces-list { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--milk);
  border: 1px solid rgba(184, 3, 28, 0.18);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.mp-pill-wb { background: #ae2573; color: #fff; border-color: transparent; }
.mp-pill-ozon { background: #005bff; color: #fff; border-color: transparent; }
.mp-pill-ym {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fc3f1d; color: #fff; border-color: transparent;
}
.mp-pill-ym::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffcc00;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.30);
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1;
}
.about-visual > .img-wrap {
  border-radius: 24px;
  overflow: hidden;
}
.about-visual > .img-wrap:nth-child(1) { grid-row: span 2; }

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

/* ============= GALLERY (red) ============= */
.gallery-section {
  background: #d30d28;
  color: #F7F2D6;
}
.gallery-section .eyebrow {
  background: rgba(255, 253, 247, 0.16);
  color: #FFFDF7;
}
.gallery-section h2 { color: #F7F2D6; }
.gallery-section h2 .h2-accent { color: #FFFDF7; }
.gallery-section .section-sub { color: rgba(247, 242, 214, 0.86); }

.gal-wrap {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 22px;
  align-items: stretch;
}
.gal-left {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: 600px;
}
.gal-left .gal-item { border-radius: 20px; overflow: hidden; }
.gal-left .gal-item .img-wrap { width: 100%; height: 100%; border-radius: 20px; }
.gal-left .gal-item img { transition: transform .55s ease; }
.gal-left .gal-item:hover img { transform: scale(1.06); }
.gal-left .gal-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gal-left .gal-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gal-left .gal-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.gal-left .gal-item:nth-child(4) { grid-column: 1; grid-row: 3; }
.gal-left .gal-item:nth-child(5) { grid-column: 2; grid-row: 3; }

.gal-video {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  width: 500px;
  height: 600px;
  background: #2F2A24;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  cursor: pointer;
}
.gal-video .img-wrap {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,253,247,0.04) 0 18px,
      rgba(255,253,247,0.02) 18px 36px),
    linear-gradient(180deg, #4A2125 0%, #2F2A24 100%);
}
.gal-video .img-wrap::after { color: rgba(255, 253, 247, 0.55); }
.gal-video::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.gal-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-deep);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.7);
  z-index: 3;
}
.gal-play-btn::before {
  content: '';
  position: absolute; inset: -18px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.25);
  z-index: -1;
  animation: playPulse 2.2s ease-in-out infinite;
}
.gal-play-btn svg { width: 36px; height: 36px; margin-left: 5px; }
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.25); opacity: 0; }
}
.gal-video-label {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  color: #FFFDF7;
  z-index: 3;
}
.gal-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.18);
  border: 1px solid rgba(255, 253, 247, 0.30);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gal-video-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFFDF7;
  animation: livePulse 1.8s ease-in-out infinite;
}
.gal-video-title { font-size: 22px; font-weight: 800; line-height: 1.25; margin: 0 0 4px; }
.gal-video-sub { font-size: 14px; color: rgba(255, 253, 247, 0.78); margin: 0; line-height: 1.45; }

.gal-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cases inside gallery */
.cases-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.08) 0%, rgba(255, 253, 247, 0.02) 100%);
  border: 1px solid rgba(255, 253, 247, 0.20);
  color: #F7F2D6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: all .25s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.12) 0%, rgba(255, 253, 247, 0.04) 100%);
  border-color: rgba(255, 253, 247, 0.40);
}
.case-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-card-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.15);
  border: 1px solid rgba(255, 253, 247, 0.25);
  color: #FFFDF7;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.case-card-title { font-size: 15px; font-weight: 800; color: #FFFDF7; line-height: 1.25; }
.case-card-sub { font-size: 12px; color: rgba(247, 242, 214, 0.65); margin-top: 2px; }
.case-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 12px;
  margin: 4px 0 2px;
}
.case-card-stat-v {
  font-size: 20px;
  font-weight: 800;
  color: #FFFDF7;
  line-height: 1;
}
.case-card-stat-l {
  font-size: 11px;
  color: rgba(247, 242, 214, 0.62);
  margin-top: 4px;
  font-weight: 600;
}
.case-card-text {
  font-size: 13.5px;
  color: rgba(247, 242, 214, 0.82);
  line-height: 1.5;
  margin: 0;
}
.case-card-foot {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}
.case-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.10);
  border: 1px solid rgba(255, 253, 247, 0.22);
  font-size: 11px;
  font-weight: 700;
  color: #FFFDF7;
}

@media (max-width: 1024px) {
  .gal-wrap { grid-template-columns: 1fr; }
  .gal-video { width: 100%; height: 420px; }
  .cases-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gal-left { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 140px); height: auto; }
}

/* ============= NDA STRIP ============= */
.nda-strip {
  background: linear-gradient(180deg, #2F2A24 0%, #3A312A 100%);
  color: rgba(247, 242, 214, 0.85);
  padding: 40px 0;
}
.nda-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.nda-mark {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d30d28 0%, #b8031c 100%);
  color: #FFFDF7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 18px 36px -10px rgba(184, 3, 28, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.nda-mark::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  border: 1px dashed rgba(255, 253, 247, 0.30);
  animation: ndaRotate 18s linear infinite;
}
@keyframes ndaRotate { to { transform: rotate(360deg); } }
.nda-mark svg { width: 36px; height: 36px; }
.nda-text { font-size: 15px; line-height: 1.55; }
.nda-text strong { color: #FFFDF7; font-weight: 800; font-size: 17px; display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
.nda-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.nda-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.20);
  color: rgba(247, 242, 214, 0.92);
  font-size: 12px;
  font-weight: 700;
}
.nda-tag svg { width: 12px; height: 12px; color: #20bd5a; }
.nda-action { flex-shrink: 0; }
@media (max-width: 880px) {
  .nda-wrap { grid-template-columns: 1fr; text-align: left; }
  .nda-action .btn { width: 100%; }
}

/* ============= STEPS ============= */
.steps-route { position: relative; padding: 24px 0 10px; }
.steps-line {
  position: absolute;
  top: 79px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(211, 13, 40, 0.65) 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.step:hover { transform: translateY(-4px); }
.step-bead {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: #FFFDF7;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  box-shadow:
    0 22px 44px -14px rgba(184, 3, 28, 0.32),
    0 6px 14px -8px rgba(184, 3, 28, 0.16),
    inset 0 0 0 1px rgba(211, 13, 40, 0.10);
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 2;
}
.step:hover .step-bead { transform: scale(1.05); }
.step-bead-ico {
  width: 50px; height: 50px;
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.step:hover .step-bead-ico { transform: scale(1.08); }
.step-bead-ico svg { width: 100%; height: 100%; }
.step-bead-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d30d28 0%, #b8031c 100%);
  color: #FFFDF7;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid #F7F2D6;
  box-shadow: 0 8px 18px -6px rgba(184, 3, 28, 0.60), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.step-card {
  width: 100%;
  flex: 1;
  padding: 22px 18px;
  min-height: 170px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.65) 0%, rgba(255, 253, 247, 0.40) 100%);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 30px -16px rgba(184, 3, 28, 0.20);
  transition: all .35s ease;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.step:hover .step-card {
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.85) 0%, rgba(255, 253, 247, 0.60) 100%);
  border-color: rgba(211, 13, 40, 0.25);
}
.step-card h4 { font-size: 16px; font-weight: 800; margin: 0 0 8px; line-height: 1.2; }
.step-time {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(211, 13, 40, 0.10);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 10px;
}
.step-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

.steps-after {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.steps-after-text { font-size: 16px; color: var(--ink-soft); font-weight: 600; }

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 18px; }
  .steps-line { display: none; }
}
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr 1fr; } }

/* ============= DOCS ============= */
.docs-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 980px) {
  .docs-split { grid-template-columns: 1fr 1.05fr; gap: 36px; }
}
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.doc-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.92) 0%, rgba(255, 253, 247, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 22px 44px -20px rgba(184, 3, 28, 0.22);
  transition: all .3s ease;
  overflow: hidden;
}
.doc-card::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 13, 40, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.doc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(211, 13, 40, 0.25);
}
.doc-ico {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFE5E8 0%, #FAF4DC 100%);
  border: 1.5px solid rgba(211, 13, 40, 0.20);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.doc-card:hover .doc-ico { transform: rotate(-6deg) scale(1.06); }
.doc-ico svg { width: 26px; height: 26px; }
.doc-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; line-height: 1.25; }
.doc-card p { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

.docs-visual {
  position: relative;
  padding: 40px 30px 80px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 0%, rgba(211, 13, 40, 0.10), transparent 55%),
    linear-gradient(160deg, var(--cream) 0%, var(--beige) 100%);
  min-height: 480px;
  overflow: hidden;
}
.docs-paper {
  position: absolute;
  background: var(--milk);
  border-radius: 6px;
  box-shadow: 0 18px 40px -16px rgba(122, 90, 58, 0.35);
}
.docs-paper-back {
  top: 26px; right: 18px; left: 56px; bottom: 96px;
  transform: rotate(3deg);
  opacity: 0.55;
}
.docs-paper-mid {
  top: 36px; right: 32px; left: 40px; bottom: 86px;
  transform: rotate(-2deg);
  opacity: 0.85;
}
.docs-paper-front {
  position: relative;
  margin: 0 auto;
  width: min(420px, 92%);
  padding: 26px 26px 22px;
  border: 1px solid rgba(122, 90, 58, 0.15);
  box-shadow: 0 30px 60px -18px rgba(122, 90, 58, 0.40);
  z-index: 2;
}
.docs-paper-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122, 90, 58, 0.18);
  margin-bottom: 14px;
}
.docs-paper-logo { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; color: var(--brand-deep); }
.docs-paper-no { font-size: 9.5px; font-weight: 600; color: var(--muted); }
.docs-paper-title { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.docs-paper-sub { font-size: 11px; line-height: 1.4; color: var(--ink-soft); margin-bottom: 14px; }
.docs-paper-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.docs-paper-row { display: flex; justify-content: space-between; gap: 14px; font-size: 11px; line-height: 1.35; }
.docs-paper-row span { color: var(--muted); }
.docs-paper-row b { color: var(--ink); font-weight: 700; text-align: right; }
.docs-paper-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 1px dashed rgba(122, 90, 58, 0.25);
}
.docs-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  color: var(--brand);
  transform: rotate(-12deg);
  line-height: 1;
  background: rgba(211, 13, 40, 0.04);
}
.docs-stamp span { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; }
.docs-stamp strong { font-size: 13px; font-weight: 900; margin-top: 4px; }
.docs-paper-blur {
  font-family: 'Courier New', monospace;
  color: rgba(122, 90, 58, 0.35);
  letter-spacing: 4px;
  font-size: 14px;
}
.docs-badges {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  z-index: 3;
}
.docs-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--milk);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.25);
}
.docs-badge-cz { background: var(--brand); }

.docs-cta {
  margin-top: 36px;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.96) 0%, rgba(247, 242, 214, 0.85) 100%);
  border: 1.5px solid rgba(211, 13, 40, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 26px 56px -22px rgba(184, 3, 28, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.docs-cta-text { flex: 1; min-width: 280px; }
.docs-cta-text h4 { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: var(--ink); }
.docs-cta-text p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.docs-cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 880px) {
  .docs-grid { grid-template-columns: 1fr 1fr; }
  .docs-cta { flex-direction: column; align-items: stretch; text-align: left; padding: 24px; }
}
@media (max-width: 420px) { .docs-grid { grid-template-columns: 1fr; } }

/* ============= FAQ + FINAL CTA ============= */
.faq-merged {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 980px) {
  .faq-merged { grid-template-columns: 1.15fr 1fr; gap: 40px; }
}
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(160deg, #FFFDF7 0%, #FBEDEE 100%);
  border: 1.5px solid rgba(184, 3, 28, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 16px 32px -16px rgba(184, 3, 28, 0.22);
  transition: all .35s ease;
}
.faq-item:hover {
  border-color: rgba(184, 3, 28, 0.25);
  transform: translateY(-2px);
}
.faq-item.open {
  background: linear-gradient(160deg, #FFFDF7 0%, #F7F2D6 100%);
  border-color: rgba(211, 13, 40, 0.35);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.faq-q-ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(247, 242, 214, 0.95), rgba(255, 253, 247, 0.85));
  border: 1px solid rgba(211, 13, 40, 0.22);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
  transition: all .45s cubic-bezier(.4, 0, .2, 1);
}
.faq-q-ico svg { width: 16px; height: 16px; }
.faq-item.open .faq-q-ico {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #d30d28, #b8031c);
  color: #FFFDF7;
  border-color: transparent;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .55s cubic-bezier(.4, 0, .2, 1), opacity .35s ease, padding .35s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
  opacity: 1;
}
.faq-a p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Final CTA - sticky on right */
.final-cta {
  padding: 44px 38px;
  border-radius: 32px;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255,253,247, 0.5), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(247, 242, 214, 0.6), transparent 70%),
    linear-gradient(135deg, #E03242 0%, #B45959 100%);
  color: var(--milk);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(184, 3, 28, 0.6);
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.10);
}
.final-cta::before { width: 320px; height: 320px; top: -120px; left: -120px; }
.final-cta::after { width: 260px; height: 260px; bottom: -100px; right: -80px; }
.final-cta h2 {
  color: var(--milk);
  position: relative;
  z-index: 2;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  margin: 14px 0 18px;
}
.final-cta-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.18);
  border: 1px solid rgba(255, 253, 247, 0.32);
  color: #FFFDF7;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.final-cta-live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFFDF7;
  animation: livePulse 1.8s ease-in-out infinite;
}
.final-cta-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.final-cta-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 253, 247, 0.92);
  font-size: 15px;
  line-height: 1.45;
}
.final-cta-perks li b { color: var(--milk); font-weight: 800; }
.fcp-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--milk);
  box-shadow: 0 0 0 4px rgba(255, 253, 247, 0.18);
}
.final-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.final-cta .btn-primary {
  background: var(--milk);
  color: var(--brand);
  box-shadow: 0 16px 36px -10px rgba(0,0,0,0.18);
}
.final-cta .btn-primary:hover { background: white; }
.final-cta .btn-primary::before { display: none; }
.final-cta .btn-primary .cta-arrow { background: rgba(211, 13, 40, 0.10); color: var(--brand); border-color: rgba(211, 13, 40, 0.15); }
@media (min-width: 980px) {
  .final-cta { position: sticky; top: 100px; }
}

/* ============= FOOTER ============= */
.footer {
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(184, 3, 28, 0.15), transparent 60%),
    #3A312A;
  color: rgba(247, 242, 214, 0.72);
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 32px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(247, 242, 214, 0.12);
}
.footer-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 253, 247, 0.85);
  max-width: 760px;
  margin: 0;
}
.footer-bot {
  padding-top: 6px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(247, 242, 214, 0.55);
}
.footer-bot a { color: rgba(247, 242, 214, 0.75); }
.footer-bot a:hover { color: var(--brand-soft); }
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; gap: 20px; align-items: flex-start; }
}

/* ============= FLOATING CTAS ============= */
.floating-ctas {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px -10px rgba(0,0,0,0.3);
  transition: all .2s ease;
  color: white;
  position: relative;
}
.float-btn.wa {
  background: linear-gradient(135deg, #FFFDF7 0%, #F7F2D6 100%);
  color: var(--brand-deep);
  border: 1.5px solid rgba(184, 3, 28, 0.35);
  animation: pulseRed 2.4s infinite;
}
.float-btn.tg {
  background: #d30d28;
  color: #FFFDF7;
  border: 1px solid rgba(255,255,255,0.18);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(184, 3, 28, 0.45), 0 16px 36px -10px rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 18px rgba(184, 3, 28, 0), 0 16px 36px -10px rgba(0,0,0,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(184, 3, 28, 0), 0 16px 36px -10px rgba(0,0,0,0.3); }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(47, 42, 36, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.mobile-menu.open { display: block; opacity: 1; }
.mobile-menu-panel {
  position: absolute;
  top: 14px; right: 14px; left: 14px;
  background: var(--milk);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  max-height: calc(100vh - 28px);
  overflow-y: auto;
}
.mobile-menu .nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
}
.mobile-menu .nav-mobile a {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: background .15s ease;
}
.mobile-menu .nav-mobile a:hover { background: var(--cream); }
.mobile-menu-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(47, 42, 36, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: auto;
}
.mobile-menu-close svg { width: 24px; height: 24px; }

/* Anchor scroll offset */
section[id] { scroll-margin-top: 90px; }
