:root {
  --sand-50: #f8f5ed;
  --sand-100: #efe6d3;
  --ink-950: #111318;
  --ink-900: #1d2430;
  --ink-800: #364152;
  --ink-700: #556070;
  --ink-600: #7b8694;
  --ink-500: #96a0ad;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-500: #10b981;
  --emerald-700: #047857;
  --sky-300: #7dd3fc;
  --sky-500: #0ea5e9;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --white: #ffffff;
  --shadow-card: 0 24px 60px -34px rgba(17, 19, 24, 0.32);
  --shadow-glow: 0 40px 100px -40px rgba(15, 118, 110, 0.48);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --font-sans: "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", serif;
  --font-brand: "Instrument Serif", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-sans);
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 32%),
    var(--sand-50);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -20;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 19, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--ink-950);
  background: var(--emerald-300);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.shell {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.section-space {
  padding-block: 5rem;
}

.hidden {
  display: none;
}

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

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus\:fixed:focus {
  position: fixed;
}

.focus\:left-4:focus {
  left: 1rem;
}

.focus\:top-4:focus {
  top: 1rem;
}

.focus\:z-\[60\]:focus {
  z-index: 60;
}

.focus\:rounded-full:focus {
  border-radius: 999px;
}

.focus\:bg-ink-950:focus {
  background: var(--ink-950);
}

.focus\:px-4:focus {
  padding-inline: 1rem;
}

.focus\:py-2:focus {
  padding-block: 0.5rem;
}

.focus\:text-sand-50:focus {
  color: var(--sand-50);
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-left { text-align: left; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.pointer-events-none { pointer-events: none; }
.shrink-0 { flex-shrink: 0; }
.snap-start { scroll-snap-align: start; }
.uppercase { text-transform: uppercase; }
.mx-auto { margin-inline: auto; }
.mt-auto { margin-top: auto; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.top-0 { top: 0; }
.right-5 { right: 1.25rem; }
.top-5 { top: 1.25rem; }
.top-6 { top: 1.5rem; }
.left-1\/2 { left: 50%; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-x-10 { left: 2.5rem; right: 2.5rem; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.backdrop-blur,
.backdrop-blur-xl {
  backdrop-filter: blur(16px);
}
.blur-3xl {
  filter: blur(64px);
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

.object-contain {
  object-fit: contain;
}

.kicker,
.kicker-dark {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.kicker {
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-700);
}

.kicker-dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 237, 0.78);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  color: var(--sand-50);
  background: var(--ink-950);
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--emerald-700);
}

.btn-secondary {
  color: var(--ink-950);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 19, 24, 0.1);
  box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.4);
  background: #f1fbf7;
}

.btn-ghost {
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.header-shell {
  max-width: 78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  margin-inline: auto;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 1.75rem;
  background: rgba(248, 245, 237, 0.95);
  box-shadow: 0 28px 80px -46px rgba(17, 19, 24, 0.42);
  backdrop-filter: blur(20px);
}

[data-site-header].is-scrolled .header-shell {
  background: rgba(248, 245, 237, 0.98);
  box-shadow: 0 34px 96px -50px rgba(15, 118, 110, 0.44);
}

.nav-pill,
.mobile-nav-link {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-pill {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.nav-pill:hover,
.mobile-nav-link:hover,
.footer-link:hover {
  color: var(--emerald-700);
}

.nav-pill-active,
.mobile-nav-link-active {
  color: var(--sand-50);
  background: var(--ink-950);
}

.mobile-menu-list .mobile-nav-link-active {
  color: var(--sand-50);
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  color: var(--ink-700);
}

.mobile-menu-list {
  list-style: none;
}

.panel,
.hero-stat-card,
.value-pill,
.trust-chip {
  box-shadow: var(--shadow-card);
}

.panel {
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.98);
}

.hero-stat-card {
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1.45rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
}

.hero-stat-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-500);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.trust-chip,
.value-pill {
  display: inline-flex;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--sand-50);
  background: var(--ink-950);
  border: 1px solid rgba(110, 231, 183, 0.35);
  box-shadow: var(--shadow-glow);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.form-field > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink-600);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(239, 230, 211, 0.45);
  color: var(--ink-900);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: rgba(239, 68, 68, 0.75);
  background: rgba(254, 242, 242, 0.92);
}

.faq-item {
  background: rgba(255, 255, 255, 0.94);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.28s ease;
}

.faq-trigger[aria-expanded="true"] {
  background: rgba(239, 230, 211, 0.45);
}

.faq-question {
  line-height: 1.15;
}

.faq-panel {
  background: rgba(255, 255, 255, 0.98);
}

.faq-panel-inner {
  padding: 1.15rem 0 1.8rem;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--sand-50);
  background: var(--ink-950);
  border-color: transparent;
}

