:root {
  color-scheme: light;
  /* Surfaces — editorial paper */
  --bg: #faf9f6;
  --paper: #ffffff;
  --soft: #f3f1eb;
  --soft-2: #ece9e1;
  --line: #e2ddd2;
  --line-strong: #cfc8b8;
  /* Ink — deep, warm-neutral charcoal with green base */
  --ink: #0c1a17;
  --ink-2: #122824;
  --ink-soft: #243b35;
  --muted: #4f5a55;
  --muted-2: #767f79;
  /* Brand — green as anchor, lime as restrained accent */
  --green: #0a8a73;
  --green-mid: #056a59;
  --green-dark: #024a3f;
  --green-700: #03614f;
  --aqua: #2bc7ba;
  --blue: #2f56f5;
  --lime: #cde94a;
  --lime-soft: #e8f3a6;
  --coral: #d9532f;
  --gold: #a8731f;
  --gold-soft: #c89545;
  /* Depth — layered, soft shadows */
  --shadow: 0 1px 2px rgba(12, 26, 23, 0.04), 0 24px 56px -20px rgba(12, 26, 23, 0.22);
  --soft-shadow: 0 1px 2px rgba(12, 26, 23, 0.04), 0 14px 34px -16px rgba(12, 26, 23, 0.16);
  --lift-shadow: 0 1px 2px rgba(12, 26, 23, 0.05), 0 30px 64px -24px rgba(12, 26, 23, 0.28);
  --ring: 0 0 0 4px rgba(10, 138, 115, 0.16);
  /* Radii — generous, modern */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  /* Layout */
  --max: 1200px;
  --wide: 1480px;
  --header-h: 72px;
  --gutter: clamp(20px, 4vw, 56px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: "cv11", "ss01";
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font: inherit;
}

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

img,
svg {
  display: block;
}

svg {
  width: 1em;
  height: 1em;
}

::selection {
  background: rgba(10, 138, 115, 0.18);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.not-found {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: clamp(46px, 8vw, 82px);
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
}

.not-found section {
  margin: auto 0;
  max-width: 760px;
  padding: 0;
}

.not-found h1 {
  color: var(--ink);
  font-size: clamp(3rem, 10vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 24px;
}

.not-found p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 0 0 34px;
  max-width: 640px;
}

.site-header {
  align-items: center;
  background: rgba(250, 249, 246, 0.82);
  border-bottom: 1px solid rgba(193, 184, 165, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  display: flex;
  gap: 26px;
  height: var(--header-h);
  justify-content: space-between;
  left: 0;
  padding: 0 var(--gutter);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(150deg, #06130f 0%, #0a2a23 100%);
  border-radius: 11px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 18px -8px rgba(12, 26, 23, 0.4);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  width: 40px;
}

.brand-mark svg {
  height: 31px;
  width: 31px;
}

.mark-frame {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.mark-a,
.mark-i,
.mark-signal {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-a {
  stroke: #fff;
  stroke-width: 3.2;
}

.mark-i {
  stroke: var(--lime);
  stroke-width: 3;
}

.mark-signal {
  stroke: var(--aqua);
  stroke-width: 2.6;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.5rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-text strong span {
  color: var(--green);
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.6vw, 38px);
  justify-content: center;
  margin-left: auto;
}

.nav a,
.site-footer a,
.header-contact {
  color: #3a4742;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.006em;
  transition: color 160ms ease;
}

.nav a:hover,
.site-footer a:hover,
.header-contact:hover {
  color: var(--green);
}

.nav a:first-child::after {
  content: "⌄";
  display: inline-block;
  font-size: 0.85em;
  margin-left: 6px;
  transform: translateY(-1px);
  opacity: 0.5;
}

.header-cta {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.006em;
  min-width: max-content;
  padding: 12px 22px;
  box-shadow: 0 10px 26px -10px rgba(10, 138, 115, 0.6);
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(10, 138, 115, 0.7);
}

.floating-cta:hover {
  background: var(--green-dark);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(24px, 3vw, 44px);
  grid-template-columns: minmax(640px, 0.96fr) minmax(480px, 1.04fr);
  min-height: 560px;
  overflow: hidden;
  padding: clamp(52px, 5.8vw, 80px) var(--gutter) clamp(32px, 4vw, 52px);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(12, 26, 23, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 26, 23, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(120% 100% at 18% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 18% 30%, #000 0%, transparent 78%);
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  align-items: center;
  background: rgba(10, 138, 115, 0.08);
  border: 1px solid rgba(10, 138, 115, 0.2);
  border-radius: var(--radius-pill);
  color: var(--green-700);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  padding: 6px 14px 6px 11px;
}

.hero-eyebrow .eyebrow-dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(10, 138, 115, 0.18);
  display: inline-block;
  height: 7px;
  width: 7px;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.4vw, 4rem);
  font-weight: 820;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--green-mid);
  position: relative;
  white-space: nowrap;
}

.hero p {
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  letter-spacing: -0.008em;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 600px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .microtrust {
  align-self: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 4px;
  width: 100%;
}

.hero-actions .microtrust strong {
  color: var(--green-700);
  font-weight: 700;
}

.button {
  align-items: center;
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: -0.008em;
  min-height: 52px;
  padding: 0 26px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button svg,
.floating-cta svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(10, 138, 115, 0.7);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px -12px rgba(10, 138, 115, 0.78);
}

.button-primary svg {
  transition: transform 180ms ease;
}

.button-primary:hover svg {
  transform: translateX(3px);
}

.button-secondary {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
}

.button-secondary:hover {
  background: var(--soft);
  border-color: var(--green);
  color: var(--green-700);
}

.hero-points {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.hero-points li {
  align-items: flex-start;
  color: var(--ink-soft);
  display: grid;
  gap: 14px;
  grid-template-columns: 36px minmax(0, 1fr);
  line-height: 1.2;
}

.hero-points strong,
.hero-points small {
  display: block;
}

.hero-points strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-points small {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 4px;
  line-height: 1.35;
}

.proof-icon {
  color: var(--green);
  background: rgba(10, 138, 115, 0.08);
  border: 1px solid rgba(10, 138, 115, 0.16);
  border-radius: 10px;
  height: 36px;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.proof-icon svg,
.motor-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  height: 20px;
  width: 20px;
}

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

.hero-visual {
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero-visual::after {
  background: radial-gradient(60% 50% at 70% 30%, rgba(43, 199, 186, 0.16), transparent 70%);
  content: "";
  inset: -8% -4% -10% -4%;
  position: absolute;
  z-index: -1;
}

.hero-visual-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-shadow);
  overflow: hidden;
  position: relative;
}

.hero-visual-frame::before {
  align-items: center;
  background: var(--soft-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  content: "izuree · operations";
  display: flex;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0.02em;
  padding: 11px 16px;
  text-transform: lowercase;
}

.hero-visual-frame::after {
  background:
    radial-gradient(7px 7px at 17px center, var(--coral) 50%, transparent 52%),
    radial-gradient(7px 7px at 37px center, var(--gold-soft) 50%, transparent 52%),
    radial-gradient(7px 7px at 57px center, var(--green) 50%, transparent 52%);
  content: "";
  height: 14px;
  left: 16px;
  position: absolute;
  top: 14px;
  width: 70px;
}

.hero-visual img {
  display: block;
  height: auto;
  margin-left: auto;
  max-width: min(760px, 50vw);
  width: 100%;
}

.hero-visual-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.hero-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 600;
  gap: 6px;
  letter-spacing: -0.005em;
  padding: 6px 12px;
}

.hero-badge svg {
  color: var(--green);
  height: 14px;
  width: 14px;
}

section {
  padding: clamp(76px, 10vw, 138px) var(--gutter);
}

.section-kicker {
  align-items: center;
  color: var(--green-700);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-kicker::before {
  background: var(--green);
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 22px;
}

.section-head {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.75fr);
  margin: 0 auto clamp(36px, 6vw, 68px);
  max-width: var(--max);
}

.section-head-wide {
  grid-template-columns: minmax(420px, 1.1fr) minmax(320px, 0.8fr);
}

.section-head h2,
.brand-panel h2,
.support-copy h2,
.final-cta h2 {
  font-size: clamp(2.05rem, 4vw, 3.6rem);
  font-weight: 820;
  letter-spacing: -0.026em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.section-head p,
.support-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  letter-spacing: -0.008em;
  line-height: 1.68;
  margin: 0;
  max-width: 620px;
}

.brand-section {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(43, 199, 186, 0.1), transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  margin: 0 clamp(12px, 1.3vw, 20px);
  padding: clamp(40px, 4.5vw, 52px) clamp(42px, 6vw, 86px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 199, 186, 0.12);
  box-shadow: var(--lift-shadow);
  position: relative;
  overflow: hidden;
}

.brand-section::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
  position: absolute;
  pointer-events: none;
}

.brand-panel {
  display: block;
  margin: 0 auto;
  max-width: var(--wide);
  position: relative;
}

.brand-panel > div:first-child {
  display: none;
}

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

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

.brand-motor-grid {
  display: grid;
  gap: clamp(34px, 8vw, 120px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-motor-grid article {
  align-items: start;
  border-left: 0;
  display: grid;
  gap: 0 34px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 146px;
  padding: 0;
}

.brand-motor-grid article > span:not(.motor-icon) {
  color: var(--aqua);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  grid-column: 2;
  margin-bottom: 10px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.motor-icon {
  color: var(--aqua);
  grid-row: 1 / span 3;
  padding-top: 4px;
}

.motor-icon svg {
  height: 54px;
  stroke-width: 1.55;
  width: 54px;
}

.brand-motor-grid h3 {
  color: #fff;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 820;
  letter-spacing: -0.022em;
  line-height: 1;
  margin: 0;
}

.brand-motor-grid h3::after {
  background: linear-gradient(90deg, var(--aqua), transparent);
  content: "";
  display: block;
  height: 2px;
  margin-top: 22px;
  width: 92px;
}

.brand-motor-grid p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  line-height: 1.66;
  margin: 22px 0 0;
  max-width: 320px;
}

.problem-section {
  background: var(--bg);
  padding-top: clamp(48px, 5vw, 72px);
}

.problem-list {
  display: grid;
  gap: 0;
  margin: 0 auto;
  max-width: var(--max);
}

.problem-list article {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 56px minmax(180px, 0.48fr) minmax(260px, 1fr);
  padding: 30px 0;
  transition: background 180ms ease;
}

.problem-list article:hover {
  background: rgba(10, 138, 115, 0.03);
}

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

.line-icon {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--green-700);
  display: flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.line-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 24px;
}

.problem-list h3,
.package-card h3,
.case-card h3,
.training-grid h3,
.support-grid h3,
.diagnostic-strip h3,
.process-list h3 {
  font-size: 1.18rem;
  font-weight: 760;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0;
}

.problem-list p,
.package-card p,
.package-card li,
.case-card p,
.case-card dd,
.training-grid p,
.support-grid p,
.process-list p,
.diagnostic-strip p,
.enterprise-row p,
.faq-list p {
  color: var(--muted);
  line-height: 1.62;
}

.problem-list p {
  margin: 0;
}

.packages-section {
  background: var(--soft);
}

.diagnostic-strip {
  align-items: center;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(43, 199, 186, 0.14), transparent 55%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 199, 186, 0.14);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 1fr) max-content;
  margin: 0 auto 16px;
  max-width: var(--max);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--lift-shadow);
}

.diagnostic-strip h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 820;
  letter-spacing: -0.022em;
  margin: 0 0 8px;
}

.diagnostic-strip p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  max-width: 780px;
}

.diagnostic-strip strong {
  color: var(--lime);
  font-size: 1.16rem;
  line-height: 1.2;
}

.diagnostic-deductible {
  color: var(--lime);
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 10px;
}

.diagnostic-price {
  min-width: 180px;
  text-align: right;
}

.diagnostic-price strong {
  color: var(--lime);
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.1;
}

.diagnostic-price small {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 0.76rem;
  margin-top: 4px;
}

.package-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.package-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: clamp(24px, 3vw, 34px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.package-card:hover {
  border-color: rgba(10, 138, 115, 0.4);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.package-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
  position: relative;
}

.package-card.featured::before {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-bottom-left-radius: var(--radius-pill);
  border-top-right-radius: var(--radius-lg);
  color: #fff;
  content: "Recomendado";
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px 6px 16px;
  position: absolute;
  right: -1px;
  text-transform: uppercase;
  top: -1px;
}

.package-card h3 {
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
}

.package-card p {
  margin: 0;
}

.package-card strong {
  color: var(--green-700);
  display: block;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.28;
  margin-top: auto;
}

.package-card ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 0 0;
}

.package-card li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
}

