/*
  Habla Dónde — Landing page
  Paleta alineada con el logo oficial.
*/
:root {
  --brand: #16c63a;
  --brand-strong: #079a13;
  --brand-deep: #066f10;
  --brand-soft: #e7f8e9;
  --lime: #63db21;
  --ink: #001b4d;
  --ink-soft: #0a326a;
  --ink-muted: #50637f;
  --surface: #f5f8fc;
  --surface-2: #eaf0f7;
  --white: #ffffff;
  --line: #d9e2ee;
  --line-dark: rgba(255, 255, 255, 0.14);
  --danger: #b42318;
  --shadow-sm: 0 10px 32px rgba(0, 27, 77, 0.08);
  --shadow-md: 0 22px 60px rgba(0, 27, 77, 0.14);
  --shadow-lg: 0 36px 100px rgba(0, 18, 52, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --container: 1220px;
  --header-height: 88px;
  --transition: 180ms ease;
}

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

html {
  /* La landing es larga: los CTA deben llegar al formulario sin recorrer cada sección. */
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  color: var(--ink-muted);
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2,
.audience-heading h2,
.faq-heading h2,
.product-copy h2,
.lead-copy h2,
.trust-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 760;
}

.section-heading > p,
.faq-heading > p,
.audience-heading > p,
.product-copy > p,
.lead-copy > p,
.trust-copy > p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p {
  max-width: 650px;
  margin-inline: auto;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.heading-split h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.heading-split > p {
  margin-bottom: 4px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-kicker::before {
  width: 22px;
  height: 2px;
  content: "";
  background: var(--brand);
}

.section-kicker-light {
  color: var(--lime);
}

.section-kicker-light::before {
  background: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 207, 122, 0.3);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-sm {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-lg {
  min-height: 56px;
  padding-inline: 28px;
}

.button-block {
  width: 100%;
}

.button-primary {
  color: var(--white);
  background: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(6, 111, 16, 0.16);
}

.button-primary:hover {
  color: var(--white);
  background: #04510b;
  box-shadow: 0 16px 34px rgba(34, 207, 122, 0.34);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(10, 31, 24, 0.15);
  box-shadow: 0 8px 26px rgba(10, 31, 24, 0.06);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: var(--white);
  border-color: rgba(10, 31, 24, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  height: 78px;
  background: rgba(250, 253, 251, 0.9);
  border-bottom-color: rgba(10, 31, 24, 0.09);
  box-shadow: 0 8px 30px rgba(10, 31, 24, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #304a40;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--transition);
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.button):hover {
  color: var(--ink);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-login {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  min-height: 790px;
  padding-top: 156px;
  padding-bottom: 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(34, 207, 122, 0.2), transparent 32%),
    radial-gradient(circle at 17% 82%, rgba(215, 255, 107, 0.2), transparent 30%),
    linear-gradient(135deg, #fbfdfc 0%, #f0f7f3 58%, #e7f5ed 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(10, 31, 24, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 24, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 83%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(580px, 1.12fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(17, 173, 97, 0.2);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 770;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 26px rgba(10, 31, 24, 0.04);
  backdrop-filter: blur(10px);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(34, 207, 122, 0.13);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.3rem, 5.55vw, 5.4rem);
  font-weight: 820;
  letter-spacing: -0.068em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--brand-deep);
}

.hero h1 span::after {
  position: absolute;
  right: 2px;
  bottom: -5px;
  left: 0;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--lime);
  transform: rotate(-1deg);
  opacity: 0.75;
  z-index: -1;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #455f55;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 630px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4f685e;
  font-size: 0.79rem;
  font-weight: 680;
}

.hero-notes svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  color: var(--brand-deep);
  background: rgba(34, 207, 122, 0.14);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 50px 0 48px 14px;
}

.field-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(17, 173, 97, 0.14);
  border-radius: 50%;
}

.field-orbit-one {
  top: 3%;
  right: -13%;
  width: 580px;
  height: 580px;
}

.field-orbit-two {
  top: 16%;
  right: -1%;
  width: 430px;
  height: 430px;
  border-style: dashed;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background: #0d251c;
  box-shadow: var(--shadow-lg), 0 0 0 7px rgba(255, 255, 255, 0.48);
  transform: perspective(1300px) rotateY(-2.5deg) rotateX(1deg);
  transform-origin: left center;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  background: #0b1f18;
  font-size: 0.63rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-dots span:first-child { background: #ff776b; }
.window-dots span:nth-child(2) { background: #f4c85c; }
.window-dots span:nth-child(3) { background: #4ed18b; }

.window-address {
  padding: 5px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.window-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
}

.window-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(34, 207, 122, 0.1);
}

.app-shell {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 472px;
}

.app-sidebar {
  padding: 18px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a1f17;
}

.app-brand {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 8px 24px;
  border-radius: 10px;
  color: #062116;
  background: var(--brand);
  font-size: 0.75rem;
  font-weight: 850;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  margin-bottom: 6px;
  padding: 0 9px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
  font-weight: 640;
}

.app-nav-item.active {
  color: var(--white);
  background: rgba(34, 207, 122, 0.14);
}

.app-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--brand);
  font-size: 0.65rem;
}

.app-content {
  padding: 18px 20px 22px;
  background:
    radial-gradient(circle at 86% 5%, rgba(34, 207, 122, 0.1), transparent 24%),
    #f3f7f5;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-topbar > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-kicker {
  color: #789086;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.app-topbar strong {
  color: #10291f;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.app-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: 0 4px 12px rgba(10, 31, 24, 0.18);
  font-size: 0.56rem;
  font-weight: 800;
}

.app-intro-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  min-height: 175px;
  margin-bottom: 14px;
  padding: 20px 18px;
  border-radius: 17px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(34, 207, 122, 0.1), transparent 40%),
    #112f24;
  box-shadow: 0 14px 28px rgba(10, 31, 24, 0.16);
}

.app-intro-copy {
  align-self: center;
}

.app-pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(215, 255, 107, 0.1);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-intro-copy h2 {
  max-width: 250px;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.25rem;
}

.app-intro-copy p {
  max-width: 260px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  line-height: 1.5;
}

.mini-field {
  position: relative;
  align-self: stretch;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 50%, transparent 50%),
    #18734c;
  background-size: 34px 100%;
}

