/* =============================================================
   MumbaiChat.co.in -Global Stylesheet
   Dark, premium, Mumbai-nightlife theme (pink / magenta accents)
   ============================================================= */

:root {
  --bg: #0a0510;
  --bg-2: #120a1e;
  --bg-3: #180d28;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(236, 72, 153, 0.35);
  --text: #f4eefb;
  --muted: #b3a7c4;
  --muted-2: #8b7fa0;
  --pink: #ff2d78;
  --pink-2: #ec4899;
  --purple: #a855f7;
  --grad: linear-gradient(135deg, #ff2d78 0%, #b026ff 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,45,120,0.18), rgba(176,38,255,0.14));
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --maxw: 1200px;
  --font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(176, 38, 255, 0.14), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 45, 120, 0.12), transparent 45%);
}

body.home-page {
  --bg: #06000b;
  --bg-2: #0c0414;
  --bg-3: #160921;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 45, 120, 0.42);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --maxw: 1380px;
  background-image:
    radial-gradient(circle at 12% 6%, rgba(176, 38, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 45, 120, 0.14), transparent 38%),
    linear-gradient(180deg, #050009 0%, #090111 42%, #07000d 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
body.home-page .container { padding: 0 28px; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

.accent { color: var(--pink); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 45, 120, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 45, 120, 0.5); }
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--border-strong); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.home-page .btn { padding: 15px 30px; }
.home-page .btn-primary { box-shadow: 0 14px 34px rgba(255, 45, 120, 0.36); }
.home-page .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.home-page .btn-sm { padding: 9px 20px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 5, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.home-page .site-header {
  background: rgba(8, 0, 12, 0.9);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.home-page .nav { height: 78px; }
.brand { display: flex; align-items: center; gap: 9px; font-size: 1.35rem; font-weight: 800; }
.brand svg { width: 26px; height: 26px; }
.home-page .brand { gap: 12px; font-size: 1.62rem; font-weight: 900; letter-spacing: 0; }
.home-page .brand svg { width: 28px; height: 28px; filter: drop-shadow(0 0 14px rgba(255,45,120,0.55)); }
.brand span.tld { color: var(--pink); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.home-page .nav-links { gap: 18px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.94rem;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.home-page .nav-links > li > a { padding: 10px 8px; font-size: 1.02rem; font-weight: 650; }
.nav-links > li > a:hover { color: var(--text); background: var(--surface); }
.home-page .nav-links > li > a:hover { background: rgba(255,255,255,0.055); }

/* dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  list-style: none;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav-links > li:hover .dropdown-menu,
.nav-links > li:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.dropdown-menu a:hover { background: var(--grad-soft); color: var(--text); }
.caret { width: 10px; height: 10px; opacity: 0.7; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta-mobile { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 690px;
  padding: 118px 0 150px;
  overflow: hidden;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/hero.png') center right / cover no-repeat;
  opacity: 0.95;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 88% 68% at 70% 42%, rgba(87, 30, 152, 0.18), transparent 62%),
    linear-gradient(90deg, rgba(5,0,10,0.95) 0%, rgba(8,1,17,0.82) 31%, rgba(9,1,22,0.38) 55%, rgba(7,0,12,0.1) 100%),
    linear-gradient(180deg, rgba(5,0,10,0.04) 0%, rgba(5,0,10,0.08) 66%, rgba(5,0,10,0.88) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: 560px;
  margin-left: clamp(48px, 6vw, 120px);
  margin-right: auto;
}
.hero h1 {
  font-size: clamp(2.35rem, 4.25vw, 4.05rem);
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.hero .lead {
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.72;
  color: #eadff4;
  margin: 0 0 26px;
  max-width: 560px;
}
.hero .trust-badges { justify-content: flex-start; }
.hero .hero-actions { justify-content: flex-start; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin: 22px 0 0; max-width: 520px; font-size: 0.96rem; color: #a99abd; }

/* generic page hero (interior pages) -centered, with optional background image */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-2), var(--bg));
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 85% at 50% 42%, rgba(10,5,16,0.5), transparent 72%),
    linear-gradient(180deg, rgba(10,5,16,0.9) 0%, rgba(10,5,16,0.58) 45%, rgba(10,5,16,0.88) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; justify-content: center; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--grad-soft);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--border-strong);
  margin-bottom: 16px;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); max-width: 800px; margin: 0 auto 16px; }
