/* ═══════════════════════════════════════════════════════════
   VOE COM IZA — Consultoria de Viagens · Design System
   Fonts: Cormorant Garamond · DM Sans
════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Backgrounds — dark brown, warm */
  --bg-base:     #241810;
  --bg-surface:  #2b1d14;
  --bg-card:     #362519;
  --bg-elevated: #40301f;
  --bg-hover:    #4a3722;

  /* Borders — gold tinted */
  --border:      rgba(197, 160, 90, 0.14);
  --border-mid:  rgba(197, 160, 90, 0.24);
  --border-hi:   rgba(197, 160, 90, 0.4);

  /* Gold — primary */
  --blue:        #c5a05a;
  --blue-hover:  #a8843e;
  --blue-light:  #e0c888;
  --blue-dim:    rgba(197, 160, 90, 0.13);
  --blue-glow:   rgba(197, 160, 90, 0.28);

  /* Deep wine — premium accent */
  --gold:        #8b3a3a;
  --gold-bright: #b5574f;
  --gold-dim:    rgba(139, 58, 58, 0.14);

  /* Bronze/copper — tertiary */
  --teal:        #a97452;
  --teal-light:  #cf9c6f;
  --teal-dim:    rgba(169, 116, 82, 0.14);

  /* Text — cream */
  --t100: #f5f0e8;
  --t200: #ede4d3;
  --t300: #cbb693;
  --t400: #9c8873;
  --t500: #5c4d3d;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-2xl: 48px;

  /* Shadows */
  --sh-card: 0 2px 16px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.02) inset;
  --sh-pop:  0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03) inset;
  --sh-glow: 0 0 48px var(--blue-glow);

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --tr:       all 0.22s var(--ease-std);
  --tr-slow:  all 0.45s var(--ease);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--t100);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100% }
a { color: inherit; text-decoration: none }
ul { list-style: none }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'DM Sans', system-ui, serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--t100);
  font-weight: 600;
}

/* ── GRAIN ───────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

/* ── UTILITY ─────────────────────────────────────────────── */
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-dim);
  border: 1px solid var(--border-mid);
  padding: 5px 14px 5px 10px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2.5s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1) }
  50%       { opacity: 0.35; transform: scale(0.55) }
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue-light);
}

.section-sub {
  font-size: 1rem;
  color: var(--t300);
  line-height: 1.8;
  max-width: 760px;
}

/* Leitura justificada nos parágrafos de corpo de texto */
.hero-sub,
.section-sub,
.pain-q,
.pain-desc,
.svc-block-desc,
.step-desc,
.pillar-text p,
.faq-answer-inner,
.extras-card-desc,
.price-card-unit,
.founder-bio {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none }
.reveal-delay-1 { transition-delay: 0.08s }
.reveal-delay-2 { transition-delay: 0.16s }
.reveal-delay-3 { transition-delay: 0.24s }
.reveal-delay-4 { transition-delay: 0.32s }

/* Entrada com leve zoom, exclusiva do hero */
.hero-copy.reveal {
  transform: translateY(24px) scale(0.96);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero-copy.reveal.visible { transform: none }
.reveal-delay-5 { transition-delay: 0.4s }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--bg-base) }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 99px }
::-webkit-scrollbar-thumb:hover { background: var(--border-hi) }
::selection { background: rgba(197, 160, 90, 0.32); color: #fff }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--tr);
}

#navbar.scrolled {
  background: rgba(36, 24, 16, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--t100);
  transition: var(--tr);
}

.nav-logo:hover { opacity: 0.85 }

.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal-light) 100%);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-base);
  flex-shrink: 0;
}

.logo-mark svg { width: 15px; height: 15px }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-hover) 100%);
  color: #2a1a0d;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  transition: var(--tr);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px var(--blue-glow);
}

.nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--blue-glow);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: min(100dvh, 760px);
  display: flex;
  align-items: center;
  padding: 110px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-aurora::before {
  content: '';
  position: absolute;
  top: -15%; left: -5%;
  width: 65%; height: 80%;
  background: radial-gradient(ellipse, rgba(197, 160, 90, 0.18) 0%, transparent 70%);
  animation: float-a 14s ease-in-out infinite alternate;
}

