:root {
  --navy: #0b1524;
  --navy-mid: #121f33;
  --navy-soft: #1a2d47;
  --yellow: #f2c200;
  --yellow-soft: #f7d54a;
  --cream: #f0ece4;
  --white: #f7f8fa;
  --text-muted: #7d8fa8;
  --text-body: #b8c5d6;
  --line: rgba(247, 248, 250, 0.12);
  --header-h: 72px;
  --page-x: clamp(20px, 4.5vw, 48px);
  --section-py: clamp(72px, 10vh, 128px);
  --container-max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-label: "Montserrat", system-ui, sans-serif;
  --x: 50%;
  --y: 50%;
  --xp: 0.5;
  --yp: 0.5;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

section[id],
[id="contato"] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography — Inter (corpo) · Poppins (títulos) · Montserrat (UI) */
h1, h2, h3, h4, h5, h6,
.display,
.logo,
.hero-title,
.impact-mark,
.impact h2,
.about-content h2,
.about-pull p,
.about-founder-name,
.audience-head h2,
.audience-card h3,
.services-intro h2,
.service-trigger h3,
.method-head h2,
.method-item h3,
.plans-head h2,
.plan-card h3,
.diagnosis-head h2,
.diagnosis-item h3,
.portfolio-top h2,
.work-card h3,
.cta-band h2,
.contact-head h2,
.contact-form-head h3,
.contact-whatsapp-number,
.contact-perk strong,
.form-success h3 {
  font-family: var(--font-display);
}

/* Títulos de seção — Poppins 700 */
h1, h2,
.hero-title,
.impact-mark,
.impact h2,
.about-content h2,
.about-pull p,
.about-founder-name,
.audience-head h2,
.services-intro h2,
.method-head h2,
.plans-head h2,
.diagnosis-head h2,
.portfolio-top h2,
.cta-band h2,
.contact-head h2,
.form-success h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Títulos de card / componente — 600 */
h3, h4, h5, h6,
.service-trigger h3,
.contact-form-head h3,
.contact-perk strong {
  font-weight: 600;
}

/* Focus visível — teclado e acessibilidade */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn-fill:focus-visible,
.about .btn-fill:focus-visible,
.about :focus-visible {
  outline-color: var(--navy);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-color: var(--yellow);
}

.service-trigger:focus-visible {
  border-radius: 8px;
}

.contact-whatsapp-card:focus-visible {
  outline-offset: 4px;
}

.wa-float:focus-visible {
  outline-color: var(--white);
  outline-offset: 4px;
}

.eyebrow,
.logo-tagline,
.link-arrow,
.btn,
.nav-desktop a,
.mobile-nav a,
.num,
.plan-label,
.service-tags span,
.form-group label,
.footer-copy,
.footer-nav a,
.contact-whatsapp-label,
.contact-whatsapp-action,
.work-card-tag,
.portfolio-credit,
.plans-note {
  font-family: var(--font-label);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
}

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

::selection {
  background: var(--yellow);
  color: var(--navy);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

.section-pad {
  padding-block: var(--section-py);
}

/* Global animated background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg canvas {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

main {
  position: relative;
  z-index: 1;
}

/* Premium icon system */
.lm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(242, 194, 0, 0.08);
  border: 1px solid rgba(242, 194, 0, 0.18);
  color: var(--yellow);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.lm-icon svg {
  width: 22px;
  height: 22px;
}

.lm-icon--xs {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.lm-icon--xs svg { width: 16px; height: 16px; }

.lm-icon--sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.lm-icon--sm svg { width: 18px; height: 18px; }

.lm-icon--md {
  width: 44px;
  height: 44px;
}

.lm-icon--md svg { width: 20px; height: 20px; }

.lm-icon--lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.lm-icon--lg svg { width: 26px; height: 26px; }

/* Glow card — spotlight border on pointer move (vars set once on :root) */
[data-glow] {
  --glow-base: 48;
  --glow-spread: 110;
  --radius: 16;
  --border: 2;
  --backdrop: hsl(48 80% 55% / 0.07);
  --backup-border: var(--backdrop);
  --size: 220;
  --saturation: 95%;
  --lightness: 68%;
  --bg-spot-opacity: 0.14;
  --border-spot-opacity: 0.9;
  --border-light-opacity: 0.55;
  --border-size: calc(var(--border) * 1px);
  --spotlight-size: calc(var(--size) * 1px);
  --hue: calc(var(--glow-base) + (var(--xp, 0.5) * var(--glow-spread)));
  --glow-surface: var(--navy-mid);
  position: relative;
  touch-action: manipulation;
  isolation: isolate;
  border: var(--border-size) solid var(--backup-border) !important;
  background-color: transparent;
  background-image:
    radial-gradient(
      var(--spotlight-size) var(--spotlight-size) at
      calc(var(--x, 50%) * 1px)
      calc(var(--y, 50%) * 1px),
      hsl(var(--hue) var(--saturation) var(--lightness) / var(--bg-spot-opacity)),
      transparent
    ),
    linear-gradient(var(--glow-surface), var(--glow-surface));
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
  contain: paint;
}

[data-glow][data-glow-color="navy"] {
  --glow-base: 218;
  --glow-spread: 70;
  --backdrop: hsl(218 35% 28% / 0.12);
  --bg-spot-opacity: 0.1;
  --border-spot-opacity: 0.75;
  --lightness: 42%;
}

[data-glow][data-glow-color="green"] {
  --glow-base: 145;
  --glow-spread: 90;
  --backdrop: hsl(145 65% 42% / 0.18);
  --bg-spot-opacity: 0.16;
  --border-spot-opacity: 0.85;
  --lightness: 58%;
}

[data-glow="full"]::before,
[data-glow="full"]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  border: var(--border-size) solid transparent;
  border-radius: calc(var(--radius) * 1px);
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  -webkit-mask-clip: padding-box, border-box;
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  z-index: 0;
}

[data-glow="full"]::before {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
    calc(var(--x, 50%) * 1px)
    calc(var(--y, 50%) * 1px),
    hsl(var(--hue) var(--saturation) calc(var(--lightness) - 12%) / var(--border-spot-opacity)),
    transparent 100%
  );
}

[data-glow="full"]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, 50%) * 1px)
    calc(var(--y, 50%) * 1px),
    hsl(0 0% 100% / var(--border-light-opacity)),
    transparent 100%
  );
}

