/* ============================================
   BEIRABYTE — page-consultation.css
   Consultation/Advisory page-specific styles.
   Loads AFTER style.css (shared DNA).
   ============================================ */

/* Page-specific variable extensions (not in base style.css) */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --gold: #C9A86A;
  --radius-2xl: 28px;
}

/* GLOBAL GRID BACKGROUND — soft, fixed, premium */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 80%);
}
body > * { position: relative; z-index: 1; }

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

/* TYPOGRAPHY — Inter only, differentiated by weight + spacing + gradient */
.t-display {
  font-weight: 700;
  letter-spacing: -0.03em;
}
.t-mono {
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 0.85em;
}

.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) {
  .container, .container-narrow, .container-wide { padding: 0 20px; }
}
section { position: relative; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18, 12, 34, 0.6);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-smooth);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(18, 12, 34, 0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.logo .byte { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -22px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.nav-right { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  transition: all 0.25s var(--ease);
  cursor: pointer; border: none;
  font-family: inherit; white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--accent); color: var(--bg);
  padding: 11px 20px; border-radius: 100px;
  position: relative;
  box-shadow: 0 0 0 0 rgba(34, 198, 230, 0);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px -6px rgba(34, 198, 230, 0.55), 0 0 0 1px rgba(34,198,230,0.3);
}
.btn-secondary {
  background: rgba(26, 18, 48, 0.6);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 11px 20px; border-radius: 100px;
  border: 1px solid var(--line-2);
}
.btn-secondary:hover { background: var(--surface-hi); border-color: var(--line-3); }
.btn-large { padding: 16px 30px; font-size: 15px; }
.btn-ghost {
  background: transparent; color: var(--accent);
  padding: 11px 20px; border-radius: 100px;
  border: 1px solid rgba(34,198,230,0.4);
}
.btn-ghost:hover {
  background: rgba(34,198,230,0.08);
  border-color: var(--accent);
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

@media (max-width: 900px) { .nav-links { display: none; } }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(18, 12, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-2);
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }

  /* v1.22.13: hide the GLOBAL mobile CTA bar (set by footer.php on every page)
   * when this page's own page-specific sticky CTA is active. Without this rule,
   * both stick to the bottom of the viewport and visually overlap each other
   * — the user sees "Pedir orçamento grátis" stacked on top of "Marcar Sessão"
   * with each obscuring half of the other. The consultation page's own CTA
   * ("Marcar Sessão · desde €X") is more contextually useful here than the
   * generic site-wide "Pedir orçamento grátis", so we keep the page-specific
   * one and suppress the global one. Use !important to win against
   * style.css:1224 which sets display:block at the same breakpoint.
   */
  .bb-mobile-cta { display: none !important; }
  /* Also adjust the WhatsApp float — style.css pushed it up by 80px to clear
   * the global CTA bar that's no longer here. Without this, the float would
   * sit oddly high. Restore the default 24px offset. */
  .whatsapp-float { bottom: 24px !important; }
  /* And push the Lia badge up by the height of the page-specific sticky CTA
   * — style.css:1039 only handles that for .bb-mobile-cta, but we've hidden
   * that one. Without this rule the Lia badge would overlap our .sticky-cta. */
  .bb-lia-badge { bottom: 80px; }
}

/* ============================================
   HERO — editorial composition (v1.10.1)
   Reference: Monocle cover features, FT Weekend profiles,
   NYT magazine photo essays. Replaces the SaaS mesh hero.
   ============================================ */

/* v1.10.2 — Removed editorial serif stack to align with site-wide DNA.
   All headings now use Inter, with the cyan gradient for accent words —
   matching .page-hero-title .accent treatment used on every other page. */

.hero {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 820px) {
  .hero { padding: 88px 0 56px; }
}

/* Faint engineering-grid background — replaces the purple/cyan blobs.
   60px cells, barely visible — adds precision without noise. */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
}

.hero .container { position: relative; z-index: 1; }

/* ---------- TOP ROW: editorial marker + availability status ---------- */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .hero-top { margin-bottom: 40px; }
}