.hero-aurora::after {
  content: '';
  position: absolute;
  bottom: 0; right: 5%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(139, 58, 58, 0.13) 0%, transparent 70%);
  animation: float-a 18s ease-in-out infinite alternate-reverse;
}

.hero-glow {
  position: absolute;
  top: 30%; left: 40%;
  width: 45%; height: 45%;
  background: radial-gradient(ellipse, rgba(207, 156, 111, 0.14) 0%, transparent 65%);
  animation: float-b 11s ease-in-out infinite alternate;
}

@keyframes float-a {
  from { transform: translate(0, 0) scale(1) }
  to   { transform: translate(4%, 3%) scale(1.06) }
}

@keyframes float-b {
  from { transform: translate(0, 0) scale(1); opacity: 0.7 }
  to   { transform: translate(-5%, 4%) scale(1.12); opacity: 1 }
}

.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(197, 160, 90, 0.09) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 65% 70% at 25% 45%, black 25%, transparent 90%);
}

.hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-copy { width: 100% }

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: var(--blue-light);
  animation: glow-pulse 3.2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 18px rgba(197, 160, 90, 0.15) }
  50%       { text-shadow: 0 0 28px rgba(197, 160, 90, 0.5) }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--t300);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  align-items: center;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--t400);
  font-style: italic;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--t400);
  z-index: 2;
  transition: var(--tr);
  animation: scroll-bounce 2.2s ease-in-out infinite;
}

.scroll-cue:hover { color: var(--blue-light) }

.scroll-cue-text {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0) }
  50%       { transform: translateX(-50%) translateY(8px) }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  border-radius: var(--r-md);
  white-space: nowrap;
}

.btn-solid {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-hover) 100%);
  color: #2a1a0d;
  font-size: 0.95rem;
  padding: 14px 28px;
  box-shadow: 0 4px 20px var(--blue-glow), 0 0 0 1px rgba(197,160,90,.3);
  animation: pulse-btn 3.5s ease infinite;
}

.btn-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197,160,90,.5), 0 0 0 2px rgba(197,160,90,.25);
  animation: none;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px var(--blue-glow), 0 0 0 1px rgba(197,160,90,.3) }
  50%       { box-shadow: 0 4px 30px rgba(197,160,90,.42), 0 0 0 4px rgba(197,160,90,.1) }
}

.btn-outline {
  background: transparent;
  color: var(--t200);
  font-size: 0.9rem;
  padding: 13px 22px;
  border: 1px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: var(--blue-dim);
  transform: translateY(-1px);
}

.btn-wpp {
  background: #25d366;
  color: #fff;
  font-size: 0.95rem;
  padding: 14px 28px;
  box-shadow: 0 4px 18px rgba(37,211,102,.25);
}

.btn-wpp:hover {
  background: #1cb859;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADER ROW (two-column header)
══════════════════════════════════════════════════════════ */
.section-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}

.section-header-row .section-sub { margin-top: 4px }

/* ══════════════════════════════════════════════════════════
   IZA PELO MUNDO — carrossel de fotos
══════════════════════════════════════════════════════════ */
.dest-bar { padding: 60px 0 70px }

.carousel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--t400);
}

.travel-carousel-wrap {
  position: relative;
  margin-top: 24px;
}

.travel-carousel-wrap::before,
.travel-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 20px;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.travel-carousel-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-base) 0%, transparent 100%) }
.travel-carousel-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg-base) 0%, transparent 100%) }

.section-light .travel-carousel-wrap::before { background: linear-gradient(90deg, var(--t100) 0%, transparent 100%) }
.section-light .travel-carousel-wrap::after  { background: linear-gradient(270deg, var(--t100) 0%, transparent 100%) }

.carousel-arrow {
  position: absolute;
  top: calc(50% - 34px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  color: var(--t300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: var(--sh-card);
  transition: var(--tr);
}

.carousel-arrow:hover { background: var(--blue); border-color: var(--blue); color: var(--bg-base) }
.carousel-arrow-left { left: -6px }
.carousel-arrow-right { right: -6px }

@media (max-width: 720px) {
  .carousel-arrow { display: none }
  .travel-carousel-wrap::before, .travel-carousel-wrap::after { width: 28px }
}

.travel-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 14px 6px 20px;
}

.travel-carousel::-webkit-scrollbar { display: none }

.travel-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.travel-carousel-item {
  flex-shrink: 0;
  width: 300px;
  scroll-snap-align: start;
  cursor: default;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border-mid);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.travel-carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-pop);
  border-color: var(--border-hi);
}

