  /* ============ TOKENS ============ */
  :root {
      --green-900: #0f3a1f;
      --green-800: #1a472a;
      --green-700: #2d6a4f;
      --green-500: #52b788;
      --green-400: #7cc796;
      --green-50: #eef7f0;
      --green-100: #dff0e3;
      --amber: #f4a261;
      --amber-600: #e8924a;
      --bg: #ffffff;
      --bg-soft: #f6f8f5;
      --bg-cream: #faf7f0;
      --ink: #1c1c1c;
      --ink-soft: #3d4a40;
      --muted: #6b7670;
      --line: #e6ebe5;
      --shadow-sm: 0 1px 2px rgba(15, 58, 31, .04), 0 1px 1px rgba(15, 58, 31, .03);
      --shadow-md: 0 4px 16px rgba(15, 58, 31, .06), 0 1px 3px rgba(15, 58, 31, .04);
      --shadow-lg: 0 18px 50px rgba(15, 58, 31, .10), 0 4px 12px rgba(15, 58, 31, .05);
      --radius-sm: 10px;
      --radius: 16px;
      --radius-lg: 22px;
      --container: 1200px;
  }

  /* ============ SCOPED RESETS ============ */
  .audit-page *,
  .audit-page *::before,
  .audit-page *::after {
      box-sizing: border-box;
  }

  .audit-page a {
      text-decoration: none;
  }

  .audit-page button {
      font-family: inherit;
      cursor: pointer;
  }

  .qa__q {
      background: none;
      border: 0;
  }


  .audit-page img {
      max-width: 100%;
      display: block;
  }

  .audit-page ::selection {
      background: var(--green-500);
      color: #fff;
  }

  .audit-page .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 28px;
  }

  .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--green-700);
  }

  .eyebrow::before {
      content: "";
      width: 24px;
      height: 1px;
      background: var(--green-500);
  }

  .eyebrow.on-dark {
      color: var(--green-400)
  }

  .eyebrow.on-dark::before {
      background: var(--green-400)
  }

  /* ============ BUTTONS ============ */
  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 20px 45px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .005em;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
  }

  .btn-primary {
      background: var(--amber);
      color: #26180a;
      box-shadow: 0 6px 20px rgba(244, 162, 97, .35), inset 0 -2px 0 rgba(0, 0, 0, .08);
  }

  .btn-primary:hover {
      background: var(--amber-600);
      transform: translateY(-1px)
  }

  .btn-primary:active {
      transform: translateY(0)
  }

  .btn-ghost {
      background: transparent;
      color: var(--green-800);
      border: 1.5px solid var(--green-700);
      margin-left: 10px;
  }

  .btn-ghost:hover {
      background: var(--green-800);
      color: #fff
  }

  .btn-dark {
      background: var(--green-800);
      color: #fff;
      box-shadow: 0 6px 20px rgba(26, 71, 42, .25);
  }

  .btn-dark:hover {
      background: var(--green-900);
      transform: translateY(-1px)
  }

  .btn-sm {
      height: 42px;
      padding: 0 18px;
      font-size: 14px;
      border-radius: 10px
  }

  .btn .arrow {
      transition: transform .2s
  }

  .btn:hover .arrow {
      transform: translateX(3px)
  }

  /* ============ HERO (Block 1) ============ */
  .hero {
      position: relative;
      overflow: hidden;
      background:
          radial-gradient(1100px 600px at 88% -10%, rgba(82, 183, 136, .18), transparent 60%),
          radial-gradient(900px 500px at -10% 110%, rgba(45, 106, 79, .10), transparent 60%),
          linear-gradient(180deg, #fafdf8 0%, #ffffff 100%);
      padding: 72px 0 96px;
  }

  .hero__grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 64px;
      align-items: center;
  }

  .hero h1 {
      font-size: clamp(34px, 4.6vw, 60px);
      line-height: 1.05;
      letter-spacing: -.02em;
      color: var(--green-900);
  }

  .hero h1 em {
      font-style: normal;
      color: var(--green-700);
      white-space: nowrap
  }

  .hero__divider {
      border: none;
      height: 8px;
      background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
      opacity: .6;
      border-radius: 2px;
      margin: 14px 0 0;
      max-width: 510px;
  }

  .hero__sub {
      margin-top: 22px;
      font-size: 19px;
      color: var(--ink-soft);
  }

  .hero__bullets {
      margin: 32px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
  }

  .hero__bullets li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15.5px;
      color: var(--ink-soft);
  }

  .hero__bullets svg {
      flex-shrink: 0;
      margin-top: 2px
  }

  .hero__cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
      align-items: center
  }

  .hero__anchor {
      margin-top: 18px;
      font-size: 14px;
      color: var(--muted);
      font-style: italic;
  }

  /* Hero visual: stylised dashboard mock */
  .hero__visual {
      position: relative
  }

  .dash {
      position: relative;
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--line);
      overflow: hidden;
  }

  .dash__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: var(--green-900);
      color: #cfe9d5;
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      letter-spacing: .06em;
  }

  .dash__top-dot {
      display: flex;
      gap: 6px
  }

  .dash__top-dot span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #234d34
  }

  .dash__top-dot span:nth-child(1) {
      background: #ff6b6b
  }

  .dash__top-dot span:nth-child(2) {
      background: #ffd166
  }

  .dash__top-dot span:nth-child(3) {
      background: #52b788
  }

  .dash__body {
      padding: 22px 22px 26px;
      background: linear-gradient(180deg, #fbfdf9, #ffffff)
  }

  .dash__title {
      font-family: 'Unbounded', sans-serif;
      font-weight: 700;
      color: var(--green-900);
      font-size: 14px
  }

  .dash__tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      background: var(--green-50);
      color: var(--green-800);
      padding: 4px 8px;
      border-radius: 6px;
      font-weight: 600;
      letter-spacing: .04em;
      font-family: 'Manrope', sans-serif;
      text-transform: uppercase;
  }

  .dash__tag .ping {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-500);
      box-shadow: 0 0 0 0 rgba(82, 183, 136, .6);
      animation: ping 1.8s infinite
  }

  @keyframes ping {
      0% {
          box-shadow: 0 0 0 0 rgba(82, 183, 136, .7)
      }

      80% {
          box-shadow: 0 0 0 10px rgba(82, 183, 136, 0)
      }

      100% {
          box-shadow: 0 0 0 0 rgba(82, 183, 136, 0)
      }
  }

  .dash__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 8px
  }

  .dash__metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 18px
  }

  .metric {
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 14px;
  }

  .metric__label {
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      font-family: 'Manrope', sans-serif, monospace
  }

  .metric__val {
      font-family: 'Unbounded', sans-serif;
      font-weight: 700;
      font-size: 24px;
      color: var(--green-900);
      margin-top: 6px;
      display: flex;
      align-items: baseline;
      gap: 6px
  }

  .metric__val .delta {
      font-size: 12px;
      color: var(--green-700);
      font-family: 'Manrope', sans-serif;
      font-weight: 700
  }

  .metric__val .delta.warn {
      color: var(--amber-600)
  }

  .bar {
      height: 6px;
      background: var(--green-100);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 10px
  }

  .bar>i {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--green-500), var(--green-700));
      border-radius: 3px;
      transform-origin: left;
      animation: fill 1.6s ease forwards
  }

  @keyframes fill {
      from {
          transform: scaleX(0)
      }

      to {
          transform: scaleX(var(--w, .7))
      }
  }

  .chart {
      height: 96px;
      margin-top: 18px;
      display: flex;
      align-items: flex-end;
      gap: 6px
  }

  .chart i {
      flex: 1;
      background: linear-gradient(180deg, var(--green-500), var(--green-700));
      border-radius: 4px 4px 0 0;
      animation: rise 1.2s cubic-bezier(.2, .8, .2, 1) both;
      transform-origin: bottom;
  }

  @keyframes rise {
      from {
          transform: scaleY(.05)
      }

      to {
          transform: scaleY(1)
      }
  }

  .floating-card {
      position: absolute;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      animation: float 6s ease-in-out infinite;
  }

  .floating-card.f1 {
      top: -22px;
      left: -18px;
      animation-delay: 0s
  }

  .floating-card.f2 {
      bottom: -26px;
      right: -14px;
      animation-delay: 1.5s
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0)
      }

      50% {
          transform: translateY(-8px)
      }
  }

  .floating-card .ico {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--green-50);
      display: grid;
      place-items: center;
      color: var(--green-700);
  }

  .floating-card b {
      font-weight: 700;
      color: var(--green-900);
      display: block
  }

  .floating-card span {
      color: var(--muted);
      font-size: 12px
  }

  /* ============ SECTION SHELL ============ */
  section {
      padding: 108px 0;
      position: relative
  }

  section.dark {
      background: var(--green-900);
      color: #e7f1ea
  }

  section.cream {
      background: var(--bg-cream)
  }

  section.soft {
      background: var(--bg-soft)
  }

  .section-head {
      max-width: 780px;
      margin: 0 0 56px;
  }

  .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center
  }

  .section-head h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      color: var(--green-900);
      margin-top: 14px;
      letter-spacing: -.02em;
  }

  .dark .section-head h2 {
      color: #fff
  }

  .section-head p {
      margin-top: 18px;
      color: var(--ink-soft);
      font-size: 18px;
      max-width: 680px
  }

  .section-head.center p {
      margin-left: auto;
      margin-right: auto
  }

  .dark .section-head p {
      color: #b8d2c2
  }

  /* ============ BLOCK 2 — PAINS ============ */
  .pains-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .pain {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px 26px;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      position: relative;
  }

  .pain:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--green-100)
  }

  .pain__icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--green-50);
      color: var(--green-800);
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      transition: transform .25s ease;
  }

  .pain:hover .pain__icon {
      transform: rotate(-6deg) scale(1.05)
  }

  .pain h3 {
      font-size: 18px;
      color: var(--green-900);
      margin-bottom: 10px;
      font-family: 'Manrope';
      font-weight: 700;
      letter-spacing: 0
  }

  .pain p {
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.55
  }

  .pains__cta {
      margin-top: 42px;
      background: #fff;
      border: 1px solid var(--green-100);
      border-radius: var(--radius);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      box-shadow: var(--shadow-sm);
  }

  .pains__cta p {
      font-size: 17px;
      color: var(--ink);
      max-width: 680px
  }

  .pains__cta b {
      color: var(--green-800)
  }

  /* ============ BLOCK 3 — WHAT IS AUDIT ============ */
  .what-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 64px;
      align-items: center;
  }

  .what-list {
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 14px
  }

  .what-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
  }

  .what-list .num {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--amber);
      color: var(--green-900);
      font-weight: 800;
      display: grid;
      place-items: center;
      font-size: 14px;
      font-family: 'Unbounded'
  }

  .what-list b {
      display: block;
      color: #fff;
      font-weight: 700;
      margin-bottom: 2px
  }

  .what-list span {
      color: #b8d2c2;
      font-size: 15px
  }

  .report-mock {
      position: relative;
      perspective: 1200px;
  }

  .report {
      transform: rotate(-3deg);
      background: #fff;
      border-radius: 14px;
      color: var(--ink);
      padding: 30px 28px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .4), 0 8px 22px rgba(0, 0, 0, .25);
      transition: transform .4s ease;
  }

  .report-mock:hover .report {
      transform: rotate(-1deg) translateY(-4px)
  }

  .report__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--line);
      padding-bottom: 14px;
      margin-bottom: 16px
  }

  .report__head b {
      font-family: 'Unbounded';
      color: var(--green-900);
      font-size: 14px
  }

  .report__head em {
      font-style: normal;
      font-size: 11px;
      color: var(--muted);
      font-family: 'Manrope', sans-serif
  }

  .report__title {
      font-family: 'Unbounded';
      color: var(--green-900);
      font-size: 20px;
      line-height: 1.2;
      margin-bottom: 18px
  }

  .report__bars {
      display: grid;
      gap: 10px
  }

  .rbar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      font-size: 12px;
      color: var(--ink-soft)
  }

  .rbar .track {
      height: 8px;
      background: var(--bg-soft);
      border-radius: 4px;
      overflow: hidden;
      width: 120px
  }

  .rbar .track i {
      display: block;
      height: 100%;
      background: var(--green-500);
      border-radius: 4px
  }

  .rbar .track i.amber {
      background: var(--amber)
  }

  .rbar .track i.warn {
      background: #e7707d
  }

  .report__foot {
      margin-top: 22px;
      padding-top: 14px;
      border-top: 1px dashed var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .06em;
  }

  .stamp {
      position: absolute;
      top: 30px;
      right: -20px;
      background: var(--amber);
      color: var(--green-900);
      font-family: 'Unbounded';
      font-weight: 700;
      font-size: 12px;
      padding: 8px 14px;
      border-radius: 6px;
      transform: rotate(8deg);
      box-shadow: 0 6px 16px rgba(244, 162, 97, .4);
      letter-spacing: .04em;
  }

  /* ============ BLOCK 4 — PROCESS ============ */
  .process {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      position: relative;
  }

  .process::before {
      content: "";
      position: absolute;
      top: 34px;
      left: 5%;
      right: 5%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--green-200, #cde7d4) 0 6px, transparent 6px 12px);
      background-color: transparent;
      background-image: linear-gradient(90deg, var(--green-100) 50%, transparent 50%);
      background-size: 14px 2px;
      z-index: 0;
  }

  .step {
      position: relative;
      z-index: 1;
      text-align: left
  }

  .step__num {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--green-100);
      color: var(--green-800);
      font-family: 'Unbounded';
      font-weight: 700;
      font-size: 22px;
      display: grid;
      place-items: center;
      margin: 0 0 16px;
      transition: all .25s ease;
      position: relative;
  }

  .step:hover .step__num {
      background: var(--green-800);
      color: #fff;
      border-color: var(--green-800);
      transform: translateY(-3px)
  }

  .step h3 {
      font-size: 16px;
      color: var(--green-900);
      margin-bottom: 8px;
      font-family: 'Manrope';
      font-weight: 700;
      letter-spacing: 0
  }

  .step p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.5
  }

  .process__note {
      margin-top: 50px;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      font-family: 'Manrope', sans-serif;
      letter-spacing: .04em;
  }

  /* ============ BLOCK 5 — WHAT WE ANALYZE ============ */
  .analyze-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
  }

  .area {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      transition: transform .25s, box-shadow .25s;
      display: grid;
      grid-template-rows: auto 1fr;
  }

  .area:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg)
  }

  .area__head {
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-bottom: 1px solid var(--line);
  }

  .area__icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
  }

  .area--agro .area__icon {
      background: var(--green-50);
      color: var(--green-800)
  }

  .area--tech .area__icon {
      background: #e7eef7;
      color: #2c5a8a
  }

  .area--econ .area__icon {
      background: #fbf1de;
      color: #b67328
  }

  .area--mgmt .area__icon {
      background: #efe7f4;
      color: #6e468f
  }

  .area__head h3 {
      font-family: 'Manrope';
      font-weight: 700;
      font-size: 19px;
      letter-spacing: 0;
      color: var(--green-900)
  }

  .area__list {
      margin: 0;
      padding: 24px 28px 28px;
      list-style: none
  }

  .area__list li {
      display: flex;
      gap: 12px;
      padding: 8px 0;
      font-size: 15px;
      color: var(--ink-soft);
      border-bottom: 1px dashed var(--line);
  }

  .area__list li:last-child {
      border: 0
  }

  .area__list .check {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green-50);
      color: var(--green-700);
      display: grid;
      place-items: center;
      margin-top: 3px;
  }

  /* ============ BLOCK 6 — METRICS ============ */
  .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .08);
      border-radius: var(--radius-lg);
      overflow: hidden;
  }

  .stat {
      background: var(--green-900);
      padding: 42px 32px;
      transition: background .2s;
  }

  .stat:hover {
      background: #0c2f19
  }

  .stat__num {
      font-family: 'Unbounded';
      font-weight: 800;
      font-size: 64px;
      line-height: 1;
      color: var(--amber);
      letter-spacing: -.02em;
  }

  .stat__num small {
      font-size: 32px;
      font-weight: 700
  }

  .stat__label {
      margin-top: 14px;
      color: #b8d2c2;
      font-size: 15px;
      line-height: 1.5
  }

  .metrics__disc {
      margin-top: 32px;
      color: #7ea18b;
      font-size: 13px;
      font-style: italic;
      text-align: center;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
  }

  /* ============ BLOCK 7 — CASES ============ */
  .cases {
      position: relative
  }

  .case-track {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      position: relative;
      min-height: 430px
  }

  .case {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 48px;
      align-items: stretch;
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .5s, transform .5s;
      pointer-events: none;
  }

  .case.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
      pointer-events: auto
  }

  .case__visual {
      position: relative;
      background: linear-gradient(135deg, var(--green-800), var(--green-700));
      min-height: 420px;
      overflow: hidden;
  }

  .case__visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 36px 36px;
  }

  .farm-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%
  }

  .case__loc {
      position: absolute;
      top: 24px;
      left: 24px;
      background: rgba(255, 255, 255, .16);
      backdrop-filter: blur(8px);
      color: #fff;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 12px;
      font-family: 'Manrope', sans-serif;
      letter-spacing: .06em;
      border: 1px solid rgba(255, 255, 255, .18);
  }

  .case__body {
      padding: 38px 38px 38px 0
  }

  .case__crop {
      font-family: 'Manrope', sans-serif;
      color: var(--green-700);
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 12px
  }

  .case__title {
      font-family: 'Unbounded';
      font-size: 24px;
      color: var(--green-900);
      margin-bottom: 18px;
      line-height: 1.2
  }

  .case__sit {
      color: var(--ink-soft);
      font-size: 15px;
      margin-bottom: 18px
  }

  .case__found {
      margin: 0 0 22px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px
  }

  .case__found li {
      font-size: 14px;
      color: var(--ink-soft);
      padding-left: 18px;
      position: relative
  }

  .case__found li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 8px;
      height: 1px;
      background: var(--green-700)
  }

  .case__results {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px
  }

  .res {
      background: var(--green-50);
      border-radius: 10px;
      padding: 14px;
      border-left: 3px solid var(--green-500);
  }

  .res b {
      font-family: 'Unbounded';
      font-size: 22px;
      color: var(--green-800);
      display: block
  }

  .res span {
      font-size: 12px;
      color: var(--ink-soft);
      margin-top: 3px;
      display: block
  }

  .res.amber {
      background: #fdf3e6;
      border-left-color: var(--amber)
  }

  .res.amber b {
      color: var(--amber-600)
  }

  .case-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 32px;
  }

  .case-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 0;
      background: var(--line);
      transition: background .2s, transform .2s;
  }

  .case-dot.active {
      background: var(--green-700);
      transform: scale(1.3)
  }

  .case-arrow {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1.5px solid var(--line);
      background: #fff;
      display: grid;
      place-items: center;
      color: var(--green-800);
      transition: all .2s;
  }

  .case-arrow:hover {
      border-color: var(--green-700);
      background: var(--green-700);
      color: #fff
  }

  /* ============ BLOCK 8 — FOR / NOT FOR ============ */
  .forwhom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
  }

  .col {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 36px 36px;
      border: 1px solid var(--line);
  }

  .col.yes {
      background: linear-gradient(180deg, #f0f9f2 0%, #ffffff 100%);
      border-color: var(--green-100);
  }

  .col h3 {
      font-family: 'Manrope';
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0;
      color: var(--green-900);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .col.no h3 {
      color: var(--muted)
  }

  .col ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 14px
  }

  .col li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: 15.5px;
      color: var(--ink-soft);
      line-height: 1.5
  }

  .col .ico {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-top: 1px
  }

  .col.yes .ico {
      background: var(--green-500);
      color: #fff
  }

  .col.no .ico {
      background: #e6ebe5;
      color: #9aa49d
  }

  /* ============ BLOCK 9 — ABOUT ============ */
  .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 56px;
      align-items: center;
  }

  .expert {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, #1f5034, #3a8157);
  }

  .expert::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
          radial-gradient(120% 80% at 60% 80%, transparent 0, rgba(0, 0, 0, .5) 100%);
  }

  .expert__placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #a8c8b3;
      text-align: center;
      padding: 20px;
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
  }

  .expert__placeholder svg {
      margin-bottom: 14px;
      opacity: .5
  }

  .expert__caption {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      color: #fff;
      z-index: 2;
  }

  .expert__caption b {
      display: block;
      font-family: 'Unbounded';
      font-size: 18px;
      margin-bottom: 4px
  }

  .expert__caption span {
      font-size: 13px;
      color: #cfe9d5
  }

  .badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 28px
  }

  .badge {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 18px 20px;
  }

  .badge b {
      font-family: 'Unbounded';
      font-size: 28px;
      color: var(--green-800);
      display: block;
      line-height: 1
  }

  .badge span {
      font-size: 13px;
      color: var(--muted);
      margin-top: 6px;
      display: block
  }

  /* ============ BLOCK 10 — FAQ ============ */
  .faq {
      max-width: 840px;
      margin: 0 auto
  }

  .qa {
      border-bottom: 1px solid var(--line);
  }

  .qa__q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      padding: 24px 0;
      font-size: 18px;
      font-weight: 600;
      color: var(--green-900);
      transition: color .2s;
  }

  .qa__q:hover {
      color: var(--green-700)
  }

  .qa__q .toggle {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--green-50);
      display: grid;
      place-items: center;
      color: var(--green-700);
      transition: transform .25s, background .2s;
      margin-left: 16px;
  }

  .qa.open .qa__q .toggle {
      transform: rotate(45deg);
      background: var(--amber);
      color: #fff
  }

  .qa__a {
      overflow: hidden;
      max-height: 0;
      transition: max-height .35s ease;
  }

  .qa__a-inner {
      padding: 0 0 24px;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.65;
      max-width: 720px
  }

  /* ============ BLOCK 11 — PRICING ============ */
  .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch;
  }

  .plan {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius-lg);
      padding: 32px 30px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      color: #e7f1ea;
      transition: transform .25s, border-color .25s, background .2s;
  }

  .plan:hover {
      transform: translateY(-4px)
  }

  .plan--featured {
      background: #fff;
      color: var(--ink);
      position: relative;
      box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
      transform: scale(1.02);
      border-color: var(--amber);
  }

  .plan--featured:hover {
      transform: scale(1.02) translateY(-4px)
  }

  .plan__badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--amber);
      color: var(--green-900);
      font-weight: 700;
      font-size: 12px;
      padding: 6px 14px;
      border-radius: 20px;
      letter-spacing: .04em;
      font-family: 'Manrope', sans-serif;
      text-transform: uppercase;
  }

  .plan h3 {
      font-family: 'Unbounded';
      font-size: 14px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green-400)
  }

  .plan--featured h3 {
      color: var(--green-700)
  }

  .plan__for {
      font-size: 14px;
      opacity: .8
  }

  .plan--featured .plan__for {
      color: var(--ink-soft);
      opacity: 1
  }

  .plan__price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 6px
  }

  .plan__price b {
      font-family: 'Unbounded';
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.02em
  }

  .plan--featured .plan__price b {
      color: var(--green-900)
  }

  .plan__price span {
      font-size: 13px;
      opacity: .7
  }

  .plan__list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      flex: 1
  }

  .plan__list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14.5px;
      line-height: 1.5
  }

  .plan__list .ico {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(82, 183, 136, .2);
      color: var(--green-400);
      display: grid;
      place-items: center;
      margin-top: 2px
  }

  .plan--featured .plan__list .ico {
      background: var(--green-50);
      color: var(--green-700)
  }

  .plan__cta {
      margin-top: auto
  }

  .pricing-note {
      margin-top: 28px;
      text-align: center;
      font-size: 14px;
      color: #a8c8b3;
      font-style: italic
  }

  .guarantee {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 24px;
      background: rgba(244, 162, 97, .08);
      border: 1px solid rgba(244, 162, 97, .3);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
  }

  .guarantee__shield {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: var(--amber);
      color: var(--green-900);
      display: grid;
      place-items: center;
  }

  .guarantee b {
      display: block;
      font-family: 'Unbounded';
      color: #fff;
      font-size: 18px;
      margin-bottom: 6px
  }

  .guarantee p {
      color: #cfe9d5;
      font-size: 15px;
      line-height: 1.55
  }

  /* ============ BLOCK 12 — FINAL CTA + FORM ============ */
  .final {
      background: linear-gradient(180deg, #fafdf8, #ffffff);
      position: relative;
      overflow: hidden;
  }

  .final::before {
      content: "";
      position: absolute;
      top: -200px;
      left: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(82, 183, 136, .15), transparent 70%);
  }

  .final::after {
      content: "";
      position: absolute;
      bottom: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244, 162, 97, .12), transparent 70%);
  }

  .final-wrap {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 64px;
      align-items: center;
  }

  .form-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-lg);
  }

  .form-card h3 {
      font-family: 'Unbounded';
      font-size: 24px;
      color: var(--green-900);
      margin-bottom: 8px
  }

  .form-card>p {
      color: var(--ink-soft);
      margin-bottom: 26px;
      font-size: 15px
  }

  .field {
      margin-bottom: 16px
  }

  .field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--green-900);
      margin-bottom: 6px
  }

  .field input,
  .field select {
      width: 100%;
      height: 50px;
      padding: 0 16px;
      border: 1.5px solid var(--line);
      border-radius: 10px;
      background: #fff;
      font-family: inherit;
      font-size: 15px;
      color: var(--ink);
      transition: border-color .2s, box-shadow .2s;
  }

  .field input:focus,
  .field select:focus {
      outline: 0;
      border-color: var(--green-500);
      box-shadow: 0 0 0 4px rgba(82, 183, 136, .15);
  }

  .field.error input,
  .field.error select {
      border-color: #e7707d
  }

  .field .err-msg {
      color: #c84a59;
      font-size: 12px;
      margin-top: 6px;
      display: none
  }

  .field.error .err-msg {
      display: block
  }

  .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
  }

  .privacy {
      font-size: 12px;
      color: var(--muted);
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 8px
  }

  .form-success {
      display: none;
      text-align: center;
      padding: 30px 12px;
  }

  .form-success.shown {
      display: block
  }

  .form-success svg {
      margin-bottom: 14px
  }

  .form-success h3 {
      margin-bottom: 10px
  }

  .form-ratelimit {
      display: none;
      margin-top: 12px;
      padding: 12px 16px;
      border-radius: 8px;
      background: rgba(255, 180, 0, .1);
      border: 1px solid rgba(255, 180, 0, .35);
      color: #b8860b;
      font-size: 14px;
      text-align: center;
  }

  .form-ratelimit.shown {
      display: block
  }

  .scarcity {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fdf3e6;
      color: #925d20;
      padding: 10px 16px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 13.5px;
      margin-bottom: 24px;
      border: 1px solid rgba(244, 162, 97, .3);
  }

  .scarcity .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 0 rgba(244, 162, 97, .6);
      animation: ping 1.6s infinite
  }

  .final h2 {
      font-size: clamp(30px, 3.6vw, 46px);
      color: var(--green-900);
      letter-spacing: -.02em;
      line-height: 1.1
  }

  .final-side p {
      margin-top: 20px;
      color: var(--ink-soft);
      font-size: 17px;
      max-width: 520px
  }

  .trust-list {
      margin-top: 32px;
      display: grid;
      gap: 14px
  }

  .trust-list li {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 15px;
      color: var(--ink-soft)
  }

  .trust-list .ico {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--green-50);
      color: var(--green-800);
      display: grid;
      place-items: center;
      flex-shrink: 0
  }

  /* ============ FLOATING CTA ============ */
  .floating-cta {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 40;
      background: var(--amber);
      color: #26180a;
      padding: 14px 22px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 20px 50px rgba(244, 162, 97, .45), 0 4px 12px rgba(0, 0, 0, .1);
      display: flex;
      align-items: center;
      gap: 10px;
      transform: translateY(120px);
      opacity: 0;
      transition: transform .4s ease, opacity .4s ease, background .2s;
  }

  .floating-cta.visible {
      transform: translateY(0);
      opacity: 1
  }

  .floating-cta:hover {
      background: var(--amber-600);
      transform: translateY(-2px)
  }

  .floating-cta .pulse {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #26180a;
      box-shadow: 0 0 0 0 rgba(38, 24, 10, .5);
      animation: ping 1.8s infinite;
  }

  /* ============ REVEAL ============ */
  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease
  }

  .reveal.in {
      opacity: 1;
      transform: translateY(0)
  }

  /* ============ MOBILE ============ */
  @media (max-width: 1024px) {
      .hero__grid {
          grid-template-columns: 1fr;
          gap: 48px
      }

      .what-grid {
          grid-template-columns: 1fr;
          gap: 48px
      }

      .about-grid {
          grid-template-columns: 1fr;
          gap: 48px
      }

      .final-wrap {
          grid-template-columns: 1fr;
          gap: 48px
      }

      .pains-grid {
          grid-template-columns: repeat(2, 1fr)
      }

      .process {
          grid-template-columns: repeat(3, 1fr);
          gap: 28px 14px
      }

      .process::before {
          display: none
      }

      .pricing {
          grid-template-columns: 1fr;
          gap: 18px
      }

      .plan--featured {
          transform: none
      }

      .plan--featured:hover {
          transform: translateY(-4px)
      }

      .case {
          grid-template-columns: 1fr
      }

      .case__visual {
          min-height: 240px
      }

      .case__body {
          padding: 30px
      }
  }

  @media (max-width: 720px) {
      section {
          padding: 72px 0
      }

      .pains-grid {
          grid-template-columns: 1fr
      }

      .analyze-grid {
          grid-template-columns: 1fr
      }

      .metrics-grid {
          grid-template-columns: 1fr
      }

      .forwhom {
          grid-template-columns: 1fr
      }

      .field-row {
          grid-template-columns: 1fr
      }

      .pains__cta {
          flex-direction: column;
          align-items: flex-start;
          text-align: left
      }

      .guarantee {
          flex-direction: column;
          text-align: center
      }

      .process {
          grid-template-columns: 1fr;
          gap: 24px
      }

      .form-card {
          padding: 26px
      }

      .floating-cta {
          right: 14px;
          bottom: 14px;
          padding: 12px 18px;
          font-size: 13px
      }

      .hero {
          padding: 48px 0 64px
      }

      .hero h1 {
          font-size: 34px
      }

      .case__results {
          grid-template-columns: 1fr
      }
  }