[data-glow="lite"] {
  --size: 160;
  --bg-spot-opacity: 0.1;
  --border: 1;
}

[data-glow] > * {
  position: relative;
  z-index: 1;
}

[data-glow].audience-card {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].audience-card:hover {
  --glow-surface: var(--navy-soft);
  border-color: transparent !important;
}

[data-glow].work-card {
  --glow-surface: var(--navy);
  --radius: 16;
  overflow: visible;
}

[data-glow].work-card:hover {
  border-color: transparent !important;
}

[data-glow].plan-card {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].plan-card--featured {
  --glow-surface: var(--navy-soft);
}

[data-glow].plan-card:hover {
  border-color: transparent !important;
}

.about-gallery[data-glow] {
  --glow-surface: var(--navy);
  --radius: 14;
  overflow: visible;
}

.about-pull[data-glow] {
  --glow-surface: transparent;
  --radius: 14;
  border-block: none !important;
  padding: 32px 28px !important;
}

[data-glow].method-item {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].method-item:hover {
  --glow-surface: var(--navy-soft);
  border-color: transparent !important;
}

.service-row[data-glow] {
  --glow-surface: transparent;
  --radius: 14;
  border-bottom: none !important;
  margin-bottom: 10px;
  padding: 2px 20px 0;
}

.service-row.open[data-glow] {
  --glow-surface: rgba(18, 31, 51, 0.4);
}

.service-tags span[data-glow] {
  --glow-surface: var(--navy);
  --radius: 8;
  --size: 140;
  --border: 1;
}