.travel-carousel-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  overflow: hidden;
}

.travel-carousel-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 13, 8, 0.88) 0%, rgba(20, 13, 8, 0.1) 45%, transparent 62%);
  pointer-events: none;
}

.travel-carousel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.travel-carousel-item:hover .travel-carousel-photo img { transform: scale(1.06) }

.travel-carousel-photo .photo-note {
  font-size: 0.68rem;
  color: var(--t500);
  letter-spacing: 0.03em;
}

.travel-carousel-num {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.8);
}

.travel-carousel-city {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--t100);
  transition: var(--tr);
}

.travel-carousel-item:hover .travel-carousel-city { color: var(--blue-light) }

/* ══════════════════════════════════════════════════════════
   PAIN — Editorial list
══════════════════════════════════════════════════════════ */
#pain { padding: 70px 0 }

.pain-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.pain-list { display: flex; flex-direction: column }

.pain-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease-std);
  cursor: default;
}

.pain-item:first-child { border-top: 1px solid var(--border) }

.pain-item:hover { background: linear-gradient(90deg, rgba(197,160,90,.04) 0%, transparent 80%) }
.pain-item:hover .pain-num { color: var(--blue); opacity: 1 }

.pain-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--t500);
  text-align: right;
  padding-right: 16px;
  border-right: 1px solid var(--border);
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pain-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.pain-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--t100);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.pain-desc {
  font-size: 0.84rem;
  color: var(--t300);
  line-height: 1.75;
  max-width: 300px;
  flex-shrink: 0;
  padding-top: 2px;
}

.pain-close {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.pain-close-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 600;
  color: var(--t100);
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════
   SERVICES — Individual blocks
══════════════════════════════════════════════════════════ */
#services { padding: 70px 0 }

.svc-blocks { display: flex; flex-direction: column; gap: 20px }

.svc-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  transition: var(--tr-slow);
  box-shadow: var(--sh-card);
}

.svc-block:hover { border-color: var(--border-hi); box-shadow: var(--sh-pop) }

.svc-block-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.svc-block-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--t500);
  line-height: 1;
}

.svc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon svg { width: 21px; height: 21px }

.svc-icon.blue   { background: var(--blue-dim);   color: var(--blue-light) }
.svc-icon.teal   { background: var(--teal-dim);   color: var(--teal-light) }
.svc-icon.violet { background: rgba(181, 87, 79, 0.14); color: var(--gold-bright) }
.svc-icon.gold   { background: var(--gold-dim);   color: var(--gold-bright) }

.svc-block-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--t100);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.svc-block-desc {
  font-size: 0.93rem;
  color: var(--t300);
  line-height: 1.78;
  max-width: 660px;
  margin-bottom: 10px;
}

.svc-block-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.svc-block-list { display: flex; flex-direction: column; gap: 9px; flex: 1; min-width: 260px }

.svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--t300);
  line-height: 1.5;
}

.svc-block-list li svg { flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; color: #6fbf8a }

.svc-block-note {
  font-size: 0.74rem;
  color: var(--t400);
  font-style: italic;
  margin-top: 12px;
}

/* ── Extras grid (Maps, Drive+Trello, Kit físico, Suporte) ─ */
.bonus-block {
  margin-top: 56px;
  padding: 48px 44px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(197, 160, 90, 0.07) 0%, rgba(197, 160, 90, 0.015) 100%);
  border: 1px solid var(--border-mid);
}

.bonus-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-base);
  background: var(--blue);
  padding: 7px 18px;
  border-radius: 99px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.extras-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--tr-slow);
}

.extras-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: var(--sh-pop) }

.extras-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-light);
}

.extras-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--t100);
  letter-spacing: -0.01em;
  margin-top: -2px;
  line-height: 1.3;
  min-height: 2.6em;
}

.extras-card-desc {
  font-size: 0.83rem;
  color: var(--t300);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   VEJA NA PRÁTICA — Media showcase (vídeo / print)
══════════════════════════════════════════════════════════ */
#case-study {
  padding: 70px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(197,160,90,.02) 40%, transparent 100%);
}

.media-video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-mid);
  box-shadow: var(--sh-pop);
  object-fit: cover;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 620px;
  margin: 48px auto 0;
}