.mini-field::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.midline {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.goal {
  position: absolute;
  top: 36%;
  width: 16px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.goal-left { left: 10px; border-left: 0; }
.goal-right { right: 10px; border-right: 0; }

.ball-dot {
  position: absolute;
  top: 38%;
  left: 57%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.module-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 11px;
  border: 1px solid #dfe8e3;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(8, 37, 26, 0.04);
}

.module-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.72rem;
}

.module-card > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.module-card strong {
  overflow: hidden;
  color: #18362b;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-card span:not(.module-arrow) {
  overflow: hidden;
  color: #526a62;
  font-size: 0.48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-arrow {
  color: #97aaa1;
  font-size: 0.7rem;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(8, 37, 26, 0.16);
  backdrop-filter: blur(12px);
  animation: float-card 5s ease-in-out infinite;
}

.floating-card-top {
  top: 12px;
  right: -9px;
}

.floating-card-bottom {
  bottom: 0;
  left: -14px;
  animation-delay: -2.2s;
}

.floating-card > div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.floating-card span:last-child {
  color: #71867d;
  font-size: 0.55rem;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-weight: 800;
}

.floating-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(34, 207, 122, 0.12);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Category strip */
.category-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.category-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
  white-space: nowrap;
}

.category-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-strip i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
}

/* Problem */
.problem-section {
  background: var(--white);
}

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

