/* ═══════════════════════════════════════════
   CreativesConvert - Neumorphism Light Stylesheet
   Warm Light · Teal · Orange
   v8 - neumorphism redesign
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Custom Properties ── */
:root {
  /* Neumorphism Base */
  --nm-bg:            #e8ecf1;
  --nm-bg-alt:        #edf0f5;
  --nm-bg-deep:       #dfe3ea;

  /* Neumorphism Shadows */
  --nm-shadow-light:  rgba(255, 255, 255, 0.92);
  --nm-shadow-dark:   rgba(163, 172, 186, 0.72);
  --nm-raised:        8px 8px 18px rgba(163,172,186,0.72), -8px -8px 18px rgba(255,255,255,0.92);
  --nm-raised-sm:     4px 4px 10px rgba(163,172,186,0.60), -4px -4px 10px rgba(255,255,255,0.85);
  --nm-raised-lg:     14px 14px 28px rgba(163,172,186,0.72), -14px -14px 28px rgba(255,255,255,0.92);
  --nm-raised-xl:     20px 20px 40px rgba(163,172,186,0.72), -20px -20px 40px rgba(255,255,255,0.92);
  --nm-inset:         inset 6px 6px 12px rgba(163,172,186,0.60), inset -6px -6px 12px rgba(255,255,255,0.80);
  --nm-inset-sm:      inset 3px 3px 7px rgba(163,172,186,0.55), inset -3px -3px 7px rgba(255,255,255,0.75);
  --nm-hover:         10px 10px 22px rgba(163,172,186,0.72), -10px -10px 22px rgba(255,255,255,0.92);

  /* Brand */
  --teal:             #2ec4b6;
  --teal-dark:        #1ca89b;
  --teal-light:       #5dd8cc;
  --teal-dim:         rgba(46, 196, 182, 0.12);
  --teal-glow:        rgba(46, 196, 182, 0.18);
  --teal-glow-mid:    rgba(46, 196, 182, 0.28);
  --orange:           #f77f00;
  --orange-hover:     #ff9120;
  --orange-dark:      #d96e00;
  --orange-dim:       rgba(247, 127, 0, 0.12);
  --orange-glow:      rgba(247, 127, 0, 0.22);

  /* Text */
  --text-primary:     #2d3447;
  --text-secondary:   #5a6478;
  --text-muted:       #8a97ab;
  --text-light:       #aab5c4;
  --white:            #f0f2f5;

  /* Surface colors for cards */
  --surface:          #e8ecf1;
  --surface-alt:      #edf0f5;

  /* Legacy aliases kept for compatibility */
  --gray:             #8a97ab;
  --gray-light:       #6b7a8d;
  --charcoal:         #2d3447;
  --charcoal-light:   #3d4558;
  --charcoal-rim:     #c8cfd8;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  /* Legacy glass (kept to avoid missing-var errors — now maps to nm values) */
  --glass-bg:            rgba(255,255,255,0.55);
  --glass-bg-hover:      rgba(255,255,255,0.70);
  --glass-bg-strong:     rgba(255,255,255,0.65);
  --glass-border:        rgba(255,255,255,0.75);
  --glass-border-mid:    rgba(255,255,255,0.80);
  --glass-border-strong: rgba(255,255,255,0.90);
  --glass-blur:          blur(0px);
  --glass-blur-light:    blur(0px);

  /* Shadows (legacy) */
  --shadow-card:  var(--nm-raised);
  --shadow-lift:  var(--nm-hover);
  --shadow-hero:  var(--nm-raised-xl);

  /* Focus ring */
  --ring: 0 0 0 3px rgba(46, 196, 182, 0.30);
}

/* ── Base ── */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background-color: var(--nm-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(46, 196, 182, 0.55);
  outline-offset: 3px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
  outline: none;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-teal { color: var(--teal); }


/* ═══════════════════════════════════════════
   NEUMORPHISM CARD BASE (.g2)
   ═══════════════════════════════════════════ */
.g2 {
  background: var(--nm-bg);
  border-radius: 20px;
  box-shadow: var(--nm-raised);
  position: relative;
  overflow: hidden;
  transition:
    transform  0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.g2:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-hover);
}


/* ═══════════════════════════════════════════
   COMPONENTS
   ═══════════════════════════════════════════ */

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.38rem 1rem; border-radius: 100px;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  color: var(--teal);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.5); }
}

/* ── Primary Button - Orange CTA (flat) ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.1rem; border: none; border-radius: 11px;
  background: var(--orange);
  color: #fff !important;
  font-family: var(--sans); font-size: 0.97rem; font-weight: 600;
  cursor: pointer; text-decoration: none; position: relative;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-primary:hover {
  background: var(--orange-hover);
  color: #fff !important;
}
.btn-primary:active {
  background: var(--orange-dark);
}
.btn-primary .arrow { transition: transform 0.25s ease; display: inline-block; color: #fff; }
.btn-primary:hover .arrow { transform: translateX(3px); }

/* ── Ghost Button ── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: 11px;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  color: var(--text-primary); font-family: var(--sans); font-size: 0.97rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  border: none;
}
.btn-ghost:hover {
  box-shadow: var(--nm-inset-sm);
  color: var(--teal);
  transform: translateY(1px);
}

/* ── Button Variants ── */
.btn-full { width: 100%; justify-content: center; }
.btn-lg   { font-size: 1.08rem; padding: 1.05rem 2.6rem; }