.media-thumb { text-align: center }

.media-thumb .media-video {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
}

.media-thumb-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t200);
}

/* ══════════════════════════════════════════════════════════
   WORD PANEL — brand adjectives collage
══════════════════════════════════════════════════════════ */
.word-panel {
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: center;
  gap: 22px 34px;
  min-height: 320px;
  height: 100%;
  box-shadow: var(--sh-pop);
}

.word-panel-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--t400);
}

.word-panel-item.accent {
  color: var(--blue-light);
  font-size: 2rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   DIFFERENTIALS
══════════════════════════════════════════════════════════ */
#tech {
  padding: 70px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(197,160,90,.03) 40%, transparent 100%);
}

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
}

.tech-pillars { display: flex; flex-direction: column; gap: 4px; margin-top: 40px }

.tech-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: var(--tr);
}

.tech-pillar:hover {
  background: var(--bg-card);
  border-color: var(--border);
}

.pillar-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.pillar-icon svg { width: 17px; height: 17px }

.pillar-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--t100);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.pillar-text p { font-size: 0.85rem; color: var(--t300); line-height: 1.65 }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
#process { padding: 70px 0 70px }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 44px;
  margin-top: 64px;
}

.process-step {
  padding: 0 28px;
  border-left: 1px solid var(--border);
  cursor: default;
}

.process-step:nth-child(3n+1) { padding-left: 0; border-left: none }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--t500);
  margin-bottom: 22px;
  transition: var(--tr);
  display: block;
}

.process-step:hover .step-num { color: var(--blue); opacity: 0.75 }

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--t100);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.step-desc { font-size: 0.82rem; color: var(--t300); line-height: 1.72 }

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL SPOTLIGHT
══════════════════════════════════════════════════════════ */
#testimonials { padding: 70px 0 }

.testi-spotlight {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.5;
  color: var(--blue);
  opacity: 0.4;
  margin-bottom: 12px;
}

.testi-spotlight-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--t100);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 28px;
}

.testi-spotlight-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2a1a0d;
  flex-shrink: 0;
}

.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--t100) }
.testi-role { font-size: 0.74rem; color: var(--t400); margin-top: 1px }
.testi-stars { color: var(--gold-bright); font-size: 0.8rem; margin-top: 12px }

/* ── Prints de WhatsApp (carrossel) ─────────────────────── */
.testi-shots { margin-top: 56px }

.testi-shots-label {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--t300);
  margin-bottom: 20px;
}

.testi-shots-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
  width: 90vw;
  max-width: 1500px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.testi-shots-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: var(--tr-slow);
}

.testi-shots-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-pop);
}

.testi-shots-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  transition: transform 0.6s var(--ease);
}

.testi-shots-item:hover img { transform: scale(1.03) }

.testi-shots-item-empty {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px dashed var(--border-mid);
  padding: 10px;
  opacity: 0.6;
}

.testi-shots-item-empty:hover { transform: none; box-shadow: var(--sh-card) }

@media (max-width: 1024px) {
  .testi-shots-wall { grid-template-columns: repeat(3, 1fr) }
}

@media (max-width: 640px) {
  .testi-shots-wall { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 480px) {
  .testi-shots-wall { grid-template-columns: 1fr }
}

/* ══════════════════════════════════════════════════════════
   FAQ — Two-column with sticky panel
══════════════════════════════════════════════════════════ */
#faq { padding: 70px 0 }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-left { position: sticky; top: 100px }
.faq-left .section-sub { margin-top: 16px; font-size: 0.9rem }

.faq-list { display: flex; flex-direction: column }

.faq-item { border-bottom: 1px solid var(--border) }
.faq-item:first-child { border-top: 1px solid var(--border) }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--t100);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--tr);
  letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--blue-light) }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
  color: var(--t300);
}

.faq-icon svg { width: 10px; height: 10px; transition: transform 0.3s var(--ease-std) }

.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #2a1a0d;
}

.faq-item.open .faq-icon svg { transform: rotate(45deg) }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease) }

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.87rem;
  color: var(--t300);
  line-height: 1.82;
}

/* ══════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════ */
#cta-final { padding: 70px 0 80px }

