/* ===== Made Glow v2 — AI-first homepage ===== */

/* ============ HERO ============ */
.hero-v2 {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #FDF9F6 0%, #FDECF6 40%, #FDF9F6 100%);
}
.hero-ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-ambient .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: float 12s ease-in-out infinite; }
.hero-ambient .b1 { top: -100px; left: 5%; width: 520px; height: 520px; background: #F584CB; }
.hero-ambient .b2 { top: 180px; right: -80px; width: 600px; height: 600px; background: #B9C5F4; animation-delay: 3s; }
.hero-ambient .b3 { bottom: -100px; left: 35%; width: 420px; height: 420px; background: #FCD8B4; animation-delay: 6s; }
.hero-ambient .noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.4; mix-blend-mode: overlay;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.06); }
}

.hero-inner { position: relative; z-index: 2; text-align: center; }

.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 9999px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  font-size: 13px; color: var(--mg-ink);
  margin-bottom: 40px;
  box-shadow: 0 2px 20px rgba(99,84,165,0.08);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.mega {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  color: var(--mg-ink-strong);
  text-transform: uppercase;
}
.mega .line { display: block; }
.gradient-text {
  background: linear-gradient(135deg, #F584CB 0%, #6354A5 50%, #11CAFB 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bigscript {
  font-family: 'Caveat', cursive !important;
  font-size: 0.88em !important;
  color: var(--mg-pink) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  display: inline-block;
  transform: rotate(-3deg) translateY(-8px);
  font-weight: 600;
}

.hero-lede {
  max-width: 680px; margin: 0 auto 48px;
  font-size: 20px; line-height: 1.6;
  color: var(--mg-body);
}

/* AI command bar */
.ai-command {
  max-width: 820px; margin: 0 auto 40px;
  text-align: left; position: relative;
}
.ai-bar {
  display: flex; align-items: center; gap: 0;
  background: #fff;
  border-radius: 9999px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 24px 60px rgba(99,84,165,0.18), 0 2px 0 rgba(255,255,255,0.8) inset;
  border: 1px solid rgba(245,132,203,0.3);
  position: relative;
  overflow: hidden;
}
.ai-bar::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from var(--rot, 0deg), transparent 0 250deg, #F584CB 270deg, #6354A5 320deg, transparent 360deg);
  border-radius: 9999px; z-index: -1;
  animation: spin 6s linear infinite;
}
@keyframes spin { to { --rot: 360deg; transform: rotate(360deg); } }
@property --rot { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.ai-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #F584CB, #6354A5);
  color: #fff; display: grid; place-items: center;
  font-size: 16px; flex-shrink: 0;
  margin-right: 12px;
}
.ai-input {
  flex: 1; min-width: 0;
  border: 0; outline: 0;
  background: transparent;
  font-family: 'Fira Sans', sans-serif;
  font-size: 17px; color: var(--mg-ink);
  padding: 10px 0;
}
.ai-input::placeholder { color: #A8A39E; }

.ai-voice, .ai-cam {
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: #F8F4FF;
  color: var(--mg-purple); cursor: pointer;
  display: grid; place-items: center;
  font-size: 14px; margin-right: 6px;
  transition: all 0.2s;
}
.ai-voice:hover, .ai-cam:hover { background: #EDE9FA; transform: scale(1.05); }

.ai-go {
  border: 0; cursor: pointer;
  background: linear-gradient(135deg, #F584CB, #6354A5);
  color: #fff;
  padding: 14px 26px;
  border-radius: 9999px;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(99,84,165,0.3);
  transition: all 0.2s;
}
.ai-go:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(99,84,165,0.4); }
.ai-go i { font-size: 11px; }

.ai-suggest {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.ai-suggest .lbl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--mg-body); opacity: 0.7;
}
.chip {
  padding: 8px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(245,132,203,0.3);
  border-radius: 9999px;
  font-size: 13px; color: var(--mg-ink);
  cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.chip:hover { background: #fff; border-color: #F584CB; color: var(--mg-magenta); transform: translateY(-1px); }

/* Results panel */
.ai-results {
  margin-top: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(99,84,165,0.15);
  border: 1px solid rgba(245,132,203,0.2);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.ai-results-head {
  padding: 0 6px 14px;
  border-bottom: 1px solid var(--mg-border);
  margin-bottom: 16px;
}
.thinking {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--mg-body);
}
.tdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mg-pink); animation: tpulse 1.2s ease-in-out infinite;
}
.tdot:nth-child(2) { animation-delay: 0.2s; }
.tdot:nth-child(3) { animation-delay: 0.4s; }
@keyframes tpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

.ai-results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.ai-match {
  padding: 14px; border-radius: 14px;
  background: #FDF9F6;
  border: 1px solid var(--mg-border);
  transition: all 0.2s; cursor: pointer;
  text-align: left;
  animation: matchIn 0.5s ease backwards;
}
.ai-match:nth-child(1) { animation-delay: 0.1s; }
.ai-match:nth-child(2) { animation-delay: 0.25s; }
.ai-match:nth-child(3) { animation-delay: 0.4s; }
@keyframes matchIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.ai-match:hover { border-color: #F584CB; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(99,84,165,0.1); }
.ai-match-top { display: flex; gap: 10px; margin-bottom: 10px; align-items: center; }
.ai-match-av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.ai-match-nm { font-weight: 600; color: var(--mg-ink-strong); font-size: 13px; line-height: 1.2; }
.ai-match-mt { font-size: 11px; color: var(--mg-body); margin-top: 2px; }
.ai-match-pct {
  padding: 3px 8px; border-radius: 9999px;
  background: linear-gradient(135deg, #F584CB, #6354A5);
  color: #fff; font-size: 10px; font-weight: 700;
  margin-left: auto;
}
.ai-match-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid var(--mg-border);
}
.ai-match-price { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--mg-pink); letter-spacing: 0.02em; }
.ai-match-book {
  padding: 6px 14px; border-radius: 9999px;
  background: var(--mg-ink); color: #fff;
  border: 0; font-size: 11px; font-weight: 600; cursor: pointer;
}

/* Hero trust */
.hero-trust {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  font-size: 13px; color: var(--mg-body);
  flex-wrap: wrap;
}
.trust-stars { color: #F584CB; font-size: 14px; letter-spacing: 0.1em; }
.trust-stars span { color: var(--mg-body); font-size: 13px; margin-left: 6px; letter-spacing: 0; }
.sep { opacity: 0.4; }

/* Hero ticker */
.hero-ticker {
  margin-top: 80px;
  border-top: 1px solid rgba(99,84,165,0.1);
  border-bottom: 1px solid rgba(99,84,165,0.1);
  padding: 24px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: inline-flex; gap: 60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.14em;
  color: var(--mg-ink-strong);
  white-space: nowrap;
  animation: ticker 36s linear infinite;
}
.ticker-track span { opacity: 0.7; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ GLOW INTELLIGENCE ============ */
.ai-showcase {
  padding: 140px 0;
  background: #FDF9F6;
}
.ai-head { text-align: center; margin-bottom: 70px; max-width: 820px; margin-left: auto; margin-right: auto; }
.ai-head .eyebrow { margin-bottom: 22px; }
.h-xl { font-size: clamp(48px, 7vw, 96px) !important; margin-bottom: 22px; }
.big-lead { font-size: 20px !important; max-width: 640px; margin: 0 auto; }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 18px;
}
.cell {
  position: relative;
  border-radius: 28px;
  padding: 36px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cell:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(99,84,165,0.12); }
.cell-chip {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0,0,0,0.06);
  border-radius: 9999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  width: fit-content;
}
.cell-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px !important;
  line-height: 1 !important;
  margin-bottom: 14px !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase;
}
.cell-p {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 20px !important;
}