/* ═══════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════ */
.scroll-progress {
  display: none;
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.15rem 0;
  background: var(--nm-bg);
  box-shadow: 0 4px 20px rgba(163,172,186,0.45), 0 -1px 0 rgba(255,255,255,0.90);
  transition: padding 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 6px 28px rgba(163,172,186,0.50), 0 -1px 0 rgba(255,255,255,0.90);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img {
  display: block;
  width: auto;
  height: 38px;
  max-width: min(220px, 34vw);
  object-fit: contain;
}
.footer-brand .logo-img { height: 34px; max-width: 240px; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
}
.nav-links a.text-teal { color: var(--teal); }
.nav-link-signin { color: var(--text-primary) !important; font-weight: 600 !important; }
.nav-link-signin:hover { color: var(--teal) !important; }
.nav-cta { padding: 0.55rem 1.3rem !important; font-size: 0.83rem !important; border-radius: 9px !important; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; }
.mobile-menu { display: none; }
.mobile-menu.open {
  display: flex; flex-direction: column; gap: 0.9rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--nm-bg);
  padding: 1.2rem 2rem 1.6rem;
  box-shadow: 0 10px 30px rgba(163,172,186,0.45);
}
.mobile-menu a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.95rem; padding: 0.45rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-primary); }


/* ═══════════════════════════════════════════
   HERO - HOME
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 6.5rem 0 5rem; position: relative; overflow: clip;
  background: var(--nm-bg);
}

/* Inner pages: tighter hero so content starts sooner */
.hero--inner {
  min-height: auto;
  padding: 6.25rem 0 2.75rem;
}
.hero--inner .scroll-hint { display: none; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,182,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -8%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,127,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-swoosh-1 {
  position: absolute; top: 15%; left: -4%; width: 58%; height: 280px;
  opacity: 0.08; pointer-events: none;
}
.hero-swoosh-2 {
  position: absolute; bottom: 6%; right: -8%; width: 48%; height: 240px;
  opacity: 0.07; pointer-events: none;
}
.hero-swoosh-1 path { stroke: var(--teal) !important; }
.hero-swoosh-2 path { stroke: var(--orange) !important; }

.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { max-width: 560px; }

/* Scroll hint — small bouncing chevron (same look as blog listing hero) */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 0.35;
  color: var(--text-muted);
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.scroll-hint svg {
  width: 20px;
  height: 20px;
  display: block;
}
.scroll-hint svg polyline {
  stroke-width: 1.5;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.52; }
}
/* Hide once user has scrolled (see main.js: body.has-scrolled) */
body.has-scrolled .scroll-hint {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}
/* Hide on short viewports where it would crowd content */
@media (max-height: 600px) { .scroll-hint { display: none; } }
@media (max-width: 768px) {
  .scroll-hint { bottom: 1.35rem; }
  .scroll-hint svg { width: 18px; height: 18px; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.2vw, 4rem);
  font-weight: 600; line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.4rem;
  color: var(--text-primary);
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero > .container .hero-content > p {
  font-size: 1.1rem; color: var(--text-secondary);
  margin-bottom: 2rem; max-width: 440px; line-height: 1.75;
}
.hero-grid .hero-content > .hero-lead {
  max-width: 32rem;
  margin-inline: 0;
  line-height: 1.65;
  margin-bottom: 2.35rem;
}
.hero-grid .hero-content h1 {
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Hero Mockup ── */
.hero-visual { position: relative; display: flex; justify-content: center; }

/* ── App Mockup (kept dark — represents the real app UI) ── */
.app-mockup {
  width: 100%; max-width: 490px;
  background: #1e2230;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--nm-raised-xl);
  position: relative;
}
.app-mockup::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.08) 60%, transparent);
}

/* Chrome bar */
.app-chrome {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.22);
}
.chrome-dots { display: flex; gap: 0.4rem; }
.chrome-dots span { width: 9px; height: 9px; border-radius: 50%; display: block; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }
.chrome-url {
  flex: 1; font-size: 0.7rem; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07); border-radius: 5px;
  padding: 0.28rem 0.7rem; text-align: center;
  letter-spacing: 0.01em;
}

/* App body */
.app-body { padding: 1.1rem 1.3rem 1.3rem; }

/* URL input row */
.app-url-row {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px; padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  margin-bottom: 0.9rem;
}
.app-url-icon { font-size: 0.85rem; flex-shrink: 0; }
.app-url-text {
  flex: 1; font-size: 0.78rem; color: rgba(255,255,255,0.85); font-family: var(--sans);
  overflow: hidden; white-space: nowrap;
}
.app-url-text::after {
  content: '|';
  color: var(--teal);
  animation: cursor-blink 1.1s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}
.app-analyze-btn {
  flex-shrink: 0; padding: 0.35rem 0.8rem;
  background: var(--teal); border: none; border-radius: 7px;
  color: #0a0e14; font-size: 0.72rem; font-weight: 700;
  cursor: default; white-space: nowrap; font-family: var(--sans);
}