.problem-card {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.problem-card::after {
  position: absolute;
  right: -26px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  content: "";
  border-radius: 50%;
  background: var(--brand-soft);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}

.problem-card:hover {
  border-color: rgba(17, 173, 97, 0.36);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.problem-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.problem-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #b7c5bf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  border-radius: 14px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.problem-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.problem-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.65;
}

/* Solutions */
.solutions-section {
  background: var(--surface);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card:hover {
  z-index: 2;
  border-color: rgba(17, 173, 97, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.solution-card-featured {
  color: var(--white);
  border-color: var(--ink-soft);
  background:
    radial-gradient(circle at 100% 0, rgba(34, 207, 122, 0.22), transparent 35%),
    var(--ink-soft);
}

.solution-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.solution-label {
  color: var(--brand-deep);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.solution-card-featured .solution-label {
  color: var(--lime);
}

.solution-index {
  color: #a8b8b1;
  font-size: 0.68rem;
  font-weight: 800;
}

.solution-card-featured .solution-index {
  color: rgba(255, 255, 255, 0.44);
}

.solution-icon-large {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 36px;
  border: 1px solid rgba(17, 173, 97, 0.14);
  border-radius: 50%;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.solution-card-featured .solution-icon-large {
  color: var(--lime);
  border-color: rgba(215, 255, 107, 0.16);
  background: rgba(215, 255, 107, 0.08);
}

.solution-icon-large svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.solution-card p {
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.67;
}

.solution-card-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.solution-card > a,
.wide-solution-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.solution-card-featured > a {
  color: var(--lime);
}

.solution-card > a span,
.wide-solution-copy > a span {
  transition: transform var(--transition);
}

.solution-card > a:hover span,
.wide-solution-copy > a:hover span {
  transform: translateX(4px);
}

.wide-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 290px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.wide-solution-visual {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(34, 207, 122, 0.12), transparent 50%),
    #e8f3ed;
}

.wide-solution-visual::before {
  position: absolute;
  inset: 30px;
  content: "";
  border: 1px dashed rgba(17, 173, 97, 0.24);
  border-radius: 24px;
}

.profile-card {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 122px;
  min-height: 150px;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 18px 42px rgba(8, 37, 26, 0.12);
  backdrop-filter: blur(8px);
}

.profile-card i {
  width: 46px;
  height: 46px;
  border: 6px solid var(--brand-soft);
  border-radius: 50%;
  background: var(--brand-strong);
}

.profile-card b,
.profile-card small {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #cedbd5;
}

.profile-card b { width: 64px; }
.profile-card small { width: 42px; opacity: 0.7; }
.profile-card-one { top: 69px; left: 11%; transform: rotate(-7deg); }
.profile-card-two { top: 33px; left: 39%; z-index: 3; transform: scale(1.08); }
.profile-card-three { top: 76px; left: 69%; transform: rotate(7deg); }

.connection {
  position: absolute;
  z-index: 1;
  top: 135px;
  height: 2px;
  border-top: 2px dashed rgba(17, 173, 97, 0.45);
}

.connection-one { left: 27%; width: 18%; transform: rotate(-10deg); }
.connection-two { left: 58%; width: 17%; transform: rotate(10deg); }

.wide-solution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 56px;
}

.wide-solution-copy h3 {
  margin: 10px 0 14px;
  font-size: 2.1rem;
}

.wide-solution-copy p {
  max-width: 510px;
  margin-bottom: 28px;
}

.wide-solution-copy > a {
  margin-top: 0;
}

/* Product */
.product-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.product-section-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 15%, var(--brand) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 70%, var(--lime) 0 1px, transparent 1.5px);
  background-size: 36px 36px, 48px 48px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent 80%);
}

.product-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}

.product-copy h2 {
  color: var(--white);
}

.product-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.58);
}

.benefit-list {
  margin-top: 42px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.benefit-list article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.benefit-list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215, 255, 107, 0.2);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(215, 255, 107, 0.06);
  font-size: 0.6rem;
  font-weight: 800;
}

.benefit-list h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.05rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.product-showcase {
  position: relative;
  padding: 58px 0 56px 30px;
}

.showcase-glow {
  position: absolute;
  top: 12%;
  right: -16%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 207, 122, 0.22), transparent 66%);
  filter: blur(16px);
}

.showcase-screen {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  color: var(--ink);
  background: #f4f7f5;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.3);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: left center;
}

.showcase-screen-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.72);
  background: #0c241a;
  font-size: 0.69rem;
  font-weight: 650;
}

.showcase-logo {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: #062116;
  background: var(--brand);
  font-size: 0.62rem;
  font-weight: 850;
}

.showcase-screen-top .showcase-menu {
  margin-left: auto;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.showcase-body {
  padding: 24px;
}

.showcase-greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.showcase-greeting > div {
  display: flex;
  flex-direction: column;
}

.showcase-greeting small {
  color: #8c9e96;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.showcase-greeting strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.55rem;
  font-weight: 750;
}

.status-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.showcase-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 170px;
  margin-bottom: 16px;
  padding: 24px 28px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(215, 255, 107, 0.08), transparent 38%),
    #16392b;
}

.showcase-banner span {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-banner h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.42rem;
}

.showcase-banner p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.showcase-ball {
  position: relative;
  display: grid;
  width: 94px;
  height: 94px;
  flex: 0 0 auto;
  place-items: center;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(34, 207, 122, 0.1);
  font-size: 2.4rem;
  box-shadow: 0 0 0 18px rgba(34, 207, 122, 0.05);
}

.showcase-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.showcase-panel {
  min-height: 225px;
  padding: 18px;
  border: 1px solid #dde6e1;
  border-radius: 16px;
  background: var(--white);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.panel-title strong {
  color: #203a30;
  font-size: 0.7rem;
}

.panel-title span {
  color: var(--brand-deep);
  font-size: 0.5rem;
  font-weight: 750;
}

.panel-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-top: 1px solid #edf2ef;
}

.panel-row i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.6rem;
  font-style: normal;
}

.panel-row div {
  display: flex;
  flex-direction: column;
}

.panel-row b {
  color: #30483f;
  font-size: 0.57rem;
}

.panel-row small {
  color: #526a62;
  font-size: 0.46rem;
}

.panel-row > span {
  color: #9aaba4;
  font-size: 0.6rem;
}