.hero-marker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-marker-num {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.hero-marker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-marker-text { color: var(--ink-3); }
.hero-marker-lang { color: var(--accent); font-weight: 600; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.hero-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(34,198,230,0.6);
  animation: hero-status-pulse 2.4s var(--ease-smooth) infinite;
  flex-shrink: 0;
}
.hero-status-waitlist .hero-status-dot {
  background: var(--ink-3);
  animation: none;
}
.hero-status-text { white-space: nowrap; }
@keyframes hero-status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,198,230,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,198,230,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,198,230,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-status-dot { animation: none; }
}
@media (max-width: 560px) {
  .hero-status { font-size: 9px; padding: 6px 12px; }
}

/* ---------- MAIN GRID: copy + portrait ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: end;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 320px; gap: 56px; }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }
}

.hero-content { padding-bottom: 4px; }

/* ---------- HEADLINE: Inter + cyan gradient — matches site-wide DNA ---------- */
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: var(--ink);
  overflow-wrap: break-word;
}
.hero-title-line-1,
.hero-title-line-2 {
  display: block;
}
.hero-title .display {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-title-dot {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- PULL QUOTE: Inter, cleaner, with accent rule ---------- */
.hero-quote {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0 0 24px;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--accent);
  max-width: 520px;
  letter-spacing: -0.005em;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0 0 32px;
  max-width: 520px;
}

/* ---------- CTA: solid rect primary + underlined text link ---------- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
  border: 1px solid var(--accent);
}
.hero-btn-primary svg {
  transition: transform 0.25s var(--ease-smooth);
}
.hero-btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
}
.hero-btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-btn-secondary {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid var(--line-3);
  transition: all 0.2s var(--ease-smooth);
}
.hero-btn-secondary:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero-commitment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.hero-commitment-label { color: var(--ink-3); }
.hero-commitment-sep { color: var(--ink-4); }
.hero-commitment-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}
.hero-commitment-link:hover { color: var(--accent); }
.hero-commitment-link svg { transition: transform 0.2s var(--ease-smooth); }
.hero-commitment-link:hover svg { transform: translateX(2px); }

/* ---------- PORTRAIT: editorial frame with corner brackets ---------- */
.hero-portrait {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  justify-self: end;
}
@media (max-width: 900px) {
  .hero-portrait {
    max-width: 340px;
    justify-self: start;
  }
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: visible;
  isolation: isolate;
}

/* Soft cyan ambient glow behind the photo — matches site-wide accent treatment */
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at 30% 20%, rgba(34,198,230,0.28) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(59,213,242,0.18) 0%, transparent 65%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.6s var(--ease-smooth);
}
.hero-photo-wrap:hover::before { opacity: 1; }

/* Gradient border ring — uses the same accent gradient as buttons + section titles */
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg,
    rgba(34,198,230,0.55) 0%,
    rgba(34,198,230,0.08) 35%,
    rgba(59,213,242,0.08) 65%,
    rgba(59,213,242,0.55) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px -16px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}
.hero-photo-wrap:hover .hero-photo {
  transform: translateY(-2px);
  box-shadow:
    0 32px 72px -16px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}

/* Corner brackets — cyan L-shapes anchored just outside the rounded card,
   matching the editorial framing the user wanted to keep. */
.hero-photo-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--accent);
  pointer-events: none;
  z-index: 3;
  border-radius: 2px;
}
.hero-photo-corner-tl {
  top: -10px; left: -10px;
  border-right: none; border-bottom: none;
}
.hero-photo-corner-tr {
  top: -10px; right: -10px;
  border-left: none; border-bottom: none;
}
.hero-photo-corner-bl {
  bottom: -10px; left: -10px;
  border-right: none; border-top: none;
}
.hero-photo-corner-br {
  bottom: -10px; right: -10px;
  border-left: none; border-top: none;
}