/* Status lines */
.app-status { display: flex; flex-direction: column; gap: 0.32rem; margin-bottom: 1rem; }
.status-line {
  font-size: 0.75rem; color: var(--teal); font-weight: 500;
  opacity: 0;
  animation: status-appear 0.4s ease forwards;
}
.sl-1 { animation-delay: 0.6s; }
.sl-2 { animation-delay: 1.1s; }
.sl-3 { animation-delay: 1.6s; }
.sl-4 { animation-delay: 2.1s; }
@keyframes status-appear {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Ad preview cards */
.app-previews { display: flex; gap: 0.75rem; }
.ad-preview {
  flex: 1; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  opacity: 0;
  animation: preview-appear 0.5s ease forwards;
}
.ap-story { animation-delay: 2.5s; }
.ap-feed  { animation-delay: 2.8s; }
@keyframes preview-appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ad-top-bar { height: 52px; width: 100%; position: relative; }
.ad-top-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.ad-text-lines { padding: 0.55rem 0.65rem 0.45rem; display: flex; flex-direction: column; gap: 0.35rem; }
.ad-line { border-radius: 3px; background: rgba(255,255,255,0.18); height: 7px; }
.ad-line-lg { width: 85%; }
.ad-line-sm { width: 55%; }
.ad-cta-pill {
  margin: 0 0.65rem 0.6rem;
  height: 18px; border-radius: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}
.ad-label {
  font-size: 0.62rem; color: rgba(255,255,255,0.45); text-align: center;
  padding: 0.3rem 0 0.45rem; border-top: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}

/* Float tags */
.float-tag {
  position: absolute; padding: 0.5rem 1rem; border-radius: 9px;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  font-size: 0.75rem; font-weight: 600; white-space: nowrap;
  animation: float-y 6s ease-in-out infinite;
}
.ft-1 { top: 10%; right: -1rem;    animation-delay: 0s;  color: var(--teal);         }
.ft-2 { top: 62%; left: -1.5rem;   animation-delay: 2s;  color: var(--orange);       }
.ft-3 { bottom: 14%; right: -2rem; animation-delay: 4s;  color: var(--text-primary); }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}


/* ═══════════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════════ */
.hero .hero-content:not(.hero-grid .hero-content) {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero .hero-content h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
.hero .hero-content:not(.hero-grid .hero-content) p { margin-inline: auto; }


/* ═══════════════════════════════════════════
   SWOOSH DIVIDERS
   ═══════════════════════════════════════════ */
.section-swoosh {
  position: relative; width: 100%; height: 110px;
  overflow: hidden; margin: -55px 0; z-index: 2;
}
.section-swoosh svg { width: 100%; height: 100%; }
.swoosh-path {
  stroke: rgba(46, 196, 182, 0.10) !important;
  transition: stroke-dashoffset 0.15s linear;
}
.bg-swoosh {
  position: absolute; pointer-events: none; z-index: 0;
  top: 0; right: -20%; width: 80%; height: 400px; opacity: 0.06;
}
.bg-swoosh-bl { top: auto; right: auto; bottom: -10%; left: -15%; width: 70%; }
.bg-swoosh path         { stroke: rgba(46,196,182,0.15) !important; }
.bg-swoosh.bg-swoosh-bl path { stroke: rgba(247,127,0,0.12) !important; }


/* ═══════════════════════════════════════════
   HOME - VALUE BRIDGE
   ═══════════════════════════════════════════ */
.home-value-bridge {
  padding: 5rem 0 5.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--nm-bg);
}
.home-value-bridge-mesh { display: none; }
.home-value-bridge-orb  { display: none; }
.home-value-bridge-orb--teal   { display: none; }
.home-value-bridge-orb--orange { display: none; }
.home-value-bridge-orb--violet { display: none; }

.home-value-bridge .container { position: relative; z-index: 1; }

.hvb-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr;
  gap: 2rem 2.25rem;
  align-items: stretch;
}

/* Main panel — raised neumorphic card with teal left border accent */
.hvb-main {
  border-radius: 22px;
  box-shadow: var(--nm-raised-lg);
  background: var(--nm-bg);
  position: relative;
}
.hvb-main::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--orange));
  border-radius: 0 4px 4px 0;
}
.hvb-main-inner {
  border-radius: 22px;
  background: var(--nm-bg);
  padding: 2rem 2.25rem 2.1rem;
  height: 100%;
}
.hvb-main-inner .badge {
  margin-bottom: 0.75rem;
}
.home-value-bridge-headline {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0.5rem 0 1.35rem;
}
.home-value-bridge-lead,
.home-value-bridge-body {
  font-size: 1.05rem;
  line-height: 1.74;
  color: var(--text-secondary);
}
.home-value-bridge-lead {
  margin-bottom: 1.15rem;
}
.home-value-bridge-body {
  margin-bottom: 0;
}
.home-value-bridge-lead strong,
.home-value-bridge-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hvb-showcase { min-width: 0; }
.hvb-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  height: 100%;
  min-height: 280px;
}
.hvb-tile {
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.hvb-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--nm-hover);
}
.hvb-tile--wide { grid-column: 1 / -1; }
.hvb-tile--brand { grid-column: 1 / -1; }
.hvb-tile-icon {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 0.15rem;
}
.hvb-tile-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.hvb-tile-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.hvb-tile-detail {
  font-size: 0.66rem;
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  letter-spacing: 0.01em;
}

