
    

    :root {
      --black: #050505;
      --ink: #0d0d0d;
      --cream: #f4eee3;
      --cream-2: #fff9ef;
      --muted: #b9afa1;
      --soft: #161513;
      --line: rgba(244, 238, 227, 0.14);
      --line-strong: rgba(244, 238, 227, 0.22);
      --orange: #F95027;
      --orange-dark: #cf3f1d;
      --white: #ffffff;
      --container: 1180px;
      --shadow: 0 30px 80px rgba(0,0,0,.35);
      --radius-xl: 42px;
      --radius-lg: 30px;
      --radius-md: 22px;
      --radius-sm: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 80% 0%, rgba(249,80,39,.18), transparent 26rem),
        radial-gradient(circle at 8% 18%, rgba(255,255,255,.06), transparent 21rem),
        var(--black);
      color: var(--cream);
      line-height: 1.45;
      overflow-x: hidden;
    }

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

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

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

    .page {
      min-height: 100vh;
      overflow: hidden;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(18px);
      background: rgba(5,5,5,.72);
      border-bottom: 1px solid rgba(244,238,227,.08);
    }

    .nav-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 3px;
      font-family: "Archivo Black", "Arial Black", sans-serif;
      letter-spacing: -.035em;
      line-height: .92;
      font-size: clamp(24px, 2.7vw, 34px);
      color: var(--cream);
      white-space: nowrap;
    }

    .brand .dot {
      width: .32em;
      height: .32em;
      border-radius: 50%;
      background: var(--orange);
      display: inline-block;
      margin-left: .06em;
      transform: translateY(-.02em);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 13px;
      color: rgba(244,238,227,.72);
      font-weight: 800;
    }

    .nav-links a:hover {
      color: var(--cream);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--orange);
      color: var(--black);
      font-weight: 1000;
      font-size: 13px;
      box-shadow: 0 12px 34px rgba(249,80,39,.24);
      transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
      will-change: transform;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      background: #ff6a44;
      box-shadow: 0 16px 46px rgba(249,80,39,.38);
    }

    .nav-cta:active {
      transform: translateY(0) scale(.99);
    }

    .hero {
      padding: 68px 0 40px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 44px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: .16em;
      font-weight: 1000;
      margin-bottom: 18px;
    }

    .eyebrow:before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--orange);
      border-radius: 999px;
    }

    .hero h1 {
      font-family: "Archivo Black", "Arial Black", sans-serif;
      font-weight: 400;
      font-size: clamp(46px, 6.2vw, 86px);
      line-height: .95;
      letter-spacing: -.04em;
      max-width: 670px;
    }

    .hero h1 span {
      color: var(--orange);
      display: block;
      margin-top: .12em;
      line-height: 1.05;
    }

    .hero-copy {
      margin-top: 18px;
      max-width: 530px;
      color: rgba(244,238,227,.74);
      font-size: clamp(17px, 1.55vw, 20px);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 14px 20px;
      border-radius: 999px;
      border: 1px solid rgba(244,238,227,.14);
      font-size: 15px;
      font-weight: 900;
      transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
      will-change: transform;
    }

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

    .button:active {
      transform: translateY(-1px) scale(.99);
    }

    .button:focus-visible,
    .nav-cta:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 4px;
    }

    .button.primary {
      background: var(--orange);
      color: var(--black);
      border-color: var(--orange);
      box-shadow: 0 18px 45px rgba(249,80,39,.28);
    }

    .button.primary:hover {
      background: #ff6a44;
      border-color: #ff6a44;
      box-shadow: 0 22px 60px rgba(249,80,39,.4);
    }

    .button.secondary {
      background: rgba(244,238,227,.06);
      color: var(--cream);
    }

    .button.secondary:hover {
      background: rgba(244,238,227,.12);
      border-color: rgba(244,238,227,.3);
      box-shadow: 0 18px 45px rgba(0,0,0,.22);
    }

    .quick-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 28px;
      max-width: 580px;
    }

    .proof-pill {
      padding: 15px 16px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(244,238,227,.05);
    }

    .proof-pill strong {
      display: block;
      font-family: "Archivo Black", "Arial Black", sans-serif;
      font-size: 28px;
      font-weight: 400;
      line-height: .98;
      letter-spacing: -.03em;
    }

    .proof-pill span {
      display: block;
      font-size: 13px;
      font-weight: 700;
      margin-top: 7px;
      color: rgba(244,238,227,.64);
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card {
      position: relative;
      z-index: 2;
      width: min(620px, 100%);
      border-radius: 40px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
        rgba(244,238,227,.03);
      border: 1px solid rgba(244,238,227,.1);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    .hero-machine-stage {
      position: relative;
      min-height: 640px;
      border-radius: 32px;
      overflow: hidden;
      background: #0b0b0b;
      display: grid;
      place-items: stretch;
    }

    .hero-machine-stage:before {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 24px;
      border: 1px solid rgba(244,238,227,.08);
      pointer-events: none;
      z-index: 2;
    }

    .hero-machine-img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      filter: none;
      display: block;
    }

    .machine-bubble {
      position: absolute;
      z-index: 4;
      padding: 15px 18px;
      border-radius: 18px;
      background: rgba(244, 238, 227, .96);
      color: var(--black);
      box-shadow: 0 18px 50px rgba(0,0,0,.28);
      max-width: 230px;
      backdrop-filter: blur(4px);
    }

    .machine-bubble strong {
      display: block;
      font-size: 14px;
      font-weight: 1000;
      margin-bottom: 4px;
    }

    .machine-bubble span {
      color: rgba(5,5,5,.62);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.35;
    }

    .bubble-top {
      top: 26px;
      right: 22px;
    }

    .bubble-bottom {
      left: 22px;
      bottom: 24px;
    }

    .brand-sticker {
      position: absolute;
      left: 16px;
      top: 22px;
      z-index: 5;
      width: 138px;
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(244,238,227,.1);
      box-shadow: 0 20px 50px rgba(0,0,0,.32);
      transform: rotate(-4deg);
      background: #000;
    }

    .marquee {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(244,238,227,.03);
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-track {
      display: inline-flex;
      gap: 28px;
      padding: 16px 0;
      animation: scroll 28s linear infinite;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(244,238,227,.74);
    }

    .marquee-track span:after {
      content: "•";
      color: var(--orange);
      margin-left: 28px;
    }

    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    section {
      padding: 92px 0;
      scroll-margin-top: 90px;
    }

    .section-head {
      display: grid;
      grid-template-columns: .75fr 1fr;
      gap: 34px;
      align-items: end;
      margin-bottom: 38px;
    }

    .section-kicker {
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 12px;
      font-weight: 1000;
      margin-bottom: 12px;
    }

    h2 {
      font-family: "Archivo Black", "Arial Black", sans-serif;
      font-weight: 400;
      font-size: clamp(38px, 5.2vw, 68px);
      line-height: .94;
      letter-spacing: -.035em;
    }

    .section-head p {
      font-size: 18px;
      color: rgba(244,238,227,.72);
      max-width: 650px;
    }

    .reassurance {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 20px;
      align-items: center;
      border-radius: 28px;
      background: var(--cream);
      color: var(--black);
      padding: 26px 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,.26);
    }

    .check-mark {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: var(--black);
      font-weight: 1000;
      font-size: 24px;
    }

    .reassurance strong {
      display: block;
      font-size: clamp(20px, 2vw, 28px);
      font-weight: 1000;
      letter-spacing: -.02em;
    }

    .reassurance span {
      display: block;
      margin-top: 6px;
      color: rgba(5,5,5,.64);
      font-weight: 600;
    }

    .mini-badge {
      padding: 12px 16px;
      background: var(--black);
      color: var(--cream);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 1000;
      white-space: nowrap;
    }

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

    .step {
      position: relative;
      overflow: hidden;
      min-height: 230px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: rgba(244,238,227,.05);
      padding: 28px 22px 24px;
    }

    .step:before {
      content: attr(data-step);
      position: absolute;
      right: 14px;
      bottom: -14px;
      font-family: "Archivo Black", "Arial Black", sans-serif;
      font-size: 112px;
      line-height: 1;
      color: rgba(244,238,227,.07);
    }

    .step-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: var(--orange);
      color: var(--black);
      display: grid;
      place-items: center;
      font-weight: 1000;
      margin-bottom: 22px;
    }

    .step h3,
    .benefit h3,
    .machine-card h3 {
      font-size: 21px;
      line-height: 1.08;
      letter-spacing: -.02em;
      margin-bottom: 9px;
    }

    .step p,
    .benefit p {
      font-size: 15px;
      color: rgba(244,238,227,.68);
    }

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

    .benefit {
      min-height: 250px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: rgba(244,238,227,.055);
      padding: 26px;
    }

    .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(244,238,227,.2);
      display: grid;
      place-items: center;
      color: var(--orange);
      margin-bottom: 22px;
      font-weight: 900;
      font-size: 18px;
    }

    .machines {
      background: var(--cream);
      color: var(--black);
      border-radius: 46px 46px 0 0;
      margin-top: 28px;
    }

    .machines .section-kicker,
    .machines h2 {
      color: var(--black);
    }

    .machines .section-head p {
      color: rgba(5,5,5,.68);
    }

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

    .machine-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 650px;
      padding: 24px;
      border-radius: 30px;
      background: #fffaf1;
      border: 1px solid rgba(5,5,5,.1);
      overflow: hidden;
    }

    .machine-card h3 {
      color: var(--black);
      font-size: 26px;
      max-width: 280px;
    }

    .machine-card p {
      color: rgba(5,5,5,.64);
      font-size: 15px;
      max-width: 300px;
      margin-bottom: 18px;
    }

    .machine-tag {
      position: absolute;
      top: 22px;
      right: 22px;
      background: var(--black);
      color: var(--cream);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 1000;
    }

    .machine-photo-wrap {
      margin-top: auto;
      background:
        radial-gradient(circle at 50% 8%, rgba(255,255,255,.35), transparent 13rem),
        #ece7de;
      border-radius: 24px;
      padding: 18px;
      min-height: 400px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .machine-photo {
      width: 100%;
      height: 100%;
      max-width: 320px;
      max-height: 520px;
      object-fit: contain;
      filter: drop-shadow(0 24px 30px rgba(0,0,0,.20));
      background: transparent;
    }

    .machine-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
      padding-right: 170px;
      min-height: 44px;
      align-items: flex-start;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(249,80,39,.1);
      color: var(--orange-dark);
      font-size: 12px;
      font-weight: 900;
    }

    .revenue {
      background: var(--cream);
      color: var(--black);
      padding-top: 60px;
    }

    .revenue-wrap {
      display: grid;
      grid-template-columns: minmax(560px, 1.08fr) minmax(360px, .92fr);
      gap: 34px;
      padding: clamp(28px, 4vw, 46px);
      border-radius: 38px;
      background: var(--black);
      color: var(--cream);
      box-shadow: 0 26px 70px rgba(0,0,0,.16);
      align-items: stretch;
    }

    .revenue h2 {
      color: var(--cream);
    }

    .revenue p {
      color: rgba(244,238,227,.7);
      max-width: 680px;
    }

    .revenue h2 {
      max-width: 620px;
      font-size: clamp(40px, 5vw, 64px);
      line-height: .93;
    }

    .revenue-intro {
      font-size: 18px;
      line-height: 1.55;
      margin-top: 16px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .stat-card {
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(244,238,227,.06);
      padding: 24px 22px;
      min-height: 224px;
      display: grid;
      grid-template-rows: 50px 66px 1fr;
      align-content: start;
      row-gap: 20px;
    }

    .stat-card span {
      display: block;
      color: rgba(244,238,227,.62);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 1000;
      text-transform: uppercase;
      letter-spacing: .09em;
      max-width: 150px;
    }

    .stat-card strong {
      display: block;
      width: 100%;
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-weight: 900;
      font-size: clamp(44px, 3.2vw, 58px);
      line-height: 1;
      color: var(--orange);
      letter-spacing: 0;
      white-space: nowrap;
      text-align: left;
      align-self: center;
      font-variant-numeric: lining-nums tabular-nums;
      font-feature-settings: "lnum" 1, "tnum" 1;
    }

    .stat-card p {
      font-size: 16px;
      line-height: 1.4;
      color: rgba(244,238,227,.72);
      max-width: 190px;
      margin: 0;
      align-self: start;
    }

    .split-box {
      border: 1px solid var(--line);
      background: rgba(244,238,227,.06);
      border-radius: 30px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .split-box h3 {
      font-size: 28px;
      line-height: 1.05;
    }

    .client-friendly {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .friendly-card {
      border-radius: 24px;
      background: rgba(244,238,227,.05);
      border: 1px solid var(--line);
      padding: 20px 22px;
      min-height: 164px;
    }

    .friendly-card .eyeline {
      display: block;
      color: rgba(244,238,227,.56);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 1000;
      margin-bottom: 10px;
    }

    .friendly-card strong {
      display: inline-block;
      width: 100%;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 40px;
      line-height: .98;
      font-weight: 900;
      color: var(--orange);
      margin-bottom: 8px;
      letter-spacing: 0;
      white-space: nowrap;
      text-align: left;
      font-variant-numeric: lining-nums tabular-nums;
      font-feature-settings: "lnum" 1, "tnum" 1;
    }

    .friendly-card p {
      font-size: 14px;
      color: rgba(244,238,227,.68);
    }

    .range-row {
      margin-top: 6px;
      padding-top: 4px;
    }

    .range-labels {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: rgba(244,238,227,.76);
      font-size: 14px;
      font-weight: 900;
    }

    .range-track {
      position: relative;
      height: 18px;
      border-radius: 999px;
      background: rgba(244,238,227,.12);
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(244,238,227,.08);
    }

    .range-highlight {
      position: absolute;
      left: 10%;
      width: 10%;
      min-width: 74px;
      top: 0;
      bottom: 0;
      background: linear-gradient(90deg, var(--orange) 0%, #ff7a55 100%);
      border-radius: 999px;
    }

    .range-caption {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 10px;
      font-size: 13px;
      color: rgba(244,238,227,.62);
      font-weight: 700;
    }

    .split-note {
      font-size: 15px;
      color: rgba(244,238,227,.66);
    }

    .handled {
      padding-top: 46px;
      background: var(--cream);
      color: var(--black);
    }

    .handled-card {
      padding: 34px;
      border-radius: 34px;
      background: #fffaf1;
      border: 1px solid rgba(5,5,5,.1);
    }

    .check-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      background: var(--black);
      color: var(--cream);
      border-radius: 18px;
      font-weight: 800;
    }

    .check-item:before {
      content: "✓";
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: var(--black);
      flex: 0 0 auto;
      font-weight: 1000;
    }

    .quote-section {
      padding: 86px 0;
      background: var(--cream);
      color: var(--black);
    }

    .quote-card {
      position: relative;
      overflow: hidden;
      border-radius: 40px;
      background: var(--orange);
      color: var(--black);
      padding: 44px;
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: 34px;
      align-items: center;
    }

    .quote-card:after {
      content: none;
    }

    .quote-text {
      position: relative;
      z-index: 1;
      font-size: clamp(26px, 3.3vw, 46px);
      line-height: 1.04;
      letter-spacing: -.03em;
      font-weight: 1000;
      max-width: 760px;
    }

    .quote-stats {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .quote-stat {
      min-height: 132px;
      border-radius: 22px;
      padding: 20px;
      background: rgba(5,5,5,.92);
      color: var(--cream);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .quote-stat strong {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 38px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .quote-stat span {
      margin-top: 8px;
      font-size: 13px;
      color: rgba(244,238,227,.7);
      font-weight: 700;
    }

    .cta-section {
      padding: 94px 0;
      background: var(--black);
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 34px;
      align-items: end;
      padding: 46px;
      border-radius: 40px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 96% 0%, rgba(249,80,39,.34), transparent 26rem),
        rgba(244,238,227,.055);
    }

    .cta-box h2 {
      max-width: 780px;
    }

    .cta-box p {
      margin-top: 22px;
      max-width: 580px;
      color: rgba(244,238,227,.72);
      font-size: 18px;
    }

    .contact-card {
      border-radius: 28px;
      background: var(--cream);
      color: var(--black);
      padding: 28px;
    }

    .contact-line {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(5,5,5,.1);
      font-weight: 900;
    }

    .contact-line:first-child {
      padding-top: 0;
    }

    .contact-line:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .contact-line span {
      color: rgba(5,5,5,.52);
      font-weight: 800;
    }

    footer {
      padding: 28px 0;
      border-top: 1px solid var(--line);
      color: rgba(244,238,227,.54);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
    }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(42px);
      transition: opacity .8s ease, transform .8s ease;
      will-change: opacity, transform;
    }

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

    .reveal[data-reveal="left"] {
      transform: translateX(-42px);
    }

    .reveal[data-reveal="right"] {
      transform: translateX(42px);
    }

    .reveal[data-reveal="zoom"] {
      transform: scale(.96);
    }

    .reveal.reveal-visible[data-reveal="left"],
    .reveal.reveal-visible[data-reveal="right"],
    .reveal.reveal-visible[data-reveal="zoom"] {
      transform: translateX(0) scale(1);
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      .marquee-track {
        animation: none;
      }
      .reveal,
      .reveal.reveal-visible {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .section-head,
      .revenue-wrap,
      .quote-card,
      .cta-box {
        grid-template-columns: 1fr;
      }

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

      .hero-card {
        max-width: 620px;
        margin: 0 auto;
      }

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

      .quote-stats,
      .check-grid,
      .client-friendly {
        grid-template-columns: 1fr;
      }

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

      .stat-card {
        min-height: 190px;
        grid-template-rows: 44px 56px minmax(58px, auto);
        padding-inline: 20px;
      }

      .stat-card strong {
        font-size: clamp(40px, 3vw, 48px);
      }

      .quick-proof {
        max-width: 100%;
      }
    }

    @media (max-width: 860px) {
      .stat-grid {
        grid-template-columns: 1fr;
      }

      .stat-card {
        min-height: auto;
        grid-template-rows: auto;
      }

      .stat-card p {
        max-width: none;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 26px, var(--container));
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 42px;
      }

      .hero-grid,
      .quick-proof,
      .reassurance,
      .steps,
      .benefit-grid,
      .machine-grid,
      .stat-grid,
      .check-grid,
      .quote-stats {
        grid-template-columns: 1fr;
      }

      .machine-bubble {
        position: static;
        max-width: none;
      }

      .hero-machine-stage {
        gap: 16px;
        padding: 0;
        min-height: auto;
      }

      .brand-sticker {
        width: 102px;
        left: 12px;
        top: 12px;
      }

      .hero-machine-img {
        width: 100%;
        height: 100%;
        margin-top: 0;
      }

      .hero-card {
        padding: 16px;
        border-radius: 28px;
      }

      .hero h1 {
        font-size: clamp(42px, 13vw, 64px);
        line-height: .98;
      }

      .hero h1 span {
        margin-top: .08em;
      }

      section {
        padding: 68px 0;
      }

      .handled-card,
      .cta-box,
      .quote-card,
      .revenue-wrap {
        padding: 26px;
        border-radius: 28px;
      }

      .machine-card {
        min-height: 590px;
      }

      .machine-meta {
        padding-right: 0;
        min-height: 0;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-line {
        flex-direction: column;
        gap: 4px;
      }
    }
  