:root {
      --font-heading: "Recoleta", Georgia, "Times New Roman", serif;
      --font-body: "DM Sans", Inter, Arial, Helvetica, sans-serif;
      --hero-heading-color: #293645;
      --hero-body-color: #545454;
      --button-green: #35A635;
      --button-green-hover: #2F942F;
      --green-dark: #005840;
      --green-main: #006048;
      --green-soft: #187058;
      --green-light: #55B947;
      --green-pale: #E8F8E5;
      --cream: #F8F8E8;
      --cream-2: #F3F0D8;
      --white: #FFFFFF;
      --off-white: #F8F8F6;
      --black: #101010;
      --muted: #6F756F;
      --border: rgba(0, 96, 72, 0.14);
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.07);
      --radius: 18px;
      --radius-sm: 12px;
      --serif: var(--font-heading);
      --sans: var(--font-body);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--off-white);
      color: var(--black);
      line-height: 1.6;
    }

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

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 22px;
      font-size: 13px;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--green-light);
      color: white;
      box-shadow: 0 8px 18px rgba(85, 185, 71, 0.24);
    }

    .btn-primary:hover {
      background: #3FA63A;
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(85, 185, 71, 0.32);
    }

    .btn-outline {
      border-color: rgba(0, 96, 72, 0.28);
      color: var(--green-main);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--green-pale);
      border-color: var(--green-light);
      transform: translateY(-2px);
    }