.hvb-tile--meta  { border-top: 3px solid var(--teal); }
.hvb-tile--google { border-top: 3px solid var(--orange); }
.hvb-tile--social { border-top: 3px solid #818cf8; }
.hvb-tile--brand  { border-top: 3px solid #ec4899; }

.home-value-bridge-kicker {
  margin: 2.25rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.45rem;
  font-size: 0;
  line-height: 0;
}
.hvb-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  line-height: 1.3;
}
.hvb-chip--fb     { color: #3b5998; }
.hvb-chip--google { color: var(--orange); }
.hvb-chip--li     { color: #0a66c2; }
.hvb-chip--tt     { color: var(--text-primary); }
.hvb-chip--muted  { color: var(--text-muted); }


/* ═══════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.72rem; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.13em; font-weight: 700;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.85rem;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  border-radius: 100px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 600; letter-spacing: -0.012em;
  margin-bottom: 0.9rem; line-height: 1.2;
  color: var(--text-primary);
}
.section-sub {
  color: var(--text-secondary); font-size: 1.02rem;
  max-width: 500px; margin-bottom: 3.8rem; line-height: 1.72;
}


/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how {
  padding: 6.5rem 0; position: relative; overflow: hidden;
  background: var(--nm-bg-alt);
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 3.4rem; left: 16.6%; right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0.22;
}

.step {
  text-align: center; padding: 2.4rem 1.8rem;
  background: var(--nm-bg-alt);
  border-radius: 20px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-hover);
}

.step-num {
  width: 3.2rem; height: 3.2rem; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 1.3rem;
  background: var(--nm-bg-alt);
  color: var(--teal);
  box-shadow: var(--nm-inset-sm);
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.6rem; font-weight: 600; color: var(--text-primary); }
.step p  { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }


/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  padding: 6.5rem 0; position: relative; overflow: hidden;
  background: var(--nm-bg);
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.feature-card {
  padding: 2.2rem;
  background: var(--nm-bg);
  border-radius: 18px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-hover);
}

.feature-icon {
  width: 2.8rem; height: 2.8rem; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.2rem;
  box-shadow: var(--nm-inset-sm);
  background: var(--nm-bg);
}
.fi-teal   { color: var(--teal); }
.fi-orange { color: var(--orange); }
.fi-indigo { color: #6366f1; }
.fi-pink   { color: #ec4899; }

.feature-card h3 { font-size: 1.02rem; margin-bottom: 0.55rem; font-weight: 600; color: var(--text-primary); }
.feature-card p  { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }


/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing {
  padding: 4rem 0 6rem; position: relative; overflow: hidden;
  background: var(--nm-bg-alt);
}
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 0.5rem; align-items: stretch; }
.pricing-grid > .price-card { margin-top: 18px; }

.price-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  flex: 1;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  background: var(--teal);
  color: #061210;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(46,196,182,0.35);
}

.price-card {
  padding: 2.1rem 1.55rem;
  background: var(--nm-bg-alt);
  border-radius: 20px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}

/* Push CTA button to bottom of every card */
.price-card .btn-primary,
.price-card .btn-ghost { margin-top: auto; }

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-hover);
}

/* Featured card — deeper raised + teal top accent */
.price-card.featured {
  box-shadow: var(--nm-raised-lg);
  border-top: 3px solid var(--teal);
}

.price-name {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.09em; font-weight: 600; margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--sans); font-size: 2.35rem; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.price-amount span { font-size: 0.95rem; color: var(--text-muted); font-weight: 400; }
.price-desc  { color: var(--text-secondary); font-size: 0.84rem; margin-bottom: 1.25rem; line-height: 1.6; }

.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  padding: 0.45rem 0; font-size: 0.83rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.65rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.82rem; }

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.billing-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}
.billing-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.switch-track {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--nm-bg-alt);
  box-shadow: var(--nm-inset-sm);
  transition: background 0.2s ease;
}
.switch-track::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--nm-bg-alt);
  box-shadow: var(--nm-raised-sm);
  transition: transform 0.2s ease;
}
.billing-switch input:checked + .switch-track {
  background: var(--teal);
}
.billing-switch input:checked + .switch-track::before {
  transform: translateX(20px);
}
.billing-switch-text,
.price-toggle-note {
  color: var(--text-secondary);
  font-size: 0.88rem;
}
.price-toggle-note {
  margin: 0 0 1.8rem;
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { padding: 6.5rem 0; position: relative; overflow: hidden; background: var(--nm-bg); }
.faq-grid { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-radius: 16px;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  margin-bottom: 1rem; overflow: hidden;
  transition: box-shadow 0.3s;
  position: relative;
  isolation: isolate;
}

.faq-item.active { box-shadow: var(--nm-inset-sm); }

.faq-item summary {
  width: 100%; padding: 1.4rem 1.8rem; background: none; border: none;
  color: var(--text-primary); font-family: var(--sans); font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.25s;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { color: var(--teal); }
.faq-item p {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: 0.95rem;
}

/* div/button variant */
.faq-question {
  width: 100%; padding: 1.4rem 1.8rem; background: none; border: none;
  color: var(--text-primary); font-family: var(--sans); font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  color: var(--teal); font-size: 1.2rem; font-weight: 400;
  flex-shrink: 0; margin-left: 1rem;
  transition: transform 0.25s;
  display: inline-block;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-content {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.proof {
  padding: 6.5rem 0; position: relative; overflow: hidden;
  background: var(--nm-bg-alt);
}
.proof .section-sub { margin-bottom: 2.8rem; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.proof-card {
  padding: 2rem;
  background: var(--nm-bg-alt);
  border-radius: 18px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--nm-hover);
}

.proof-stars  { color: var(--orange); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.proof-text   { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 1.4rem; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 0.75rem; }
.proof-avatar {
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  box-shadow: var(--nm-raised-sm);
}
.av-teal   { background: var(--teal); }
.av-orange { background: var(--orange); }
.av-indigo { background: #6366f1; }
.av-pink   { background: #ec4899; }
.proof-name { font-size: 0.83rem; font-weight: 600; color: var(--text-primary); }
.proof-role { font-size: 0.75rem; color: var(--text-muted); }


/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-hero {
  min-height: 100vh;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--nm-bg);
}
.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  background: var(--nm-bg);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--nm-raised);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 12px;
  background: var(--nm-bg);
  box-shadow: var(--nm-inset-sm);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 1rem;
  transition: box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: var(--nm-inset), 0 0 0 3px rgba(46,196,182,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6478' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group select option {
  background: var(--nm-bg);
  color: var(--text-primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.07);
}
.contact-email {
  text-align: center;
}
.email-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.email-link:hover {
  color: var(--orange);
}
.email-link svg {
  flex-shrink: 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  background: var(--nm-bg);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--nm-raised-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-hover);
}
.info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  background: var(--nm-bg);
  box-shadow: var(--nm-inset-sm);
}
.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}
.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Mobile Contact */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .info-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 200px;
  }
}
@media (max-width: 640px) {
  .contact-hero {
    padding: 8rem 0 4rem;
  }
  .contact-card {
    padding: 1.8rem 1.4rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  .info-card {
    flex: 1 1 100%;
  }
}


/* ═══════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════ */
.thank-you-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--nm-bg);
}
.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised);
  color: var(--teal);
}
.thank-you-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.thank-you-content .subtitle {
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.thank-you-content .message {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
}
.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .thank-you-hero {
    padding: 8rem 0 4rem;
  }
  .success-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .thank-you-content h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .thank-you-content .subtitle {
    font-size: 1.05rem;
  }
  .thank-you-content .message {
    font-size: 0.95rem;
  }
}