/* ---------- PHOTO CAPTION: editorial credit line ---------- */
.hero-caption {
  margin: 0;
  padding: 14px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid var(--line-2);
  margin-top: 14px;
}
.hero-caption-main { min-width: 0; }
.hero-caption-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 4px;
}
.hero-caption-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.35;
  margin: 0;
  letter-spacing: 0.01em;
}
.hero-caption-meta {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .hero-caption-name { font-size: 14px; }
  .hero-caption-role { font-size: 10px; }
  .hero-caption-meta { font-size: 8px; }
}

/* ---------- CREDENTIAL DATA STRIP: profile-card / masthead ---------- */
.hero-data {
  margin: 72px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-data-item {
  padding: 4px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-data-item:first-child { padding-left: 0; }
.hero-data-item:last-child { padding-right: 0; }
.hero-data-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: var(--line);
}
.hero-data-key {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-data-val {
  font-family: var(--font-sans);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-data-val .plus {
  color: var(--accent);
  font-size: 0.7em;
  font-weight: 500;
  margin-left: -3px;
}
.hero-data-val .reg {
  color: var(--ink-4);
  font-size: 0.45em;
  font-weight: 500;
  margin-left: -4px;
  transform: translateY(-0.8em);
}
.hero-data-val .unit {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-left: 2px;
}

@media (max-width: 820px) {
  .hero-data {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding: 24px 0 0;
  }
  .hero-data-item { padding: 4px 16px; }
  .hero-data-item:nth-child(1),
  .hero-data-item:nth-child(3) { padding-left: 0; }
  .hero-data-item:nth-child(2),
  .hero-data-item:nth-child(4) { padding-right: 0; }
  .hero-data-item:nth-child(3)::before,
  .hero-data-item:nth-child(1)::before { display: none; }
  .hero-data-item:nth-child(2)::before,
  .hero-data-item:nth-child(4)::before {
    top: 10%; bottom: 10%;
  }
}
@media (max-width: 480px) {
  .hero-data { grid-template-columns: 1fr; gap: 20px; }
  .hero-data-item { padding: 0 !important; }
  .hero-data-item::before { display: none !important; }
}

/* REGIONS STRIP — minimal mono */
.regions-strip {
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.regions-inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.regions-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.regions-list {
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.region {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.region::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 600;
}

/* SECTIONS */
.section { padding: 140px 0; position: relative; }
.section-tight { padding: 80px 0; }
@media (max-width: 768px) {
  .section { padding: 90px 0; }
  .section-tight { padding: 60px 0; }
}

.section-header {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-header.left {
  margin-left: 0;
  text-align: left;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  display: none;
}
.section-header.left .section-eyebrow { }
.section-header:not(.left) .section-eyebrow { }
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-title .display {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.section-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.section-sub-en {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}


/* ============================================
   WHY ME — three columns with dividers
   ============================================ */
.whyme-section {
  padding: 80px 0 120px;
}
.whyme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  overflow: hidden;
  align-items: stretch;
}
@media (max-width: 820px) { .whyme-grid { grid-template-columns: 1fr; } }
.whyme-col {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.whyme-col:last-child { border-right: none; }
@media (max-width: 820px) {
  .whyme-col { border-right: none; border-bottom: 1px solid var(--line); }
  .whyme-col:last-child { border-bottom: none; }
}
.whyme-col.featured {
  background: linear-gradient(180deg, rgba(34,198,230,0.06) 0%, transparent 100%);
}
.whyme-col-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.whyme-col.featured .whyme-col-label { color: var(--accent); }
.whyme-col-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 2.6em;
}
.whyme-col-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
  flex-grow: 1;
}
.whyme-col-price {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

/* ============================================
   REGIONS BLOCK (replaces logos strip)
   ============================================ */
.regions-block-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.regions-block-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .regions-block-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.region-block {
  text-align: center;
  padding: 8px;
  transition: transform 0.3s var(--ease);
}
.region-block:hover { transform: translateY(-3px); }
.region-block:hover .region-icon {
  background: rgba(34,198,230,0.18);
  border-color: var(--accent);
  color: var(--accent-2);
}
.region-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: rgba(34,198,230,0.06);
  border: 1px solid rgba(34,198,230,0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: all 0.3s var(--ease);
}
.region-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.region-detail {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* ============================================
   PILLARS — large hero-style cards (4 main)
   ============================================ */
.pillars-section { padding: 140px 0; }

.pillars-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .pillars-grid { grid-template-columns: 1fr !important; }
}

.pillar-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(34,198,230,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}
.pillar-card:hover {
  border-color: rgba(34,198,230,0.4);
  transform: translateY(-4px);
}
.pillar-card:hover::before {
  background: radial-gradient(circle, rgba(34,198,230,0.18) 0%, transparent 70%);
}
.pillar-num {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink-4);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--ease);
}
.pillar-card:hover .pillar-num { color: var(--accent); }

.pillar-icon {
  position: absolute;
  top: 36px; right: 36px;
  width: 44px; height: 44px;
  background: rgba(34,198,230,0.1);
  border: 1px solid rgba(34,198,230,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.pillar-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.pillar-desc {
  font-size: 15px; line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.pillar-desc-en {
  font-size: 11px; line-height: 1.6;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  position: relative;
  z-index: 1;
}

/* Supporting areas (2 small cards) */
.supports-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .supports-grid { grid-template-columns: 1fr; } }
.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s var(--ease);
}
.support-card:hover {
  border-color: var(--line-3);
  background: var(--surface-hi);
}
.support-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(34,198,230,0.08);
  border: 1px solid rgba(34,198,230,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.support-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.support-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ============================================
   EDUCATIONAL — Business Consultancy explainer
   ============================================ */
.educational-section { padding: 80px 0 140px; }

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .edu-grid { grid-template-columns: 1fr; } }

.edu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.edu-card:hover {
  border-color: rgba(34,198,230,0.3);
  background: var(--surface-hi);
}
.edu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 40px;
  background: var(--accent);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), height 0.3s var(--ease);
}
.edu-card:hover::before {
  opacity: 1;
  height: 60px;
}
.edu-card-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.edu-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--ink);
}
.edu-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}
.edu-card-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================
   TOPICS — pillared list with tags
   ============================================ */