/* Hero */
    .hero {
      position: relative;
      padding: 74px 0 68px;
      background:
        radial-gradient(circle at 86% 24%, rgba(85, 185, 71, 0.15), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, var(--off-white) 100%);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.06fr 0.94fr;
      gap: 58px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--green-main);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-light);
    }

    h1,
    h2,
    h3 {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--black);
    }

    h1 {
      color: var(--hero-heading-color);
      font-family: var(--font-heading);
      font-size: 44px;
      line-height: 1.2;
      letter-spacing: 0;
      max-width: 600px;
      margin: 0 0 15px;
    }

    h1 span {
      color: var(--button-green);
    }

    .hero-copy {
      max-width: 600px;
      color: var(--hero-body-color);
      font-family: var(--font-body);
      font-size: 20px;
      line-height: 1.7;
      margin: 15px 0 20px;
      padding: 0 30px 0 0;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 28px;
    }

    .hero-actions .btn-primary {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: fit-content;
      min-width: 0;
      padding: 12px 24px;
      background: var(--button-green);
      border-color: var(--button-green);
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.45;
      margin: 10px 0 0;
      text-transform: uppercase;
      transform: translateY(0);
      box-shadow: 0 12px 24px rgba(53, 166, 53, 0.28);
      transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    }

    .hero-actions .btn-primary::before {
      content: "";
      position: absolute;
      top: -45%;
      bottom: -45%;
      left: -62%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 35%,
        rgba(255, 255, 255, 0.48) 50%,
        rgba(255, 255, 255, 0.18) 65%,
        rgba(255, 255, 255, 0) 100%
      );
      filter: blur(0.5px);
      transform: skewX(-18deg);
      pointer-events: none;
      opacity: 0;
      z-index: 1;
    }

    .hero-actions .btn-primary:hover {
      background: var(--button-green);
      border-color: var(--button-green);
      color: #FFFFFF;
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(53, 166, 53, 0.36);
    }

    .hero-actions .btn-primary:hover::before {
      animation: heroButtonShine 0.78s ease forwards;
    }

    .hero-actions .btn-outline:hover {
      background: #293645;
      border-color: #293645;
      color: #FFFFFF;
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(41, 54, 69, 0.24);
    }

    .hero-actions .btn-outline {
      width: fit-content;
      min-width: 0;
      padding: 12px 24px;
      border-color: rgba(41, 54, 69, 0.22);
      color: #006048;
      background: transparent;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.45;
    }

    @keyframes heroButtonShine {
      0% {
        left: -62%;
        opacity: 0;
      }
      18% {
        opacity: 0.9;
      }
      82% {
        opacity: 0.9;
      }
      100% {
        left: 122%;
        opacity: 0;
      }
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-note span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-note span::before {
      content: "•";
      color: var(--green-light);
      font-weight: 900;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
      perspective: 900px;
    }

    .hero-visual-stage {
      position: absolute;
      inset: 18px 0 0 32px;
      display: grid;
      place-items: center;
      min-height: 500px;
      isolation: isolate;
    }

    .hero-pill {
      position: absolute;
      width: 360px;
      height: 500px;
      border-radius: 999px;
      background: linear-gradient(180deg, #0b6a4f 0%, #004D39 100%);
      box-shadow: 0 28px 70px rgba(0, 77, 57, 0.24);
      opacity: 0.78;
      z-index: 0;
      transform-origin: 50% 50%;
      will-change: transform;
    }

    .hero-pill--clockwise {
      transform: rotate(32deg);
      animation: heroPillClockwise 18s linear infinite;
    }

    .hero-pill--counter {
      width: 320px;
      height: 470px;
      background: linear-gradient(180deg, rgba(85, 185, 71, 0.78), rgba(0, 96, 72, 0.88));
      opacity: 0.56;
      transform: rotate(-42deg);
      animation: heroPillCounter 22s linear infinite;
    }

    .hero-home-image-wrap {
      --home-tilt-x: 0deg;
      --home-tilt-y: 0deg;
      position: relative;
      z-index: 2;
      width: min(122%, 760px);
      max-width: none;
      pointer-events: auto;
      cursor: pointer;
      transform-style: preserve-3d;
      transform: rotateX(var(--home-tilt-x)) rotateY(var(--home-tilt-y)) translateZ(0) scale(1);
      transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .hero-home-image-wrap::before {
      content: "";
      position: absolute;
      inset: -10% -10% 5% -10%;
      background:
        radial-gradient(
          ellipse at center,
          rgba(0, 96, 72, 0.24),
          rgba(85, 185, 71, 0.13) 45%,
          transparent 70%
        );
      filter: blur(40px);
      opacity: 0.84;
      pointer-events: none;
      transition: opacity 400ms ease;
      z-index: -1;
    }

    .hero-home-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 24px 46px rgba(0, 77, 57, 0.14));
      position: relative;
      z-index: 1;
      transition: filter 0.36s ease;
    }

    .hero-visual.is-image-hover .hero-home-image {
      filter: drop-shadow(0 32px 62px rgba(0, 77, 57, 0.2));
    }

    .hero-glass {
      position: relative;
      z-index: 2;
      width: min(430px, 100%);
      aspect-ratio: 1 / 1;
      padding: 28px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 50% 0%, rgba(85, 185, 71, 0.22), transparent 45%),
        rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow:
        0 30px 80px rgba(0, 77, 57, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .hero-feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      height: 100%;
    }

    .hero-feature-card {
      position: relative;
      aspect-ratio: 1 / 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 18px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(240, 255, 234, 0.82), rgba(255, 255, 255, 0.62));
      border: 1px solid rgba(0, 96, 72, 0.42);
      box-shadow:
        0 12px 26px rgba(0, 77, 57, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      overflow: hidden;
      transform: translateY(0) scale(1);
      will-change: transform;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        box-shadow 0.36s ease;
    }

    .hero-feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at 100% 0%, rgba(85, 185, 71, 0.32), transparent 38%),
        linear-gradient(135deg, rgba(0, 96, 72, 0.94), rgba(0, 77, 57, 0.94));
      opacity: 0;
      transition: opacity 0.38s ease;
      z-index: 0;
    }

    .hero-feature-card::after {
      content: "";
      position: absolute;
      top: 20px;
      right: 18px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--green-light);
      box-shadow: 0 0 0 5px rgba(85, 185, 71, 0.10);
      transform: scale(1);
      transform-origin: center;
      transition:
        background 0.34s ease,
        box-shadow 0.34s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 3;
    }

    .hero-feature-card > * {
      position: relative;
      z-index: 2;
    }

    .hero-feature-card:hover {
      transform: translateY(-10px) scale(1.01);
      border-color: rgba(85, 185, 71, 0.72);
      box-shadow:
        0 22px 46px rgba(0, 77, 57, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -18px 40px rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(18px) saturate(1.22);
      -webkit-backdrop-filter: blur(18px) saturate(1.22);
    }

    .hero-feature-card:hover::before {
      opacity: 1;
    }

    .hero-feature-card:hover::after {
      background: var(--green-light);
      transform: scale(1.72);
      box-shadow: 0 0 0 7px rgba(85, 185, 71, 0.22);
    }

    .hero-feature-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.14);
      color: #006048;
      margin-bottom: 14px;
      transition:
        background 0.34s ease,
        color 0.34s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-feature-card:hover .hero-feature-icon {
      background: #FFFFFF;
      color: #111827;
      transform: scale(1.04);
    }

    .hero-feature-icon svg {
      width: 25px;
      height: 25px;
      display: block;
    }

    .hero-feature-icon--currency {
      font-size: 24px;
      line-height: 1;
      font-weight: 900;
      font-family: var(--font-body);
    }

    .hero-feature-card h3 {
      color: #111817;
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 0 0 7px;
      transition: color 0.34s ease;
    }

    .hero-feature-card p {
      color: #22332d;
      font-family: var(--font-body);
      font-size: 13.5px;
      line-height: 1.28;
      margin: 0;
      transition: color 0.34s ease;
    }

    .hero-feature-status {
      display: block;
      color: #006048;
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 800;
      line-height: 1.15;
      margin-top: 14px;
      transition: color 0.34s ease;
    }

    .hero-feature-card:hover h3,
    .hero-feature-card:hover p,
    .hero-feature-card:hover .hero-feature-status {
      color: #FFFFFF;
    }

    @keyframes heroPillClockwise {
      from {
        transform: rotate(32deg);
      }
      to {
        transform: rotate(392deg);
      }
    }

    @keyframes heroPillCounter {
      from {
        transform: rotate(-42deg);
      }
      to {
        transform: rotate(-402deg);
      }
    }

    /* Section global */
    section {
      padding: 92px 0;
    }

    .section-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 46px;
    }

    .section-head h2 {
      font-size: clamp(34px, 5vw, 58px);
      margin-bottom: 18px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
    }

    /* Audience */
    .audience {
      background: #F9F9F8;
    }

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

    .audience-card {
      position: relative;
      padding: 36px;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #FFFFFF;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transform: translateY(0);
      will-change: transform;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        box-shadow 0.36s ease,
        backdrop-filter 0.36s ease;
    }

    .audience-card::before {
      content: "";
      position: absolute;
      top: -35%;
      bottom: -35%;
      left: -58%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.06) 28%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.06) 72%,
        rgba(255, 255, 255, 0) 100%
      );
      opacity: 0;
      filter: blur(1.5px);
      mix-blend-mode: screen;
      transform: skewX(-18deg);
      pointer-events: none;
      z-index: 4;
    }

    .audience-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.14);
      transform: scale(1);
      transform-origin: center;
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease,
        opacity 0.36s ease;
      z-index: 1;
    }

    .audience-card > * {
      position: relative;
      z-index: 2;
    }

    .audience-card:hover {
      transform: translateY(-10px);
      box-shadow:
        0 24px 56px rgba(0, 77, 57, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      border-color: rgba(85, 185, 71, 0.5);
      backdrop-filter: blur(16px) saturate(1.16);
      -webkit-backdrop-filter: blur(16px) saturate(1.16);
    }

    .audience-card:hover::before {
      animation: audienceGlassSweep 0.9s ease forwards;
    }

    .audience-card:hover::after {
      transform: scale(1.72);
      background: rgba(85, 185, 71, 0.24);
    }

    .audience-card.dark {
      background: linear-gradient(135deg, var(--green-main), #004D39);
      color: white;
    }

    .audience-card.dark::before {
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 28%,
        rgba(255, 255, 255, 0.24) 50%,
        rgba(255, 255, 255, 0.07) 72%,
        rgba(255, 255, 255, 0) 100%
      );
    }

    .audience-card.dark::after {
      background: rgba(85, 185, 71, 0.16);
    }

    .audience-card.dark:hover::after {
      background: rgba(85, 185, 71, 0.26);
    }

    @keyframes audienceGlassSweep {
      0% {
        left: -58%;
        opacity: 0;
      }
      16% {
        opacity: 0.82;
      }
      84% {
        opacity: 0.82;
      }
      100% {
        left: 118%;
        opacity: 0;
      }
    }

    .audience-card.dark h3,
    .audience-card.dark p,
    .audience-card.dark li {
      color: rgba(255, 255, 255, 0.82);
    }

    .audience-card.dark h3 {
      color: white;
    }

    .label {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      color: var(--green-light);
      text-transform: uppercase;
    }

    .audience-card h3 {
      font-size: 34px;
      margin-bottom: 16px;
    }

    .audience-card p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: #404A45;
      font-size: 15px;
    }

    .check-list li::before {
      content: "✓";
      color: var(--green-light);
      font-weight: 900;
    }

    /* Why */
    .why {
      background: var(--off-white);
    }

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

    .feature-card {
      position: relative;
      overflow: hidden;
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      color: var(--ink);
      transform: translateY(0);
      will-change: transform;
      box-shadow: none;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        box-shadow 0.36s ease,
        background 0.36s ease,
        color 0.32s ease,
        backdrop-filter 0.36s ease;
    }

    .feature-card.reveal {
      transition:
        opacity 0.7s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        box-shadow 0.36s ease,
        background 0.36s ease,
        color 0.32s ease,
        backdrop-filter 0.36s ease;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.06) 28%,
          rgba(255, 255, 255, 0.24) 50%,
          rgba(255, 255, 255, 0.06) 72%,
          rgba(255, 255, 255, 0) 100%
        ) -120% 0 / 55% 100% no-repeat,
        linear-gradient(135deg, var(--green-main), #004D39);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s ease;
      z-index: 1;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      width: 122px;
      height: 122px;
      right: -46px;
      top: -46px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.16);
      opacity: 0;
      transform: scale(0.28);
      transform-origin: center;
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease,
        opacity 0.36s ease;
      z-index: 2;
    }

    .feature-card > * {
      position: relative;
      z-index: 3;
    }

    .feature-card:hover,
    .feature-card.reveal.active:hover {
      transform: translateY(-10px);
      box-shadow:
        0 24px 56px rgba(0, 77, 57, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      border-color: rgba(85, 185, 71, 0.5);
      color: white;
      backdrop-filter: blur(16px) saturate(1.16);
      -webkit-backdrop-filter: blur(16px) saturate(1.16);
    }

    .feature-card:hover::before {
      opacity: 1;
      animation: featureGlassSweep 0.95s ease forwards;
    }

    .feature-card:hover::after {
      opacity: 1;
      transform: scale(1.18);
      background: rgba(85, 185, 71, 0.26);
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-pale);
      color: var(--green-main);
      margin-bottom: 18px;
      font-weight: 900;
      transition:
        background 0.32s ease,
        color 0.32s ease,
        box-shadow 0.32s ease;
    }

    .feature-icon svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    .feature-card:hover .feature-icon {
      background: white;
      color: var(--green-main);
      box-shadow: 0 12px 26px rgba(0, 38, 28, 0.18);
    }

    .feature-card h3 {
      font-size: 25px;
      margin-bottom: 10px;
      transition: color 0.32s ease;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 15px;
      transition: color 0.32s ease;
    }

    .feature-card:hover h3,
    .feature-card:hover p {
      color: white;
    }

    @keyframes featureGlassSweep {
      0% {
        background-position: -120% 0, 0 0;
      }
      100% {
        background-position: 220% 0, 0 0;
      }
    }

    /* How */
    .how {
      background: var(--green-main);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .how::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 80% 10%, rgba(85, 185, 71, 0.22), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08), transparent 28%);
      pointer-events: none;
    }

    .how .container {
      position: relative;
      z-index: 1;
    }

    .how .eyebrow,
    .how .section-head h2 {
      color: white;
    }

    .how .section-head p {
      color: rgba(255, 255, 255, 0.84);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .steps-card {
      background: #F8F8E8;
      border: 1px solid rgba(0, 77, 57, 0.14);
      border-radius: 24px;
      padding: 34px;
      color: var(--ink);
      box-shadow: 0 22px 48px rgba(0, 38, 28, 0.14);
    }

    .steps-card .label {
      color: var(--green-main);
    }

    .steps-card h3 {
      font-size: 34px;
      margin-bottom: 22px;
      color: #101010;
    }

    .step {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      padding: 18px 0;
      border-top: 1px solid rgba(0, 77, 57, 0.12);
      border-radius: 14px;
      transform: translateY(0) scale(1);
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        box-shadow 0.28s ease,
        padding 0.28s ease;
    }

    .step:hover {
      transform: translateY(-3px) scale(1.01);
      background: rgba(0, 77, 57, 0.05);
      box-shadow: 0 12px 24px rgba(0, 38, 28, 0.08);
      padding-left: 12px;
      padding-right: 12px;
    }

    .step-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green-main);
      display: grid;
      place-items: center;
      font-weight: 900;
      color: white;
      transform: scale(1);
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease;
    }

    .step:hover .step-number {
      transform: scale(1.08);
      background: var(--green-light);
    }

    .step strong {
      display: block;
      margin-bottom: 4px;
      color: #101010;
    }

    .step p {
      color: var(--muted);
      font-size: 14px;
    }

    /* Trust */
    .trust {
      background: #F9F9F8;
    }

    .trust-panel {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 54px;
      align-items: center;
      background: transparent;
      border-radius: 28px;
      padding: 48px;
      border: 0;
      box-shadow: none;
    }

    .trust-panel h2 {
      font-size: clamp(34px, 5vw, 56px);
      margin-bottom: 18px;
    }

    .trust-panel p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .trust-visual {
      min-height: 520px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 50% 0%, rgba(85, 185, 71, 0.18), transparent 34%),
        radial-gradient(circle at 8% 92%, rgba(0, 96, 72, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(0, 77, 57, 0.92), rgba(44, 136, 112, 0.9));
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(22px, 3vw, 34px);
      box-shadow:
        0 28px 64px rgba(0, 38, 28, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .trust-visual::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -150px;
      top: -126px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .trust-visual::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      left: -110px;
      bottom: -86px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.14);
      pointer-events: none;
    }

    .trust-stats-board {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 560px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .trust-stat-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      border-radius: 22px;
      padding: clamp(20px, 2.25vw, 28px);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 232, 0.92));
      border: 1px solid rgba(255, 255, 255, 0.78);
      box-shadow:
        0 20px 44px rgba(0, 38, 28, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform: translateY(0) scale(1);
      transition:
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease;
    }

    .trust-stat-card::before {
      content: "";
      position: absolute;
      width: 88px;
      height: 88px;
      right: -34px;
      bottom: -34px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.12);
      pointer-events: none;
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.32s ease;
    }

    .trust-stat-card:hover {
      transform: translateY(-7px) scale(1.015);
      border-color: rgba(85, 185, 71, 0.46);
      box-shadow:
        0 28px 56px rgba(0, 38, 28, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .trust-stat-card:hover::before {
      transform: scale(1.22);
      background: rgba(85, 185, 71, 0.18);
    }

    .trust-stat-title {
      position: relative;
      z-index: 1;
      color: #101010;
      font-size: clamp(16px, 1.75vw, 20px);
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .trust-stat-row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin: 16px 0 12px;
    }

    .trust-stat-row strong {
      color: #1B2932;
      font-family: var(--font-body);
      font-size: clamp(30px, 3.4vw, 46px);
      line-height: 0.95;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .trust-stat-card p {
      position: relative;
      z-index: 1;
      color: #5E6662;
      font-size: clamp(12px, 1.2vw, 14px);
      line-height: 1.35;
      margin: 0;
      font-weight: 700;
    }

    .trust-stat-icon {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--green-main);
      background: var(--green-pale);
      transition:
        background 0.32s ease,
        color 0.32s ease,
        box-shadow 0.32s ease;
    }

    .trust-stat-card:hover .trust-stat-icon {
      color: var(--green-main);
      background: white;
      box-shadow: 0 12px 26px rgba(0, 38, 28, 0.18);
    }

    .trust-stat-icon svg {
      width: 22px;
      height: 22px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.25;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* CTA */
    .final-cta {
      --cta-footer-overlap: 160px;
      background: var(--off-white);
      padding: 26px 0 0;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .final-cta::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: var(--cta-footer-overlap);
      background: #030303;
      pointer-events: none;
      z-index: 0;
    }

    .final-cta .container {
      position: relative;
      z-index: 1;
    }

    .cta-card {
      text-align: center;
      background: linear-gradient(135deg, var(--green-main), #004D39 70%, #2C8870);
      color: white;
      border-radius: 28px;
      padding: 68px 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      margin-bottom: 0;
      z-index: 1;
      transform: translateY(0);
      will-change: transform;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.36s ease;
    }

    .cta-card.reveal {
      transition:
        opacity 0.7s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.36s ease;
    }

    .cta-card::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      left: -100px;
      top: -120px;
      background: rgba(255, 255, 255, 0.09);
      border-radius: 50%;
      transform: scale(1);
      transform-origin: center;
      transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease;
      z-index: 0;
    }

    .cta-card::after {
      content: "";
      position: absolute;
      top: -35%;
      bottom: -35%;
      left: -58%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 28%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.07) 72%,
        rgba(255, 255, 255, 0) 100%
      );
      opacity: 0;
      filter: blur(1.5px);
      mix-blend-mode: screen;
      transform: skewX(-18deg);
      pointer-events: none;
      z-index: 2;
    }

    .cta-card:hover,
    .cta-card.reveal.active:hover {
      transform: translateY(-8px);
      box-shadow:
        0 28px 70px rgba(0, 38, 28, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .cta-card:hover::before {
      transform: scale(1.34);
      background: rgba(255, 255, 255, 0.13);
    }

    .cta-card:hover::after {
      animation: ctaGlassSweep 0.95s ease forwards;
    }

    .cta-card h2 {
      font-size: clamp(36px, 5vw, 62px);
      margin-bottom: 18px;
      color: white;
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      max-width: 680px;
      margin: 0 auto 28px;
      color: rgba(255, 255, 255, 0.78);
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      margin-bottom: 22px;
    }

    .cta-foot {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      position: relative;
      z-index: 1;
    }

    @keyframes ctaGlassSweep {
      0% {
        left: -58%;
        opacity: 0;
      }
      16% {
        opacity: 0.82;
      }
      84% {
        opacity: 0.82;
      }
      100% {
        left: 118%;
        opacity: 0;
      }
    }

    /* Animation */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.7s ease;
    }

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

    /* Responsive */
    @media (max-width: 980px) {
.hero-grid,
      .audience-grid,
      .steps-grid,
      .trust-panel {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 500px;
      }

      .hero-visual-stage {
        inset: 18px 0 0;
      }

      .hero-glass {
        width: min(430px, calc(100vw - 40px));
      }

      .hero-home-image-wrap {
        width: min(100%, 620px);
      }

      .hero-pill {
        width: min(64vw, 300px);
        height: min(88vw, 420px);
        left: 58%;
        top: 50%;
        translate: -50% -50%;
      }

      .hero-pill--counter {
        width: min(58vw, 270px);
        height: min(82vw, 390px);
        left: 42%;
      }

      .trust-visual {
        min-height: 0;
        padding: 28px;
      }

      .trust-stats-board {
        max-width: 560px;
      }

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

      section {
        padding: 70px 0;
      }

      .final-cta {
        --cta-footer-overlap: 138px;
        padding: 24px 0 0;
      }

      .cta-card {
        margin-bottom: 0;
      }

      footer {
        padding-top: 98px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .hero {
        padding-top: 60px;
      }

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

      .btn {
        width: 100%;
      }

      .audience-card,
      .steps-card,
      .trust-panel {
        padding: 26px;
      }

      .trust-visual {
        min-height: 0;
        padding: 18px;
      }

      .trust-stats-board {
        gap: 12px;
      }

      .trust-stat-card {
        border-radius: 18px;
        padding: 16px;
      }

      .trust-stat-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin: 12px 0 10px;
      }

      .cta-card {
        margin-bottom: 0;
        padding: 52px 24px;
      }

      .final-cta {
        --cta-footer-overlap: 112px;
      }

      .hero-visual {
        min-height: 460px;
      }

      .hero-visual-stage {
        min-height: 420px;
      }

      .hero-home-image-wrap {
        width: 100%;
      }

      .hero-pill {
        width: min(72vw, 260px);
        height: min(98vw, 360px);
        left: 61%;
      }

      .hero-pill--counter {
        width: min(62vw, 230px);
        height: min(86vw, 320px);
        left: 36%;
      }

      .hero-glass {
        width: min(430px, calc(100vw - 28px));
        aspect-ratio: auto;
        padding: 22px;
      }

      .hero-feature-grid {
        grid-template-columns: 1fr;
      }

      .hero-feature-card {
        aspect-ratio: 1 / 1;
        min-height: 0;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-outline {
        width: fit-content;
        min-width: 0;
        padding: 14px 22px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-pill {
        animation: none;
      }
    }