.cell-lg { grid-column: span 2; }
.cell-wide { grid-column: span 3; }

.cell-pink { background: linear-gradient(135deg, #FDECF6 0%, #FCE0EE 100%); }
.cell-peach { background: linear-gradient(135deg, #FFE8D3 0%, #FCD8B4 100%); }
.cell-cream { background: linear-gradient(135deg, #FDF4ED 0%, #F5E6D9 100%); }
.cell-purple { background: linear-gradient(135deg, #EDE9FA 0%, #D9C6F9 100%); }
.cell-dark { background: var(--mg-ink); color: #fff; }
.cell-dark .cell-chip { background: rgba(255,255,255,0.12); color: #fff; }
.cell-dark .cell-h { color: #fff !important; }
.cell-dark .cell-p { color: rgba(255,255,255,0.75) !important; }
.cell-ink { background: linear-gradient(135deg, #1a1423 0%, #2a1e3a 100%); color: #fff; }
.cell-ink .cell-chip { background: rgba(255,255,255,0.08); }
.cell-ink .cell-h { color: #fff !important; }
.cell-ink .cell-p { color: rgba(255,255,255,0.75) !important; }

/* photo match demo */
.photo-match-demo {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 12px; align-items: center;
}
.pm-img {
  aspect-ratio: 4/5;
  border-radius: 14px;
  background: linear-gradient(180deg, #C8A06F 0%, #8B5E3C 60%, #6B3E24 100%);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.pm-tag {
  position: absolute; top: 8px; left: 8px;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.9); color: var(--mg-ink);
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
}
.pm-swatches {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  display: flex; gap: 4px;
}
.pm-swatches span {
  flex: 1; height: 16px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.9);
}
.pm-arrow {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #F584CB, #6354A5);
  color: #fff; font-size: 14px;
}
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pm-match {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #F584CB, #FCD8B4);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.pm-match:nth-child(2) { background: linear-gradient(135deg, #B9C5F4, #F584CB); }
.pm-match:nth-child(3) { background: linear-gradient(135deg, #FCD8B4, #D9C6F9); }
.pm-match:nth-child(4) { background: linear-gradient(135deg, #D9C6F9, #B9C5F4); }
.pm-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #fff;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 9999px;
  letter-spacing: 0.02em;
}

/* try on */
.tryon {
  margin-top: auto;
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(180deg, #2a1e3a, #1a1423);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.tryon-face {
  position: absolute; inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #D8B7A1 0%, #A88573 80%);
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.4);
}
.tryon-face::before {
  content: ''; position: absolute; inset: -15% -5% 30% -5%;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(180deg, #C8A06F 0%, #8B5E3C 100%);
  animation: hairFlash 4s infinite;
}
@keyframes hairFlash {
  0%, 100% { background: linear-gradient(180deg, #C8A06F 0%, #8B5E3C 100%); }
  33% { background: linear-gradient(180deg, #E8B8D8 0%, #B87EA3 100%); }
  66% { background: linear-gradient(180deg, #A8B8D8 0%, #7085B3 100%); }
}
.tryon-scan {
  position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #F584CB, transparent);
  box-shadow: 0 0 20px #F584CB;
  animation: scan 3s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 10%; } 50% { top: 85%; } }
.tryon-ui { position: absolute; bottom: 16px; left: 16px; right: 16px; }
.tryon-palette {
  display: flex; gap: 6px; justify-content: center;
  padding: 8px; border-radius: 9999px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
}
.tryon-palette span {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}
.tryon-palette span.active { border-color: #F584CB; transform: scale(1.15); }

/* rebook calendar */
.rebook-calendar {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.rbk-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px; align-items: center;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.5);
  font-size: 11px;
}
.rbk-row.live {
  background: linear-gradient(135deg, #F584CB, #6354A5);
  color: #fff;
  box-shadow: 0 6px 18px rgba(99,84,165,0.25);
}
.rbk-row.live .rbk-bar { background: rgba(255,255,255,0.4); }
.rbk-date { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; font-size: 12px; font-weight: 600; }
.rbk-bar { height: 6px; border-radius: 3px; background: var(--mg-purple); opacity: 0.3; }
.rbk-row.live .rbk-bar { opacity: 1; }
.rbk-tag { font-size: 10px; opacity: 0.75; }

/* concierge chat */
.concierge-chat {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  max-width: 680px;
}
.cc-msg {
  padding: 12px 16px; border-radius: 16px;
  font-size: 14px; max-width: 75%;
  line-height: 1.45;
}
.cc-user { background: rgba(255,255,255,0.08); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.cc-ai {
  background: linear-gradient(135deg, #F584CB, #6354A5); color: #fff;
  align-self: flex-start; border-bottom-left-radius: 4px;
  display: flex; gap: 8px; align-items: flex-start;
}
.cc-ai-icon { font-size: 14px; margin-top: 2px; }
.cc-suggestions { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.cc-chip {
  padding: 6px 12px; border-radius: 9999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px; color: #fff;
}

/* ============ HOW V2 ============ */
.how-v2 { padding: 140px 0; background: #fff; }
.section-head.center { text-align: center; margin-bottom: 70px; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
.section-head.split .eyebrow { margin-bottom: 16px; }

.steps-v2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 70px;
}
.step-v2 {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-v2-num {
  position: absolute; top: 0; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(99,84,165,0.06);
  line-height: 1; pointer-events: none;
  z-index: 0;
}
.step-v2-icon {
  width: 100px; height: 100px; border-radius: 24px;
  display: grid; place-items: center;
  font-size: 36px; color: var(--mg-ink);
  margin: 0 auto 22px;
  position: relative; z-index: 1;
}
.step-v2 h3 { font-size: 36px !important; margin-bottom: 8px; position: relative; z-index: 1; }
.step-v2 p { font-size: 15px; position: relative; z-index: 1; }
.step-v2-arrow { font-size: 32px; color: var(--mg-pink); font-family: sans-serif; }

/* live demo */
.how-demo {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, #FDECF6, #EDE9FA);
  border-radius: 28px; padding: 32px;
}
.how-demo-inner {
  display: grid; grid-template-columns: 1fr auto 1.2fr;
  gap: 20px; align-items: center;
}
.hd-col-input, .hd-col-output { background: #fff; border-radius: 18px; padding: 20px; }
.hd-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--mg-body); margin-bottom: 10px;
}
.hd-input {
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px; color: var(--mg-ink-strong);
  padding: 10px 14px; background: #FDF9F6;
  border-radius: 10px;
  border-left: 3px solid #F584CB;
}
.hd-arrow { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; font-size: 18px; color: var(--mg-pink); position: relative; }
.hd-arrow::after {
  content: '→'; font-family: sans-serif;
}
.hd-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #F584CB; animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.3); } }
.hd-result {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 12px;
  background: #FDF9F6;
  border: 1px solid var(--mg-border);
}
.hd-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.hd-result-body { flex: 1; }
.hd-name { font-weight: 600; color: var(--mg-ink-strong); font-size: 14px; }
.hd-meta { font-size: 12px; color: var(--mg-body); margin-top: 2px; }
.hd-meta strong { color: var(--mg-pink); }
.hd-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--mg-pink); letter-spacing: 0.02em; }
.hd-time {
  text-align: center; margin-top: 12px;
  font-size: 11px; color: var(--mg-body);
  letter-spacing: 0.08em;
}

/* ============ CATEGORIES V2 ============ */
.cats-v2 { padding: 140px 0; background: #FDF9F6; }
.arrow-link { color: var(--mg-purple); font-size: 20px; }
.cat-grid-v2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-v2 {
  position: relative; overflow: hidden;
  border-radius: 28px;
  padding: 36px 28px;
  min-height: 340px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease;
  text-decoration: none;
  isolation: isolate;
}
.cat-v2:hover { transform: translateY(-6px); }
.cat-v2-bg { position: absolute; inset: 0; z-index: -2; opacity: 0.6; }
.cat-v2::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, #fff 100%);
}
.cat-v2-icon { width: 110px; height: 110px; object-fit: contain; margin-bottom: auto; }
.cat-v2-body h3 {
  font-size: 38px !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 8px !important;
  color: var(--mg-ink-strong) !important;
}
.cat-v2-body p {
  font-size: 13px; color: var(--mg-body); margin-bottom: 14px;
}
.cat-v2-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--mg-border);
  font-size: 12px; color: var(--mg-body);
}
.cat-v2-meta strong { color: var(--mg-pink); font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 0.02em; }

/* ============ NUMBERS V2 ============ */
.numbers-v2 {
  padding: 140px 0;
  background: linear-gradient(135deg, #F584CB 0%, #6354A5 50%, #11CAFB 100%);
  color: #fff;
  border-radius: 32px 32px 0 0;
}
.nv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.nv-cell { display: flex; flex-direction: column; align-items: center; }
.nv-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 11vw, 160px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  display: inline-block;
}
.nv-cell { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 4px; align-items: baseline; }
.nv-cell .nv-label { flex: 1 0 100%; margin-top: 16px; }
.nv-sfx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  color: rgba(255,255,255,0.7);
  line-height: 1;
}
.nv-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* ============ FOR PROS V2 ============ */
.pros-v2 {
  position: relative; overflow: hidden;
  padding: 140px 0;
  background: var(--mg-ink);
  color: #fff;
}
.pros-ambient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,132,203,0.3), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(99,84,165,0.4), transparent 50%);
}
.pros-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.pros-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 36px; max-width: 540px;
}
.ps-cell {
  padding: 18px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ps-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 0.02em; line-height: 1; color: #fff; }
.ps-lbl { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }

.pro-dash {
  background: #fff; border-radius: 24px; padding: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  color: var(--mg-ink);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}
.pd-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pd-sup { font-family: 'Caveat', cursive; font-size: 22px; color: var(--mg-pink); line-height: 1; }
.pd-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.02em; color: var(--mg-ink-strong); }
.pd-badge { padding: 6px 12px; border-radius: 9999px; background: #FDECF6; color: var(--mg-magenta); font-size: 11px; font-weight: 600; }
.pd-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.pd-s { padding: 14px; border-radius: 14px; background: #F1EDE8; }
.pd-s-pink { background: linear-gradient(135deg, #F584CB, #6354A5); color: #fff; }
.pd-s-lbl { font-size: 10px; letter-spacing: 0.08em; opacity: 0.85; }
.pd-s-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.02em; color: inherit; line-height: 1; margin-top: 4px; }
.pd-s:not(.pd-s-pink) .pd-s-num { color: var(--mg-ink-strong); }
.pd-next { padding: 16px; border-radius: 14px; border: 1px solid var(--mg-border); margin-bottom: 12px; }
.pd-next-head { font-size: 10px; letter-spacing: 0.1em; color: var(--mg-body); margin-bottom: 6px; }
.pd-next-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.02em; color: var(--mg-ink-strong); }
.pd-next-sub { font-size: 12px; color: var(--mg-body); margin-top: 2px; }
.pd-ai-line {
  padding: 10px 14px; border-radius: 12px;
  background: linear-gradient(135deg, #FDECF6, #EDE9FA);
  font-size: 12px; color: var(--mg-ink-strong);
  display: flex; align-items: center; gap: 8px;
}
.pd-ai-line i { color: var(--mg-pink); }

/* ============ TESTS V2 ============ */
.tests-v2 { padding: 140px 0; background: #FDF9F6; }
.test-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.tw-col { display: flex; flex-direction: column; gap: 20px; }
.tw-col-offset { padding-top: 40px; }
.tw-card {
  padding: 28px; border-radius: 24px;
  background: #fff; border: 1px solid var(--mg-border);
  transition: all 0.3s;
}
.tw-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(99,84,165,0.1); }
.tw-dark { background: var(--mg-ink); border-color: transparent; }
.tw-accent { background: linear-gradient(135deg, #FDECF6, #EDE9FA); border-color: transparent; }
.tw-tall { background: linear-gradient(135deg, #FCD8B4, #F584CB); border-color: transparent; color: #fff; }
.tw-tall p, .tw-tall b, .tw-tall small { color: #fff !important; }
.tw-stars { color: var(--mg-pink); margin-bottom: 14px; letter-spacing: 0.1em; }
.tw-card p { color: var(--mg-ink-strong); margin-bottom: 20px; }
.tw-big { font-family: 'Bebas Neue', sans-serif !important; font-size: 30px !important; line-height: 1.1 !important; letter-spacing: 0.01em; text-transform: uppercase; }
.tw-quote { font-family: 'Caveat', cursive; font-size: 80px; color: rgba(255,255,255,0.3); line-height: 0.5; margin-bottom: 12px; }
.tw-user { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mg-ink-strong); }
.tw-user span { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.tw-user small { color: var(--mg-body); }

/* ============ FAQ V2 ============ */
.faq-v2 { padding: 140px 0; background: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: #FDF9F6;
  border-radius: 18px;
  border: 1px solid var(--mg-border);
  padding: 20px 26px;
  transition: all 0.2s;
}
.faq-list details[open] { background: #fff; border-color: var(--mg-pink); box-shadow: 0 10px 30px rgba(245,132,203,0.12); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--mg-ink-strong);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { transition: transform 0.2s; color: var(--mg-pink); }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list p { margin-top: 14px; color: var(--mg-body); font-size: 15px; line-height: 1.6; }

/* ============ CTA V2 ============ */
.cta-v2 {
  position: relative; overflow: hidden;
  padding: 160px 0;
  background: linear-gradient(135deg, #F584CB 0%, #6354A5 50%, #11CAFB 100%);
  color: #fff;
  text-align: center;
}
.cta-ambient {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
}
.cta-ambient::before, .cta-ambient::after {
  content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
}
.cta-ambient::before { top: -100px; left: -100px; width: 500px; height: 500px; }
.cta-ambient::after { bottom: -150px; right: -100px; width: 600px; height: 600px; }

.cta-inner { position: relative; z-index: 2; }
.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 11vw, 180px);
  line-height: 0.92;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 0.01em;
}
.cta-p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-stores { display: flex; gap: 14px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; background: #000; color: #fff; border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}
.store:hover { transform: translateY(-2px); }
.store i { font-size: 30px; }
.store small { display: block; font-size: 10px; opacity: 0.7; letter-spacing: 0.08em; }
.store strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.04em; }

.cta-form {
  max-width: 440px; margin: 0 auto;
  display: flex; gap: 8px;
  background: #fff; border-radius: 12px; padding: 6px;
}
.cta-form input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 12px 18px;
  font-family: inherit; font-size: 14px;
  color: var(--mg-ink);
}
.cta-form button {
  padding: 12px 22px;
  background: var(--mg-ink); color: #fff;
  border: 0; border-radius: 8px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer;
}

/* ============ FOOTER ============ */
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.foot-grid h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; margin-bottom: 18px; }
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-grid a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.foot-grid a:hover { color: #fff; }
.social { width: 36px; height: 36px; border-radius: 18px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; }
.foot-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell-lg, .cell-wide { grid-column: span 2; }
  .cat-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .pros-grid { grid-template-columns: 1fr; }
  .test-wall { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-v2 { padding: 140px 0 60px; }
  .ai-bar { flex-wrap: wrap; border-radius: 24px; padding: 12px; }
  .ai-bar .ai-input { width: 100%; padding: 12px; }
  .ai-voice, .ai-cam { margin: 8px 6px 0 0; }
  .ai-go { width: 100%; margin-top: 10px; justify-content: center; padding: 14px; }
  .ai-results-grid { grid-template-columns: 1fr; }
  .bento, .cat-grid-v2 { grid-template-columns: 1fr; }
  .cell-lg, .cell-wide { grid-column: span 1; }
  .steps-v2 { grid-template-columns: 1fr; }
  .step-v2-arrow { display: none; }
  .how-demo-inner { grid-template-columns: 1fr; }
  .nv-grid { grid-template-columns: 1fr 1fr; }
  .test-wall { grid-template-columns: 1fr; }
  .tw-col-offset { padding-top: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pros-stats { grid-template-columns: 1fr; }
}
