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

:root {
  color-scheme: dark;
  --bg: #0f1412;
  --bg-elevated: #161d1a;
  --bg-muted: #121a17;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f4f8f6;
  --text-muted: #a8b9b1;
  --accent: #3dd68c;
  --accent-dim: #2a9663;
  --accent-soft: rgba(61, 214, 140, 0.14);
  --warm: #e8b86d;
  --font-sans: "Instrument Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --narrow: 640px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  outline: none;
}

.skip-link:focus-visible {
  clip: auto;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  white-space: nowrap;
  background: var(--accent);
  color: #063222;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  outline: 2px solid rgba(6, 50, 34, 0.5);
  outline-offset: 2px;
}

@supports not (selector(:focus-visible)) {
  .skip-link:focus {
    clip: auto;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    margin: 0;
    overflow: visible;
    white-space: nowrap;
    background: var(--accent);
    color: #063222;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
  }
}

.shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.shell.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.eyebrow-accent {
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 20, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-results-link {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
}

.btn-header {
  flex-shrink: 0;
}

@media (max-width: 759px) {
  .btn-header {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(160deg, #45e89a 0%, var(--accent-dim) 100%);
  color: #063222;
  box-shadow: 0 4px 24px rgba(61, 214, 140, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
  transition:
    background 0.15s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    border-color 0.15s ease,
    outline-offset 0.15s ease;
}

.btn-whatsapp-icon {
  flex-shrink: 0;
  display: block;
  transition: transform 0.22s ease;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  outline: none;
}

.btn-whatsapp:focus-visible {
  outline: 2px solid rgba(180, 255, 210, 0.95);
  outline-offset: 3px;
}

.btn-whatsapp:hover .btn-whatsapp-icon,
.btn-whatsapp:focus-visible .btn-whatsapp-icon {
  transform: scale(1.08);
}

.btn-whatsapp:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(1.02);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:active .btn-whatsapp-icon {
  transform: scale(1);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

button.btn {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  appearance: none;
}

button.btn-primary {
  color: #063222;
}

button.btn-ghost {
  color: var(--text);
}

button.btn:not(.btn-primary):not(.btn-ghost) {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

button.btn:not(.btn-primary):not(.btn-ghost):hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 4rem;
  overflow: hidden;
}

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

.hero-bg-photo {
  position: absolute;
  inset: -10%;
  /* 1920 / 3840 sources — sharp on retina without upscaling a tiny asset */
  background-image: url("../cover/palm-hero-1920.jpg");
  background-image: image-set(
    url("../cover/palm-hero-1920.jpg") 1x,
    url("../cover/palm-hero-3840.jpg") 2x
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 36%;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  /* Light polish only — detail comes from high-res source */
  filter: saturate(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      165deg,
      rgba(15, 20, 18, 0.48) 0%,
      rgba(15, 20, 18, 0.55) 38%,
      rgba(15, 20, 18, 0.88) 72%,
      var(--bg) 100%
    ),
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(61, 214, 140, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(232, 184, 109, 0.08), transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg-photo {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero.hero--will-animate:not(.hero--ready) .hero-animate-in {
    opacity: 0;
    transform: translateY(12px);
  }

  .hero.hero--will-animate .hero-animate-in {
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--stagger, 0) * 55ms);
  }

  .hero.hero--ready .hero-animate-in {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.88fr);
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy-foot {
    margin-top: auto;
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.35rem);
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .hero-visual {
    margin-inline: 0;
    justify-self: end;
    max-width: none;
    width: 100%;
  }
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 1080 / 1307;
  background: var(--bg-elevated);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-photo img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hero-photo:hover img {
    transform: scale(1.02);
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 38ch;
  margin: 0 0 1.75rem;
}

.hero-copy-foot {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-foot-rule {
  height: 1px;
  width: 100%;
  max-width: 12rem;
  background: linear-gradient(90deg, rgba(61, 214, 140, 0.55), rgba(255, 255, 255, 0.08));
  border: 0;
  margin: 0;
}

.hero-proof {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #c5d4cc;
  max-width: 42ch;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.35rem;
  }

  .hero-stat-value {
    font-size: 0.9rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.hero-ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  align-items: start;
}

.hero-ctas > * {
  min-width: 0;
}

@media (max-width: 520px) {
  .hero-ctas {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero: CTA above stats & supporting copy */
@media (max-width: 899px) {
  .hero {
    padding-top: clamp(1.75rem, 5vw, 2.5rem);
    padding-bottom: 2.5rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-copy-foot {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 0;
  }

  .hero-copy h1 {
    order: 1;
    margin-bottom: 0.5rem;
  }

  .hero-copy .lead {
    order: 2;
    margin-bottom: 0.25rem;
    color: #d8e6df;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }

  .hero-ctas {
    order: 3;
  }

  .hero-micro {
    order: 4;
    margin-top: -0.35rem;
  }

  .hero-stats {
    order: 5;
  }

  .hero-proof {
    order: 6;
  }

  .hero-foot-rule {
    order: 7;
  }

  .hero-trust {
    order: 8;
  }

  .hero-follow {
    order: 9;
  }
}

.hero-whatsapp {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.hero-micro {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #7a8f86;
  max-width: 40ch;
}

.hero-follow {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-follow a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.hero-follow a:hover {
  text-decoration: underline;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust li {
  padding-left: 1.35rem;
  position: relative;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card {
  margin: 0;
}

.hero-card-inner {
  background: linear-gradient(145deg, rgba(61, 214, 140, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.hero-card-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 1.5rem;
  color: #dce9e4;
}

.hero-card-foot {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hero-card-name {
  font-weight: 700;
  font-size: 1rem;
}

.hero-card-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Bands */
#proof {
  scroll-margin-top: 5.25rem;
}

.band {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.band-muted {
  background: var(--bg-muted);
}

.band-dark {
  background: linear-gradient(180deg, #121a17 0%, var(--bg) 100%);
}

.band-cta {
  background: radial-gradient(ellipse 120% 100% at 50% 0%, rgba(61, 214, 140, 0.12), var(--bg-muted));
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head-on-dark .muted-on-dark {
  color: #8fa69a;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1rem;
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
}

.split h2 {
  margin-bottom: 1.5rem;
}

.two-col {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 879px) {
  .shell.split {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 5vw, 2.25rem);
  }
}

@media (min-width: 880px) {
  .split {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: start;
  }
}

.pill-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
}

.pill-block h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
}

.pill-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pill-block-alt {
  opacity: 0.95;
}

.checks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.65rem;
}

.checks li:last-child {
  margin-bottom: 0;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.muted-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--text-muted);
}

.muted-list li {
  margin-bottom: 0.5rem;
}

/* Pillars */
.pillars {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pillar-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(61, 214, 140, 0.2), rgba(61, 214, 140, 0.06));
  border: 1px solid rgba(61, 214, 140, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .pillar:hover .pillar-icon-wrap {
    border-color: rgba(61, 214, 140, 0.38);
    background: linear-gradient(145deg, rgba(61, 214, 140, 0.26), rgba(61, 214, 140, 0.1));
  }
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  color: var(--warm);
  margin-bottom: 0.65rem;
}

.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.pillar p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Programs video */
.programs-video-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.programs-video-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 920px) {
  .programs-video-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }
}

.programs-video-copy h2 {
  margin: 0 0 0.9rem;
  max-width: 18ch;
}

.programs-video-copy .section-intro {
  max-width: 52ch;
}

.programs-video-facts {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0 1.45rem;
}

.programs-video-fact {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.programs-video-fact strong {
  font-size: 0.92rem;
  color: var(--text);
}

.programs-video-fact span {
  font-size: 0.83rem;
  color: #9fb0a8;
  line-height: 1.4;
}

@media (max-width: 919px) {
  .programs-video-copy > .btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
}

.programs-video-frame {
  margin: 0;
  justify-self: center;
  width: min(100%, 22rem);
  padding: 0.85rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(61, 214, 140, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.programs-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #0a0f0d;
}

.programs-video-frame figcaption {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: #8aa097;
  text-align: center;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 940px) {
  .pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: rgba(61, 214, 140, 0.08);
  border-color: rgba(61, 214, 140, 0.35);
  transform: scale(1.02);
  z-index: 1;
}

@media (max-width: 939px) {
  .pricing-card-featured {
    transform: none;
    order: -1;
  }
}

.ribbon {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  background: linear-gradient(160deg, #45e89a, var(--accent-dim));
  color: #063222;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.pricing-frequency {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.pricing-desc {
  margin: 0 0 1.25rem;
  color: #b4c4bc;
  font-size: 0.95rem;
  flex-grow: 0;
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  color: #dce9e4;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #8fa69a;
}

.pricing-disclaimer {
  font-size: 0.8125rem;
  color: #7a8f86;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.55;
}

.pricing-cta {
  text-align: center;
}

/* Client results gallery */
.section-head-results {
  max-width: 42rem;
}

.section-head-results .section-intro {
  max-width: 48ch;
}

.results-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.65rem, 2vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.result-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-elevated);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.result-thumb:focus {
  outline: none;
}

.result-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .result-thumb:hover {
    border-color: rgba(61, 214, 140, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
  }
}

.result-thumb-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0c100e;
}

.result-thumb-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.results-disclaimer {
  margin: 1.35rem auto 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #8fa69a;
  text-align: center;
  max-width: 44rem;
}

.results-whatsapp-card {
  margin: 1.75rem auto 0;
  max-width: 32rem;
  padding: 1.5rem 1.35rem 1.6rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(37, 211, 102, 0.22);
  background: linear-gradient(165deg, rgba(37, 211, 102, 0.1) 0%, rgba(15, 20, 18, 0.75) 55%, rgba(10, 14, 12, 0.9) 100%);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  .results-whatsapp-card {
    animation: results-whatsapp-card-glow 2.8s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-whatsapp-card {
    animation: none;
  }
}

@keyframes results-whatsapp-card-glow {
  0%,
  100% {
    box-shadow:
      0 4px 32px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.12);
  }

  50% {
    box-shadow:
      0 8px 40px rgba(0, 0, 0, 0.42),
      0 0 28px rgba(37, 211, 102, 0.18);
  }
}

.results-whatsapp-heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.results-whatsapp-copy {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #b8c9c2;
}

.results-whatsapp-btn {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

/* Results lightbox */
.results-lightbox-dialog {
  padding: 0;
  margin: auto;
  max-width: calc(100vw - 2rem);
  width: calc(100vw - 2rem);
  border: none;
  background: transparent;
  overflow: visible;
}

.results-lightbox-dialog::backdrop {
  background: rgba(6, 10, 9, 0.88);
  backdrop-filter: blur(5px);
}

.results-lightbox-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: min(92dvh, 900px);
  padding: 2rem 3rem;
}

.results-lightbox-figure {
  margin: 0;
  max-width: min(92vw, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.results-lightbox-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(78dvh, 820px);
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-lightbox-caption {
  margin: 0;
  font-size: 0.8125rem;
  color: #b7c9c2;
}

.results-lightbox-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.results-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.results-lightbox-prev,
.results-lightbox-next {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  align-self: center;
}

.results-lightbox-prev:hover,
.results-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 639px) {
  .results-lightbox-panel {
    padding: 3rem 0 2rem;
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    gap: 0.65rem;
  }

  .results-lightbox-figure {
    order: -1;
    width: 100%;
    flex-basis: 100%;
  }

  .results-lightbox-prev,
  .results-lightbox-next {
    width: calc(50% - 0.35rem);
    max-width: 8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-lightbox-dialog::backdrop {
    backdrop-filter: none;
  }
}

/* Process */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 800px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.process li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-left: 2px solid var(--accent-soft);
}

@media (min-width: 800px) {
  .process li {
    border-left: none;
    border-top: 2px solid var(--accent-soft);
    padding-top: 1.5rem;
  }
}

.step-title {
  display: block;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.step-body {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style-position: outside;
}

.faq details[open] summary {
  color: var(--accent);
}

.faq details p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Apply form */
.cta-split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .cta-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
}

.cta-split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.2rem);
  margin: 0 0 0.85rem;
}

.cta-split > div:first-child p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.cta-small {
  font-size: 0.85rem !important;
  opacity: 0.85;
}

.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.apply-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.apply-form span {
  font-size: 0.875rem;
  font-weight: 600;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

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

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: #7a8f86;
  line-height: 1.5;
}

.inline-code {
  font-size: 0.85em;
  font-family: ui-monospace, monospace;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Apply dialog */
.apply-dialog {
  padding: 0;
  margin: auto;
  max-height: calc(100dvh - 2rem);
  max-width: min(32rem, 100vw - 2rem);
  width: min(100%, 32rem);
  border: none;
  border-radius: var(--radius);
  background: transparent;
  overscroll-behavior: contain;
}

.apply-dialog::backdrop {
  background: rgba(8, 12, 10, 0.78);
  backdrop-filter: blur(4px);
}

.apply-dialog-panel {
  position: relative;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 4vw, 1.85rem);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
}

.apply-dialog-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-dialog-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

#apply-dialog-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin: 0 2rem 0.65rem 0;
  padding-right: 0.25rem;
  line-height: 1.2;
}

.apply-dialog-lead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.form-wrap-modal {
  background: transparent;
  border: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .apply-dialog::backdrop {
    backdrop-filter: none;
  }
}

.band-apply-strip {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.apply-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .apply-strip-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .apply-strip-copy {
    max-width: 36rem;
  }
}

.apply-strip-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 0.35rem;
}

.apply-strip-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-grid strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.footer-grid p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
  max-width: 320px;
}

.site-footer nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.footer-apply-trigger {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.footer-apply-trigger:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
}

.footer-dot {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: #6a8076;
}

/* Legal pages */
.legal-page {
  min-height: 100dvh;
}

.legal-main {
  padding: clamp(2.2rem, 6vw, 4rem) 0;
}

.legal-wrap {
  width: min(100% - 2.5rem, 880px);
  margin-inline: auto;
}

.legal-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.1rem);
}

.legal-card h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.legal-meta {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.legal-card h2 {
  margin: 1.35rem 0 0.4rem;
  font-size: 1.08rem;
}

.legal-card p {
  margin: 0;
  color: #d5e0db;
}

.legal-list {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
  color: #d5e0db;
}

.legal-list li {
  margin-bottom: 0.35rem;
}

/* Mobile nav */
@media (max-width: 759px) {
  .logo {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
  }

  .btn-header {
    order: 3;
    margin-left: 0.25rem;
  }

  .nav {
    justify-content: flex-end;
    order: 2;
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .header-inner--hero-passed .nav {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    width: 1.125rem;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
  }

  .nav-toggle-lines {
    position: relative;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-lines::before {
    top: -6px;
  }

  .nav-toggle-lines::after {
    top: 6px;
  }

  .nav.is-open .nav-toggle-lines {
    background: transparent;
  }

  .nav.is-open .nav-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav.is-open .nav-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: rgba(15, 20, 18, 0.98);
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
  }

  .nav.is-open .nav-list {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .header-results-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    order: 1;
    margin-left: auto;
    margin-right: 0.35rem;
    padding: 0.35rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 0.15s ease,
      opacity 0.25s ease;
  }

  .header-results-link:hover {
    color: var(--accent);
  }

  .header-results-chevron {
    flex-shrink: 0;
    display: block;
  }

  .header-results-link.is-past-hero {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .header-results-chevron {
      animation: header-results-chevron-bob 2.2s ease-in-out infinite;
    }
  }
}

@keyframes header-results-chevron-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-results-chevron {
    animation: none;
  }
}

/* Cookie consent — compact bottom bar, does not block the page */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 0 max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(15, 20, 18, 0.94);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

html.cookie-consent-visible body {
  padding-bottom: 5.5rem;
}

@media (min-width: 640px) {
  html.cookie-consent-visible body {
    padding-bottom: 4.25rem;
  }
}

.cookie-consent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.cookie-consent-text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cookie-consent-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-text a:hover {
  color: var(--text);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-consent-actions .btn {
  min-height: 2.5rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