/* ═══════════════════════════════════════════
   FINAL CTA BOX
   ═══════════════════════════════════════════ */
.cta { padding: 6.5rem 0; background: var(--nm-bg-alt); }
.cta-box {
  text-align: center; padding: 4.5rem 3rem; border-radius: 24px;
  background: var(--nm-bg-alt);
  position: relative; overflow: hidden;
  box-shadow: var(--nm-raised-lg);
}
/* Subtle teal top-left accent */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal) 35%, var(--orange) 65%, transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0.60;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 1rem;
  color: var(--text-primary);
}
.cta-box p {
  color: var(--text-secondary); font-size: 1.02rem; margin-bottom: 2.4rem;
  max-width: 460px; margin-inline: auto; line-height: 1.72;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  padding: 4rem 0 2rem;
  background: var(--nm-bg-deep);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo  { margin-bottom: 0.9rem; display: inline-block; }
.footer-brand p      { color: var(--text-secondary); font-size: 0.83rem; max-width: 270px; line-height: 1.72; }

.footer-col .col-title {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 1.1rem; font-weight: 600;
}
.footer-col a {
  display: block; color: var(--text-secondary); font-size: 0.85rem;
  padding: 0.32rem 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.78rem; color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.mission { padding: 6.5rem 0; background: var(--nm-bg); }
.mission-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 4rem; align-items: center;
}
.mission-text h2 {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 600;
  margin-bottom: 1.8rem; color: var(--text-primary);
}
.mission-text p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.4rem; font-size: 1.05rem; }

.mission-stats { display: flex; flex-direction: column; gap: 1.4rem; }
.stat-item {
  text-align: center; padding: 1.8rem 1.4rem;
  background: var(--nm-bg);
  border-radius: 16px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover { transform: translateY(-2px); box-shadow: var(--nm-hover); }
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--teal); margin-bottom: 0.4rem; }
.stat-label  { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.09em; }

.story { padding: 6.5rem 0; background: var(--nm-bg-alt); }
.story-content {
  max-width: 700px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.82;
}
.story-content p { color: var(--text-secondary); margin-bottom: 1.8rem; }

.values { padding: 6.5rem 0; background: var(--nm-bg); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }

.value-card {
  padding: 2.2rem;
  background: var(--nm-bg);
  border-radius: 18px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--nm-hover); }
.value-icon  {
  width: 2.8rem; height: 2.8rem; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem; font-size: 1.2rem;
  background: var(--nm-bg);
  box-shadow: var(--nm-inset-sm);
}
.value-card h3 { font-size: 1.08rem; margin-bottom: 0.75rem; font-weight: 600; color: var(--text-primary); }
.value-card p  { color: var(--text-secondary); line-height: 1.65; font-size: 0.9rem; }