[data-glow].diagnosis-side-inner {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

.contact-form-wrap[data-glow] {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

.contact-whatsapp-card[data-glow] {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

.contact-perks[data-glow] {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].cta-card {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].cta-card:hover {
  --glow-surface: var(--navy-soft);
  border-color: transparent !important;
}

.form-success[data-glow] {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].impact-card {
  --glow-surface: var(--navy-mid);
  --radius: 16;
}

[data-glow].impact-card:hover {
  --glow-surface: var(--navy-soft);
  border-color: transparent !important;
}

.btn[data-glow] {
  --radius: 999;
  --size: 180;
}

.btn-fill[data-glow] {
  --glow-surface: var(--yellow);
  box-shadow: none;
}

.btn-line[data-glow] {
  --glow-surface: transparent;
}

.btn-line[data-glow]:hover {
  border-color: transparent !important;
}

.glow-field-wrap {
  display: block;
  width: 100%;
}

.glow-field-wrap[data-glow] {
  --glow-surface: var(--navy);
  --radius: 8;
  --size: 160;
  --border: 1;
}

.glow-field-wrap input,
.glow-field-wrap select,
.glow-field-wrap textarea {
  width: 100%;
  background: transparent;
  border-color: transparent !important;
  position: relative;
  z-index: 1;
}

.wa-float[data-glow] {
  --glow-surface: #25d366;
  --radius: 999;
  --size: 120;
  --border: 2;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  [data-glow="full"]::before,
  [data-glow="full"]::after {
    display: none;
  }
}

/* Logo */
.logo {
  display: inline-flex;
  flex-direction: column;

  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.logo-mark {
  display: inline-flex;
  align-items: baseline;
}

.logo-dot {
  display: inline-block;
  width: 0.36em;
  height: 0.36em;
  border-radius: 50%;
  background: var(--yellow);
  margin-left: 0.04em;
  transform: translateY(-0.1em);
}

.logo--light .logo-mark { color: var(--white); }
.logo--dark .logo-mark { color: var(--navy); }
.logo--on-yellow .logo-mark { color: var(--navy); }
.logo--on-yellow .logo-dot { background: var(--white); }
.logo--on-yellow .logo-tagline { color: var(--navy); opacity: 0.6; }

.logo-tagline {

  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.7;
}

/* Type system */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.display {
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display em {
  font-style: italic;
  color: var(--yellow);
}

.lead {
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--text-body);
  max-width: 52ch;
  line-height: 1.65;
}

/* Links & buttons */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap 0.3s var(--ease);
}

.link-arrow::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover {
  gap: 18px;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;

  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s, box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover { transform: translateY(-3px); }

.btn-sm {
  padding: 10px 18px;
  font-size: 0.78rem;
}

.btn-fill {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 40px rgba(242, 194, 0, 0.22);
}

.btn-fill:hover {
  background: var(--yellow-soft);
  box-shadow: 0 16px 48px rgba(242, 194, 0, 0.32);
}

.btn-line {
  border: 1px solid var(--line);
  color: var(--white);
}

.btn-line:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover { background: var(--navy-mid); }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(11, 21, 36, 0.9);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header .container {
  height: 100%;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.header-logo {
  grid-column: 1;
  grid-row: 1;
}

.header-logo .logo { font-size: 1.35rem; }
.header-logo .logo-tagline { display: none; }

.nav-desktop {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  min-width: 0;
}

.nav-desktop a {

  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: block;
}

.header-cta .btn {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--white);
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 32px var(--page-x);
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {

  font-size: 1.75rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-h) + 48px) var(--page-x) 0;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 248, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb--1 {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  background: rgba(242, 194, 0, 0.14);
  top: 10%;
  left: 15%;
}

.hero-orb--2 {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  background: rgba(26, 45, 71, 0.9);
  bottom: 20%;
  right: 10%;
  border: 1px solid rgba(242, 194, 0, 0.06);
}

.hero-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.12) 0%, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  padding-bottom: 48px;
}

.hero-logo {
  font-size: clamp(2.2rem, 5.25vw, 3.5rem);
  align-items: center;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease) 0.1s both;
}

.hero-title {

  font-size: clamp(1.9rem, 4.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(2deg);
  animation: wordIn 0.7s var(--ease) forwards;
  animation-delay: calc(0.15s + var(--i) * 0.04s);
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--text-body);
  max-width: 58ch;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-desc,
.hero-actions,
.hero-footnote {
  opacity: 1;
  transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.hero-actions .btn {
  position: relative;
  z-index: 2;
}

.hero-footnote {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* Work marquee in hero */
.work-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  margin-top: auto;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.work-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.work-marquee-group {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  padding-right: 20px;
}

.work-marquee-track img {
  height: clamp(100px, 14vw, 160px);
  width: auto;
  aspect-ratio: 7 / 5;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}

.work-marquee-track img:hover {
  transform: scale(1.04) translateY(-4px);
}

/* Impact */
.impact {
  padding-block: var(--section-py);
  position: relative;
}

.impact-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.impact-head .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}

.impact-mark {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 248, 250, 0.15);
  margin-bottom: 24px;
}

.impact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-inline: auto;
}

.impact h2 em {
  font-style: italic;
  display: block;
  color: var(--yellow);
  margin-top: 0.12em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin-inline: auto;
}

.impact-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 28px 24px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.impact-card:hover {
  transform: translateY(-4px);
}

.impact-card:not([data-glow]):hover {
  background: var(--navy-soft);
  border-color: rgba(242, 194, 0, 0.2);
}

.impact-card .num {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.impact-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-top: auto;
}

/* About */
.about {
  padding-block: var(--section-py);
  background: var(--cream);
  color: var(--navy);
}

.about .lm-icon {
  background: rgba(11, 21, 36, 0.06);
  border-color: rgba(11, 21, 36, 0.12);
  color: var(--navy);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-content .eyebrow {
  color: var(--navy);
  opacity: 0.55;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 16px 0 28px;
  color: var(--navy);
}

.about-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(11, 21, 36, 0.75);
  max-width: 52ch;
}

.about-content p + p { margin-top: 20px; }

.about-founder-card {
  margin-top: 36px;
  padding: 20px 24px 20px 28px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  background: rgba(11, 21, 36, 0.04);
  overflow: visible;
}

.about-founder-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  max-width: none;
}

