/* ─────────────────────────────────────────────────────────
   Grow With Nino — sales funnel landing page
   Reference vibe: dark navy + electric accent (hackathon-style hype)
   Twist: emerald growth accent, glassmorphism, cursor glow
   ───────────────────────────────────────────────────────── */

:root {
  --bg: #02040c;
  --bg-2: #050a1a;
  --bg-3: #070f24;
  --bg-4: #0a1628;
  --surface: #0e1a33;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #ffffff;
  --text-muted: #9bb0c7;
  --text-dim: #6b7d94;

  --accent: #10b981;
  --accent-soft: #34d399;
  --accent-deep: #047857;

  --blue: #3080ff;
  --blue-soft: #54a2ff;
  --blue-deep: #1447e6;

  --purple: #8b5cf6;
  --purple-soft: #a78bfa;
  --red: #fb2c36;
  --amber: #f59e0b;

  --grad-hero: radial-gradient(ellipse at 20% 0%, rgba(16, 185, 129, 0.18), transparent 55%),
               radial-gradient(ellipse at 85% 10%, rgba(48, 128, 255, 0.18), transparent 55%),
               linear-gradient(180deg, #050a1a 0%, #02040c 100%);
  --grad-text: linear-gradient(135deg, #34d399 0%, #54a2ff 100%);
  --grad-text-warm: linear-gradient(135deg, #fbbf24 0%, #fb7185 100%);
  --grad-btn: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --grad-btn-hover: linear-gradient(135deg, #34d399 0%, #10b981 100%);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 12px 40px -12px rgba(0, 0, 0, 0.6),
                 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  --shadow-accent: 0 10px 40px -10px rgba(16, 185, 129, 0.45);

  --container: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Darker Grotesque', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── CURSOR GLOW ───── */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(48, 128, 255, 0.12) 35%, transparent 70%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}
.cursor-glow.active { opacity: 1; }
@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ───── GLASS UTILITY ───── */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 40px -12px rgba(0, 0, 0, 0.55);
}

/* ───── TOPBAR (countdown) ───── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, #1e0a3c 0%, #0a1628 50%, #1e0a3c 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease, margin-top 0.3s ease;
}
.topbar.hidden { transform: translateY(-100%); margin-top: -100px; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.topbar-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.countdown { display: inline-flex; gap: 8px; }
.countdown > span {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px; border-radius: 8px; min-width: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.countdown b { font-size: 16px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.countdown i { font-style: normal; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.topbar-cta {
  background: var(--accent); color: #02040c; padding: 6px 14px; border-radius: 999px;
  font-weight: 800; font-size: 13px;
}
.topbar-cta:hover { background: var(--accent-soft); }
.topbar-close {
  background: transparent; border: none; color: var(--text-muted);
  font-size: 22px; line-height: 1; padding: 0 4px;
}
.topbar-close:hover { color: var(--text); }

/* ───── NAV ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 4, 12, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-btn);
  color: #02040c;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-accent);
}
.brand-word { font-size: 19px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-links a {
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ───── BUTTONS ───── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  z-index: 2;
  cursor: pointer;
}
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 16px 28px; font-size: 18px; }
.btn-primary {
  background: var(--grad-btn);
  color: #02040c;
  box-shadow: var(--shadow-accent), 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: ctaBreathe 3.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent), 0 0 0 8px rgba(16, 185, 129, 0.15);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); }
.btn-block { width: 100%; }
.magnetic { will-change: transform; }
@keyframes ctaBreathe {
  0%, 100% { box-shadow: var(--shadow-accent), 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50%      { box-shadow: var(--shadow-accent), 0 0 0 12px rgba(16, 185, 129, 0); }
}

/* ───── HERO ───── */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.15), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(251, 44, 54, 0.1);
  border: 1px solid rgba(251, 44, 54, 0.3);
  color: #fda4a8;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.trust-item {
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-soft);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ───── TRUSTBAR ───── */
.trustbar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trustbar-label { text-align: center; color: var(--text-dim); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 18px; }
.trustbar-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 44px; color: var(--text-muted); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.trustbar-logos span { opacity: 0.7; transition: opacity 0.2s ease; }
.trustbar-logos span:hover { opacity: 1; color: var(--text); }

/* ───── SECTIONS ───── */
.section { padding: 100px 0; position: relative; z-index: 2; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(48, 128, 255, 0.08);
  border: 1px solid rgba(48, 128, 255, 0.25);
  color: var(--blue-soft);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.muted { color: var(--text-muted); }
.centerbtn { text-align: center; margin-top: 48px; }

/* ───── OFFERS ───── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.offer-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.7);
}
.offer-featured {
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  position: relative;
  z-index: 3;
}
.offer-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.offer-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tag-blue { background: rgba(48, 128, 255, 0.15); color: var(--blue-soft); border: 1px solid rgba(48, 128, 255, 0.3); }
.tag-emerald { background: rgba(16, 185, 129, 0.18); color: var(--accent-soft); border: 1px solid rgba(16, 185, 129, 0.4); }
.tag-purple { background: rgba(139, 92, 246, 0.18); color: var(--purple-soft); border: 1px solid rgba(139, 92, 246, 0.35); }
.offer-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.offer-price { margin-bottom: 18px; }
.price-amt { display: block; font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-amt small { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.price-meta { display: block; font-size: 14px; color: var(--text-dim); margin-top: 6px; }
.offer-pitch { color: var(--text-muted); margin: 0 0 20px; font-size: 16px; }
.offer-bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.offer-bullets li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text);
  font-size: 16px;
  border-top: 1px solid var(--border);
}
.offer-bullets li:first-child { border-top: none; }
.offer-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}
.offer-card .btn { margin-top: auto; }
.offer-fineprint { margin: 10px 0 0; font-size: 12px; color: var(--text-dim); text-align: center; }

.offers-help {
  margin-top: 48px;
  text-align: center;
  color: var(--text-muted);
  display: inline-flex;
  width: 100%;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
}
.offers-help a {
  color: var(--accent-soft);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.offers-help a:hover { border-color: var(--accent-soft); }
.offers-help .dot { color: var(--text-dim); }

/* ───── GRIDS / CARDS ───── */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.pillar-card,
.testimonial {
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar-card:hover,
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.pillar-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.pillar-card p {
  color: var(--text-muted);
  margin: 0;
}
.pillar-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ───── ABOUT ───── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo { position: sticky; top: 100px; }
.photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  padding: 4px;
  overflow: hidden;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(48, 128, 255, 0.18));
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--text-dim);
  text-align: center;
}
.photo-initials {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.photo-caption { font-size: 13px; letter-spacing: 0.05em; color: var(--text-muted); padding: 0 12px; }
.about-badges {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.badge {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
}
.about-copy h2 { font-size: clamp(32px, 4vw, 48px); }
.about-copy .kicker { font-size: 22px; padding: 0; background: none; border: none; color: var(--text); text-transform: none; letter-spacing: -0.01em; font-weight: 800; line-height: 1.2; }
.about-copy p { color: var(--text-muted); font-size: 18px; margin: 0 0 18px; }
.about-copy strong { color: var(--text); }
.pull-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: rgba(16, 185, 129, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

/* ───── STEPS ───── */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}
.step {
  padding: 32px;
  border-radius: var(--radius-lg);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-btn);
  color: #02040c;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.step h3 { font-size: 22px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.step p { color: var(--text-muted); margin: 0; }
.step-arrow {
  align-self: center;
  font-size: 32px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ───── TESTIMONIALS ───── */
.testimonial p {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.5;
}
.t-attr { display: flex; flex-direction: column; gap: 2px; }
.t-attr strong { color: var(--accent-soft); }
.t-attr span { color: var(--text-dim); font-size: 14px; }
.testimonials-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin: 40px 0 0;
}

/* ───── FAQ ───── */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(16, 185, 129, 0.4); }
.faq-item summary {
  padding: 20px 24px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
}
.faq-item p a { color: var(--accent-soft); border-bottom: 1px solid rgba(52, 211, 153, 0.4); }

/* ───── BOOK / FORM ───── */
.book-section {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}
.book-inner { position: relative; }
.book-glow {
  position: absolute;
  inset: -100px 0 auto 0;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(16, 185, 129, 0.18), transparent 70%);
  pointer-events: none;
}
.book-head { margin-bottom: 48px; }
.book-form {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-full { display: block; margin-bottom: 16px; }
.book-form label { display: block; }
.book-form label > span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.book-form label > span i { color: var(--text-dim); font-style: italic; font-weight: 500; }
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(2, 4, 12, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.book-form textarea { resize: vertical; min-height: 110px; }
.book-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.book-form select option { background: var(--bg-3); color: var(--text); }
.hp-field { position: absolute; left: -9999px; }
.btn-block { margin-top: 8px; }
.form-fineprint {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin: 16px 0 0;
}
.form-status { text-align: center; margin: 16px 0 0; font-weight: 600; }
.form-status.ok { color: var(--accent-soft); }
.form-status.err { color: var(--red); }

.book-fallback {
  text-align: center;
  margin-top: 56px;
  color: var(--text-muted);
}
.book-fallback p { margin: 0 0 14px; }

/* ───── FOOTER ───── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 56px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-tag { color: var(--text-muted); margin: 12px 0 0; font-size: 15px; }
.footer-meta { color: var(--text-dim); font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-meta a:hover { color: var(--accent-soft); }
.footer-sep { color: var(--text-dim); }

/* ───── FAB MESSENGER ───── */
.fab-messenger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0084ff, #00c6ff);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 32px -8px rgba(0, 132, 255, 0.55);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.fab-messenger svg { width: 22px; height: 22px; }
.fab-messenger:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(0, 132, 255, 0.7); }
.fab-messenger span { font-size: 14px; }
@media (max-width: 600px) {
  .fab-messenger span { display: none; }
  .fab-messenger { padding: 14px; }
}

/* ───── BUYER NOTIFICATION TOAST ───── */
.buyer-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 65;
  max-width: 340px;
  min-width: 280px;
  pointer-events: none;
}
.toast-card {
  background: rgba(14, 26, 51, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast-card.show { transform: translateY(0); opacity: 1; }
.toast-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: grid; place-items: center;
  font-weight: 800; color: #02040c; font-size: 15px;
  flex-shrink: 0;
}
.toast-body { line-height: 1.35; }
.toast-body strong { color: var(--text); font-size: 15px; }
.toast-body span { display: block; color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.toast-body small { display: block; color: var(--text-dim); font-size: 11px; margin-top: 4px; letter-spacing: 0.05em; }

/* ───── NEWSLETTER MODAL ───── */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2, 4, 12, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.newsletter-overlay.show { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.newsletter-modal {
  max-width: 460px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  text-align: center;
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.newsletter-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  display: grid; place-items: center;
}
.newsletter-close:hover { background: rgba(255, 255, 255, 0.12); }
.newsletter-modal h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
}
.newsletter-modal p { color: var(--text-muted); margin: 0 0 22px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  padding: 14px 16px;
  background: rgba(2, 4, 12, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form .btn { padding: 14px 22px; font-size: 16px; }

/* ─────────────────────────────────────────────────────────
   RESERVE / CHECKOUT PAGE
   Mirror of ASH "Complete Your Order" structure — same fields,
   same urgency bar, same upsell pattern. Dark theme for brand
   consistency, but conversion-focused layout.
   ───────────────────────────────────────────────────────── */
.page-reserve { background: linear-gradient(180deg, #050a1a 0%, #02040c 100%); min-height: 100vh; }

.reserve-header {
  background: rgba(2, 4, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.reserve-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.reserve-trustline { color: var(--accent-soft); font-weight: 700; font-size: 14px; }
.reserve-trustline .lock { margin-right: 6px; }

.reserve-main { padding: 40px 0 80px; }
.reserve-container { max-width: 640px; padding: 0 20px; }

.reserve-head { text-align: center; margin-bottom: 24px; }
.reserve-head h1 {
  font-size: clamp(28px, 4.5vw, 40px); font-weight: 800; letter-spacing: -0.025em;
  margin: 0 0 8px; line-height: 1.1;
}
.reserve-head p { color: var(--text-muted); margin: 0; font-size: 16px; }

.urgency-bar {
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 10px 28px -10px rgba(220, 38, 38, 0.5);
}
.urgency-bar .flame { font-size: 18px; }
.urgency-spots {
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.urgency-countdown { display: inline-flex; gap: 6px; margin-left: auto; }
.urgency-countdown > span {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 8px; border-radius: 6px; min-width: 38px;
}
.urgency-countdown b { font-size: 14px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.urgency-countdown i { font-style: normal; font-size: 9px; opacity: 0.8; letter-spacing: 0.06em; text-transform: uppercase; }

.reserve-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.6);
}

.reserve-section { padding: 18px 0; border-top: 1px solid var(--border); }
.reserve-section:first-child { padding-top: 0; border-top: none; }
.reserve-section-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px;
}

.reserve-label { display: block; margin-bottom: 14px; }
.reserve-label:last-child { margin-bottom: 0; }
.reserve-label > span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.reserve-label > span em { color: var(--red); font-style: normal; font-weight: 800; margin-left: 2px; }
.reserve-label input,
.reserve-label select,
.reserve-label textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(2, 4, 12, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.reserve-label input:focus,
.reserve-label select:focus,
.reserve-label textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.reserve-label textarea { resize: vertical; min-height: 90px; }
.reserve-label select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.reserve-label select option { background: var(--bg-3); color: var(--text); }

/* ORDER TABLE */
.order-table {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
}
.order-row {
  display: grid;
  grid-template-columns: 1fr 50px 100px;
  padding: 12px 14px;
  align-items: center;
  font-size: 14px;
}
.order-head {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.order-row .qty { text-align: center; color: var(--text); font-weight: 600; }
.order-row .price { text-align: right; font-weight: 800; color: var(--accent-soft); font-size: 16px; }
.order-item .item-name { color: var(--blue-soft); font-weight: 700; }

/* UPSELL */
.upsell {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 2px dashed rgba(245, 158, 11, 0.5);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.upsell:hover { border-color: var(--amber); background: rgba(245, 158, 11, 0.08); }
.upsell input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px;
  accent-color: var(--amber);
  cursor: pointer;
  flex-shrink: 0;
}
.upsell-body { flex: 1; }
.upsell-badge {
  display: inline-block;
  background: var(--amber);
  color: #02040c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.upsell-title { font-weight: 800; font-size: 15px; margin-bottom: 6px; letter-spacing: -0.01em; }
.upsell-title .save { color: var(--accent-soft); }
.upsell-desc { color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.45; }

/* TOTAL */
.reserve-total { padding: 18px 0 6px; }
.total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 15px;
}
.total-row .total-label { color: var(--blue-soft); }
.total-row .total-amt { color: var(--text); font-weight: 700; }
.total-grand {
  border-top: 1px solid var(--border-strong);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 18px;
}
.total-grand .total-label { color: var(--text); font-weight: 800; }
.total-grand .total-amt { font-size: 22px; font-weight: 800; color: var(--accent-soft); letter-spacing: -0.02em; }

/* GUARANTEE */
.guarantee {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 12px 14px;
  border-radius: 10px;
  margin: 18px 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.g-icon { font-size: 18px; line-height: 1; }
.guarantee strong { color: var(--accent-soft); }

/* PLACE ORDER BTN */
.btn-place-order {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 32px -10px rgba(48, 128, 255, 0.55), 0 0 0 0 rgba(48, 128, 255, 0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: ctaBreatheBlue 3.5s ease-in-out infinite;
}
@keyframes ctaBreatheBlue {
  0%, 100% { box-shadow: 0 12px 32px -10px rgba(48, 128, 255, 0.55), 0 0 0 0 rgba(48, 128, 255, 0.4); }
  50%      { box-shadow: 0 12px 32px -10px rgba(48, 128, 255, 0.55), 0 0 0 14px rgba(48, 128, 255, 0); }
}
.btn-place-order:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue) 100%); }
.btn-place-order:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-emoji { font-size: 20px; }
.instant-access {
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 12px 0 0;
  text-transform: uppercase;
}

/* TRUST FOOTER */
.reserve-trust-footer {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}
.reserve-fallback {
  margin-top: 32px;
  text-align: center;
  color: var(--text-muted);
}
.reserve-fallback p { margin: 0 0 12px; font-size: 14px; }
.btn-fb {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0084ff, #00c6ff);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 28px -8px rgba(0, 132, 255, 0.55);
  transition: transform 0.15s ease;
}
.btn-fb:hover { transform: translateY(-2px); }

/* Reserve page mobile */
@media (max-width: 560px) {
  .reserve-trustline { font-size: 12px; }
  .reserve-card { padding: 22px 18px; }
  .urgency-bar { font-size: 12px; gap: 8px; }
  .urgency-countdown { margin-left: 0; }
  .urgency-countdown b { font-size: 13px; }
  .order-row { grid-template-columns: 1fr 38px 84px; padding: 10px 12px; font-size: 13px; }
  .total-grand .total-amt { font-size: 19px; }
  .btn-place-order { font-size: 16px; padding: 16px 20px; }
}

/* ───── RESPONSIVE ───── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; max-width: 360px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .hero-trust { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 56px; }
  .book-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-inner { gap: 8px; font-size: 12px; }
  .topbar-cta { padding: 5px 10px; font-size: 12px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .container { padding: 0 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .buyer-toast { left: 10px; right: 10px; max-width: none; }
}