.team { padding: 6.5rem 0; background: var(--nm-bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }

.team-member {
  padding: 2.2rem; text-align: center;
  background: var(--nm-bg-alt);
  border-radius: 18px;
  box-shadow: var(--nm-raised);
  position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.team-member:hover { transform: translateY(-2px); box-shadow: var(--nm-hover); }

.member-avatar {
  width: 3.8rem; height: 3.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 700; color: #fff;
  margin: 0 auto 1.3rem;
  box-shadow: var(--nm-raised-sm);
}
.team-member h3 { font-size: 1.12rem; margin-bottom: 0.4rem; font-weight: 600; color: var(--text-primary); }
.member-role { color: var(--teal); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.member-bio  { color: var(--text-secondary); line-height: 1.65; font-size: 0.88rem; }


/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.blog { padding: 4rem 0; background: var(--nm-bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.8rem; }

.blog-card {
  border-radius: 20px; overflow: hidden;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--nm-hover); }

.blog-image {
  width: 100%; height: 190px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  position: relative; overflow: hidden;
}
.blog-image::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(232,236,241,0.15) 100%);
  pointer-events: none;
}
.blog-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; display: block;
}
.blog-content   { padding: 1.8rem; }
.blog-category  { font-size: 0.72rem; color: var(--teal); text-transform: uppercase; letter-spacing: 0.09em; font-weight: 600; margin-bottom: 0.7rem; }
.blog-title     { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; line-height: 1.3; margin-bottom: 0.85rem; color: var(--text-primary); }
.blog-title a   { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--teal); }
.blog-excerpt   { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.62; margin-bottom: 1.3rem; }
.blog-meta      { display: flex; align-items: center; gap: 0.9rem; font-size: 0.82rem; color: var(--text-secondary); flex-wrap: wrap; }
.blog-author    { display: flex; align-items: center; gap: 0.45rem; }
.blog-avatar    {
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: #fff;
  box-shadow: var(--nm-raised-sm);
}

/* Newsletter */
.newsletter { padding: 6.5rem 0; position: relative; overflow: hidden; background: var(--nm-bg-alt); }
.newsletter-box {
  text-align: center; padding: 3.8rem 3rem; border-radius: 24px;
  background: var(--nm-bg-alt);
  position: relative; overflow: hidden;
  box-shadow: var(--nm-raised-lg);
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal) 35%, var(--orange) 65%, transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0.55;
}
.newsletter-box > * { position: relative; z-index: 1; }
.newsletter-box h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.9rem;
  color: var(--text-primary);
}
.newsletter-box p {
  color: var(--text-secondary); font-size: 1rem; margin-bottom: 2rem;
  max-width: 440px; margin-inline: auto; line-height: 1.72;
}
.newsletter-form { display: flex; gap: 0.9rem; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 0.9rem 1.3rem;
  border-radius: 10px;
  background: var(--nm-bg-alt);
  box-shadow: var(--nm-inset-sm);
  border: none;
  color: var(--text-primary); font-family: var(--sans); font-size: 0.95rem;
  transition: box-shadow 0.25s;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus {
  outline: none;
  box-shadow: var(--nm-inset), 0 0 0 3px rgba(46,196,182,0.15);
}


/* ═══════════════════════════════════════════
   HOW IT WORKS PAGE - DEMO
   ═══════════════════════════════════════════ */
.process { padding: 6.5rem 0; position: relative; overflow: hidden; background: var(--nm-bg); }
.demo    { padding: 6.5rem 0; position: relative; overflow: hidden; background: var(--nm-bg-alt); }
.demo-container { max-width: 960px; margin: 0 auto; }

.demo-interface {
  background: var(--nm-bg-alt);
  border-radius: 20px; padding: 2rem;
  box-shadow: var(--nm-raised-lg);
  position: relative; overflow: hidden;
}
.demo-header { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.8rem; }
.demo-dot    { width: 11px; height: 11px; border-radius: 50%; box-shadow: var(--nm-inset-sm); }
.demo-title  { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--text-primary); }

.demo-form  { display: grid; gap: 1.4rem; }
.demo-input {
  padding: 0.9rem 1.3rem;
  border-radius: 10px;
  background: var(--nm-bg-alt);
  box-shadow: var(--nm-inset-sm);
  border: none;
  color: var(--text-primary); font-family: var(--sans); font-size: 0.95rem;
  transition: box-shadow 0.25s;
}
.demo-input::placeholder { color: var(--text-muted); }
.demo-input:focus  {
  outline: none;
  box-shadow: var(--nm-inset), 0 0 0 3px rgba(46,196,182,0.15);
}
.demo-textarea { min-height: 110px; resize: vertical; }

.demo-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.demo-option {
  padding: 0.9rem 1.1rem;
  border: none; border-radius: 10px;
  background: var(--nm-bg-alt);
  box-shadow: var(--nm-raised-sm);
  cursor: pointer; transition: all 0.25s;
  color: var(--text-primary);
}
.demo-option:hover    { box-shadow: var(--nm-inset-sm); color: var(--teal); }
.demo-option.selected { box-shadow: var(--nm-inset-sm); color: var(--teal); }
.demo-option strong   { font-size: 0.9rem; }
.demo-option small    { color: var(--text-muted); font-size: 0.78rem; }

.demo-generate { margin-top: 1.6rem; }
.demo-preview  {
  margin-top: 1.6rem; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem; min-height: 180px;
}
.preview-card {
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 0.88rem;
  opacity: 0; transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  padding: 1.6rem; text-align: center;
  box-shadow: var(--nm-raised-sm);
}
.preview-card.show { opacity: 1; transform: scale(1); }


/* ═══════════════════════════════════════════
   SIGNUP PAGE
   ═══════════════════════════════════════════ */
.signup-form {
  background: var(--nm-bg);
  border-radius: 20px; padding: 2.8rem;
  max-width: 500px; margin: 0 auto;
  box-shadow: var(--nm-raised-lg);
  position: relative; overflow: hidden;
}

