: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: #004D39;
      --green-main: #006048;
      --green-soft: #187058;
      --green-light: #55B947;
      --green-hover: #3FA63A;
      --green-pale: #E8F8E5;
      --cream: #F8F8E8;
      --cream-2: #F3F0D8;
      --white: #FFFFFF;
      --off-white: #F8F8F6;
      --black: #101010;
      --text: #27312D;
      --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: 24px;
      --radius-sm: 14px;
      --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(--text);
      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: 800;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--button-green);
      color: white;
      box-shadow: 0 10px 22px rgba(53, 166, 53, 0.24);
    }

    .btn-primary:hover {
      background: var(--button-green-hover);
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(53, 166, 53, 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);
    }
h1,
    h2,
    h3 {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--black);
    }

    .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::before {
      content: "";
      position: absolute;
      left: max(18px, calc((100vw - 1180px) / 2 - 184px));
      top: 205px;
      width: min(520px, calc(100vw - 36px));
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(194, 244, 164, 0.39) 0%, rgba(214, 248, 195, 0.24) 42%, rgba(232, 248, 229, 0) 74%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
    }

    .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 {
      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: 530px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      perspective: 900px;
      isolation: isolate;
    }

    .hero-supplier-glow {
      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.74;
      pointer-events: none;
      z-index: 0;
      transform-origin: 50% 50%;
      will-change: transform;
    }

    .hero-supplier-glow--one {
      right: 108px;
      top: 8px;
      transform: rotate(32deg);
      animation: supplierGlowClockwise 18s linear infinite;
    }

    .hero-supplier-glow--two {
      width: 320px;
      height: 470px;
      left: 92px;
      bottom: 4px;
      background: linear-gradient(180deg, rgba(85, 185, 71, 0.78), rgba(0, 96, 72, 0.88));
      opacity: 0.52;
      transform: rotate(-42deg);
      animation: supplierGlowCounter 22s linear infinite;
    }

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

    .hero-supplier-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-supplier-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-supplier-image {
      filter: drop-shadow(0 32px 62px rgba(0, 77, 57, 0.2));
    }

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

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

    .hero-panel {
      position: absolute;
      inset: 28px 0 0 44px;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark) 68%, #2B8870);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 34px;
      color: white;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -90px;
      top: -95px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.11);
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      left: -60px;
      bottom: -70px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.16);
    }

    .supplier-card {
      position: relative;
      background: rgba(255, 255, 255, 0.96);
      color: var(--black);
      border-radius: 20px;
      padding: 24px;
      margin-top: 105px;
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
      z-index: 2;
    }

    .supplier-top {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      margin-bottom: 18px;
    }

    .supplier-badge {
      background: var(--green-pale);
      color: var(--green-main);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 900;
    }

    .lead-list {
      display: grid;
      gap: 10px;
    }

    .lead-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid rgba(0, 96, 72, 0.10);
      border-radius: 12px;
      padding: 12px;
      background: #FAFAF7;
      font-size: 13px;
    }

    .lead-item strong {
      color: var(--green-main);
    }

    .floating-metric {
      position: absolute;
      left: 0;
      top: 56px;
      width: 215px;
      background: var(--cream);
      border-radius: 18px;
      padding: 20px;
      box-shadow: var(--shadow-soft);
      transform: rotate(-5deg);
      border: 1px solid rgba(0, 96, 72, 0.12);
      z-index: 3;
    }

    .floating-metric strong {
      display: block;
      font-family: var(--serif);
      font-size: 38px;
      line-height: 1;
      color: var(--green-main);
      font-weight: 400;
      margin-bottom: 8px;
    }

    .floating-metric p {
      color: var(--muted);
      font-size: 13px;
    }

    .orbit-icons {
      position: absolute;
      right: 22px;
      top: 2px;
      display: flex;
      gap: 8px;
      z-index: 4;
    }

    .orbit-icons span {
      width: 43px;
      height: 43px;
      border-radius: 50%;
      background: white;
      display: grid;
      place-items: center;
      color: var(--green-main);
      font-weight: 900;
      box-shadow: var(--shadow-soft);
    }

    section {
      padding: 92px 0;
    }

    .section-head {
      text-align: center;
      max-width: 790px;
      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;
    }

    .problem {
      background: white;
    }

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

    .compare-card {
      position: relative;
      border-radius: 26px;
      padding: 38px;
      border: 1px solid var(--border);
      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;
    }

    .compare-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,
        backdrop-filter 0.36s ease;
    }

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

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

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

    .compare-card:hover,
    .compare-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);
      backdrop-filter: blur(16px) saturate(1.16);
      -webkit-backdrop-filter: blur(16px) saturate(1.16);
    }

    .compare-card:hover::before {
      animation: compareGlassSweep 0.9s ease forwards;
    }

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

    .compare-card.old {
      background: #FFFFFF;
    }

    .compare-card.new {
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      color: white;
      border-color: rgba(255, 255, 255, 0.16);
    }

    .compare-card.new::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%
      );
    }

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

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

    .compare-card.new h3,
    .compare-card.new p {
      color: white;
    }

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

    .compare-card h3 {
      font-size: 34px;
      margin-bottom: 15px;
    }

    .compare-card p {
      color: var(--muted);
    }

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

    .benefits {
      background: var(--off-white);
    }

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

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

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

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

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

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

    .benefit-card:hover,
    .benefit-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);
    }

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

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

    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-light);
      color: white;
      margin-bottom: 18px;
      font-weight: 900;
      font-size: 18px;
      box-shadow: 0 10px 20px rgba(85, 185, 71, 0.24);
      transition:
        background 0.32s ease,
        color 0.32s ease,
        box-shadow 0.32s ease;
    }

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

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

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

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

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

    .supplier-types {
      background: white;
    }

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

    .type-card {
      background: var(--cream);
      border-radius: 22px;
      padding: 34px;
      border: 1px solid rgba(0, 96, 72, 0.11);
      transition: all 0.25s ease;
    }

    .type-card:hover {
      background: var(--green-main);
      color: white;
      transform: translateY(-5px);
      box-shadow: var(--shadow-soft);
    }

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

    .type-card h3 {
      font-size: 30px;
      margin-bottom: 12px;
    }

    .type-card p {
      color: var(--muted);
    }

    .showcase {
      background: #F8F8F8;
      color: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .showcase::before {
      content: none;
    }

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

    .showcase .section-head h2 {
      color: var(--hero-heading-color);
    }

    .showcase .section-head p {
      color: var(--muted);
    }

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

    .showcase-card {
      background: #F8F8E8;
      border: 1px solid rgba(0, 77, 57, 0.14);
      border-radius: 24px;
      padding: 26px;
      color: var(--ink);
      box-shadow: 0 22px 48px rgba(0, 38, 28, 0.14);
      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,
        border-color 0.28s ease;
    }

    .showcase-card:hover,
    .showcase-card.reveal.active:hover {
      transform: translateY(-3px) scale(1.01);
      background: #FFFFF0;
      box-shadow: 0 28px 56px rgba(0, 38, 28, 0.18);
      border-color: rgba(85, 185, 71, 0.42);
    }

    .showcase-card h3 {
      color: #101010;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .showcase-card p {
      color: var(--muted);
      font-size: 15px;
    }

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

    .timeline {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      background: #F8F8E8;
      border: 1px solid rgba(0, 77, 57, 0.14);
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 22px 48px rgba(0, 38, 28, 0.14);
      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,
        border-color 0.28s ease;
    }

    .timeline-step:hover,
    .timeline-step.reveal.active:hover {
      transform: translateY(-3px) scale(1.01);
      background: #FFFFF0;
      box-shadow: 0 28px 56px rgba(0, 38, 28, 0.18);
      border-color: rgba(85, 185, 71, 0.42);
    }

    .step-number {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--green-light);
      display: grid;
      place-items: center;
      font-weight: 900;
      color: white;
      box-shadow: 0 10px 20px rgba(85, 185, 71, 0.24);
    }

    .timeline-step h3 {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .timeline-step p {
      color: var(--muted);
    }

    .trust-control {
      background: var(--off-white);
    }

    .trust-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 40px;
      align-items: center;
      background: var(--cream);
      border-radius: 28px;
      padding: 48px;
      border: 1px solid rgba(0, 96, 72, 0.10);
      box-shadow: var(--shadow-soft);
    }

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

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

    .trust-visual {
      min-height: 335px;
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(0, 96, 72, 0.95), rgba(0, 72, 54, 0.98)),
        radial-gradient(circle at center, rgba(85, 185, 71, 0.2), transparent);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
      color: white;
      text-align: center;
      padding: 40px;
    }

    .trust-ring {
      width: 220px;
      height: 220px;
      border: 1px solid rgba(255, 255, 255, 0.36);
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
    }

    .trust-ring::before,
    .trust-ring::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .trust-ring::before {
      inset: 30px;
    }

    .trust-ring::after {
      inset: -34px;
    }

    .trust-ring strong {
      font-family: var(--serif);
      font-size: 31px;
      line-height: 1.08;
      font-weight: 400;
    }

    .pricing {
      background: white;
    }

    .pricing-card {
      background: linear-gradient(135deg, var(--green-main), var(--green-dark) 70%, #2C8870);
      color: white;
      border-radius: 30px;
      padding: 58px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 44px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .pricing-card::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      left: -110px;
      top: -130px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.09);
    }

    .price-pill {
      position: relative;
      z-index: 1;
      background: var(--cream);
      color: var(--green-main);
      border-radius: 24px;
      padding: 34px;
      text-align: center;
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    }

    .price-pill strong {
      display: block;
      font-family: var(--serif);
      font-size: 78px;
      line-height: 0.95;
      font-weight: 400;
      margin-bottom: 8px;
    }

    .price-pill span {
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 12px;
    }

    .pricing-copy {
      position: relative;
      z-index: 1;
    }

    .pricing-copy h2 {
      color: white;
      font-size: clamp(34px, 5vw, 56px);
      margin-bottom: 16px;
    }

    .pricing-copy p {
      color: rgba(255, 255, 255, 0.76);
      margin-bottom: 22px;
    }

    .faq {
      background: var(--off-white);
    }

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

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: white;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .faq-question {
      width: 100%;
      border: none;
      background: white;
      padding: 22px 24px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 800;
      color: var(--black);
    }

    .faq-question span {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--green-pale);
      color: var(--green-main);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      transition: all 0.25s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      padding: 0 24px 22px;
      color: var(--muted);
    }

    .faq-item.active .faq-answer {
      max-height: 260px;
    }

    .faq-item.active .faq-question span {
      background: var(--green-light);
      color: white;
      transform: rotate(45deg);
    }

    .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 {
      color: white;
      font-size: clamp(36px, 5vw, 62px);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      max-width: 700px;
      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;
      }
    }

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

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

    @media (max-width: 980px) {
.hero-grid,
      .compare-grid,
      .trust-panel,
      .pricing-card {
        grid-template-columns: 1fr;
      }

      .benefit-grid,
      .type-grid,
      .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

      .hero-supplier-glow--one {
        width: 300px;
        height: 420px;
        right: 10%;
        top: 10px;
      }

      .hero-supplier-glow--two {
        width: 270px;
        height: 390px;
        left: 8%;
        bottom: 0;
      }

      section {
        padding: 72px 0;
      }

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

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

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

      .hero {
        padding-top: 60px;
      }

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

      h1 {
        font-size: 36px;
      }

      .hero-copy {
        padding-right: 0;
      }

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

      .cta-actions .btn,
      .form-actions .btn {
        width: 100%;
      }

      .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 12px;
      }

      .benefit-card {
        height: 100%;
        min-height: 250px;
        padding: 18px 14px;
        border-radius: 16px;
      }

      .benefit-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
        font-size: 16px;
      }

      .benefit-card h3 {
        font-size: 22px;
        line-height: 1.05;
      }

      .benefit-card p {
        font-size: 13px;
        line-height: 1.45;
      }

      .type-grid,
      .showcase-grid {
        grid-template-columns: 1fr;
      }

      .compare-card,
      .trust-panel,
      .pricing-card {
        padding: 28px;
      }

      .hero-visual {
        min-height: auto;
      }

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

      .hero-supplier-glow--one {
        width: 230px;
        height: 320px;
        right: 2%;
        top: 6px;
      }

      .hero-supplier-glow--two {
        width: 210px;
        height: 300px;
        left: 0;
        bottom: 4px;
      }

      .timeline-step {
        grid-template-columns: 1fr;
      }

      .price-pill strong {
        font-size: 60px;
      }

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

      .final-cta {
        --cta-footer-overlap: 112px;
      }
    }
.btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

body,
section,
.hero,
.problem,
.benefits,
.supplier-types,
.showcase,
.trust-control,
.pricing,
.faq,
.final-cta {
  background-color: #F8F8F8;
}

.hero {
  background: #F8F8F8;
}

.showcase {
  background: #F8F8F8;
  color: var(--ink);
}

.showcase .eyebrow {
  color: var(--green-main);
}

.how {
  background: var(--green-main);
  color: white;
}

.how .eyebrow {
  color: white;
}

@media (max-width: 900px) {
  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
    overflow: hidden;
  }

  .hero-supplier-image-wrap {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-supplier-glow--one {
    width: min(64vw, 300px);
    height: min(88vw, 420px);
    left: 58%;
    right: auto;
    top: 3%;
    translate: -50% 0;
  }

  .hero-supplier-glow--two {
    width: min(58vw, 270px);
    height: min(82vw, 390px);
    left: 39%;
    bottom: 0;
    translate: -50% 0;
  }
}

@media (max-width: 620px) {
  .hero-visual {
    width: 100%;
  }

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

  .hero-supplier-glow--one {
    width: min(72vw, 260px);
    height: min(98vw, 360px);
    left: 61%;
    top: 4%;
  }

  .hero-supplier-glow--two {
    width: min(62vw, 230px);
    height: min(86vw, 320px);
    left: 36%;
    bottom: 2%;
  }
}

@media (max-width: 760px) {
  .problem,
  .benefits {
    padding: 56px 0;
  }
}