.about-founder-role {
  font-size: 0.88rem;
  color: rgba(11, 21, 36, 0.55);
  margin-top: 4px;
  max-width: none;
}

.about-pull {
  margin-top: 40px;
  padding: 32px 0;
  border-block: 2px solid var(--navy);
}

.about-pull p {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: none;
}

.about-pull em {
  font-style: normal;
  font-weight: 500;
  color: rgba(11, 21, 36, 0.5);
}

.about-gallery {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy);
  aspect-ratio: 4/5;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.about-gallery:hover img {
  transform: scale(1.03);
}

/* Audience — 3×2 grid */
.audience {
  padding-block: var(--section-py);
}

.audience-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.audience-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-card {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-card:not([data-glow]):hover {
  background: var(--navy-soft);
  border-color: rgba(242, 194, 0, 0.2);
}

.audience-card:hover .lm-icon {
  background: rgba(242, 194, 0, 0.14);
  border-color: rgba(242, 194, 0, 0.35);
  transform: scale(1.05);
}

.audience-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.audience-card .num {

  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.audience-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: auto;
}

/* Services - accordion rows */
.services {
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.services-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.05rem);
  font-weight: 700;
  line-height: 1.05;
}

.service-row {
  border-bottom: 1px solid var(--line);
}

.service-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  transition: color 0.2s;
}

.service-trigger:hover { color: var(--yellow); }

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-trigger .num {

  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.service-row.open .service-trigger .lm-icon,
.service-trigger:hover .lm-icon {
  background: rgba(242, 194, 0, 0.14);
  border-color: rgba(242, 194, 0, 0.35);
}

.service-trigger h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.service-trigger .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.35s var(--ease), border-color 0.2s;
}

.service-row.open .service-trigger .icon {
  transform: rotate(45deg);
  border-color: var(--yellow);
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.service-row.open .service-panel {
  grid-template-rows: 1fr;
}

.service-panel-inner {
  overflow: hidden;
}

.service-panel-content {
  padding: 0 0 36px 144px;
  max-width: 720px;
}

.service-panel-content p {
  color: var(--text-body);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {

  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--text-muted);
}

/* Method */
.method {
  padding-block: var(--section-py);
}

.method-head {
  margin-bottom: 64px;
}

.method-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-top: 16px;
  max-width: 20ch;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-item {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 28px 24px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.method-item:hover {
  transform: translateY(-4px);
}

.method-item:not([data-glow]):hover {
  background: var(--navy-soft);
  border-color: rgba(242, 194, 0, 0.2);
}

.method-item:hover .lm-icon {
  background: rgba(242, 194, 0, 0.14);
  border-color: rgba(242, 194, 0, 0.35);
  transform: scale(1.05);
}

.method-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.method-item .num {

  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
}

.method-item h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.method-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-top: auto;
}

/* Plans — card grid */
.plans {
  padding-block: var(--section-py);
}

.plans-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.plans-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin: 16px 0 20px;
}

.plans-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.plans-bento .plan-card--featured {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.plans-bento .plan-card--compact:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.plans-bento .plan-card--compact:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2;
}