.form-group  { margin-bottom: 1.3rem; }
.form-label  {
  display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-input  {
  width: 100%; padding: 0.9rem 1.3rem;
  border-radius: 10px;
  background: var(--nm-bg);
  box-shadow: var(--nm-inset-sm);
  border: none;
  color: var(--text-primary); font-family: var(--sans); font-size: 0.95rem;
  transition: box-shadow 0.25s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  box-shadow: var(--nm-inset), 0 0 0 3px rgba(46,196,182,0.15);
}

.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.password-wrapper { position: relative; }
.password-wrapper .form-input { padding-right: 2.8rem; }
.password-toggle {
  position: absolute; right: 0.75rem; top: 50%;
  transform: translateY(-50%); background: none; border: none;
  color: var(--text-muted); cursor: pointer; padding: 0.25rem;
  transition: color 0.2s; display: flex; align-items: center;
}
.password-toggle:hover { color: var(--text-primary); }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.3rem;
}
.form-checkbox input[type="checkbox"] {
  width: 1.1rem; height: 1.1rem; margin-top: 2px;
  border: none; background: var(--nm-bg);
  border-radius: 5px; cursor: pointer; flex-shrink: 0;
  accent-color: var(--teal);
  box-shadow: var(--nm-inset-sm);
}
.form-checkbox label { font-size: 0.88rem; color: var(--text-secondary); cursor: pointer; line-height: 1.5; }
.form-checkbox a { color: var(--teal); }
.form-checkbox a:hover { text-decoration: underline; }

.form-error   { color: #dc2626; font-size: 0.82rem; margin-top: 0.4rem; display: none; }
.form-success { color: var(--teal); font-size: 0.82rem; margin-top: 0.75rem; display: none; text-align: center; }

/* Features list on signup left col */
.features-list  { margin-top: 2rem; }
.feature-item   {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon   {
  width: 2.4rem; height: 2.4rem; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  background: var(--nm-bg);
  box-shadow: var(--nm-inset-sm);
  color: var(--teal);
}
.feature-text   { font-size: 0.88rem; color: var(--text-secondary); }

/* Social sign-in */
.social-divider {
  display: flex; align-items: center; gap: 1rem; margin: 1.8rem 0;
}
.social-divider::before,
.social-divider::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.07); }
.social-divider span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.social-buttons { display: flex; flex-direction: column; gap: 0.9rem; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  background: var(--nm-bg);
  box-shadow: var(--nm-raised-sm);
  border: none;
  color: var(--text-primary); font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.social-btn:hover { box-shadow: var(--nm-inset-sm); color: var(--teal); }

/* Trust badges */
.trust-badges {
  margin-top: 1.8rem; text-align: center;
}
.trust-title {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.75rem;
}
.trust-items {
  display: flex; justify-content: center; gap: 1.8rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-secondary);
}
.trust-icon { font-size: 0.88rem; }

.signup-form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-primary);
}
.signup-signin-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.signup-signin-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.signup-signin-link:hover {
  text-decoration: underline;
}
.thank-you-sublink {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════ */
.legal-content { padding: 4rem 0; background: var(--nm-bg); }
.legal-grid    { max-width: 780px; margin: 0 auto; }
.legal-section {
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 600;
  margin-bottom: 1.3rem; color: var(--text-primary);
}
.legal-section h3 {
  font-size: 1.2rem; font-weight: 600;
  margin: 1.8rem 0 0.9rem; color: var(--teal);
}
.legal-section p  { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.3rem; }
.legal-section ul { list-style: none; margin-bottom: 1.3rem; }
.legal-section li {
  color: var(--text-secondary); padding: 0.45rem 0; padding-left: 1.4rem; position: relative;
}
.legal-section li::before { content: '•'; color: var(--teal); position: absolute; left: 0; }
.legal-section a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(46,196,182,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.legal-section a:hover { border-bottom-color: var(--teal); color: var(--teal-dark); }

.article-back { margin-bottom: 1rem; }
.article-back a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border: none;
}
.article-back a:hover { color: var(--teal); }

.article-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.article-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.3rem;
  border-radius: 10px;
  box-shadow: var(--nm-inset-sm);
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.article-table th,
.article-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: top;
}
.article-table th {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(0,0,0,0.02);
}
.article-table td { color: var(--text-secondary); line-height: 1.55; }
.article-table tbody tr:last-child td { border-bottom: none; }