.cta-wrap {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: clamp(56px, 8vw, 96px);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--sh-pop);
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(197,160,90,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrap::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(139,58,58,.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-title em { font-style: italic; font-weight: 500; color: var(--blue-light) }

.cta-sub {
  font-size: 1rem;
  color: var(--t300);
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.78;
  margin-bottom: 40px;
}

.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center }

/* ══════════════════════════════════════════════════════════
   LEAD FORM
══════════════════════════════════════════════════════════ */
#lead-form { padding: 20px 0 100px }

.lead-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--sh-pop);
}

.lead-form { display: flex; flex-direction: column; gap: 18px }

.lead-form-row { display: flex; flex-direction: column; gap: 18px }
.lead-form-row.two-col { flex-direction: row }

.lead-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  font-size: 0.78rem;
  color: var(--t300);
}

.lead-form-field input,
.lead-form-field textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--t100);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: var(--tr);
  resize: vertical;
}

.lead-form-field input:focus,
.lead-form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg-elevated);
}

.lead-form-field input::placeholder,
.lead-form-field textarea::placeholder { color: var(--t500) }

.lead-form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--t500);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer { padding: 52px 0; border-top: 1px solid var(--border) }

.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand { display: flex; flex-direction: column; gap: 5px }
.footer-tagline { font-size: 0.73rem; color: var(--t400); margin-top: 4px }
.footer-copy { font-size: 0.72rem; color: var(--t500) }

/* ══════════════════════════════════════════════════════════
   SCRIPT ACCENT & HIGHLIGHT
══════════════════════════════════════════════════════════ */
.script-text {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--blue-light);
  line-height: 1.3;
}

.highlight {
  background: rgba(197, 160, 90, 0.22);
  padding: 1px 8px;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-light .highlight { background: rgba(139, 58, 58, 0.12) }

/* ══════════════════════════════════════════════════════════
   SECTION LIGHT (cream background variant)
══════════════════════════════════════════════════════════ */
.section-light {
  background: var(--t100);
  color: var(--bg-base);
}

.section-light .label { color: var(--gold) }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--bg-base) }
.section-light .section-title em { color: var(--gold) }
.section-light p, .section-light .founder-role { color: #5c4530 }
.section-light .section-sub { color: #6b5641 }
.section-light .pricing-cta p { color: #5c4530 }

/* Cards com fundo escuro próprio (price-card, lead-form-wrap) mantêm o texto
   original, mesmo dentro de uma seção clara */
.section-light .price-card-name { color: var(--t100) }
.section-light .price-card-range { color: var(--gold-bright) }
.section-light .price-card-value { color: var(--blue-light) }
.section-light .price-card-unit { color: var(--t400) }
.section-light .lead-form-intro .section-title { color: var(--t100) }
.section-light .lead-form-intro .section-sub { color: var(--t300) }
.section-light .lead-form-note { color: var(--t500) }

/* ══════════════════════════════════════════════════════════
   ABOUT / FOUNDER
══════════════════════════════════════════════════════════ */
#about-founder { padding: 70px 0 }

.founder-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.founder-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #2b1d14 0%, #40301f 100%);
  border: 1px solid rgba(139, 58, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(43, 29, 20, 0.18);
}

.founder-photo-frame .monogram {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 7rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.5);
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.founder-photo-frame .photo-note {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-size: 0.68rem;
  color: rgba(245, 240, 232, 0.45);
  text-align: center;
  letter-spacing: 0.04em;
}

.founder-quote {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.25;
  margin: 20px 0;
}

.founder-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(139, 58, 58, 0.15);
}

.founder-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.founder-stat-label { font-size: 0.7rem; color: #6b5641; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em }

.founder-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-base);
  border: 1px solid rgba(139, 58, 58, 0.25);
  padding: 8px 16px;
  border-radius: 99px;
  transition: var(--tr);
}

.founder-ig:hover { background: rgba(139, 58, 58, 0.08) }

/* ══════════════════════════════════════════════════════════
   TRUST BRIDGE
══════════════════════════════════════════════════════════ */
#trust-bridge { padding: 60px 0 70px }

.trust-bridge-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  box-shadow: var(--sh-pop);
}

.trust-bridge-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #2a1a0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-bridge-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--t100);
  line-height: 1.5;
  margin-bottom: 12px;
}

.trust-bridge-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--t400);
}

.trust-bridge-meta .dot { color: var(--t500) }

.trust-bridge-meta a {
  color: var(--blue-light);
  font-weight: 600;
  transition: var(--tr);
}