.plans-bento .plan-card--wide {
  grid-column: 1 / 13;
  grid-row: 3;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px 24px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.plan-card:hover {
  background: var(--navy-soft);
  border-color: rgba(242, 194, 0, 0.2);
  transform: translateY(-4px);
}

.plan-card--featured {
  background: var(--navy-soft);
  border-color: rgba(242, 194, 0, 0.3);
}

.plan-card--featured:hover {
  border-color: rgba(242, 194, 0, 0.45);
}

.plan-card--featured h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.plan-card--compact {
  min-height: 0;
  padding: 22px 20px 26px;
}

.plan-card--compact .plan-includes li {
  padding: 6px 0;
  font-size: 0.82rem;
}

.plan-card--wide {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.4fr auto;
  gap: 24px 40px;
  align-items: start;
  min-height: 0;
  padding: 28px 32px;
}

.plan-card--wide .plan-card-wide-main {
  min-width: 0;
}

.plan-card--wide .plan-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  margin-bottom: 0;
}

.plan-card--wide .plan-card-cta {
  align-self: end;
  white-space: nowrap;
}

.plan-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.plan-card .plan-label {

  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plan-card--featured .plan-label {
  color: var(--yellow);
}

.plan-card .num {

  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.plan-card .plan-for {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 20px;
}

.plan-includes {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.plan-includes li {
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-body);
  line-height: 1.4;
}

.plan-includes li:last-child {
  border-bottom: none;
}

.plan-card-cta {
  margin-top: auto;
}

.plans-note {
  margin-top: 40px;

  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.7;
}

/* Diagnosis — editorial list */
.diagnosis {
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.diagnosis-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.diagnosis-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 16px;
}

.diagnosis-head .lead {
  max-width: 42ch;
}

.diagnosis-body {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.diagnosis-side {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.diagnosis-side-inner {
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
}

.diagnosis-count {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--yellow);
}

.diagnosis-count-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.diagnosis-side-text {
  margin-top: 20px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
}

.diagnosis-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.diagnosis-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px 20px;
  padding: 20px 8px 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease), border-color 0.3s var(--ease);
}

.diagnosis-item:hover {
  padding-left: 8px;
  border-bottom-color: rgba(242, 194, 0, 0.25);
}

.diagnosis-item:hover .lm-icon {
  background: rgba(242, 194, 0, 0.14);
  border-color: rgba(242, 194, 0, 0.35);
}

.diagnosis-item .num {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  min-width: 1.5rem;
}

.diagnosis-item h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.diagnosis-foot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* Portfolio */
.portfolio {
  padding-block: var(--section-py);
  background: var(--navy-mid);
}

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

.portfolio-top h2 {

  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.portfolio-credit {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Work grid — Framer-style portfolio */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.work-grid--4 .work-card {
  grid-column: span 6;
}

.work-card {
  grid-column: span 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), border-color 0.3s;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card:not([data-glow]):hover {
  border-color: rgba(242, 194, 0, 0.3);
}

.work-card--wide { grid-column: span 8; }
.work-card--tall .work-card-media { aspect-ratio: 3/4; }

.work-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.work-card:hover .work-card-media img {
  transform: scale(1.06);
}

.work-card-body {
  padding: 24px 28px 28px;
}

.work-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}

.work-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
}

.work-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* CTA */
.cta-band {
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.cta-band-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.02;
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band h2 em {
  font-style: italic;
  display: block;
  color: var(--yellow);
  margin-top: 0.1em;
}

.cta-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin-inline: auto;
}

.cta-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 28px 24px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.cta-card:hover {
  transform: translateY(-4px);
}

.cta-card:not([data-glow]):hover {
  background: var(--navy-soft);
  border-color: rgba(242, 194, 0, 0.2);
}

.cta-card .num {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-top: auto;
}

.cta-band-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Contact */
.contact {
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.contact-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.contact-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 16px;
}

.contact-head .lead {
  max-width: 42ch;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
  width: 100%;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.contact-whatsapp-card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  border-left: 4px solid #25d366;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.contact-whatsapp-card:hover {
  transform: translateY(-4px);
}

.contact-whatsapp-card:not([data-glow]):hover {
  background: var(--navy-soft);
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-whatsapp-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #25d366;
}

.contact-whatsapp-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-whatsapp-label {

  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-whatsapp-number {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.contact-whatsapp-action {

  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 4px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  width: 100%;
  padding: 8px 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  overflow: hidden;
}

.contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
}

.contact-perk + .contact-perk {
  border-top: 1px solid var(--line);
}

.contact-perk strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.contact-perk p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-perk .lm-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form-head h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.contact-form-head p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--navy-mid);
  width: 100%;
}

.contact-form-wrap #contactForm {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-wrap .contact-form-submit {
  margin-top: auto;
}

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

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;

  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--white);

  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}