.package-card li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 2px;
  position: absolute;
  top: 0.7em;
  width: 6px;
}

.enterprise-row {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(160px, 0.65fr) minmax(260px, 1.8fr) minmax(210px, 0.65fr);
  margin: 18px auto 0;
  max-width: var(--max);
  padding: 22px 24px;
}

.enterprise-row span,
.enterprise-row strong {
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.014em;
}

.enterprise-row strong {
  color: var(--green-700);
}

.enterprise-row p {
  margin: 0;
}

.fit-section {
  background: var(--paper);
}

.fit-layout {
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(310px, 0.72fr) minmax(520px, 1.28fr);
  margin: 0 auto;
  max-width: var(--max);
}

.fit-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 34px);
}

.fit-copy h2 {
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  font-weight: 820;
  letter-spacing: -0.026em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.fit-copy p {
  color: var(--muted);
  line-height: 1.68;
  margin: 22px 0 0;
  max-width: 560px;
}

.fit-tool {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
}

.fit-tool fieldset {
  border: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.fit-tool legend {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0;
  text-transform: uppercase;
}

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

.fit-options-compact {
  grid-template-columns: 1fr;
}

.fit-option {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  position: relative;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.fit-options-compact .fit-option {
  min-height: 0;
  padding-left: 48px;
}

.fit-option:hover {
  border-color: rgba(10, 138, 115, 0.5);
  box-shadow: var(--soft-shadow);
}

.fit-option:has(input:checked) {
  background: rgba(10, 138, 115, 0.05);
  border-color: var(--green);
  box-shadow: 0 14px 34px -16px rgba(10, 138, 115, 0.4);
}

.fit-option input {
  accent-color: var(--green);
  height: 18px;
  margin: 0;
  width: 18px;
}

.fit-options-compact .fit-option input {
  left: 16px;
  position: absolute;
  top: 18px;
}

.fit-option span {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.fit-option small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.fit-result {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(43, 199, 186, 0.12), transparent 55%),
    linear-gradient(150deg, var(--ink), var(--ink-2));
  border: 1px solid rgba(43, 199, 186, 0.16);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
}

.fit-result > span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fit-result strong {
  color: #fff;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-weight: 820;
  letter-spacing: -0.022em;
  line-height: 1.1;
}

.fit-result p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  margin: 0;
}

.fit-result .button {
  justify-self: start;
  margin-top: 8px;
}

.training-section {
  background: var(--soft);
}

.training-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

.training-grid article {
  background: var(--paper);
  border-left: 1px solid var(--line);
  min-height: 260px;
  padding: clamp(26px, 4vw, 44px);
}

.training-grid article:first-child {
  border-left: 0;
}

.training-grid h3 {
  color: var(--green-700);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}

.training-grid p {
  margin: 0;
}

.case-section {
  background: var(--bg);
}

.case-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 430px;
  padding: clamp(26px, 4vw, 42px);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.case-card:hover {
  border-color: rgba(10, 138, 115, 0.4);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.case-card span {
  color: var(--gold-soft);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.case-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}

.case-card p {
  margin: 0;
}

.case-card dl {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding-top: 20px;
}

.case-card dt {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-card dd {
  margin: 4px 0 0;
}

.process-section {
  background: var(--soft-2);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0;
}

.process-list li {
  border-top: 1px solid rgba(12, 26, 23, 0.3);
  padding: 26px 18px 0 0;
  position: relative;
}

.process-list li::before {
  background: var(--green);
  border: 3px solid var(--soft-2);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(12, 26, 23, 0.18);
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: -10px;
  width: 15px;
}

.process-list span {
  color: var(--coral);
  display: block;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.process-list h3 {
  margin-bottom: 10px;
}

.process-list p {
  margin: 0;
}

.support-section {
  background:
    radial-gradient(120% 120% at 0% 100%, rgba(43, 199, 186, 0.1), transparent 55%),
    linear-gradient(135deg, var(--ink) 0%, #112420 62%, #0a1614 100%);
  color: #fff;
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
}

.support-copy {
  max-width: 620px;
}

.support-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 22px;
}

.support-grid {
  display: grid;
  gap: 0;
  max-width: none;
}

.support-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 26px 0;
}

.support-grid article:first-child {
  border-top: 0;
  padding-top: 0;
}

.support-grid h3 {
  margin-bottom: 10px;
}

.support-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.support-grid strong {
  color: var(--lime);
  display: block;
  font-weight: 700;
  margin-top: 14px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 0;
  margin: 0 auto;
  max-width: 900px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.014em;
  list-style: none;
  padding: 24px 0;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.1rem;
  height: 28px;
  justify-content: center;
  margin-left: auto;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease;
  width: 28px;
}

.faq-list summary:hover::after {
  background: rgba(10, 138, 115, 0.08);
  border-color: var(--green);
}

.faq-list details[open] summary::after {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  content: "−";
}

.faq-list p {
  margin: -4px 0 24px;
  max-width: 760px;
}

.scope-section {
  background: var(--paper);
  padding-top: clamp(44px, 6vw, 86px);
}

.scope-panel {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(43, 199, 186, 0.12), transparent 55%),
    linear-gradient(150deg, var(--ink), #12312b);
  border: 1px solid rgba(43, 199, 186, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-shadow);
  color: #fff;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(30px, 5vw, 58px);
}

.scope-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 820;
  letter-spacing: -0.026em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.scope-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.64;
  margin: 18px 0 0;
}

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

.scope-grid article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px;
}

.scope-grid article:nth-child(1),
.scope-grid article:nth-child(2) {
  border-top: 0;
}

.scope-grid article:nth-child(odd) {
  border-left: 0;
}

.scope-grid h3 {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.scope-grid p {
  margin-top: 8px;
}

.terms-section {
  background: var(--paper);
  padding-top: clamp(38px, 6vw, 82px);
}

.terms-layout {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  margin: 0 auto;
  max-width: var(--max);
}

.terms-copy {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  align-self: start;
}

.terms-copy h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.2rem);
  font-weight: 820;
  letter-spacing: -0.026em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.terms-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
  margin: 20px 0 0;
}

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

.terms-grid article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 190px;
  padding: 24px;
  transition: border-color 160ms ease, background 160ms ease;
}