.showcase-panel-highlight {
  color: var(--white);
  border-color: #204b39;
  background: #1d4937;
}

.showcase-panel-highlight .panel-title strong {
  color: var(--white);
}

.showcase-panel-highlight .panel-title span {
  color: var(--lime);
}

.avatar-stack {
  display: flex;
  margin: 25px 0 18px 7px;
}

.avatar-stack i {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #1d4937;
  border-radius: 50%;
  color: var(--white);
  background: #356b54;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 750;
}

.avatar-stack i:last-child {
  color: var(--ink);
  background: var(--brand);
}

.showcase-panel-highlight h4 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.83rem;
}

.showcase-panel-highlight p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.55rem;
}

.showcase-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  background: rgba(19, 53, 40, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 720;
}

.showcase-tag span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--brand);
}

.showcase-tag-one {
  top: 17px;
  right: -20px;
}

.showcase-tag-two {
  bottom: 12px;
  left: -10px;
}

/* Process */
.process-section {
  background: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1040px;
  margin-inline: auto;
}

.process-line {
  position: absolute;
  z-index: 0;
  top: 31px;
  left: 16.5%;
  width: 67%;
  border-top: 1px dashed rgba(17, 173, 97, 0.38);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 28px;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--ink);
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(17, 173, 97, 0.22), 0 10px 25px rgba(34, 207, 122, 0.2);
  font-size: 1rem;
  font-weight: 850;
}

.step-visual {
  display: grid;
  width: 160px;
  height: 130px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.step-visual svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: var(--brand-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.process-step p {
  max-width: 280px;
  margin: 0 auto;
  font-size: 0.91rem;
}

/* Audience */
.audience-section {
  background: var(--surface);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: start;
}

.audience-heading {
  position: sticky;
  top: 110px;
}

.audience-heading > p {
  max-width: 510px;
  margin-bottom: 30px;
}

.audience-cards {
  display: grid;
  gap: 14px;
}

.audience-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 135px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  border-color: rgba(17, 173, 97, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateX(7px);
}

.audience-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 1.2rem;
  font-weight: 800;
}

.audience-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.audience-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.audience-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-deep);
  font-size: 0.82rem;
}

/* Trust */
.trust-section {
  padding: 82px 0;
  background: var(--white);
}

.trust-card {
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) minmax(240px, auto);
  gap: 40px;
  align-items: center;
  padding: 46px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(34, 207, 122, 0.12), transparent 30%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0, 27, 77, 0.16);
}

.trust-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.trust-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.trust-copy p {
  max-width: 650px;
  font-size: 0.96rem;
}

.trust-points {
  display: grid;
  gap: 13px;
}

.trust-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #40594f;
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-points i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading > p {
  max-width: 460px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--brand-deep);
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  width: 100%;
  padding: 28px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 760;
}

.faq-item button > span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}

.faq-item button > span::before,
.faq-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), background var(--transition);
}

.faq-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button > span {
  border-color: var(--brand);
  background: var(--brand);
}

.faq-item.is-open button > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 720px;
  margin: -6px 45px 28px 0;
  font-size: 0.94rem;
  line-height: 1.72;
}

/* Lead form */
.lead-section {
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(34, 207, 122, 0.18), transparent 32%),
    radial-gradient(circle at 88% 90%, rgba(215, 255, 107, 0.1), transparent 26%),
    #0b251b;
}

.lead-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 82%);
}

.lead-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 85px;
  align-items: center;
}

.lead-copy h2 {
  color: var(--white);
}

.lead-copy > p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.6);
}

.lead-promise {
  display: grid;
  gap: 13px;
  margin: 34px 0 38px;
}

.lead-promise span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 670;
}