.page-hero p { font-size: 1.1rem; max-width: 680px; margin: 0 auto; color: #e0d6ef; }
.page-hero .hero-actions { margin-top: 24px; justify-content: center; }

/* ---------- Sections ---------- */
section { padding: 60px 0; }
section { padding: 76px 0; }
.hero + section {
  position: relative;
  z-index: 3;
  margin-top: -82px;
  padding-top: 0 !important;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head { max-width: 760px; margin: 0 auto 42px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; }
.section-head p { color: #aa9dbb; }

.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 38px 0 14px; }
.prose h3 { margin: 26px 0 10px; color: var(--text); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--pink-2); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--pink); }
.prose strong { color: var(--text); }

/* ---------- Stat bar ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin-top: 8px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.stat .num { font-size: 1.8rem; font-weight: 800; }
.stat .num.grad-text { display: inline-block; }
.stat .label { color: var(--muted); font-size: 0.92rem; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.home-page .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.home-page .card:hover { box-shadow: 0 22px 70px rgba(0,0,0,0.34); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.96rem; }

/* value bar -joined stat-style row (homepage) */
.value-bar {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(67, 18, 65, 0.72);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  gap: 0;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.06);
}
.value-bar .card {
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: center;
  position: relative;
  padding: 30px 26px;
}
.value-bar .card:hover { transform: none; background: transparent; }
.value-bar .card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: var(--border);
}

/* room card with image */
.room-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.home-page .room-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03));
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.room-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.home-page .room-card:hover { box-shadow: 0 24px 70px rgba(0,0,0,0.38); }
.room-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.room-card:hover .thumb img { transform: scale(1.06); }
.room-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,16,0.7), transparent 55%);
}
.room-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.room-card h3 { font-size: 1.12rem; }
.room-card p { font-size: 0.92rem; flex: 1; }
.room-card .btn { align-self: flex-start; }

/* feature (icon) cards */
.feature { text-align: center; padding: 26px 20px; }
.feature .icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 45, 120, 0.08);
  border: 1.5px solid var(--border-strong);
}
.feature .icon {
  background: radial-gradient(circle, rgba(255, 45, 120, 0.22), rgba(176, 38, 255, 0.08));
  box-shadow: 0 0 28px rgba(255,45,120,0.12);
}
.feature .icon svg { width: 28px; height: 28px; color: var(--pink); }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { font-size: 0.93rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step { text-align: center; }
.step .step-icon {
  width: 74px; height: 74px; margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
}
.step .step-icon svg { width: 32px; height: 32px; color: var(--pink); }
.step h3 { color: var(--pink); margin-bottom: 6px; }
.step p { font-size: 0.95rem; }

/* horizontal flow */
.flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.flow-node {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 40px; padding: 12px 22px; font-weight: 600; color: var(--text);
}
.flow-arrow { color: var(--pink); font-size: 1.3rem; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial .who strong { display: block; font-size: 0.98rem; }
.testimonial .who span { font-size: 0.82rem; color: var(--muted-2); }
.testimonial p { font-size: 0.96rem; font-style: italic; }
.stars { color: #ffb020; margin-top: 12px; letter-spacing: 2px; }

/* ---------- Blog cards ---------- */
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.blog-card { background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03)); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; box-shadow: 0 18px 54px rgba(0,0,0,0.24); }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.blog-card:hover { box-shadow: 0 24px 70px rgba(0,0,0,0.36); }
.blog-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 18px 20px 22px; }
.blog-card .tag { display: inline-block; font-size: 0.74rem; font-weight: 600; color: var(--pink); background: var(--grad-soft); padding: 4px 11px; border-radius: 20px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.blog-card .read { color: var(--pink); font-weight: 600; font-size: 0.9rem; margin-top: 10px; display: inline-block; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
table.compare th, table.compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
table.compare thead th { background: var(--surface-2); color: var(--text); font-weight: 700; }
table.compare td { color: var(--muted); }
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child, table.compare th:first-child { color: var(--text); font-weight: 600; }

/* ---------- Checklist box ---------- */
.checklist-box {
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.checklist-box h3 { margin-bottom: 16px; }
.checklist-box ul { list-style: none; display: grid; gap: 12px; }
.checklist-box li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); }
.checklist-box li svg { width: 20px; height: 20px; color: var(--pink); flex-shrink: 0; margin-top: 3px; }

/* ---------- Profile / vibe cards ---------- */
.vibe-card { display: flex; gap: 16px; align-items: flex-start; }
.vibe-card .badge {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad); display: grid; place-items: center; font-weight: 800; color: #fff;
}
.vibe-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.vibe-card p { font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(176, 38, 255, 0.3);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.26); }