.terms-grid article:hover {
  background: var(--paper);
  border-color: var(--line-strong);
}

.terms-grid h3 {
  color: var(--green-700);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.014em;
  line-height: 1.2;
  margin: 0;
}

.terms-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}

.final-cta {
  align-items: center;
  background:
    radial-gradient(100% 140% at 80% 50%, rgba(43, 199, 186, 0.08), transparent 60%),
    var(--soft-2);
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.final-cta-copy {
  max-width: 900px;
}

.final-cta-copy .section-kicker {
  margin-bottom: 14px;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta-trust {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 620px;
}

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 52px) var(--gutter);
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 380px;
}

.footer-brand-name {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--green);
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.site-footer p {
  margin: 0;
}

.floating-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 36px -8px rgba(10, 138, 115, 0.6);
  color: #fff;
  display: none;
  height: 54px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 18px;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 160ms ease;
  width: 54px;
  z-index: 18;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.consent-banner {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  bottom: 18px;
  box-shadow: 0 18px 42px -12px rgba(16, 24, 22, 0.22);
  color: var(--ink);
  display: flex;
  gap: 18px;
  left: auto;
  max-width: min(440px, calc(100% - 36px));
  padding: 16px;
  position: fixed;
  right: 18px;
  z-index: 24;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

.consent-banner div {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.consent-banner button {
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.006em;
  min-height: 38px;
  padding: 0 16px;
  transition: background 160ms ease, color 160ms ease;
}

.consent-primary {
  background: var(--green);
  color: #fff;
}

.consent-primary:hover {
  background: var(--green-dark);
}

.consent-secondary {
  background: var(--soft-2);
  color: var(--ink);
}

.consent-secondary:hover {
  background: var(--line);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: clamp(54px, 8vw, 92px);
  }

  .hero-content {
    max-width: 860px;
  }

  .hero-visual img {
    margin-left: 0;
    max-width: min(980px, 100%);
  }

  .hero-visual::after {
    inset: -4% -2% -6% -2%;
  }
}

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

  .header-contact {
    display: none;
  }

  .section-head,
  .section-head-wide,
  .support-section,
  .brand-panel,
  .scope-panel,
  .terms-layout,
  .fit-layout,
  .final-cta {
    display: block;
  }

  .section-head p,
  .support-copy p {
    margin-top: 20px;
  }

  .brand-motor-grid,
  .scope-grid,
  .terms-grid,
  .fit-tool,
  .final-cta .button {
    margin-top: 34px;
  }

  .brand-motor-grid,
  .package-grid,
  .case-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .brand-motor-grid article,
  .training-grid article {
    border-left: 0;
    border-top: 1px solid rgba(7, 20, 18, 0.12);
  }

  .brand-motor-grid article {
    border-color: rgba(255, 255, 255, 0.16);
    min-height: 0;
    padding: 26px 0;
  }

  .brand-motor-grid article:first-child,
  .training-grid article:first-child {
    border-top: 0;
  }

  .training-grid article {
    min-height: 0;
  }

  .fit-copy {
    position: static;
  }

  .terms-copy {
    position: static;
  }

  .fit-options {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
    --gutter: 18px;
  }

  .site-header {
    gap: 12px;
    padding: 0 16px;
  }

  .brand {
    font-size: 0.98rem;
    gap: 9px;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .brand-mark svg {
    height: 28px;
    width: 28px;
  }

  .brand-text small {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
  }

  @media (max-width: 520px) {
    .header-cta {
      display: none;
    }
  }

  .hero {
    padding: 40px 18px 32px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9.4vw, 3.1rem);
    line-height: 1;
  }

  .hero h1 .accent {
    white-space: normal;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }

  .hero-points li {
    gap: 10px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .proof-icon {
    height: 30px;
    width: 30px;
  }

  .hero-visual img {
    margin: 8px auto 0;
    max-width: 100%;
    transform: none;
    width: 100%;
  }

  section {
    padding: 62px 18px;
  }

  .brand-section {
    margin: 0 10px;
    padding: 48px 22px;
  }

  .section-head {
    gap: 0;
    margin-bottom: 34px;
  }

  .section-head h2,
  .brand-panel h2,
  .support-copy h2,
  .final-cta h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .problem-list article {
    display: block;
    padding: 26px 0;
  }

  .problem-list .line-icon {
    margin-bottom: 18px;
  }

  .problem-list h3 {
    margin-bottom: 10px;
  }

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

  .diagnostic-strip {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding-bottom: 20px;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .terms-grid article {
    min-height: 0;
  }

  .scope-grid article,
  .scope-grid article:nth-child(2) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .scope-grid article:first-child {
    border-top: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 88px;
  }

  .floating-cta {
    display: flex;
  }

  .consent-banner {
    align-items: stretch;
    bottom: 10px;
    flex-direction: column;
    left: 10px;
    max-width: none;
    padding: 12px;
    right: 10px;
  }

  .consent-banner p {
    font-size: 0.82rem;
  }

  .consent-banner div {
    margin-left: 0;
  }

  .consent-banner button {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .hero-visual-badges {
    gap: 6px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

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