
    :root {
      --orange: #f05a22;
      --orange-dark: #c93c10;
      --black: #080403;
      --ink: #1d1715;
      --muted: #6f625d;
      --line: #eadbd4;
      --cream: #fff7f2;
      --soft: #fff1e8;
      --white: #ffffff;
      --green: #1fa463;
      --shadow: 0 20px 54px rgba(41, 19, 10, 0.16);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.5;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

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

    .marquee-wrap {
      overflow: hidden;
      color: var(--white);
      background: var(--black);
      border-bottom: 3px solid var(--orange);
    }

    .marquee {
      display: flex;
      width: max-content;
      min-height: 38px;
      align-items: center;
      gap: 36px;
      animation: marqueeMove 26s linear infinite;
      white-space: nowrap;
      font-size: 14px;
      font-weight: 800;
    }

    .marquee span {
      color: #ffd4c0;
    }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .header {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      width: min(288px, 49vw);
      height: auto;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .phone-pill {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border: 1px solid rgba(240, 90, 34, 0.28);
      border-radius: var(--radius);
      color: var(--black);
      background: #fff2eb;
      font-weight: 900;
      white-space: nowrap;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      cursor: pointer;
      font-weight: 900;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      color: var(--white);
      background: var(--orange);
      box-shadow: 0 14px 24px rgba(240, 90, 34, 0.25);
    }

    .btn-primary:hover {
      background: var(--orange-dark);
    }

    .btn-dark {
      color: var(--white);
      background: var(--black);
    }

    .btn-outline {
      color: var(--orange-dark);
      border-color: rgba(240, 90, 34, 0.34);
      background: var(--white);
    }

    .hero {
      position: relative;
      min-height: 620px;
      overflow: hidden;
      
    }

    .slider,
    .slide {
      position: absolute;
      inset: 0;
    }

    .slide {
      opacity: 0;
      transform: scale(1.06);
      animation: rackSlider 24s infinite;
    }

    .slide:nth-child(2) {
      animation-delay: 6s;
    }

    .slide:nth-child(3) {
      animation-delay: 12s;
    }

    .slide:nth-child(4) {
      animation-delay: 18s;
    }

    .slide img {
      transform: scale(1.08) translateX(0);
      animation: imageDrift 24s ease-in-out infinite;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      
    }

    @keyframes rackSlider {
      0% {
        opacity: 0;
        transform: scale(1.08);
      }
      6%,
      24% {
        opacity: 1;
        transform: scale(1);
      }
      30%,
      100% {
        opacity: 0;
        transform: scale(1.08);
      }
    }

    @keyframes imageDrift {
      0%,
      100% {
        transform: scale(1.1) translateX(-18px);
      }
      50% {
        transform: scale(1.14) translateX(18px);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      min-height: 620px;
      display: flex;
      align-items: center;
      color: var(--white);
    }

    .hero-copy {
      width: min(680px, 100%);
      padding: 68px 0 88px;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: #ffd0bd;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(37px, 2vw, 69px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .hero p {
      width: min(610px, 100%);
      margin: 20px 0 28px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .hero-badges span {
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.9);
      font-size: 13px;
      font-weight: 800;
    }

    .section {
      padding: 72px 0;
    }

    .section-soft {
      background: var(--cream);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 30px;
    }

    .kicker {
      margin: 0 0 8px;
      color: var(--orange-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: center;
    }

    .about-text p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .about-photo {
      aspect-ratio: 5 / 4;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

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

    .stat {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }

    .stat strong {
      display: block;
      color: var(--orange);
      font-size: 28px;
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .category-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .category-tabs a {
      padding: 10px 13px;
      border: 1px solid rgba(240, 90, 34, 0.28);
      border-radius: var(--radius);
      color: var(--orange-dark);
      background: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

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

    .product-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 28px rgba(34, 16, 8, 0.08);
    }

    .product-photo {
      aspect-ratio: 3 / 4;
      background: var(--soft);
    }

    .product-body {
      padding: 14px;
    }

    .product-title {
      margin: 0 0 5px;
      font-size: 16px;
      line-height: 1.25;
    }

    .product-desc {
      min-height: 42px;
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .card-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .mini-btn {
      min-height: 38px;
      padding: 0 10px;
      font-size: 13px;
    }

    .cta-band {
      padding: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border-radius: var(--radius);
      color: var(--white);
      background: linear-gradient(135deg, var(--black), #3b1509 62%, var(--orange-dark));
      box-shadow: var(--shadow);
    }

    .cta-band h2 {
      margin: 0;
      font-size: clamp(24px, 3vw, 34px);
    }

    .cta-band p {
      margin: 8px 0 0;
      color: rgba(255, 255, 255, 0.78);
    }

    .footer {
      padding: 46px 0 24px;
      color: var(--white);
      background: var(--black);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .footer-logo {
      max-width: 360px;
      height: auto;
      margin-bottom: 14px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 8px;
    }

    .footer h3,
    .footer h4,
    .footer p {
      margin-top: 0;
    }

    .footer p,
    .footer li {
      color: rgba(255, 255, 255, 0.72);
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer li + li {
      margin-top: 9px;
    }

    .copyright {
      margin: 20px 0 0;
      color: rgba(255, 255, 255, 0.58);
      font-size: 13px;
    }

    .whatsapp-fixed {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 45;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: var(--green);
      box-shadow: 0 14px 28px rgba(31, 164, 99, 0.34);
      font-size: 28px;
      font-weight: 900;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(8, 4, 3, 0.68);
    }

    .modal.is-open {
      display: grid;
    }

    .modal-box {
      width: min(500px, 100%);
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .modal-head h2 {
      margin: 0;
      font-size: 22px;
    }

    .close-btn {
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      cursor: pointer;
      font-size: 24px;
      line-height: 1;
    }

    .form {
      display: grid;
      gap: 14px;
      padding: 20px;
    }

    .field label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      font-weight: 900;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 44px;
      padding: 10px 12px;
      border: 1px solid #d9c7bd;
      border-radius: var(--radius);
      color: var(--ink);
      background: var(--white);
    }

    .field textarea {
      min-height: 92px;
      resize: vertical;
    }

    .success-note {
      display: none;
      margin: 0 20px 20px;
      padding: 12px;
      border-radius: var(--radius);
      color: #067647;
      background: #ecfdf3;
      font-size: 14px;
      font-weight: 800;
    }

    .success-note.is-visible {
      display: block;
    }

    @media (max-width: 980px) {
      .about-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

      .section-head,
      .cta-band {
        align-items: start;
        flex-direction: column;
      }
    }

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

      .header {
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .logo {
        width: 100%;
        max-width: 420px;
      }

      .header-actions,
      .phone-pill {
        width: 100%;
      }

      .hero,
      .hero-content {
        min-height: 610px;
      }

      .slide::after {
        background: linear-gradient(180deg, rgba(7, 3, 2, 0.82), rgba(7, 3, 2, 0.42));
      }

      .hero-content {
        align-items: end;
      }

      .hero-copy {
        padding: 50px 0 44px;
      }

      .hero p {
        font-size: 16px;
      }

      .section {
        padding: 54px 0;
      }

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

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

      .card-actions {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 24px;
      }
    }