.topics-section { padding: 80px 0 140px; }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 700px) { .topics-grid { grid-template-columns: 1fr; } }
.topic {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.topic:hover {
  border-color: var(--line-3);
  background: var(--surface-hi);
  transform: translateX(4px);
}
.topic::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.topic:hover::before { opacity: 1; }
.topic-icon {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  background: rgba(34,198,230,0.1);
  color: var(--accent);
  border-radius: 4px;
  margin-top: 2px;
}
.topic-text {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-2);
}
.topic-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-section { padding: 80px 0 140px; }

.compare-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 540px) {
  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    min-width: 480px;
  }
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.compare-table th {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  background: rgba(0,0,0,0.2);
  vertical-align: bottom;
  padding: 24px 22px 18px;
}
.compare-table th.col-me {
  color: var(--accent);
  background: linear-gradient(180deg, rgba(34,198,230,0.12) 0%, rgba(34,198,230,0.04) 100%);
  position: relative;
}
.compare-table th.col-me::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(34,198,230,0.6);
}
.compare-table td.col-me {
  background: rgba(34,198,230,0.04);
  color: var(--ink);
  font-weight: 500;
  border-left: 1px solid rgba(34,198,230,0.15);
  border-right: 1px solid rgba(34,198,230,0.15);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .row-label {
  font-weight: 600;
  color: var(--ink);
}
.compare-yes { color: var(--accent); font-weight: 600; }
.compare-no { color: var(--ink-4); }
.compare-partial { color: var(--ink-3); font-weight: 500; }
@media (max-width: 760px) {
  .compare-table th, .compare-table td { padding: 14px 12px; font-size: 12px; }
  .compare-table .row-label { font-size: 13px; }
}

/* ============================================
   FREE INTRO FORM
   ============================================ */
.intro-section { padding: 80px 0 140px; }
.intro-form-wrap {
  background: linear-gradient(135deg, rgba(34,198,230,0.06) 0%, var(--surface) 50%, rgba(34,230,144,0.04) 100%);
  border: 1px solid rgba(34,198,230,0.25);
  border-radius: var(--radius-xl);
  padding: 56px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .intro-form-wrap { padding: 32px 22px; border-radius: var(--radius-lg); }
}
.intro-form-wrap::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(34,198,230,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.intro-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 230, 144, 0.1);
  border: 1px solid rgba(34, 230, 144, 0.3);
  border-radius: 100px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--success);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.intro-form-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
}
.intro-form-title .display {
  font-weight: 700;
  color: var(--accent);
}
.intro-form-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 3px rgba(34,198,230,0.1);
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-4); }
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.form-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* RGPD CONSENT */
.form-consent {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.magnet-consents {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  padding: 10px 14px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease);
}
.consent-row:hover { border-color: var(--line-2); }
.consent-row-tight {
  padding: 8px 12px;
  background: transparent;
  border: none;
}
.consent-cb {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
  letter-spacing: 0;
  text-transform: none;
}
.consent-text em {
  color: var(--ink-4);
  font-style: italic;
}
.consent-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-link:hover { color: var(--accent-2); }
@media (max-width: 600px) {
  .intro-form-wrap { padding: 32px; }
}

