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

    :root {
      --red-950: #1A0505;
      --red-900: #2E0A0A;
      --red-800: #4A0E0E;
      --red-700: #6B1414;
      --red-600: #8B1A1A;
      --red-500: #C0392B;
      --red-400: #E74C3C;
      --red-300: #FF6B6B;
      --steel-950: #0A0C0E;
      --steel-900: #111418;
      --steel-800: #1C2128;
      --steel-700: #252B34;
      --steel-600: #2E3640;
      --steel-500: #3D4A57;
      --steel-400: #5A6A78;
      --steel-300: #8A9BAA;
      --steel-200: #B8C4CC;
      --steel-100: #D8E0E6;
      --steel-50: #EEF2F4;
      --white: #FFFFFF;
      --off-white: #F5F6F7;
      --dark: #080A0C;
      --text-dark: #111820;
      --text-body: #3A4550;
      --text-muted: #6A7888;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
      --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.22);
      --shadow-red: 0 12px 40px rgba(192, 57, 43, 0.3);
      /* Logo sizes - increased */
      --logo-size-nav: 58px;
      --logo-size-preloader: 80px;
      --logo-size-footer: 58px;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-body);
      color: var(--text-body);
      background: var(--off-white);
      overflow-x: hidden;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased
    }


    /* PRELOADER */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--steel-950);
      z-index: 100000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 28px;
      transition: opacity 0.7s, visibility 0.7s
    }

    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none
    }

    .preloader-logo {
      display: flex;
      align-items: center;
      gap: 16px
    }

    .preloader-icon {
      width: var(--logo-size-preloader);
      height: var(--logo-size-preloader);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 1.5s infinite
    }

    .preloader-icon img {
      width: calc(var(--logo-size-preloader) * 1.4);
      height: var(--logo-size-preloader);
      object-fit: contain;
      border-radius: 50%;
      background: white;
    }

    .preloader-bar {
      width: 180px;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden
    }

    .preloader-bar::after {
      content: '';
      display: block;
      height: 100%;
      width: 40%;
      background: var(--red-400);
      border-radius: 4px;
      animation: loading 1.2s ease infinite
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1) }
      50% { opacity: 0.7; transform: scale(0.96) }
    }

    @keyframes loading {
      0% { transform: translateX(-100%) }
      100% { transform: translateX(400%) }
    }

    /* TICKER */
    .ticker-strip {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--red-600);
      height: 36px;
      overflow: hidden;
      display: flex;
      align-items: center
    }

    .ticker-inner {
      display: flex;
      gap: 0;
      animation: ticker 30s linear infinite;
      white-space: nowrap
    }

    .ticker-item {
      padding: 0 40px;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 600;
      color: white;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .ticker-item i {
      color: rgba(255, 255, 255, 0.7);
      font-size: 11px
    }

    @keyframes ticker {
      0% { transform: translateX(0) }
      100% { transform: translateX(-50%) }
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 36px;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .navbar.scrolled {
      background: rgba(8, 10, 12, 0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 10px 60px;
      box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
      top: 0
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none
    }

    .nav-logo-icon {
      width: calc(var(--logo-size-nav) * 1.4);
      height: var(--logo-size-nav);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .nav-logo-icon img {
      width: calc(var(--logo-size-nav) * 1.4);
      height: var(--logo-size-nav);
      object-fit: contain;
      transition: all 0.3s;
      border-radius: 50%;
      background: white;
    }


    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 900;
      color: white;
      letter-spacing: 2px;
      text-transform: uppercase;
      line-height: 1
    }

    .nav-logo-sub {
      font-size: 13px;
      color: white;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      margin-top: 3px;
      display: block
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all 0.3s;
      position: relative;
      padding-bottom: 4px
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red-400);
      transition: width 0.35s;
      border-radius: 2px
    }

    .nav-links a:hover {
      color: white
    }

    .nav-links a:hover::after {
      width: 100%
    }

    .nav-cta-link {
      padding: 10px 26px !important;
      background: var(--red-500);
      color: white !important;
      border-radius: 6px;
      font-weight: 700 !important
    }

    .nav-cta-link::after {
      display: none !important
    }

    .nav-cta-link:hover {
      background: var(--red-400) !important;
      transform: translateY(-1px);
      box-shadow: var(--shadow-red)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
      z-index: 1003
    }

    .hamburger span {
      width: 26px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s;
      transform-origin: center
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    /* HERO */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
      /* On desktop: ticker (36px) is visible, navbar sits on top of content */
      padding-top: 0;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .slide.active {
      opacity: 1
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 8s linear;
      transform: scale(1)
    }

    .slide.active .slide-bg {
      transform: scale(1.06)
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(8, 10, 12, 0.92) 0%, rgba(8, 10, 12, 0.65) 55%, rgba(8, 10, 12, 0.8) 100%);
      z-index: 1
    }

    .slide-overlay::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 45%;
      height: 5px;
      background: linear-gradient(90deg, var(--red-500), transparent);
      z-index: 2
    }

    .hero-lines {
      position: absolute;
      z-index: 2;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      pointer-events: none;
      overflow: hidden
    }

    .hero-lines svg {
      width: 100%;
      height: 100%;
      opacity: 0.04
    }

    .slide-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 160px 100px 140px;
      max-width: 1440px;
      margin: 0 auto
    }

    .slide-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      opacity: 0;
      transform: translateY(30px)
    }

    .slide.active .slide-tag {
      animation: fadeUp 0.7s 0.3s forwards
    }

    .slide-tag-line {
      width: 40px;
      height: 2px;
      background: var(--red-400)
    }

    .slide-tag-text {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--red-400)
    }

    .slide-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 7vw, 100px);
      font-weight: 900;
      color: white;
      line-height: 0.95;
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(44px);
      text-transform: uppercase;
      letter-spacing: -1px
    }

    .slide.active .slide-title {
      animation: fadeUp 0.8s 0.5s forwards
    }

    .slide-title .accent {
      color: var(--red-400)
    }

    .slide-title .outline {
      -webkit-text-stroke: 2px white;
      color: transparent
    }

    .slide-desc {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 500px;
      line-height: 1.8;
      margin-bottom: 44px;
      font-weight: 400;
      opacity: 0;
      transform: translateY(40px)
    }

    .slide.active .slide-desc {
      animation: fadeUp 0.8s 0.7s forwards
    }

    .slide-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      opacity: 0;
      transform: translateY(30px)
    }

    .slide.active .slide-actions {
      animation: fadeUp 0.7s 0.9s forwards
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      border: none;
      font-family: var(--font-display)
    }

    .btn i {
      font-size: 13px;
      transition: transform 0.3s
    }

    .btn-red {
      background: var(--red-500);
      color: white
    }

    .btn-red:hover {
      background: var(--red-400);
      transform: translateY(-3px);
      box-shadow: var(--shadow-red)
    }

    .btn-red:hover i {
      transform: translateX(4px)
    }

    .btn-ghost {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3)
    }

    .btn-ghost:hover {
      border-color: white;
      background: rgba(255, 255, 255, 0.07);
      transform: translateY(-2px)
    }

    .btn-steel-outline {
      background: transparent;
      color: var(--steel-700);
      border: 2px solid var(--steel-300)
    }

    .btn-steel-outline:hover {
      background: var(--steel-700);
      color: white;
      border-color: var(--steel-700)
    }

    /* SLIDER CONTROLS */
    .slider-controls {
      position: absolute;
      bottom: 50px;
      left: 100px;
      right: 100px;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .slider-left {
      display: flex;
      align-items: center;
      gap: 20px
    }

    .slider-progress {
      display: flex;
      gap: 6px
    }

    .slider-progress-bar {
      width: 44px;
      height: 3px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.15);
      cursor: pointer;
      overflow: hidden
    }

    @keyframes progressFill {
      from { width: 0 }
      to { width: 100% }
    }

    .slider-count {
      color: rgba(255, 255, 255, 0.35);
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px
    }

    .slider-count .now {
      color: white;
      font-size: 28px;
      font-weight: 900
    }

    .slider-arrows {
      display: flex;
      gap: 8px
    }

    .slider-arrow-btn {
      width: 50px;
      height: 50px;
      border-radius: 6px;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.04);
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.35s;
      backdrop-filter: blur(8px);
      font-size: 15px
    }

    .slider-arrow-btn:hover {
      background: var(--red-500);
      border-color: var(--red-500)
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0) }
    }

    /* STATS */
    .stats-strip {
      position: relative;
      z-index: 30;
      background: var(--steel-900);
      padding: 40px 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      border-top: 3px solid var(--red-600);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06)
    }

    .stat {
      text-align: center;
      position: relative
    }

    .stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 44px;
      background: rgba(255, 255, 255, 0.08)
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(192, 57, 43, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      color: var(--red-400);
      font-size: 20px
    }

    .stat-val {
      font-family: var(--font-display);
      font-size: 44px;
      font-weight: 900;
      color: white;
      line-height: 1;
      margin-bottom: 4px
    }

    .stat-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase
    }

    /* SECTIONS */
    section {
      padding: 80px
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px
    }

    .section-tag-dot {
      width: 6px;
      height: 6px;
      background: var(--red-500);
      transform: rotate(45deg)
    }

    .section-tag-text {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red-500)
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 900;
      color: var(--steel-900);
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 20px
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.85
    }

    /* PRODUCTS */
    .products {
      background: var(--off-white);
      content-visibility: auto;
      contain-intrinsic-size: 0 800px
    }

    .products-showcase {
      display: flex;
      flex-direction: column;
      gap: 90px;
      max-width: 1300px;
      margin: 0 auto
    }

    .product-row {
      display: grid;
      grid-template-columns: 0.75fr 1fr;
      grid-template-rows: auto auto auto;
      column-gap: 70px;
      row-gap: 0;
      align-items: start
    }

    .product-row .product-info-top {
      grid-column: 2;
      grid-row: 1;
      padding-bottom: 24px
    }

    .product-row .product-visual {
      grid-column: 1;
      grid-row: 1 / 4;
      align-self: center
    }

    .product-row .product-desc {
      grid-column: 2;
      grid-row: 2
    }

    .product-row .product-info-bottom {
      grid-column: 2;
      grid-row: 3
    }

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

    .product-row.reverse .product-info-top {
      grid-column: 1;
      grid-row: 1
    }

    .product-row.reverse .product-visual {
      grid-column: 2;
      grid-row: 1 / 4;
      align-self: center
    }

    .product-row.reverse .product-desc {
      grid-column: 1;
      grid-row: 2
    }

    .product-row.reverse .product-info-bottom {
      grid-column: 1;
      grid-row: 3
    }

    .product-visual {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--steel-100)
    }

    .product-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s
    }

    .product-row:hover .product-visual img {
      transform: scale(1.04)
    }

    .product-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(8, 10, 12, 0.3) 100%)
    }

    .product-badge-float {
      position: absolute;
      top: 20px;
      left: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--red-500);
      padding: 9px 18px;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      color: white;
      letter-spacing: 2px;
      text-transform: uppercase
    }

    .product-number {
      font-family: var(--font-display);
      font-size: 130px;
      font-weight: 900;
      color: var(--steel-100);
      line-height: 1;
      margin-bottom: -30px;
      letter-spacing: -4px
    }

    .product-name {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 900;
      color: var(--steel-900);
      margin-bottom: 16px;
      line-height: 1;
      text-transform: uppercase
    }

    .product-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 28px
    }

    .product-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 32px
    }

    .spec-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: white;
      border-radius: var(--radius-sm);
      border: 1px solid var(--steel-50);
      transition: all 0.3s
    }

    .spec-item:hover {
      border-color: var(--red-300);
      box-shadow: var(--shadow-sm)
    }

    .spec-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--red-950);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red-400);
      font-size: 14px;
      flex-shrink: 0
    }

    .spec-text {
      font-size: 13px;
      font-weight: 600;
      color: var(--steel-700)
    }

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

    /* ABOUT */
    .about {
      background: var(--steel-950);
      position: relative;
      overflow: hidden;
      content-visibility: auto;
      contain-intrinsic-size: 0 600px
    }

    .about::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 10% 90%, rgba(192, 57, 43, 0.1) 0%, transparent 40%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 40%)
    }

    .about-grid-lines {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none
    }

    .about-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      grid-template-rows: auto auto;
      column-gap: 60px;
      row-gap: 0;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto
    }

    .about-visual {
      position: relative;
      grid-column: 1;
      grid-row: 1 / 4;
      align-self: center
    }

    .about-content-top {
      grid-column: 2;
      grid-row: 1
    }

    .about-text-second {
      grid-column: 2;
      grid-row: 2
    }

    .about-content-bottom {
      grid-column: 2;
      grid-row: 3
    }

    .about-img {
      width: 100%;
      aspect-ratio: 5/4;
      border-radius: var(--radius-lg);
      object-fit: cover;
      display: block
    }

    .about-card {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--red-500);
      border-radius: var(--radius-md);
      padding: 24px 30px;
      box-shadow: var(--shadow-xl);
      display: flex;
      align-items: center;
      gap: 16px
    }

    .about-card-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 22px
    }

    .about-card-num {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 900;
      color: white;
      line-height: 1
    }

    .about-card-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .about .section-tag-text {
      color: var(--red-400)
    }

    .about .section-title {
      color: white;
      font-size: clamp(26px, 3vw, 42px)
    }

    .about-text {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.9;
      margin-bottom: 24px
    }

    .about-checks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 40px
    }

    .about-check {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .about-check-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: rgba(192, 57, 43, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--red-400);
      font-size: 11px;
      border: 1px solid rgba(192, 57, 43, 0.3)
    }

    .about-check span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500
    }

    /* WHY */
    .why-us {
      background: white;
      content-visibility: auto;
      contain-intrinsic-size: 0 600px
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1300px;
      margin: 0 auto
    }

    .why-card {
      padding: 36px 24px;
      background: var(--off-white);
      border-radius: var(--radius-md);
      text-align: center;
      transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden
    }

    .why-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red-500);
      transform: scaleX(0);
      transition: transform 0.45s;
      transform-origin: left
    }

    .why-card:hover::before {
      transform: scaleX(1)
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      background: white;
      border-color: var(--steel-50)
    }

    .why-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: var(--steel-950);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: all 0.4s;
      color: var(--red-400);
      font-size: 24px
    }

    .why-card:hover .why-icon-wrap {
      background: var(--red-500);
      color: white
    }

    .why-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--steel-900);
      margin-bottom: 10px;
      text-transform: uppercase
    }

    .why-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75
    }

    /* CONTACT */
    .contact {
      background: var(--off-white);
      content-visibility: auto;
      contain-intrinsic-size: 0 700px
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto
    }

    .contact-info-section {
      padding-top: 10px
    }

    .contact-intro {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 40px
    }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px
    }

    .contact-row-icon {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-sm);
      background: var(--steel-900);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--red-400);
      font-size: 18px
    }

    .contact-row-label {
      font-family: var(--font-display);
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 3px
    }

    .contact-row-value {
      font-size: 15px;
      color: var(--steel-800);
      font-weight: 600
    }

    .contact-social {
      display: flex;
      gap: 10px;
      margin-top: 32px
    }

    .contact-social a {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: var(--steel-900);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
      transition: all 0.3s
    }

    .contact-social a:hover {
      background: var(--red-500);
      color: white;
      transform: translateY(-3px)
    }

    /* MAP */
    .contact-map {
      margin-top: 36px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 2px solid var(--steel-100);
      position: relative
    }

    .contact-map-label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px
    }

    .contact-map-label-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--steel-900);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red-400);
      font-size: 13px;
      flex-shrink: 0
    }

    .contact-map-label-text {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 2px;
      text-transform: uppercase
    }

    .contact-map-frame {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden
    }

    .contact-map-frame::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red-500), var(--red-300), var(--red-500));
      z-index: 10
    }

    .contact-map-frame iframe {
      display: block;
      width: 100%;
      height: 240px;
      border: 0;
      border-radius: var(--radius-md)
    }

    .contact-form-card {
      background: var(--steel-900);
      border-radius: var(--radius-xl);
      padding: 48px;
      box-shadow: var(--shadow-xl)
    }

    .form-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .field {
      margin-bottom: 16px
    }

    .field label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 8px;
      letter-spacing: 1.5px;
      text-transform: uppercase
    }

    .field label i {
      font-size: 11px;
      color: var(--red-400)
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-family: var(--font-body);
      color: white;
      background: rgba(255, 255, 255, 0.05);
      transition: all 0.3s;
      outline: none
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255, 255, 255, 0.25)
    }

    .field select option {
      background: var(--steel-900);
      color: white
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--red-500);
      background: rgba(192, 57, 43, 0.08);
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15)
    }

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

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: var(--red-500);
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.35s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px
    }

    .submit-btn:hover {
      background: var(--red-400);
      transform: translateY(-2px);
      box-shadow: var(--shadow-red)
    }

    /* FOOTER */
    .footer {
      background: var(--dark);
      padding: 80px 80px 40px
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 60px;
      max-width: 1300px;
      margin: 0 auto 60px
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      text-decoration: none
    }

    .footer-logo-icon {
      width: calc(var(--logo-size-footer) * 1.4);
      height: var(--logo-size-footer);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .footer-logo-icon img {
      width: calc(var(--logo-size-footer) * 1.4);
      height: var(--logo-size-footer);
      object-fit: contain;
      border-radius: 50%;
      background: white;
    }

    .footer-logo-text {
      font-size: 13px;
      font-weight: 700;
      color: white;
      letter-spacing: 1.5px;
      text-transform: uppercase
    }

    .footer-about p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.35);
      line-height: 1.85;
      max-width: 320px
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      color: white;
      margin-bottom: 22px;
      text-transform: uppercase;
      letter-spacing: 2px
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .footer-col ul a {
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .footer-col ul a i {
      font-size: 14px;
      color: var(--red-500);
      flex-shrink: 0;
      width: 16px;
      text-align: center
    }

    .footer-col ul a:hover {
      color: var(--red-400)
    }

    .footer-col ul a:hover i {
      color: var(--red-400)
    }

    .footer-social-row {
      display: flex;
      gap: 8px;
      margin-top: 22px
    }

    .footer-social-row a {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 15px;
      transition: all 0.3s;
      text-decoration: none
    }

    .footer-social-row a:hover {
      background: var(--red-500);
      color: white;
      transform: translateY(-3px);
      text-decoration: none
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.5px
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1)
    }

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

    .reveal-delay-1 { transition-delay: 0.12s }
    .reveal-delay-2 { transition-delay: 0.24s }
    .reveal-delay-3 { transition-delay: 0.36s }

    /* BRANDS CAROUSEL */
    .brands-section {
      background: var(--steel-950);
      padding: 80px 0;
      content-visibility: auto;
      contain-intrinsic-size: 0 300px;
      overflow: hidden;
      position: relative
    }

    .brands-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(192, 57, 43, 0.06) 0%, transparent 70%)
    }

    .brands-section .section-header {
      padding: 0 80px
    }

    .brands-section .section-tag-text {
      color: var(--red-400)
    }

    .brands-section .section-title {
      color: white
    }

    .brands-section .section-subtitle {
      color: rgba(255, 255, 255, 0.4)
    }

    .brands-carousel-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: 10px 0
    }

    .brands-carousel-wrapper::before,
    .brands-carousel-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 180px;
      z-index: 10;
      pointer-events: none
    }

    .brands-carousel-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, var(--steel-950) 0%, transparent 100%)
    }

    .brands-carousel-wrapper::after {
      right: 0;
      background: linear-gradient(-90deg, var(--steel-950) 0%, transparent 100%)
    }

    .brands-track {
      display: flex;
      gap: 0;
      animation: brandScroll 32s linear infinite;
      width: max-content
    }

    .brands-track:hover {
      animation-play-state: paused
    }

    @keyframes brandScroll {
      0% { transform: translateX(0) }
      100% { transform: translateX(-50%) }
    }

    .brand-slide {
      flex-shrink: 0;
      width: 260px;
      padding: 0 16px
    }

    .brand-logo-box {
      height: 150px;
      background: #ffffff;
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 24px;
      border: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25)
    }

    .brand-logo-box img {
      width: 90%;
      max-height: 110px;
      object-fit: contain;
      opacity: 1
    }

    .brand-logo-name {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 2.5px;
      text-transform: uppercase
    }

    /* =====================================================
       RESPONSIVE — TABLET (≤1024px)
    ===================================================== */
    @media (max-width: 1024px) {
      :root {
        --logo-size-nav: 50px;
      }

      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .hamburger {
        z-index: 100001;
      }

      .navbar {
        padding: 14px 30px
      }

      section {
        padding: 90px 30px
      }

      .stats-strip {
        padding: 28px 30px;
        grid-template-columns: repeat(2, 1fr)
      }

      .section-header {
        margin-bottom: 32px
      }

      .products-showcase {
        gap: 40px
      }

      .product-row,
      .product-row.reverse {
        display: flex;
        flex-direction: column;
        gap: 20px
      }

      .product-row .product-info-top,
      .product-row.reverse .product-info-top {
        order: 1;
        padding-bottom: 0
      }

      .product-row .product-visual,
      .product-row.reverse .product-visual {
        order: 2
      }

      .product-row .product-desc,
      .product-row.reverse .product-desc {
        order: 3;
        margin-bottom: 0
      }

      .product-row .product-info-bottom,
      .product-row.reverse .product-info-bottom {
        order: 4
      }

      .about-inner {
        display: flex;
        flex-direction: column;
        gap: 20px
      }

      .about-text {
        margin-bottom: 0
      }

      .about-content-top {
        order: 1;
        padding-bottom: 0
      }

      .about-visual {
        order: 2
      }

      .about-text-second {
        order: 3
      }

      .about-content-bottom {
        order: 4
      }

      .about-img {
        aspect-ratio: 16/9
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .contact-wrap {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: repeat(2, 1fr)
      }

      .slider-controls {
        left: 30px;
        right: 30px
      }

      .slide-content {
        padding: 0 40px;
        padding-top: 100px
      }

      .brands-section {
        padding: 70px 0
      }

      .brands-section .section-header {
        padding: 0 24px
      }
    }

    /* =====================================================
       RESPONSIVE — MOBILE (≤768px)
       KEY FIXES:
       1. Ticker IS shown on mobile (moved to top, navbar stacks below)
       2. Hero padding-top accounts for ticker + navbar height
       3. Logo sizes increased
    ===================================================== */
    @media (max-width: 768px) {
      :root {
        --logo-size-nav: 64px;
        --logo-size-footer: 58px;
      }

      /* Ticker stays visible on mobile but smaller */
      .ticker-strip {
        height: 30px;
        display: flex;
      }

      .ticker-item {
        font-size: 11px;
        padding: 0 24px;
        letter-spacing: 1px;
      }

      /* Navbar sits below ticker on mobile */
      .navbar {
        top: 30px;
        padding: 10px 20px;
        background: rgba(8, 10, 12, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
      }

      /* When scrolled, ticker is gone, navbar at top */
      .navbar.scrolled {
        top: 0;
        padding: 10px 20px;
        background: rgba(8, 10, 12, 0.97);
      }

      /* Logo text adjustments for mobile */
      .nav-logo-text {
        font-size: 22px;
      }

      .nav-logo-sub {
        font-size: 11px;
        letter-spacing: 1px;
      }

      /* Hero: full viewport, content pushed past sticky header */
      .hero {
        min-height: 100svh;
        height: 100svh;
      }

      /* slide-content: push content down past ticker(30) + navbar(~72) */
      .slide-content {
        padding: 120px 24px 100px;
        justify-content: center;
      }

      .slide-title {
        font-size: clamp(40px, 11vw, 64px);
        letter-spacing: -0.5px;
        margin-bottom: 16px;
      }

      .slide-desc {
        font-size: 14px;
        margin-bottom: 30px;
        max-width: 100%;
      }

      .slide-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 12px;
      }

      .btn {
        padding: 14px 28px;
        font-size: 12px;
      }

      /* Slider controls at bottom */
      .slider-controls {
        left: 20px;
        right: 20px;
        bottom: 24px;
      }

      .slider-arrow-btn {
        width: 42px;
        height: 42px;
      }

      .slider-count .now {
        font-size: 22px;
      }

      /* Stats */
      .stats-strip {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 22px 20px
      }

      .stat:not(:last-child)::after {
        display: none
      }

      .stat-val {
        font-size: 34px;
      }

      /* Sections */
      section {
        padding: 60px 20px
      }

      .about {
        padding: 36px 20px
      }

      .section-title {
        font-size: clamp(28px, 7vw, 44px);
      }

      /* Why grid */
      .why-grid {
        grid-template-columns: 1fr
      }

      /* Form */
      .form-2col {
        grid-template-columns: 1fr
      }

      /* Footer */
      .footer {
        padding: 36px 20px 30px
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
      }

      /* Contact form card */
      .contact-form-card {
        padding: 24px
      }

      /* Product specs */
      .product-specs {
        grid-template-columns: 1fr
      }

      /* About card */
      .about-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -20px
      }

      .about-checks {
        grid-template-columns: 1fr;
        margin-bottom: 28px
      }

      /* Product number */
      .product-number {
        font-size: 80px;
        margin-bottom: -20px;
      }

      /* Map height */
      .contact-map-frame iframe {
        height: 200px
      }

      /* Brands carousel */
      .brands-carousel-wrapper::before,
      .brands-carousel-wrapper::after {
        width: 60px;
      }

      .brand-slide {
        width: 180px;
        padding: 0 10px;
      }

      .brand-logo-box {
        height: 110px;
      }
    }

    /* =====================================================
       RESPONSIVE — SMALL MOBILE (≤480px)
    ===================================================== */
    @media (max-width: 480px) {
      :root {
        --logo-size-nav: 58px;
      }

      .ticker-strip {
        height: 28px;
      }

      .ticker-item {
        font-size: 10px;
        padding: 0 18px;
      }

      .navbar {
        top: 28px;
      }

      .navbar.scrolled {
        top: 0;
      }

      .slide-content {
        padding: 115px 18px 90px;
      }

      .slide-title {
        font-size: clamp(36px, 10vw, 56px);
      }

      .slide-tag-text {
        font-size: 11px;
        letter-spacing: 3px;
      }
    }
    /* MOBILE MENU OVERLAY */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: #080A0C;
      z-index: 100000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-bottom: 160px;
    }

    .mobile-menu-overlay.open {
      display: flex;
    }

    .mobile-menu-overlay ul {
      list-style: none;
      width: 100%;
      padding: 0;
      margin: 0;
    }

    .mobile-menu-overlay ul li {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }

    .mobile-menu-overlay ul li:first-child {
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-menu-overlay ul li a {
      display: block;
      padding: 20px 24px;
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
    }

    .mobile-menu-overlay ul li a.menu-cta {
      color: var(--red-400);
    }

    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
      padding: 8px;
      line-height: 1;
    }

    /* WHATSAPP FLOAT BUTTON */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
      animation: wa-pulse 2.5s infinite;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
      animation: none;
    }
    .wa-float i {
      color: #fff;
      font-size: 30px;
      line-height: 1;
    }
    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
      50%       { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.85), 0 0 0 10px rgba(37, 211, 102, 0.12); }
    }