/* safety band */
.safety-band {
  background: linear-gradient(120deg, rgba(120,40,190,0.4), rgba(60,20,90,0.4));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.safety-band .shield { width: 60px; height: 60px; flex-shrink: 0; color: var(--pink); }
.safety-band .txt { flex: 1; min-width: 260px; }
.safety-band h3 { color: #fff; margin-bottom: 6px; }
.safety-band p { margin: 0; font-size: 0.96rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--pink); font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; margin: 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.86rem; color: var(--muted-2); padding: 18px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--pink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand p { font-size: 0.92rem; margin: 14px 0 18px; max-width: 300px; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--pink); }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); display: grid; place-items: center;
  color: var(--muted); transition: 0.2s;
}
.social a:hover { border-color: var(--pink); color: var(--pink); }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.86rem; color: var(--muted-2);
}
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--pink); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.section-alt { background: var(--bg-2); }
.section-alt {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,45,120,0.08), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(176,38,255,0.08), transparent 30%),
    var(--bg-2);
}
.tag-note { font-size: 0.85rem; color: var(--muted-2); }
.lead-callout {
  background: var(--surface); border-left: 3px solid var(--pink);
  border-radius: 10px; padding: 18px 22px; margin: 22px 0; color: var(--text);
}

/* ---------- Text links & link rows (used outside paragraphs) ---------- */
.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink); font-weight: 600; font-size: 0.92rem;
  transition: color 0.2s;
}
.text-link::after { content: "\2192"; transition: transform 0.2s; }
.text-link:hover { color: var(--pink-2); }
.text-link:hover::after { transform: translateX(3px); }

.link-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

.chip-links { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border: 1px solid var(--border); border-radius: 30px;
  font-size: 0.9rem; color: var(--muted); background: var(--surface); transition: 0.2s;
}
.chip-links a:hover { border-color: var(--border-strong); color: var(--text); background: var(--surface-2); }

/* ---------- Hero trust badges ---------- */
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.trust-badges span {
  font-size: 0.8rem; font-weight: 600; color: #eadff5;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--border-strong);
  padding: 6px 13px; border-radius: 30px;
}

/* ---------- Flex card (CTA pinned to bottom) ---------- */
.flex-card { display: flex; flex-direction: column; }
.flex-card p { margin-bottom: 14px; }
.flex-card .text-link, .flex-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Split two-column lists ---------- */
.split-list { list-style: none; margin: 14px 0 0; display: grid; gap: 10px; }
.split-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.split-list li::before {
  content: ""; width: 7px; height: 7px; margin-top: 8px;
  border-radius: 50%; background: var(--pink); flex-shrink: 0;
}

/* ---------- Area cards ---------- */
.area-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.area-card .meta { font-size: 0.86rem; color: var(--muted-2); margin: 3px 0; }
.area-card .meta strong { color: var(--text); font-weight: 600; }

/* ---------- Mini feature (compact) ---------- */
.mini { padding: 18px 20px; }
.mini h3 { font-size: 1rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.mini h3 svg { width: 18px; height: 18px; color: var(--pink); flex-shrink: 0; }
.mini p { font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .value-bar .card:nth-child(2n)::after { display: none; }
  .hero { min-height: 650px; padding: 98px 0 132px; }
  .hero-inner { max-width: 540px; margin-left: clamp(30px, 5vw, 64px); }
  .hero h1 { font-size: clamp(2.25rem, 6.6vw, 3.55rem); }
}
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 22px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .nav-links {
    top: 78px;
    max-height: calc(100vh - 78px);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li > a { padding: 13px 12px; font-size: 1rem; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 6px 14px;
    display: none;
  }
  .nav-links > li.open-sub .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 10px 12px; }
  .nav-cta > .btn { display: none; }
  .nav-cta-mobile { display: block; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
  .nav-cta-mobile a.btn { display: flex; justify-content: center; padding: 14px 26px; font-size: 0.98rem; }
  .hero::before { background-position: 62% center; opacity: 0.86; }
  .hero::after { background: linear-gradient(180deg, rgba(6,0,11,0.48) 0%, rgba(6,0,11,0.72) 48%, rgba(6,0,11,0.94) 100%); }
  .hero-inner { max-width: 100%; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .value-bar .card::after { display: none; }
  .value-bar { gap: 0; }
  .value-bar .card { border-bottom: 1px solid var(--border); }
  .value-bar .card:last-child { border-bottom: none; }
  .cta-band, .safety-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 46px 0; }
  section { padding: 52px 0; }
  .hero + section { margin-top: -54px; }
  .value-bar { max-width: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { height: 66px; }
  .brand { font-size: 1.2rem; }
  .brand svg { width: 22px; height: 22px; }
  .nav-links { top: 66px; max-height: calc(100vh - 66px); }
  .hero { min-height: 590px; padding: 76px 0 112px; }
  .hero-inner { margin-left: 0; }
  .hero h1 { font-size: 2.05rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero .lead { font-size: 0.98rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .value-bar .card { padding: 22px 18px; }
}