.lead-promise i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--brand);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.whatsapp-secondary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.whatsapp-secondary:hover {
  border-color: rgba(34, 207, 122, 0.4);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: var(--brand);
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-secondary > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.whatsapp-secondary small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.whatsapp-secondary strong {
  color: var(--white);
  font-size: 0.9rem;
}

.whatsapp-secondary > b {
  color: var(--brand);
}

.lead-form-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading > span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.form-heading p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.lead-form {
  display: grid;
  gap: 17px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #30483f;
  font-size: 0.76rem;
  font-weight: 750;
}

.field label span {
  color: #526a62;
  font-weight: 500;
}

.form-contact-note {
  margin: -7px 0 -9px;
  color: #526a62;
  font-size: 0.72rem;
}

.contact-error:empty {
  display: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfddd6;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 88px;
  padding: 12px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa9a3;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-strong);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(34, 207, 122, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #e06c60;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.875rem;
  line-height: 1.5;
}

.field-error:empty {
  display: none;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #5e7169;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--brand-strong);
}

.consent a {
  color: var(--brand-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: -3px 0 0;
  color: var(--ink-muted);
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 0.77rem;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #075d38;
  background: #e5f8ef;
}

.form-status.is-error {
  color: #8a2119;
  background: #fceae8;
}

.lead-form.is-loading .button[type="submit"] {
  pointer-events: none;
  opacity: 0.75;
}

.button:disabled {
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #001438;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding-top: 68px;
  padding-bottom: 55px;
}

.brand-footer {
  padding: 8px 10px;
  border-radius: 14px;
  background: var(--white);
}

.brand-footer .brand-logo {
  width: 168px;
}

.footer-brand p {
  max-width: 280px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-social-link::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 198, 58, 0.1);
}

.footer-social-link span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-social-link:hover span {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.footer-community-link {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66) !important;
  font-weight: 700;
}

.footer-community-link:hover {
  color: var(--brand) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: #07321f;
  background: var(--brand);
  box-shadow: 0 14px 36px rgba(4, 64, 37, 0.27);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(4, 64, 37, 0.34);
}

.floating-whatsapp.is-suppressed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Reveal animations */
.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: var(--surface);
}