.article-ol {
  list-style: decimal;
  margin: 0 0 1.3rem 1.25rem;
  padding: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
.article-ol li {
  padding: 0.35rem 0 0.35rem 0.5rem;
  position: static;
}
.article-ol li::before { display: none; }


/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal { opacity: 0; transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.swoosh-in   { transform: translateX(-80px) skewX(-2deg); }
.reveal.swoosh-in-r { transform: translateX(80px) skewX(2deg); }
.reveal.from-bottom { transform: translateY(50px); }
.reveal.from-scale  { transform: scale(0.88); filter: blur(3px); }
.reveal.visible     { opacity: 1; transform: none; filter: none; }

.stagger-parent.visible .stagger-child { opacity: 1; transform: none; filter: none; }
.stagger-child {
  opacity: 0; transform: translateY(36px) scale(0.96); filter: blur(2px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-child:nth-child(1) { transition-delay: 0.05s; }
.stagger-child:nth-child(2) { transition-delay: 0.11s; }
.stagger-child:nth-child(3) { transition-delay: 0.17s; }
.stagger-child:nth-child(4) { transition-delay: 0.23s; }
.stagger-child:nth-child(5) { transition-delay: 0.29s; }
.stagger-child:nth-child(6) { transition-delay: 0.35s; }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1440px) {
  .hero-grid { gap: 2.5rem; }
  .signup-form { padding: 2rem 2.2rem; max-width: 460px; }
  .form-group { margin-bottom: 1rem; }
  .form-input { padding: 0.75rem 1.1rem; font-size: 0.95rem; }
  .hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
  .hero-content { max-width: 580px; }
  .contact-hero { padding: 8rem 0 5rem; }
  .contact-header { margin-bottom: 3rem; }
  .contact-grid { gap: 2.5rem; max-width: 900px; align-items: start; }
  .contact-card { padding: 2.2rem; }
}

@media (max-height: 850px) and (min-width: 1025px) {
  .hero { padding: 6rem 0 4rem; min-height: 90vh; }
  .signup-form { padding: 1.8rem 2.2rem; }
  .form-group { margin-bottom: 0.9rem; }
  .form-label { margin-bottom: 0.3rem; font-size: 0.72rem; }
  .form-input { padding: 0.7rem 1.1rem; font-size: 0.9rem; }
  .features-list { margin-top: 1.2rem; }
  .feature-item { padding: 0.5rem 0; }
  .feature-icon { width: 2.1rem; height: 2.4rem; font-size: 1rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero > .container .hero-content > p { margin-bottom: 1.5rem; }
  .signup-form h2 { font-size: 1.5rem !important; margin-bottom: 1.2rem !important; }
  .trust-badges { margin-top: 1.4rem; }
  .social-divider { margin: 1.4rem 0; }
  .contact-hero { padding: 6rem 0 4rem; min-height: 90vh; }
  .contact-header { margin-bottom: 2rem; }
  .contact-grid { gap: 2rem; }
  .contact-card { padding: 1.8rem 2.2rem; }
  .contact-form { gap: 1rem; }
  .form-group { gap: 0.3rem; }
  .form-group label { font-size: 0.8rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.7rem 1.1rem; font-size: 0.9rem; }
  .form-group textarea { min-height: 100px; }
  .info-card { padding: 1.4rem; }
  .info-icon { width: 2.5rem; height: 2.5rem; font-size: 1.1rem; margin-bottom: 0.6rem; }
  .info-card h3 { font-size: 1rem; }
  .info-card p { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .hero-grid        { grid-template-columns: 1fr; text-align: center; }
  .hero-content     { max-width: 100%; }
  .hero > .container .hero-content > p  { margin-inline: auto; }
  .hero-actions     { justify-content: center; }
  .hero-visual      { margin-top: 3rem; }
  .steps            { grid-template-columns: 1fr 1fr; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .pricing-grid     { grid-template-columns: 1fr 1fr; }
  .proof-grid       { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .mission-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid      { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .hvb-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hvb-main-inner {
    text-align: center;
  }
  .home-value-bridge-lead,
  .home-value-bridge-body {
    text-align: left;
    margin-inline: auto;
    max-width: 36rem;
  }
  .hvb-bento { min-height: 0; }
}

@media (max-width: 640px) {
  .home-value-bridge { padding: 3.5rem 0 3rem; }
  .hvb-main-inner { padding: 1.6rem 1.35rem 1.65rem; }
  .hvb-tile { padding: 1rem 1.05rem; }
  .hvb-chip {
    font-size: 0.65rem;
    padding: 0.38rem 0.7rem;
  }
  .steps            { grid-template-columns: 1fr; }
  .steps::before    { display: none; }
  .features-grid    { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .proof-grid       { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .nav-links        { display: none; }
  .mobile-toggle    { display: block; }
  .hero             { padding: 7rem 0 4rem; min-height: auto; }
  .cta-box          { padding: 2.8rem 1.4rem; }
  .footer-bottom    { flex-direction: column; gap: 0.8rem; text-align: center; }
  .section-swoosh   { height: 60px; margin: -30px 0; }
  .bg-swoosh        { display: none; }
  .newsletter-form  { flex-direction: column; }
  .reveal.swoosh-in,
  .reveal.swoosh-in-r { transform: translateY(40px); }
  .mission-stats    { flex-direction: row; justify-content: space-around; }
  .stat-item        { padding: 1.3rem 0.9rem; }
  .stat-number      { font-size: 1.9rem; }
  .signup-form      { padding: 2rem 1.4rem; }
  .form-row         { grid-template-columns: 1fr; }

  .mobile-menu .btn-primary {
    width: auto;
    align-self: flex-start;
  }

  .footer-col       { text-align: center; }
  .footer-brand     { text-align: center; }
  .footer-brand p   { margin-inline: auto; }

  .mobile-menu .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
    font-size: 0.8rem;
  }
  .footer-col .col-title {
    font-size: 0.65rem;
    margin-bottom: 0.6rem;
  }
  .footer-col a {
    font-size: 0.8rem;
    padding: 0.2rem 0;
  }
  footer {
    padding: 1.5rem 0 1rem;
  }
  .footer-bottom {
    padding-top: 0.75rem;
    gap: 0.3rem;
    font-size: 0.7rem;
  }

  .faq-item summary,
  .faq-question {
    padding: 1.1rem 1.2rem;
    font-size: 0.9rem;
  }
  .faq-item p,
  .faq-answer-content {
    padding: 0 1.2rem 1.1rem;
    font-size: 0.9rem;
  }
  .faq-item summary::after,
  .faq-icon {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}