/* ============================================
   PRICING TIERS — premium cards
   ============================================ */
.pricing-section { padding: 80px 0 140px; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 16px;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
@media (max-width: 600px) {
  .tier { padding: 32px 24px; }
  .tier.featured { transform: none; }
  .tier.featured:hover { transform: translateY(-3px); }
}

.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.tier:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.tier.featured {
  background: linear-gradient(180deg, rgba(34,198,230,0.08) 0%, var(--surface) 100%);
  border-color: rgba(34,198,230,0.4);
  transform: scale(1.02);
  box-shadow: 0 24px 60px -20px rgba(34,198,230,0.25);
}
.tier.featured:hover {
  transform: scale(1.02) translateY(-3px);
}
.tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 20px -4px rgba(34,198,230,0.5);
  z-index: 2;
  white-space: nowrap;
}
.tier-name {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.tier-headline {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tier-headline-en {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.tier-duration {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tier-price {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--ink) 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tier.featured .tier-price {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tier-price sup {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
  vertical-align: top;
  margin-right: 4px;
  -webkit-text-fill-color: var(--ink-3);
}
.tier-price-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.tier-price-note strong { color: var(--ink-2); font-weight: 600; }
.vip-price-note strong { color: var(--ink-2); font-weight: 600; }
.tier-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.tier-list li {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.tier-list li:last-child { border-bottom: none; }
.tier-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 16px;
  background: rgba(34,198,230,0.15);
  border-radius: 50%;
}
.tier-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 19px;
  width: 7px; height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.tier-commitment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0;
  font-weight: 500;
}
.tier-commitment svg {
  color: var(--accent);
  flex-shrink: 0;
}
.tier .btn { width: 100%; }

/* TIER LANGUAGE + INTRO NOTES */
.tier-language-note {
  font-size: 11.5px;
  color: var(--ink-3);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.tier-intro-note {
  font-size: 11.5px;
  color: var(--accent);
  margin: 10px 0 0;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* IVA / PRICING DISCLAIMER */
.iva-disclaimer {
  margin: 32px auto 0;
  max-width: 760px;
  padding: 18px 28px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.01em;
}
.iva-disclaimer strong { color: var(--ink-2); font-weight: 600; }

/* VIP CARD */
.vip-card {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(201,168,106,0.08) 0%, var(--surface) 60%, rgba(34,198,230,0.04) 100%);
  border: 1px solid rgba(201,168,106,0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vip-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201,168,106,0.12);
  border: 1px solid rgba(201,168,106,0.3);
  border-radius: 100px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 20px;
}
.vip-headline {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.vip-headline .display {
  font-weight: 700;
  color: var(--gold);
}
.vip-desc {
  color: var(--ink-2);
  font-size: 15px; line-height: 1.65;
  max-width: 580px;
}
.vip-right { text-align: right; position: relative; z-index: 1; }
.vip-price {
  font-size: clamp(38px, 5.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, #DDC288 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-price sup {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 22px;
  -webkit-text-fill-color: var(--ink-3);
  margin-right: 4px;
}
.vip-price-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media (max-width: 780px) {
  .vip-card { grid-template-columns: 1fr; padding: 32px; }
  .vip-right { text-align: left; }
}

/* RETAINER */
.retainer-card {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 780px) {
  .retainer-card { grid-template-columns: 1fr; padding: 28px; }
  .retainer-right { text-align: left !important; }
}

/* SCARCITY */
.scarcity-strip {
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(201,168,106,0.05);
  border: 1px solid rgba(201,168,106,0.2);
  border-radius: var(--radius);
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.scarcity-strip strong { color: var(--gold); font-weight: 600; }

/* ============================================
   PROCESS — connected timeline
   ============================================ */
.process-section { padding: 80px 0 140px; }
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process { grid-template-columns: 1fr; } }

.process::before {
  content: "";
  position: absolute;
  top: 18px; left: 36px; right: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 10%, var(--line-2) 90%, transparent);
}
@media (max-width: 900px) { .process::before { display: none; } }

.step {
  padding: 0 18px;
  text-align: center;
  position: relative;
}
.step-num-wrap {
  width: 36px; height: 36px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
}
.step-title {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px; line-height: 1.6;
  color: var(--ink-2);
}

/* ============================================
   FIT
   ============================================ */
.fit-section { padding: 80px 0 140px; }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 820px) { .fit-grid { grid-template-columns: 1fr; } }

.fit-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.fit-col.yes {
  border-color: rgba(34,198,230,0.3);
  background: linear-gradient(180deg, rgba(34,198,230,0.04) 0%, var(--surface) 100%);
}
.fit-col-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.fit-col.yes .fit-col-title { color: var(--accent); }
.fit-col.no .fit-col-title { color: var(--ink-3); }
.fit-list { list-style: none; }
.fit-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.fit-list li:last-child { border-bottom: none; }
.fit-col.yes .fit-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.fit-col.no .fit-list li::before {
  content: "×";
  position: absolute;
  left: 4px; top: 8px;
  color: var(--ink-4);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   LEAD MAGNET
   ============================================ */
.magnet-section { padding: 80px 0 140px; }
.magnet {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-2xl);
  padding: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.magnet::before {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,198,230,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.magnet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34,198,230,0.08);
  border: 1px solid rgba(34,198,230,0.25);
  border-radius: 100px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
}
.magnet-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
.magnet-title .display {
  font-weight: 700;
  color: var(--accent);
}
.magnet-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.magnet-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.magnet-form .form-input { flex: 1; min-width: 200px; }
.magnet-visual {
  position: relative;
  z-index: 1;
}
.magnet-pdf {
  width: 100%;
  background: linear-gradient(160deg, var(--surface-hi) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
}
.magnet:hover .magnet-pdf { transform: rotate(0deg) translateY(-4px); }
.magnet-pdf::before {
  content: "GRÁTIS";
  position: absolute;
  top: 18px; right: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 4px;
}
.magnet-pdf-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.magnet-pdf-sub {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.magnet-pdf-list {
  list-style: none;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
  margin-top: 4px;
}
.magnet-pdf-list li {
  padding-left: 16px;
  position: relative;
}
.magnet-pdf-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
@media (max-width: 820px) {
  .magnet { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
  .magnet-visual { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .magnet { padding: 28px 22px; gap: 28px; border-radius: var(--radius-lg); }
  .magnet-form .form-input { min-width: 0; flex: 1 1 100%; }
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
  padding: 140px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(34,198,230,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-2xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .booking-wrap { padding: 32px 20px; border-radius: var(--radius-lg); }
}
.booking-wrap::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(34,198,230,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.booking-title {
  font-size: clamp(24px, 5.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
}
.booking-title .display {
  font-weight: 700;
  color: var(--accent);
}
.booking-sub {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.booking-embed-placeholder {
  margin: 36px 0 24px;
  padding: 60px 24px;
  background: rgba(0,0,0,0.3);
  border: 1.5px dashed rgba(34,198,230,0.3);
  border-radius: var(--radius-lg);
  color: var(--ink-3);
  font-size: 14px;
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.booking-embed-placeholder strong {
  display: block;
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.booking-embed-placeholder code {
  display: inline-block;
  background: var(--surface-hi);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 12px;
}
.skeleton-loader {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.skeleton-day {
  width: 44px; height: 64px;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-hi) 50%, var(--surface) 100%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.trust-badge svg { color: var(--accent); }

/* LEGAL NOTICE BLOCK */
.legal-notice {
  margin: 32px auto 0;
  max-width: 780px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: left;
  position: relative;
  z-index: 1;
}
.legal-notice p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.legal-notice p:last-child { margin-bottom: 0; }
.legal-notice strong {
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 11px;
  text-transform: uppercase;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 140px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] {
  border-color: rgba(34,198,230,0.3);
  background: var(--surface-hi);
}
.faq-q {
  padding: 22px 26px;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 24px; font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
  font-family: var(--font-sans);
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 26px 22px;
  font-size: 14px; line-height: 1.7;
  color: var(--ink-2);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(34,198,230,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.final-cta-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.final-cta-title .display {
  font-weight: 700;
  color: var(--accent);
}
.final-cta-sub {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.last-updated {
  margin-top: 48px;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}

/* FOOTER — uses shared site footer styles from style.css.
   Page-specific footer overrides removed in v1.10.2 so the consultation
   page renders the same multi-column branded footer as every other page. */

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 200;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(18, 12, 34, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.5);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  min-width: 280px;
}
.cookie-banner-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 9px 16px;
  font-size: 13px;
}
@media (max-width: 600px) {
  .cookie-banner { bottom: 90px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* ============================================
   FORM FLASH MESSAGES
   ============================================ */
.bb-flash {
  padding: 16px 0;
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
}
.bb-flash-success {
  background: rgba(34, 230, 144, 0.08);
  border-top: 1px solid rgba(34, 230, 144, 0.25);
  border-bottom: 1px solid rgba(34, 230, 144, 0.25);
  color: var(--success);
}
.bb-flash-error {
  background: rgba(255, 94, 94, 0.08);
  border-top: 1px solid rgba(255, 94, 94, 0.3);
  border-bottom: 1px solid rgba(255, 94, 94, 0.3);
  color: #ff9e9e;
}
.bb-flash strong { margin-right: 6px; }

/* ============================================
 * v1.22.14 — MOBILE SECTION PADDING OVERRIDES
 * ============================================
 * Real bug spotted from a mobile screenshot: the page has 12 sections all
 * using 80-140px vertical padding even on phones (375-414px viewports). The
 * cumulative effect is huge empty voids between sections — you'd scroll a
 * full screen just to traverse the gap from one section to the next.
 *
 * Fix: at ≤768px, tighten every section's vertical padding. Generic .section
 * already had a 140 → 90px override (existing). These additions cover all
 * the page-specific sections that were missing one.
 *
 * Standard mobile section padding: 64px top, 64px bottom (instead of 140-120).
 * Adjusted for sections that need slight variations.
 * ============================================ */
@media (max-width: 768px) {
  .whyme-section          { padding: 60px 0 64px; }
  .pillars-section        { padding: 72px 0; }
  .educational-section    { padding: 60px 0 72px; }
  .topics-section         { padding: 60px 0 72px; }
  .compare-section        { padding: 60px 0 72px; }
  .intro-section          { padding: 60px 0 72px; }
  .pricing-section        { padding: 60px 0 72px; }
  .process-section        { padding: 60px 0 72px; }
  .fit-section            { padding: 60px 0 72px; }
  .magnet-section         { padding: 60px 0 72px; }
  .faq-section            { padding: 72px 0; }
  .regions-block-section  { padding: 48px 0; }
}