.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px 40px;
}

.form-success.show { display: block; }

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-body);
  font-size: 0.92rem;
  max-width: 36ch;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding-block: 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  justify-self: start;
  text-align: left;
}

.footer-brand .logo {
  margin-bottom: 10px;
}

.footer-brand .footer-copy {
  margin: 0;
}

.footer-nav {
  justify-self: center;
}

.footer-social {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-link:hover {
  color: var(--yellow);
  border-color: rgba(242, 194, 0, 0.3);
  background: rgba(242, 194, 0, 0.06);
}

.footer-social-link--wa:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.footer-nav a {

  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--yellow); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Header — compact nav on medium screens */
@media (max-width: 1280px) and (min-width: 769px) {
  .nav-desktop a {
    font-size: 0.78rem;
  }

  .nav-desktop {
    gap: 12px;
  }

  .header-cta .btn-sm {
    padding: 9px 14px;
    font-size: 0.75rem;
  }
}

/* Header desktop — force nav + CTA visible */
@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .menu-toggle {
    display: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid--4 .work-card,
  .work-card,
  .work-card--wide,
  .work-card--tall {
    grid-column: span 6;
  }

  .about-layout,
  .diagnosis-head,
  .contact-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-body {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .contact-head {
    max-width: 560px;
  }

  .plans-bento .plan-card--featured,
  .plans-bento .plan-card--compact:nth-child(2),
  .plans-bento .plan-card--compact:nth-child(3),
  .plans-bento .plan-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .plan-card--wide {
    grid-template-columns: 1fr;
  }

  .plan-card--wide .plan-includes {
    grid-template-columns: 1fr;
  }

  .diagnosis-body {
    grid-template-columns: 1fr;
  }

  .diagnosis-side {
    position: static;
  }



  .about-gallery {
    position: static;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .about-gallery img {
    object-position: center 18%;
  }

  .impact-head {
    margin-bottom: 40px;
  }

  .services-intro,
  .audience-head { grid-template-columns: 1fr; gap: 20px; }



  .plan-card {
    min-height: auto;
  }

  .method-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root {
    --page-x: 18px;
    --section-py: 64px;
    --header-h: 64px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-logo {
    grid-column: 1;
  }

  .nav-desktop {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav { display: flex; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 0;
  }

  .hero-inner { padding-bottom: 32px; }

  .hero-title { font-size: clamp(1.45rem, 6.5vw, 2.1rem); }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-actions .btn { width: 100%; }

  .work-marquee-track img {
    height: 88px;
    border-radius: 8px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 12px;
  }

  .cta-band-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 12px;
  }

  .audience-card { min-height: auto; }

  .work-grid,
  .work-grid--4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-grid--4 .work-card,
  .work-card,
  .work-card--wide,
  .work-card--tall {
    grid-column: span 1;
  }

  .service-trigger {
    grid-template-columns: auto 1fr 40px;
    gap: 12px 16px;
    padding: 20px 0;
    align-items: center;
  }

  .service-meta {
    grid-column: 1;
    grid-row: 1;
  }

  .service-trigger h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.1rem;
  }

  .service-trigger .icon {
    grid-column: 3;
    grid-row: 1;
  }

  .service-panel-content { padding-left: 0; padding-bottom: 24px; }

  .method-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-item {
    min-height: auto;
    padding: 24px 20px 28px;
  }

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

  .contact-body { gap: 16px; }

  .contact-form-wrap { padding: 20px; }

  .contact-whatsapp-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .diagnosis-item {
    gap: 12px 16px;
    padding: 16px 0;
  }

  .plan-card--wide .plan-card-cta {
    align-self: stretch;
    white-space: normal;
  }

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

  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    align-items: center;
  }

  .footer-nav,
  .footer-social {
    justify-content: center;
  }

  .cta-band h2 { max-width: none; font-size: clamp(1.55rem, 7vw, 2.45rem); }

  .cta-card {
    min-height: auto;
    padding: 24px 20px 28px;
  }

  .cta-band-action { margin-top: 32px; }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .impact-mark { font-size: 3rem; }

  .impact-card {
    min-height: auto;
    padding: 24px 20px 28px;
  }

  .about-content h2 { font-size: 1.5rem; }

  .about-pull p { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .work-marquee-track,
  .work-marquee-track.is-running {
    animation: none !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-bg canvas { display: none; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-logo { font-size: 2rem; margin-bottom: 28px; }

  .service-meta .num { display: none; }
}