.form-status-success {
  color: #065f46;
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.28);
}

.form-status-error {
  color: #991b1b;
  background: #fef2f2;
  border-color: rgba(239, 68, 68, 0.28);
}

.content-rich {
  color: var(--ink-700);
  line-height: 1.8;
}

.content-rich > * + * {
  margin-top: 1.25rem;
}

.content-rich ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-submit-button][aria-busy="true"] {
  cursor: wait;
  opacity: 0.8;
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.92rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.3rem; }
.text-2xl { font-size: 1.65rem; }
.text-3xl { font-size: 2.1rem; }
.text-\[0\.68rem\] { font-size: 0.68rem; }
.text-\[2\.85rem\],
.text-\[2\.9rem\] { font-size: 2.9rem; }

.leading-6 { line-height: 1.5; }
.leading-7 { line-height: 1.75; }
.leading-8 { line-height: 1.95; }
.leading-tight { line-height: 1.15; }
.leading-none { line-height: 1; }
.leading-\[0\.95\],
.leading-\[0\.96\] { line-height: 0.98; }
.leading-\[1\.04\] { line-height: 1.04; }
.leading-\[1\.05\] { line-height: 1.05; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-display { font-family: var(--font-display); }

.text-ink-500 { color: var(--ink-500); }
.text-ink-600 { color: var(--ink-600); }
.text-ink-700 { color: var(--ink-700); }
.text-ink-800 { color: var(--ink-800); }
.text-ink-900 { color: var(--ink-900); }
.text-ink-950 { color: var(--ink-950); }
.text-sand-50 { color: var(--sand-50); }
.text-sand-50\/75 { color: rgba(248, 245, 237, 0.75); }
.text-sand-100\/60 { color: rgba(239, 230, 211, 0.6); }
.text-sand-100\/70 { color: rgba(239, 230, 211, 0.7); }
.text-sand-100\/72 { color: rgba(239, 230, 211, 0.72); }
.text-sand-100\/78 { color: rgba(239, 230, 211, 0.78); }
.text-emerald-100 { color: #d1fae5; }

.bg-white { background: #fff; }
.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }
.bg-white\/70 { background: rgba(255, 255, 255, 0.7); }
.bg-white\/92 { background: rgba(255, 255, 255, 0.92); }
.bg-sand-50 { background: var(--sand-50); }
.bg-sand-50\/10 { background: rgba(248, 245, 237, 0.1); }
.bg-sand-50\/85 { background: rgba(248, 245, 237, 0.85); }
.bg-sand-50\/95 { background: rgba(248, 245, 237, 0.95); }
.bg-sand-100 { background: var(--sand-100); }
.bg-sand-100\/70 { background: rgba(239, 230, 211, 0.7); }
.bg-ink-900 { background: var(--ink-900); }
.bg-ink-950 { background: var(--ink-950); }
.bg-emerald-200 { background: var(--emerald-200); }
.bg-emerald-200\/70 { background: rgba(167, 243, 208, 0.7); }
.bg-emerald-300 { background: var(--emerald-300); }
.bg-emerald-300\/20 { background: rgba(110, 231, 183, 0.2); }
.bg-emerald-300\/35 { background: rgba(110, 231, 183, 0.35); }
.bg-emerald-500 { background: var(--emerald-500); }
.bg-sky-300\/25 { background: rgba(125, 211, 252, 0.25); }
.bg-sky-500 { background: var(--sky-500); }
.bg-amber-200\/30 { background: rgba(253, 230, 138, 0.3); }
.bg-amber-500 { background: #f59e0b; }

.border { border: 1px solid rgba(17, 19, 24, 0.1); }
.border-t { border-top: 1px solid rgba(17, 19, 24, 0.1); }
.border-ink-900\/10 { border-color: rgba(17, 19, 24, 0.1); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/75 { border-color: rgba(255, 255, 255, 0.75); }
.border-current\/10 { border-color: rgba(255, 255, 255, 0.12); }
.border-emerald-300\/40 { border-color: rgba(110, 231, 183, 0.4); }
.border-sand-50\/15 { border-color: rgba(248, 245, 237, 0.15); }

.rounded-full { border-radius: 999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-\[1\.3rem\] { border-radius: 1.3rem; }
.rounded-\[1\.4rem\] { border-radius: 1.4rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[1\.6rem\] { border-radius: 1.6rem; }
.rounded-\[1\.7rem\] { border-radius: 1.7rem; }
.rounded-\[1\.75rem\] { border-radius: 1.75rem; }
.rounded-\[1\.8rem\] { border-radius: 1.8rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.1rem\] { border-radius: 2.1rem; }
.rounded-\[2\.2rem\] { border-radius: 2.2rem; }
.rounded-\[2\.25rem\] { border-radius: 2.25rem; }
.rounded-\[2\.4rem\] { border-radius: 2.4rem; }

.shadow-card { box-shadow: var(--shadow-card); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.gap-1 { gap: 0.25rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.py-1 { padding-block: 0.25rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-5 { padding-block: 1.25rem; }
.py-10 { padding-block: 2.5rem; }
.pt-0 { padding-top: 0; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-32 { padding-top: 8rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-18 { padding-bottom: 4.5rem; }
.pb-32 { padding-bottom: 8rem; }
.pr-4 { padding-right: 1rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.min-w-\[18\.5rem\] { min-width: 18.5rem; }
.max-h-0 { max-height: 0; }

.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-\[22rem\] { width: 22rem; }
.w-\[24rem\] { width: 24rem; }
.w-\[26rem\] { width: 26rem; }
.h-1 { height: 0.25rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-40 { height: 10rem; }
.h-\[22rem\] { height: 22rem; }
.h-\[24rem\] { height: 24rem; }
.h-\[26rem\] { height: 26rem; }

.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.24em\] { letter-spacing: 0.24em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.28em\] { letter-spacing: 0.28em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--emerald-500), var(--sky-500), var(--amber-400));
}

.from-emerald-500,
.via-sky-500,
.to-amber-400 {
  background-size: 100% 100%;
}

.left-\[-8rem\] { left: -8rem; }
.right-\[-8rem\] { right: -8rem; }
.top-\[-8rem\] { top: -8rem; }
.top-\[10rem\] { top: 10rem; }
.bottom-\[-12rem\] { bottom: -12rem; }

main section:first-of-type h1 {
  max-width: 16ch;
}

main section:first-of-type p {
  max-width: 42rem;
}

.footer-link {
  transition: color 0.3s ease;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.ads-includes-list {
  list-style: none;
  padding-left: 0;
}

.brand-mark {
  min-width: max-content;
}

.brand-name {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 1.38rem;
  font-style: italic;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--ink-950);
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  text-wrap: balance;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-nav {
  padding: 0.28rem;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.header-cta .btn-primary {
  padding: 0.9rem 1.28rem;
  font-size: 0.86rem;
  box-shadow: 0 22px 50px -30px rgba(17, 19, 24, 0.48);
}

.nav-pill {
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  color: var(--ink-800);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-lead {
  max-width: 33rem;
}

.hero-industry-row {
  max-width: 34rem;
}

.hero-proof-card {
  padding: 1.5rem;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.hero-proof-head h2 {
  max-width: 11ch;
}

.hero-proof-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.hero-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 1.3rem;
  background: rgba(239, 230, 211, 0.42);
  color: var(--ink-800);
  line-height: 1.6;
}

.hero-stat-card strong {
  color: var(--ink-950);
  font-size: 1.05rem;
  line-height: 1.25;
}

.pricing-home-section {
  background: rgba(255, 255, 255, 0.42);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.9rem;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px -42px rgba(17, 19, 24, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px -44px rgba(17, 19, 24, 0.28);
}

.pricing-card-featured {
  color: var(--ink-950);
  border-color: rgba(16, 185, 129, 0.2);
  background:
    linear-gradient(180deg, rgba(241, 251, 247, 0.9), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 72px -42px rgba(16, 185, 129, 0.22);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.08);
  color: var(--emerald-700);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-audience {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-card-featured .pricing-audience {
  color: var(--ink-500);
}

.pricing-title {
  font-size: 1.9rem;
  line-height: 1.04;
  color: currentColor;
}

.pricing-description {
  max-width: 26ch;
  color: var(--ink-600);
  line-height: 1.6;
}

.pricing-card-featured .pricing-description {
  color: var(--ink-600);
}

.pricing-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
}

.pricing-price {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pricing-card-featured .pricing-price {
  background: transparent;
}

.pricing-price span {
  display: block;
  color: var(--ink-500);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-card-featured .pricing-price span {
  color: var(--ink-500);
}

.pricing-price strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-950);
  font-size: 1.2rem;
  line-height: 1.1;
}

.pricing-card-featured .pricing-price strong {
  color: var(--ink-950);
}

.pricing-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  list-style: none;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-700);
  line-height: 1.5;
}

.pricing-card-featured .pricing-list li {
  color: var(--ink-700);
}

.pricing-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-700);
  font-size: 0.62rem;
  font-weight: 700;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
}

.pricing-card-featured .pricing-actions .btn-primary {
  color: var(--sand-50);
  background: var(--ink-950);
}

.pricing-card-featured .pricing-actions .btn-primary:hover {
  background: var(--emerald-700);
}

.pricing-secondary-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink-600);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.pricing-card-featured .pricing-secondary-link {
  color: var(--ink-600);
}

.pricing-legal-note {
  border-color: rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-600);
}

@media (min-width: 640px) {
  .shell { padding-inline: 1.5rem; }
  .section-space { padding-block: 6rem; }
  .brand-name { font-size: 1.58rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:inline-block { display: inline-block; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-xl { font-size: 1.3rem; }
  .sm\:text-4xl { font-size: 3rem; }
  .sm\:text-\[4\.2rem\],
  .sm\:text-\[4\.25rem\] { font-size: 4.2rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:px-5 { padding-inline: 1.25rem; }
  .sm\:px-6 { padding-inline: 1.5rem; }
  .sm\:px-7 { padding-inline: 1.75rem; }
  .sm\:px-10 { padding-inline: 2.5rem; }
  .sm\:pt-36 { padding-top: 9rem; }
}

@media (min-width: 768px) {
  .md\:grid { display: grid; }
  .md\:grid-cols-1 { grid-template-columns: 1fr; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-\[0\.92fr_1\.08fr\] { grid-template-columns: 0.92fr 1.08fr; }
  .md\:overflow-visible { overflow: visible; }
  .md\:pb-0 { padding-bottom: 0; }
}

@media (min-width: 1024px) {
  .header-shell {
    padding: 1.02rem 1.22rem;
  }

  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none !important; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:items-end { align-items: end; }
  .lg\:items-start { align-items: start; }
  .lg\:grid-cols-1 { grid-template-columns: 1fr; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-\[0\.38fr_1fr\] { grid-template-columns: 0.38fr 1fr; }
  .lg\:grid-cols-\[0\.86fr_1\.14fr\] { grid-template-columns: 0.86fr 1.14fr; }
  .lg\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
  .lg\:grid-cols-\[1\.08fr_0\.92fr\] { grid-template-columns: 1.08fr 0.92fr; }
  .lg\:grid-cols-\[1\.1fr_0\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
  .lg\:grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr 0.8fr; }
  .lg\:grid-cols-\[1\.3fr_0\.8fr_0\.8fr\] { grid-template-columns: 1.3fr 0.8fr 0.8fr; }
  .lg\:grid-cols-\[1\.4fr_0\.8fr\] { grid-template-columns: 1.4fr 0.8fr; }
  .lg\:grid-cols-\[1fr_0\.95fr\] { grid-template-columns: 1fr 0.95fr; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:px-12 { padding-inline: 3rem; }
  .lg\:py-14 { padding-block: 3.5rem; }
  .lg\:text-\[3rem\] { font-size: 3rem; }
  .lg\:text-\[3\.15rem\] { font-size: 3.15rem; }
  .lg\:text-\[5\.4rem\] { font-size: 5.4rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-\[1\.08fr_0\.92fr\] { grid-template-columns: 1.08fr 0.92fr; }
  .xl\:p-8 { padding: 2rem; }
}

@media (max-width: 767px) {
  .header-left {
    min-width: 0;
  }

  .hero-proof-card,
  .pricing-card {
    padding: 1.35rem;
  }

  .hero-proof-metrics,
  .pricing-price-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }
}

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