.legal-header {
  position: static;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header .header-inner {
  min-height: 92px;
}

.legal-header .brand-logo {
  width: 150px;
}

.legal-content {
  max-width: 860px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-content .legal-alert {
  margin: 28px 0 40px;
  padding: 16px 18px;
  border: 1px solid #f0d68a;
  border-radius: 12px;
  color: #6f5011;
  background: #fff9e8;
  font-size: 0.83rem;
}

.legal-content section {
  margin-top: 38px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content li {
  color: #4f665d;
}

/* Programa de aliados: componentes compartidos por la portada y el directorio. */
[hidden] { display: none !important; }

.launch-landing .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 46px; }
.launch-landing .hero { padding-top: 136px; padding-bottom: 64px; }
.launch-landing .hero h1 { font-size: clamp(2.7rem, 3.6vw, 3.4rem); letter-spacing: -0.05em; line-height: 1.08; }
.launch-landing .hero h1 span::after { display: none; }
.launch-landing .hero-lead { font-size: 1.08rem; line-height: 1.65; margin-bottom: 20px; }
.launch-offer { max-width: 660px; padding: 12px 16px; border: 1px solid #bcdfc2; border-radius: 10px; background: var(--brand-soft); color: #07520e; font-size: 0.98rem; line-height: 1.5; margin-bottom: 22px; }
.launch-conditions { max-width: 640px; color: var(--ink-muted); font-size: 0.85rem; line-height: 1.6; margin: 0 0 24px; }
.player-access { padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: 0.88rem; }
.player-access a { color: var(--brand-deep); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.player-access span { display: block; margin-top: 5px; font-size: 0.77rem; }
.launch-landing .hero-notes { display: none; }
.product-preview-note { position: relative; margin: 24px 20px 0; font-size: 0.75rem; text-align: center; color: var(--ink-muted); }
.launch-landing .floating-card-bottom { bottom: 95px; }
.launch-program { background: #f5faf6; }
.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.program-grid article { padding: 30px; background: var(--white); border: 1px solid #d8e7dc; border-radius: var(--radius-md); }
.program-number { display: inline-block; color: var(--brand-deep); font-weight: 800; font-size: 0.88rem; margin-bottom: 22px; }
.program-grid h3 { font-size: 1.28rem; line-height: 1.3; margin-bottom: 12px; }
.program-grid p { color: var(--ink-muted); font-size: 0.96rem; margin-bottom: 0; }
.program-note { text-align: center; font-size: 0.87rem; color: var(--ink-muted); margin: 28px auto 0; max-width: 850px; }
.allies-section-heading { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-bottom: 28px; }
.allies-section-heading h2 { font-size: clamp(1.9rem, 3.1vw, 2.8rem); max-width: 720px; }
.allies-section-heading p { color: var(--ink-muted); margin: 14px 0 0; }
.allies-section-heading > a { flex-shrink: 0; }
.allies-invitation { border-left: 3px solid var(--brand-deep); background: var(--brand-soft); padding: 24px 28px; border-radius: 0 12px 12px 0; color: var(--ink-soft); }
.main-nav a[aria-current="page"] { color: var(--brand-deep); text-decoration: underline; text-underline-offset: 9px; }
.allies-hero { padding: 158px 0 66px; background: #f0faf2; }
.allies-hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 52px; }
.allies-hero h1 { font-size: clamp(2.5rem, 4vw, 3.7rem); line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 22px; }
.allies-hero h1 span { color: var(--brand-deep); }
.allies-hero .hero-lead { font-size: 1.07rem; margin-bottom: 22px; }
.allies-hero .launch-conditions { margin-bottom: 0; }
.allies-product { min-width: 0; margin: 0; background: var(--white); border: 1px solid #cddfd1; border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; }
.allies-product-heading { padding: 24px 26px 20px; }
.allies-product-heading .section-kicker { font-size: 0.75rem; margin-bottom: 8px; }
.allies-product-heading p { font-size: 1.35rem; font-weight: 750; line-height: 1.35; margin: 0; }
.allies-product-image { display: block; }
.allies-product-image img { width: 100%; height: auto; }
.allies-product figcaption { padding: 16px 24px 0; color: var(--ink-muted); font-size: 0.8125rem; line-height: 1.6; }
.allies-product figcaption a { display: inline-block; padding: 8px 0; text-decoration: underline; text-underline-offset: 3px; }
.allies-product-benefits { list-style: none; margin: 12px 24px 24px; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; color: var(--ink-soft); font-size: 0.875rem; }
.allies-product-benefits li { padding-left: 14px; border-left: 3px solid var(--brand); }
.allies-activities-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.allies-activities-grid article { padding: 8px 0 8px 20px; border-left: 3px solid var(--brand); }
.allies-activities-grid h3 { font-size: 1.2rem; margin-bottom: 10px; }
.allies-activities-grid p { font-size: 0.95rem; margin: 0; color: var(--ink-muted); }
.allies-profile-details { display: flex; flex-wrap: wrap; gap: 10px 24px; padding-left: 20px; margin: 0 0 28px; color: var(--ink-soft); font-size: 0.875rem; }
.allies-conditions { padding-top: 0; }
.allies-conditions .program-terms { margin-top: 0; padding-top: 0; }
.allies-conditions .program-terms h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 22px; }
.allies-directory { padding-top: 72px; padding-bottom: 72px; }
.allies-directory .section-heading h2 { font-size: clamp(2rem, 3.3vw, 2.9rem); }
.allies-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ally-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); min-width: 0; overflow-wrap: anywhere; }
.ally-logo { height: 100px; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 22px; }
.ally-logo img { width: 160px; height: 100px; object-fit: contain; object-position: left center; }
.ally-card h3 { font-size: 1.22rem; line-height: 1.35; margin: 12px 0 8px; }
.ally-card p { font-size: 0.91rem; margin-bottom: 16px; }
.ally-location { color: var(--ink-muted); }
.ally-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ally-tags span { color: var(--brand-deep); background: var(--brand-soft); border-radius: 6px; padding: 3px 8px; font-size: 0.75rem; font-weight: 650; }
.allies-empty { padding: 42px; border: 1px solid #cddfd1; border-radius: var(--radius-md); background: #f8fbf9; }
.allies-empty img { margin-bottom: 20px; }
.allies-empty h3 { font-size: clamp(1.3rem, 2.3vw, 1.8rem); margin-bottom: 14px; }
.allies-empty p { max-width: 680px; color: var(--ink-muted); margin-bottom: 22px; }
.allies-filters { margin: 0 0 24px; }
.activity-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.filter-chip { min-height: 44px; padding: 10px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 9px; color: var(--ink); font: inherit; font-size: 0.88rem; font-weight: 650; cursor: pointer; }
.filter-chip:hover { border-color: var(--brand-deep); }
.filter-chip[aria-pressed="true"] { background: var(--brand-deep); border-color: var(--brand-deep); color: var(--white); }
.filter-chip:focus-visible, .location-filters summary:focus-visible, .filter-reset:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.location-filters { max-width: 880px; margin-bottom: 16px; }
.location-filters summary { cursor: pointer; color: var(--ink-soft); padding: 12px 0; font-weight: 650; }
.location-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 12px; }
.location-fields select:disabled { background: var(--surface); color: var(--ink-muted); cursor: not-allowed; }
.filter-reset { background: transparent; border: 0; padding: 8px 0; font: inherit; cursor: pointer; text-decoration: underline; }
.allies-count { color: var(--ink-muted); font-size: 0.88rem; }
.program-terms { padding: 32px 0; margin-top: 24px; border-bottom: 1px solid #d8e7dc; }
.program-terms h3 { font-size: 1.3rem; margin-bottom: 18px; }
.program-terms ul { padding-left: 20px; max-width: 950px; color: var(--ink-muted); }
.program-terms li { margin-bottom: 12px; }
.program-cta { text-align: center; margin-top: 44px; }
.program-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.program-cta p { margin: 18px auto 26px; color: var(--ink-muted); }
.product-layout > *, .audience-layout > *, .faq-layout > *, .lead-layout > *, .audience-card > div { min-width: 0; }
.product-showcase { width: 100%; }
.audience-card:hover { transform: translateY(-3px); }
.field { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; width: 100%; }
#quiero-ser-aliado { scroll-margin-top: 0; }
.lead-form-card:focus { outline: none; }

/* Responsive */
@media (max-width: 1180px) {
  .main-nav { gap: 20px; }
  .main-nav > a:not(.button) { font-size: 0.86rem; }

  .hero-layout {
    grid-template-columns: minmax(390px, 0.9fr) minmax(500px, 1.1fr);
    gap: 34px;
  }

  .app-shell { grid-template-columns: 92px minmax(0, 1fr); }
  .app-nav-item { padding-inline: 6px; gap: 5px; }
  .app-sidebar { padding-inline: 7px; }
  .floating-card-top { right: 4px; }
  .floating-card-bottom { left: 0; }

  .solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-card { min-height: 390px; }

  .product-layout { gap: 50px; }
  .product-showcase { padding-left: 5px; }

  .lead-layout { gap: 55px; }
}

@media (max-width: 1040px) {
  :root { --header-height: 76px; }

  .brand-logo { width: 118px; }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* El desenfoque del encabezado no debe contener el menú fijo al desplazarse. */
  .nav-open .site-header {
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 28px 34px;
    background: rgba(247, 251, 249, 0.98);
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    flex-shrink: 0;
  }

  .main-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
  }

  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .nav-login { margin: 0; }
  .main-nav .nav-cta { margin-top: 24px; }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .launch-landing .hero-layout { grid-template-columns: 1fr; }
  .launch-landing .hero h1 { font-size: clamp(2.7rem, 6vw, 4rem); }
  .allies-hero { padding-top: 120px; }
  .allies-hero-layout { gap: 32px; grid-template-columns: 1fr; }
  .allies-product { max-width: 680px; }
  .allies-activities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .allies-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-copy {
    max-width: 790px;
  }

  .hero h1 {
    max-width: 800px;
  }

  .hero-visual {
    max-width: 790px;
    margin-inline: auto;
    padding-left: 0;
  }

  .product-window {
    transform: none;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-card { min-height: 260px; }

  .product-layout,
  .audience-layout,
  .faq-layout,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .product-layout { gap: 42px; }
  .product-copy { max-width: 760px; }
  .product-showcase { max-width: 760px; margin-inline: auto; padding-right: 20px; }
  .showcase-screen { transform: none; }

  .audience-layout,
  .faq-layout { gap: 48px; }
  .audience-heading,
  .faq-heading { position: static; max-width: 720px; }

  .lead-layout { gap: 44px; }
  .lead-copy { max-width: 720px; }
  .lead-form-card { max-width: 760px; width: 100%; }

  .trust-card {
    grid-template-columns: auto 1fr;
  }

  .trust-points {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 46px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .program-grid { grid-template-columns: 1fr; gap: 16px; }
  .program-grid article { padding: 26px; }
  .program-number { margin-bottom: 12px; }
  .allies-section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .allies-hero-layout { grid-template-columns: 1fr; }
  .section { padding: 88px 0; }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-strip-inner::-webkit-scrollbar { display: none; }

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

  .wide-solution-visual { min-height: 250px; }
  .wide-solution-copy { padding: 38px 34px; }

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

  .process-line {
    top: 30px;
    bottom: 30px;
    left: 31px;
    width: 0;
    height: auto;
    border-top: 0;
    border-left: 1px dashed rgba(17, 173, 97, 0.38);
  }

  .process-step {
    display: grid;
    grid-template-columns: 64px 130px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 24px;
    align-items: center;
    text-align: left;
  }

  .step-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step-visual {
    grid-row: 1 / span 2;
    width: 130px;
    height: 110px;
    margin: 0;
  }

  .process-step h3 {
    align-self: end;
    margin-bottom: 8px;
  }

  .process-step p {
    align-self: start;
    margin: 0;
  }

  .trust-card {
    padding: 38px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .launch-landing .hero { padding-top: 104px; }
  .launch-landing .hero h1 { font-size: clamp(2.35rem, 8.7vw, 3.4rem); }
  .launch-landing .hero-lead, .allies-hero .hero-lead { font-size: 1rem; }
  .launch-offer { font-size: 0.9rem; }
  .launch-conditions { font-size: 0.8125rem; }
  .launch-landing .floating-card-bottom { bottom: 105px; }
  .allies-hero { padding: 104px 0 44px; }
  .allies-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .allies-hero .hero-lead { margin-bottom: 16px; }
  .allies-hero .launch-offer { margin-bottom: 16px; }
  .allies-product-heading { padding: 20px; }
  .allies-product figcaption { padding-inline: 20px; }
  .allies-product-benefits { margin-inline: 20px; }
  .allies-activities-grid { gap: 24px 16px; }
  .allies-activities-grid article { padding-left: 12px; }
  .allies-activities-grid p { font-size: 0.875rem; }
  .allies-conditions { padding-top: 0; }
  .allies-grid, .location-fields { grid-template-columns: 1fr; }
  .allies-empty { padding: 26px; }
  .ally-card { padding: 24px; }
  .allies-directory { padding: 52px 0; }
  .allies-hero .hero-actions .button { width: 100%; }
  .program-note { text-align: left; }
  .lead-layout { gap: 28px; }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section { padding: 74px 0; }

  .site-header,
  .site-header.is-scrolled { height: 72px; }

  .brand-logo { width: 106px; }
  .brand-footer .brand-logo { width: 152px; }

  .hero {
    padding-top: 106px;
    padding-bottom: 64px;
  }

  .hero-visual[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-notes {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    padding: 24px 0 34px;
  }

  .product-window {
    min-height: 420px;
    border-radius: 18px;
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(255, 255, 255, 0.55);
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-address { display: none; }
  .app-shell { grid-template-columns: 58px minmax(0, 1fr); min-height: 372px; }
  .app-sidebar { padding: 12px 6px; }
  .app-brand { width: 30px; height: 30px; margin: 0 auto 20px; }
  .app-nav-item { justify-content: center; padding: 0; }
  .app-nav-item > span:last-child { display: none; }
  .app-content { padding: 13px; }
  .app-topbar strong { font-size: 0.72rem; }
  .app-kicker { font-size: 0.4rem; }
  .app-intro-card { grid-template-columns: 1fr; min-height: 138px; padding: 16px; }
  .mini-field { display: none; }
  .app-intro-copy h2 { font-size: 1.05rem; }
  .module-grid { grid-template-columns: 1fr; gap: 7px; }
  .module-card:nth-child(n+4) { display: none; }
  .floating-card-top { top: 2px; right: 4px; }
  .floating-card-bottom { bottom: 4px; left: 3px; }
  .floating-card { padding: 9px 10px; }
  .floating-card strong { font-size: 0.63rem; }
  .floating-card span:last-child { font-size: 0.48rem; }
  .floating-icon { width: 27px; height: 27px; }

  .category-strip-inner { min-height: 66px; }

  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .audience-heading h2,
  .faq-heading h2,
  .product-copy h2,
  .lead-copy h2,
  .trust-copy h2 {
    font-size: clamp(2.15rem, 10.8vw, 3.35rem);
  }

  .problem-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .problem-card { min-height: 245px; }
  .solution-card { min-height: 370px; }

  .profile-card { width: 98px; min-height: 130px; padding: 12px; }
  .profile-card-one { left: 6%; }
  .profile-card-two { left: 36%; }
  .profile-card-three { left: 68%; }
  .wide-solution-copy { padding: 32px 24px; }
  .wide-solution-copy h3 { font-size: 1.75rem; }

  .product-showcase { padding: 25px 0 38px; }
  .showcase-screen { min-height: 450px; border-radius: 20px; }
  .showcase-body { padding: 16px; }
  .showcase-banner { min-height: 145px; padding: 20px; }
  .showcase-ball { width: 68px; height: 68px; margin-right: 0; font-size: 1.8rem; }
  .showcase-columns { grid-template-columns: 1fr; }
  .showcase-panel-highlight { display: none; }
  .showcase-tag-one { right: 0; top: -2px; }
  .showcase-tag-two { left: 8px; bottom: 0; }

  .process-grid { gap: 50px; }
  .process-step {
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 18px;
  }
  .step-number { width: 58px; height: 58px; grid-row: 1; }
  .step-visual { grid-column: 2; grid-row: 1; width: 115px; height: 90px; justify-self: start; margin-bottom: 18px; }
  .step-visual svg { width: 54px; height: 54px; }
  .process-step h3 { grid-column: 2; grid-row: 2; }
  .process-step p { grid-column: 2; grid-row: 3; }
  .process-line { left: 28px; }

  .audience-card {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
  }
  .audience-arrow { display: none; }
  .audience-icon { width: 48px; height: 48px; }

  .trust-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 24px;
  }
  .trust-mark { width: 72px; height: 72px; }
  .trust-points { grid-column: auto; }

  .faq-item button { padding: 23px 0; font-size: 0.97rem; }
  .faq-answer p { margin-right: 24px; }

  .lead-section { padding: 78px 0; }
  .lead-form-card { padding: 26px 20px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 17px; }
  .form-heading h3 { font-size: 1.75rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 52px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
    text-align: center;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
