:root {
      --orange: #ff4b1f;
      --orange-dark: #e43d12;
      --text: #111827;
      --muted: #5f6472;
      --soft: #f8f6f3;
      --cream: #fff7ef;
      --line: #ece7e1;
      --white: #ffffff;
      --shadow: 0 16px 40px rgba(18, 24, 40, 0.08);
      --radius: 22px;
      --max: 1320px;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #f5f2ee;
      color: var(--text);
      line-height: 1.45;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .page {
      width: min(1440px, 100%);
      max-width: 100vw;
      margin: 0 auto;
      background: #fff;
      overflow: hidden;
    }

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

    .icon {
      width: 34px;
      height: 34px;
      stroke: var(--orange);
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-sm { width: 28px; height: 28px; }

    .icon-box {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: #fff5ef;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 16px 26px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 800;
      border: 2px solid transparent;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary { background: var(--orange); color: #fff; }
    .btn-primary:hover { background: var(--orange-dark); }
    .btn-secondary { background: #fff; color: var(--orange); border-color: var(--orange); }

    /* HEADER */
    header {
      background: #fff;
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .logo {
      width: 178px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo picture {
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
    }

    .logo img {
      width: 100%;
      max-height: 58px;
      object-fit: contain;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      font-size: 14px;
      font-weight: 700;
      flex: 1;
    }

    .desktop-nav a.active {
      color: var(--orange);
      position: relative;
    }

    .desktop-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -28px;
      width: 100%;
      height: 2px;
      background: var(--orange);
    }

    .desktop-cta { display: inline-flex; }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
    }

    .menu-toggle span {
      width: 20px;
      height: 2px;
      background: var(--text);
      border-radius: 99px;
      transition: 0.2s ease;
    }

    .mobile-menu {
      display: none;
      background: #fff;
      border-top: 1px solid var(--line);
      box-shadow: 0 20px 35px rgba(17, 24, 39, 0.08);
    }

    .mobile-menu-inner {
      width: min(var(--max), calc(100% - 28px));
      margin: 0 auto;
      padding: 14px 0 18px;
      display: grid;
      gap: 8px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 12px;
      font-weight: 800;
      color: #1f2937;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      background: #fff5ef;
      color: var(--orange);
    }

    .mobile-menu .btn {
      margin-top: 6px;
      width: 100%;
    }

    body.menu-open .mobile-menu { display: block; }
    body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* HERO */
    .hero {
      background:
        radial-gradient(circle at 85% 30%, rgba(255, 75, 31, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
      padding: 48px 0 34px;
      position: relative;
    }

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

    .hero-grid > *,
    .display > *,
    .section-head > * {
      min-width: 0;
    }

    .eyebrow {
      color: var(--orange);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    h1 {
      font-size: 64px;
      line-height: 0.98;
      letter-spacing: -2px;
      max-width: 690px;
      margin-bottom: 22px;
      overflow-wrap: anywhere;
    }

    .hero p {
      color: var(--muted);
      font-size: 19px;
      max-width: 570px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .hero-icons {
      max-width: 700px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-icon-card {
      padding: 18px 14px;
      border-right: 1px solid var(--line);
      text-align: center;
    }

    .hero-icon-card:last-child { border-right: 0; }
    .hero-icon-card .icon { margin: 0 auto 8px; }

    .hero-icon-card strong {
      display: block;
      font-size: 13px;
      line-height: 1.2;
    }

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

    .stand-placeholder {
      width: 100%;
      max-width: 520px;
      display: grid;
      place-items: center;
      text-align: center;
      color: #aaa39c;
      font-weight: 800;
      padding: 12px;
    }

    .stand-placeholder img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* GENERAL SECTIONS */
    section { padding: 34px 0; }

    .section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
      gap: 16px;
    }

    .section-head h2 {
      font-size: 32px;
      letter-spacing: -0.8px;
    }

    .section-link { color: var(--orange); font-weight: 800; }

    /* RANGE */
    .range-head-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .range-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .range-control {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--orange);
      display: grid;
      place-items: center;
      font-size: 22px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .range-control:hover {
      border-color: var(--orange);
      background: #fff5ef;
    }

    .range-carousel {
      position: relative;
      overflow: hidden;
      overflow: clip;
      width: 100%;
      max-width: 100%;
      contain: paint;
    }

    .range-grid {
      display: flex;
      gap: 22px;
      transition: transform 0.35s ease;
      padding: 2px 2px 16px;
      width: 100%;
      will-change: transform;
    }

    .range-card {
      flex: 0 0 calc((100% - 66px) / 4);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    }

    .range-img {
      height: 150px;
      background: #f3f0ec;
      overflow: hidden;
    }

    .range-img img { width: 100%; height: 100%; object-fit: cover; }

    .range-img.placeholder {
      display: grid;
      place-items: center;
      color: #9f9a94;
      font-weight: 800;
      text-align: center;
    }

    .range-body {
      padding: 16px 18px 18px;
      position: relative;
    }

    .range-body h3 { font-size: 19px; margin-bottom: 6px; }
    .range-body p { color: var(--muted); font-size: 14px; max-width: 190px; }

    .round-arrow {
      position: absolute;
      right: 18px;
      top: 20px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--orange);
      color: var(--orange);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    /* WHY */
    .why {
      background: #fff8f1;
      border-radius: 24px;
      border: 1px solid #f0e7df;
      padding: 28px;
    }

    .why h2 {
      text-align: center;
      font-size: 30px;
      margin-bottom: 26px;
    }

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

    .why-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 22px 18px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    }

    .why-card .icon-box { margin: 0 auto 14px; }
    .why-card h3 { font-size: 16px; margin-bottom: 8px; }
    .why-card p { font-size: 13px; color: var(--muted); }

    /* DISPLAY */
    .display {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fff;
      padding: 32px;
      display: grid;
      grid-template-columns: 1fr 0.9fr 0.95fr;
      gap: 34px;
      align-items: center;
    }

    .display h2 {
      font-size: 44px;
      line-height: 1;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .display p {
      font-size: 17px;
      color: var(--muted);
      margin-bottom: 20px;
    }

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

    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
    }

    .check {
      width: 19px;
      height: 19px;
      background: var(--orange);
      color: #fff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 12px;
      font-weight: 900;
      flex-shrink: 0;
    }

    .display-img {
      min-height: 370px;
      display: grid;
      place-items: center;
      color: #aaa39c;
      font-weight: 800;
      text-align: center;
      overflow: hidden;
    }

    .display-img img { width: 100%; height: 100%; object-fit: contain; }

    .display-features { display: grid; gap: 20px; }

    .small-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .small-feature .icon-box {
      width: 50px;
      height: 50px;
      margin: 0;
      flex-shrink: 0;
    }

    .small-feature h4 { font-size: 17px; margin-bottom: 4px; }
    .small-feature p { font-size: 14px; margin: 0; }

    /* PROOF */
    .proof h2, .trade h2 { font-size: 30px; margin-bottom: 20px; }

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

    .proof-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      min-height: 190px;
    }

    .proof-img {
      height: 120px;
      background: #f4f1ed;
      display: grid;
      place-items: center;
      color: #9f9a94;
      font-weight: 800;
      text-align: center;
      font-size: 13px;
      overflow: hidden;
    }

    .proof-img img { width: 100%; height: 100%; object-fit: cover; }
    .proof-card-body { padding: 15px; }
    .proof-card h3 { font-size: 16px; margin-bottom: 5px; }
    .proof-card p { color: var(--muted); font-size: 13px; }
    .quote-card { padding: 22px; }

    .quote-mark {
      color: var(--orange);
      font-size: 42px;
      line-height: 0.7;
      font-weight: 900;
      margin-bottom: 10px;
    }

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

    .trade-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    }

    .trade-card h3 { font-size: 18px; margin-bottom: 8px; }
    .trade-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
    .trade-card a { color: var(--orange); font-weight: 900; font-size: 14px; }

    /* FOOTER */
    footer {
      background: #fff;
      padding: 40px 0 0;
      margin-top: 20px;
    }

    .footer-wrap {
      width: min(var(--max), calc(100% - 56px));
      max-width: 100%;
      margin: 0 auto;
    }

    .footer-panel {
      background: #3d2b83;
      border-radius: 28px 28px 0 0;
      padding: 52px 64px 28px;
      color: #fff;
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1.05fr 1.15fr 1.1fr;
      gap: 48px;
      align-items: start;
      margin-bottom: 42px;
    }

    .footer-grid > * {
      min-width: 0;
    }

    .footer-logo {
      width: min(212px, 100%);
      background: #fff;
      padding: 10px 14px;
      border-radius: 0;
      margin-left: 0;
    }

    .footer-logo img {
      width: 100%;
      max-height: 72px;
      object-fit: contain;
    }

    footer p,
    footer li,
    footer a {
      color: #fff;
      font-size: 14px;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }

    footer ul {
      list-style: none;
      display: grid;
      gap: 7px;
    }

    footer h4 {
      margin-bottom: 16px;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
    }

    .footer-contact-list li {
      display: flex;
      gap: 6px;
      align-items: flex-start;
    }

    .footer-contact-list span {
      flex-shrink: 0;
      width: 14px;
      text-align: center;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      padding-top: 24px;
      color: #fff;
      font-size: 13px;
      text-align: center;
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .hero-grid, .display { grid-template-columns: 1fr; }
      .hero-image { min-height: auto; }
      .hero-icons, .why-grid { grid-template-columns: repeat(3, 1fr); }
      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .range-card { flex-basis: calc((100% - 44px) / 3); }
      .trade-grid { grid-template-columns: 1fr; }
      .footer-wrap { width: calc(100% - 28px); }
      .footer-panel { padding: 42px 34px 26px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .footer-logo { margin-left: 0; }
      h1 { font-size: 52px; }
    }

    @media (max-width: 900px) {
      .range-card { flex-basis: calc((100% - 22px) / 2); }
    }

    @media (max-width: 820px) {
      .page {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
      }
      .container {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 14px;
        padding-right: 14px;
      }
      .nav { min-height: 72px; gap: 12px; }
      .logo { width: 140px; justify-content: flex-start; }
      .desktop-nav, .desktop-cta { display: none; }
      .menu-toggle { display: inline-flex; }

      .hero { padding: 28px 0 26px; }
      .hero-grid { gap: 28px; }
      .eyebrow { font-size: 12px; letter-spacing: 2.2px; margin-bottom: 12px; }
      h1 { font-size: 40px; line-height: 1.04; letter-spacing: -0.9px; }
      .hero p { font-size: 16px; margin-bottom: 22px; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-actions .btn { width: 100%; }

      .hero-actions,
      .hero-icons,
      .stand-placeholder,
      .range-carousel,
      .why,
      .display,
      .proof-grid,
      .trade-grid,
      .footer-panel {
        min-width: 0;
        width: 100%;
        max-width: 100%;
      }

      .btn,
      .hero-icon-card,
      .range-card,
      .why-card,
      .display-img,
      .small-feature,
      .proof-card,
      .trade-card {
        max-width: 100%;
      }

      .hero-icons { grid-template-columns: 1fr; }
      .hero-icon-card {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 14px;
      }
      .hero-icon-card:last-child { border-bottom: 0; }
      .hero-icon-card .icon { margin: 0; flex-shrink: 0; }

      .stand-placeholder { max-width: 100%; }
      section { padding: 28px 0; }
      .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
      .section-head h2, .why h2, .proof h2, .trade h2 { font-size: 26px; }
      .range-head-actions { width: 100%; justify-content: space-between; }
      .range-grid {
        padding: 2px 0 12px;
      }
      .range-card { flex: 0 0 100%; scroll-snap-align: start; }
      .why-grid, .proof-grid, .footer-grid { grid-template-columns: 1fr; }
      .range-img { height: 190px; }
      .range-body h3 { min-height: auto; }
      .why { padding: 20px; }
      .why-card {
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .why-card .icon-box { margin: 0; flex-shrink: 0; }
      .display { padding: 20px; border-radius: 20px; }
      .display h2 { font-size: 32px; }
      .display p { font-size: 15px; }
      .display-img { min-height: 260px; }
      .small-feature { border: 1px solid var(--line); padding: 14px; border-radius: 16px; }
      .proof-img { height: 170px; }
      .footer-panel { border-radius: 22px 22px 0 0; padding: 32px 16px 24px; }
      .footer-wrap {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 14px;
        padding-right: 14px;
      }
      .footer-grid { gap: 26px; }
      .footer-logo { width: min(190px, 100%); }
    }

    @media (min-width: 641px) and (max-width: 900px) {
      .range-card { flex: 0 0 calc((100% - 22px) / 2); }
    }

    @media (max-width: 420px) {
      .container,
      .footer-wrap {
        padding-left: 10px;
        padding-right: 20px;
      }
      h1 { font-size: 32px; }
      .btn { padding: 14px 18px; font-size: 14px; }
      .range-img { height: 160px; }
      .range-body { padding: 14px; }
      .display h2 { font-size: 29px; }
      .display-img { min-height: 220px; }
    }