.trust-bridge-meta a:hover { color: var(--t100) }

/* ══════════════════════════════════════════════════════════
   BEFORE / AFTER COMPARISON
══════════════════════════════════════════════════════════ */
#compare { padding: 70px 0 }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.compare-card {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.compare-card.bad {
  background: rgba(139, 58, 58, 0.06);
  border-color: rgba(139, 58, 58, 0.2);
}

.compare-card.good {
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border-color: var(--border-mid);
  box-shadow: var(--sh-pop);
}

.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.compare-card.bad .compare-label { background: rgba(139, 58, 58, 0.16); color: var(--gold-bright) }
.compare-card.good .compare-label { background: var(--blue-dim); color: var(--blue-light) }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.compare-item:last-child { border-bottom: none }

.compare-card.bad .compare-item { color: var(--t300) }
.compare-card.good .compare-item { color: var(--t200) }

.compare-icon { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px }
.compare-card.bad .compare-icon { color: var(--gold-bright) }
.compare-card.good .compare-icon { color: var(--blue-light) }

/* ══════════════════════════════════════════════════════════
   PRICING — Pacote único
══════════════════════════════════════════════════════════ */
#pricing { padding: 70px 0 }

.pricing-footnote {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--t300);
  margin-top: 32px;
}

/* ── Price cards (3 pacotes) ────────────────────────────── */
.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  transition: var(--tr-slow);
}

.price-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: var(--sh-pop) }

.price-card.premium {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  box-shadow: var(--sh-pop);
}

.price-card-badge {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--blue);
  color: #2a1a0d;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
}

.price-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--t100);
  margin-bottom: 4px;
}

.price-card-range {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.price-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
}

.price-card-value .cur { font-size: 1.2rem; vertical-align: super; margin-right: 2px }
.price-card-unit { font-size: 0.82rem; color: var(--t400); margin: 10px 0 22px; line-height: 1.55 }

.price-card-list { display: flex; flex-direction: column; gap: 12px }

.price-card-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--t300);
  line-height: 1.5;
}

.price-card-item svg { flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; color: #6fbf8a }
.price-card-item strong { color: var(--gold-bright) }

.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

.pricing-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--t300);
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .faq-inner { grid-template-columns: 1fr }
  .faq-left { position: static }
  #hero { padding-top: 120px }
}

@media (max-width: 860px) {
  .tech-inner { grid-template-columns: 1fr; gap: 48px }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px }
  .process-step { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 28px }
  .process-step:nth-child(-n+2) { border-top: none; padding-top: 0 }
  .founder-wrap { grid-template-columns: 1fr; gap: 40px }
  .founder-photo-frame { max-width: 340px; margin: 0 auto; aspect-ratio: 1 / 1 }
  .compare-grid { grid-template-columns: 1fr }
  .extras-grid { grid-template-columns: 1fr 1fr }
  .media-grid { grid-template-columns: 1fr; max-width: 300px }
  .price-cards-grid { grid-template-columns: 1fr }
  .svc-block { grid-template-columns: 1fr; padding: 28px 24px }
  .svc-block-head { flex-direction: row; justify-content: flex-start }
  .lead-form-wrap { grid-template-columns: 1fr; gap: 32px }
}

@media (max-width: 640px) {
  .lead-form-row.two-col { flex-direction: column }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr }
  .process-step:nth-child(-n+2) { border-top: 1px solid var(--border); padding-top: 28px }
  .process-step:first-child { border-top: none; padding-top: 0 }
  .pain-content { flex-direction: column; align-items: flex-start; gap: 8px }
  .pain-desc { max-width: 100% }
  .pain-header { flex-direction: column; align-items: flex-start }
  .founder-stats { flex-wrap: wrap; gap: 20px }
  .svc-block-footer { align-items: flex-start }
  .extras-grid { grid-template-columns: 1fr }
  .bonus-block { padding: 36px 22px }
  .trust-bridge-card { flex-direction: column; text-align: center; padding: 32px 26px }
  .trust-bridge-meta { justify-content: center }
}

/* ══════════════════════════════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════════════════════════════ */
.mobile-sticky-cta { display: none }

@media (max-width: 720px) {
  .mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--blue);
    color: #2a1a0d;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    text-decoration: none;
  }

  body { padding-bottom: 78px }
}
