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

    @font-face {
      font-family: 'TAN Nimbus';
      src: url('fonts/TAN-NIMBUS.ttf') format('truetype'),
           url('fonts/TAN-NIMBUS.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --red:      #d42b2b;
      --red-dk:   #b01e1e;
      --blue:     #1a3fa8;
      --blue-lt:  #2952d4;
      --green:    #1e7a3a;
      --green-lt: #2db554;
      --yellow:   #f0b429;
      --yellow-dk:#c8920f;

      /* Light theme */
      --bg:       #f7f5f0;
      --bg2:      #efecea;
      --surface:  #ffffff;
      --border:   #e2ddd6;
      --text:     #1a1a18;
      --text-mid: #4a4a46;
      --text-lt:  #888880;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 92px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo img {
      height: 72px; width: auto;
      object-fit: contain;
    }
    @media(max-width:768px){
      nav { height: 76px; }
      .nav-logo img { height: 56px; }
    }
    .nav-wordmark {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.9rem;
      letter-spacing: 0.06em;
      color: var(--text);
      line-height: 1;
    }
    .nav-wordmark span { color: var(--red); }
    .nav-links {
      display: flex; align-items: center; gap: 32px; list-style: none;
    }
    .nav-links a {
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-cta {
      background: var(--red) !important;
      color: #fff !important;
      padding: 0;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .nav-cta svg { width: 20px; height: 20px; }
    .nav-cta:hover { background: var(--red-dk) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--surface);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 72px 5vw 0;
      position: relative;
      overflow: hidden;
    }
    .hero-top-stripe {
      position: absolute; top: 72px; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red) 0%, var(--blue) 33%, var(--green) 66%, var(--yellow) 100%);
    }
    .hero-bg-shape {
      position: absolute; right: -60px; top: 50%;
      transform: translateY(-50%);
      width: 52vw; height: 52vw; max-width: 700px; max-height: 700px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(212,43,43,0.05) 0%, rgba(26,63,168,0.04) 40%, transparent 70%);
      pointer-events: none;
    }

    .hero-left {
      position: relative; z-index: 2;
      padding: 80px 0;
      padding-right: 48px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 40px;
    }
    .eyebrow-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,43,43,0.08);
      border: 1px solid rgba(212,43,43,0.2);
      color: var(--red);
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--red);
    }
    /* no blink animation */

    .hero h1 {
      font-family: 'Bebas Neue', 'Noto Sans Devanagari', sans-serif;
      font-size: clamp(3.2rem, 6vw, 5.6rem);
      line-height: 0.96;
      letter-spacing: 0.02em;
      color: #000;
      font-weight: 900;
      margin-bottom: 22px;
    }
    .hero h1 .accent-red   { color: var(--red); }
    .hero h1 .hero-line2 { white-space: nowrap; }
    .hero h1 .accent-green {
      font-family: 'TAN Nimbus', 'Bebas Neue', serif;
      color: #7ed957;
      font-weight: normal;
      font-size: 0.62em;
    }

    .hero-desc {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.75;
      max-width: 460px;
      margin-bottom: 36px;
      font-weight: 400;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 30px;
      border-radius: 5px;
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
      position: relative; overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .btn:hover::after { transform: translateX(0); }
    .btn:hover { transform: translateY(-3px); }
    .btn:active { transform: translateY(0px) scale(0.98); }
    .btn-red { background: var(--red); color: #fff; }
    .btn-red:hover { background: var(--red-dk); box-shadow: 0 8px 24px rgba(212,43,43,0.3); }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--red); color: var(--red); box-shadow: 0 4px 14px rgba(212,43,43,0.1); }

    .hero-divider {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--red), var(--blue));
      border-radius: 2px;
      margin: 36px 0;
    }
    .hero-stats {
      display: flex; gap: 36px; flex-wrap: wrap;
    }
    .hstat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      line-height: 1;
      color: var(--text);
    }
    .hstat-num span { color: var(--red); }
    .hstat-num span.hstat-green-num { color: var(--green); }
    .hstat-num-blue, .hstat-num-blue span { color: #1565C0; }
    .hstat-num-red, .hstat-num-red span { color: var(--red); }
    .hstat-label {
      font-size: 0.72rem;
      color: var(--text-lt);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 3px;
      font-weight: 600;
    }
    .hstat-blue { color: #1565C0; }
    .hstat-green { color: var(--green); }
    .hstat-red { color: var(--red); }

    .hero-right {
      position: relative; z-index: 2;
      display: flex; align-items: flex-start; justify-content: center;
      padding: 0;
      align-self: flex-start;
      margin-top: 160px;
    }
    .hero-img {
      width: 100%;
      max-width: 700px;
      height: clamp(360px, 48vh, 480px);
      border-radius: 20px;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: var(--red);
      padding: 13px 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex; white-space: nowrap;
      animation: scrollX 22s linear infinite;
    }
    @keyframes scrollX { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    .m-item {
      display: inline-flex; align-items: center; gap: 16px;
      padding: 0 24px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.92);
    }
    .m-sep {
      width: 5px; height: 5px;
      background: rgba(255,255,255,0.4);
      transform: rotate(45deg); flex-shrink: 0;
    }

    /* ── SECTION COMMONS ── */
    section { padding: 96px 5vw; }
    .s-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .s-eyebrow-line { width: 28px; height: 2px; border-radius: 1px; }
    .s-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 3.6vw, 3rem);
      line-height: 1;
      letter-spacing: 0.02em;
      color: var(--text);
      margin-bottom: 14px;
    }
    .s-sub {
      font-size: 0.97rem;
      color: var(--text-mid);
      line-height: 1.72;
      max-width: 480px;
    }

    /* ── PRODUCTS ── */
    .products { background: var(--bg); }
    .products-hd {
      display: flex; justify-content: space-between;
      align-items: flex-end; flex-wrap: wrap; gap: 24px;
      margin-bottom: 52px;
    }
    .products-hd .s-eyebrow { color: var(--red); }
    .products-hd .s-eyebrow-line { background: var(--red); }

    .pgrid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 18px;
    }
    @media(max-width:1024px){.pgrid{grid-template-columns:repeat(2,1fr);}}
    @media(max-width:580px){.pgrid{grid-template-columns:1fr;}}

    .pcard {
      background: var(--surface);
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.28s, box-shadow 0.28s, opacity 0.5s ease, translate 0.5s ease;
      opacity: 0;
      translate: 0 32px;
    }
    .pcard.card-visible {
      opacity: 1;
      translate: 0 0;
    }
    .pcard:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    }
    .pcard-top {
      height: 240px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    /* Top image area: plain white */
    .pcard-top { background: #ffffff; }

    /* Bottom text area gets the tinted colour */
    .pcard:nth-child(1) .pcard-body,
    .pcard:nth-child(1) .pcard-foot { background: #fff3f3; }
    .pcard:nth-child(2) .pcard-body,
    .pcard:nth-child(2) .pcard-foot { background: #f0f3ff; }
    .pcard:nth-child(3) .pcard-body,
    .pcard:nth-child(3) .pcard-foot { background: #f0fff5; }
    .pcard:nth-child(4) .pcard-body,
    .pcard:nth-child(4) .pcard-foot { background: #fffbf0; }
    .pcard:nth-child(5) .pcard-body,
    .pcard:nth-child(5) .pcard-foot { background: #f5f0ff; }
    .pcard:nth-child(6) .pcard-body,
    .pcard:nth-child(6) .pcard-foot { background: #f0f8ff; }

    .pcard-top-pattern {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg, transparent 0, transparent 14px,
        rgba(0,0,0,0.02) 14px, rgba(0,0,0,0.02) 15px
      );
    }
    .pcard-icon { position: relative; z-index: 1; width: 72px; height: 72px; }
    .pcard-img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; padding: 12px; }
    .pcard-carousel { position: relative; width: 100%; height: 100%; }
    .pcard-carousel .carousel-slide { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.6s ease; }
    .pcard-carousel .carousel-slide.active { opacity: 1; }
    .pcard-badge {
      position: absolute; top: 12px; right: 12px;
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 100px;
      z-index: 2;
    }
    .badge-red { background: var(--red); color: #fff; }
    .badge-yellow { background: var(--yellow); color: var(--text); }

    .pcard-body { padding: 24px 24px 18px; }
    .pcard-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.45rem; letter-spacing: 0.03em;
      color: var(--text); margin-bottom: 6px;
    }
    .pcard-desc {
      font-size: 0.83rem; color: var(--text-mid);
      line-height: 1.62; margin-bottom: 14px;
    }
    .chips { display: flex; gap: 6px; flex-wrap: wrap; }
    .chip {
      background: var(--bg2); color: var(--text-mid);
      font-size: 0.67rem; font-weight: 600;
      padding: 3px 9px; border-radius: 100px;
      letter-spacing: 0.04em;
    }
    .pcard-foot {
      padding: 16px 24px 22px;
      border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
    }
    .pcard-mat { display: none; }
    .pcard-cta {
      font-size: 0.9rem; font-weight: 700;
      color: #fff; letter-spacing: 0.08em;
      text-transform: uppercase; text-decoration: none;
      background: #e85a5a;
      padding: 13px 26px;
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%;
      box-shadow: 0 2px 8px rgba(232,90,90,0.18);
      animation: enquirePulse 2.4s ease-in-out infinite;
      transition: transform 0.2s, box-shadow 0.2s, gap 0.2s, background 0.2s;
    }
    .pcard-cta:hover {
      gap: 12px;
      background: var(--red);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(212,43,43,0.28);
      animation-play-state: paused;
    }
    @keyframes enquirePulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(232,90,90,0.18), 0 0 0 0 rgba(232,90,90,0.25);
      }
      50% {
        transform: scale(1.015);
        box-shadow: 0 3px 10px rgba(232,90,90,0.22), 0 0 0 8px rgba(232,90,90,0);
      }
    }

    /* ── ABOUT ── */
    .about-sec { background: #fff; padding: 80px 5vw; }
    .about-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .about-text { display: flex; flex-direction: column; gap: 0; }
    .about-para {
      font-size: 1rem; color: var(--text-lt); line-height: 1.75;
      margin: 0 0 16px;
    }
    .about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
    .about-pill {
      background: var(--surface); border: 1px solid #e0e0e0;
      border-radius: 20px; padding: 6px 16px;
      font-size: 0.78rem; font-weight: 600; color: var(--text);
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .about-img-wrap { border-radius: 16px; overflow: hidden; }
    .about-img { width: 100%; height: 460px; object-fit: contain; display: block; border-radius: 16px; }
    @media (max-width: 768px) {
      .about-inner { grid-template-columns: 1fr; }
      .about-img-wrap { order: -1; max-height: 260px; }
      .about-img { height: 260px; }
    }

    /* ── WHY ── */
    .why { background: var(--surface); }
    .why .s-eyebrow { color: var(--green); }
    .why .s-eyebrow-line { background: var(--green); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 18px;
      margin-top: 52px;
    }
    @media(max-width:768px){.why-grid{grid-template-columns:1fr;}}
    .why-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px 28px;
      display: flex; gap: 20px;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .why-card:hover {
      border-color: var(--red);
      box-shadow: 0 6px 24px rgba(212,43,43,0.08);
    }
    .why-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem; line-height: 1;
      color: rgba(0,0,0,0.06);
      min-width: 48px;
      transition: color 0.25s;
    }
    .why-card:hover .why-num { color: var(--red); }
    .why-text h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.25rem; letter-spacing: 0.04em;
      color: var(--text); margin-bottom: 8px;
    }
    .why-text p {
      font-size: 0.85rem; color: var(--text-mid); line-height: 1.65;
    }

    /* stats row */
    .why-stats {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 0; margin-top: 52px;
      border: 1px solid var(--border); border-radius: 14px;
      overflow: hidden; background: var(--bg);
    }
    @media(max-width:768px){.why-stats{grid-template-columns:1fr;}}
    .wstat {
      padding: 28px 24px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .wstat:last-child { border-right: none; }
    .wstat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.6rem; line-height: 1;
    }
    .wstat:nth-child(1) .wstat-num { color: var(--red); }
    .wstat:nth-child(2) .wstat-num { color: var(--blue); }
    .wstat:nth-child(3) .wstat-num { color: var(--green); }
    .wstat:nth-child(4) .wstat-num { color: var(--yellow-dk); }
    .wstat-label {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-lt); margin-top: 4px;
    }

    /* ── PROCESS ── */
    .process { background: var(--bg2); }
    .process .s-eyebrow { color: var(--blue); }
    .process .s-eyebrow-line { background: var(--blue); }

    /* Step sequential animation */
    .process-steps .pstep,
    .process-steps .pstep-arrow {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .process-steps .pstep.step-visible,
    .process-steps .pstep-arrow.step-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .process-steps {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
      gap: 0 10px; margin-top: 52px; align-items: stretch;
    }
    .pstep-arrow {
      display: flex; align-items: center; justify-content: center;
      color: var(--text); font-size: 1.4rem;
    }
    .pstep-arrow svg { width: 32px; height: 32px; stroke-width: 3.5; }
    @media(max-width:768px){
      .process-steps { grid-template-columns: repeat(2,1fr); gap: 18px; }
      .pstep-arrow { display: none; }
    }
    .pstep {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 22px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }
    .pstep::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
    }
    .pstep:nth-child(1)::before { background: var(--red); }
    .pstep:nth-child(3)::before { background: var(--blue); }
    .pstep:nth-child(5)::before { background: var(--green); }
    .pstep:nth-child(7)::before { background: var(--yellow-dk); }
    .pstep:nth-child(9)::before { background: var(--red); }
    .pstep-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem; line-height: 1;
      color: rgba(0,0,0,0.05);
      position: absolute; top: 12px; right: 18px;
    }
    .pstep-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .pstep:nth-child(1) .pstep-icon { background: rgba(212,43,43,0.1); }
    .pstep:nth-child(3) .pstep-icon { background: rgba(26,63,168,0.1); }
    .pstep:nth-child(5) .pstep-icon { background: rgba(30,122,58,0.1); }
    .pstep:nth-child(7) .pstep-icon { background: rgba(240,180,41,0.15); }
    .pstep:nth-child(9) .pstep-icon { background: rgba(212,43,43,0.1); }
    .pstep-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem; letter-spacing: 0.04em;
      color: var(--text); margin-bottom: 8px;
    }
    .pstep-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }

    /* Repeat / loop-back step */
    .pstep.pstep-loop {
      background: transparent;
      border: 2px dashed var(--red);
    }
    .pstep.pstep-loop::before { display: none; }
    .pstep.pstep-loop .pstep-num { color: rgba(212,43,43,0.12); }
    .pstep-loopback-hint {
      margin-top: 12px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red);
      display: flex; align-items: center; gap: 6px;
    }
    .pstep-loopback-hint svg { width: 14px; height: 14px; }
    .pstep-arrow.pstep-arrow-loop { color: var(--red); }
    .pstep-arrow.pstep-arrow-loop svg { width: 38px; height: 38px; stroke-width: 3; }

    /* ── TESTIMONIALS ── */
    .testimonials { background: var(--bg); overflow: hidden; }
    .testimonials .s-eyebrow { color: var(--green); }
    .testimonials .s-eyebrow-line { background: var(--green); }

    .tcarousel-wrap {
      overflow: hidden;
      width: 100%;
      cursor: grab;
    }
    .tcarousel-wrap:active { cursor: grabbing; }

    .tcarousel-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: tscroll 16s linear infinite;
    }
    .tcarousel-track:hover { animation-play-state: paused; }

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

    .tcard {
      flex-shrink: 0;
      width: 320px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.10);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tcard:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    }
    .tcard img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .tdots {
      display: flex; justify-content: center; gap: 8px;
      margin-top: 32px;
    }
    .tdot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--border); cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .tdot.active {
      background: var(--green);
      transform: scale(1.3);
    }

    @media(max-width:768px){
      .tcard { width: 260px; }
    }

    /* ── CONTACT ── */
    .contact { background: var(--surface); }
    .contact .s-eyebrow { color: var(--red); }
    .contact .s-eyebrow-line { background: var(--red); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.3fr;
      gap: 72px; align-items: stretch;
    }
    @media(max-width:768px){.contact-grid{grid-template-columns:1fr;gap:40px;}}

    .cinfo { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
    .cinfo-card {
      display: flex; align-items: center; gap: 16px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
    }
    .cinfo-icon {
      width: 40px; height: 40px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .cinfo-icon.red   { background: rgba(212,43,43,0.1); }
    .cinfo-icon.blue  { background: rgba(26,63,168,0.1); }
    .cinfo-icon.green { background: rgba(30,122,58,0.1); }
    .cinfo-label {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-lt); margin-bottom: 2px;
    }
    .cinfo-val { font-size: 0.92rem; color: var(--text); font-weight: 500; }

    .cform-wrap { display: flex; flex-direction: column; height: 100%; }
    .cform-wrap > .s-eyebrow { visibility: hidden; }
    @media(max-width:768px){.cform-wrap > .s-eyebrow{display:none;}}
    .cform { display: flex; flex-direction: column; gap: 12px; flex: 1; }
    .cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media(max-width:480px){.cform-row{grid-template-columns:1fr;}}
    .cinput {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 7px;
      padding: 12px 16px;
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s;
      width: 100%;
    }
    .cinput::placeholder { color: var(--text-lt); transition: opacity 0.2s, transform 0.2s; }
    .cinput:focus::placeholder { opacity: 0.4; transform: translateX(4px); }
    .cinput:focus {
      border-color: var(--red);
      background: var(--surface);
      box-shadow: 0 0 0 3px rgba(212,43,43,0.1);
      transform: translateY(-1px);
    }
    .cinput:hover:not(:focus) { border-color: #ccc; }
    textarea.cinput { min-height: 110px; resize: vertical; flex: 1; }
    .btn-submit {
      width: 100%; padding: 14px;
      background: var(--red); color: #fff;
      border: none; cursor: pointer; border-radius: 7px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem; letter-spacing: 0.1em;
      transition: background 0.2s, transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
      position: relative; overflow: hidden;
    }
    .btn-submit::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,0.12);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .btn-submit:hover::after { transform: translateX(0); }
    .btn-submit:hover { background: var(--red-dk); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,43,43,0.3); }
    .btn-submit:active { transform: scale(0.98); }

    /* ── DEALER PROMO CARD ── */
    .dealer-promo {
      background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 36px;
      display: flex; flex-direction: column;
      height: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .dealer-promo-badge {
      display: inline-flex; align-items: center; gap: 8px;
      align-self: flex-start;
      background: rgba(212,43,43,0.08);
      color: var(--red);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 7px 14px; border-radius: 999px;
      margin-bottom: 18px;
    }
    .dealer-promo h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem; line-height: 1.05;
      color: var(--text); margin: 0 0 14px;
      letter-spacing: 0.01em;
    }
    .dealer-promo p {
      font-size: 0.95rem; color: var(--text-mid);
      line-height: 1.6; margin: 0 0 22px;
    }
    .dealer-perks {
      list-style: none; padding: 0; margin: 0 0 28px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .dealer-perks li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; color: var(--text);
    }
    .dealer-perks svg {
      width: 20px; height: 20px;
      flex-shrink: 0; color: var(--green);
    }
    .dealer-cta {
      margin-top: auto;
      background: var(--red);
      color: #fff;
      border: none;
      font-family: inherit;
      font-size: 1rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 18px 28px;
      border-radius: 10px;
      cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      box-shadow: 0 4px 14px rgba(212,43,43,0.25);
      animation: dealerPulse 2.4s ease-in-out infinite;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .dealer-cta:hover {
      background: var(--red-dk);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(212,43,43,0.4);
      animation-play-state: paused;
    }
    @keyframes dealerPulse {
      0%, 100% { box-shadow: 0 4px 14px rgba(212,43,43,0.25), 0 0 0 0 rgba(212,43,43,0.3); }
      50% { box-shadow: 0 6px 18px rgba(212,43,43,0.3), 0 0 0 12px rgba(212,43,43,0); }
    }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(20,20,20,0.6);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center; justify-content: center;
      z-index: 1000;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .modal-overlay.is-open {
      display: flex;
      opacity: 1;
    }
    .modal {
      background: #fff;
      border-radius: 16px;
      width: 100%; max-width: 560px;
      max-height: 92vh; overflow-y: auto;
      padding: 32px 32px 28px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      transform: translateY(20px) scale(0.96);
      transition: transform 0.3s ease;
    }
    .modal-overlay.is-open .modal {
      transform: translateY(0) scale(1);
    }
    .modal-close {
      position: absolute; top: 14px; right: 14px;
      background: #f2f2f2; border: none;
      width: 36px; height: 36px; border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--text);
      transition: background 0.2s, transform 0.2s;
    }
    .modal-close:hover { background: #e5e5e5; transform: rotate(90deg); }
    .modal-close svg { width: 18px; height: 18px; }
    .modal h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem; margin: 0 0 6px;
      color: var(--text);
    }
    .modal-sub {
      font-size: 0.9rem; color: var(--text-mid);
      margin: 0 0 22px;
    }
    @media(max-width:480px){
      .modal { padding: 24px 20px 20px; }
      .dealer-promo { padding: 30px 24px; }
      .dealer-promo h3 { font-size: 1.8rem; }
    }

    /* ── FOOTER ── */
    footer {
      background: #f4f4f4;
      border-top: 1px solid #e2e2e2;
      padding: 32px 5vw;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .footer-left { display: flex; align-items: center; gap: 16px; }
    .footer-logo img { height: 72px; width: auto; mix-blend-mode: multiply; }
    .footer-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem; letter-spacing: 0.08em; color: var(--text);
    }
    .footer-brand span { color: var(--red); }
    .footer-copy { font-size: 0.76rem; color: var(--text-lt); }
    .footer-links { display: flex; gap: 20px; list-style: none; }
    .footer-links a {
      font-size: 0.78rem; color: var(--text-mid);
      text-decoration: none; letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--red); }

    /* ── FLOATING BUTTONS ── */
    .float-btns {
      position: fixed; bottom: 28px; right: 24px;
      display: flex; flex-direction: column; gap: 12px;
      z-index: 300;
    }
    .float-btn {
      width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(0,0,0,0.22);
      transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
      position: relative;
    }
    .float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,0.28); }
    .float-btn:active { transform: scale(0.96); }
    .float-btn-wa { background: #25D366; }
    .float-btn-call { background: var(--red); }
    .float-btn svg { width: 24px; height: 24px; }
    .float-btn-label {
      position: absolute; right: 62px;
      background: var(--text); color: #fff;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.06em; white-space: nowrap;
      padding: 5px 10px; border-radius: 5px;
      opacity: 0; pointer-events: none;
      transform: translateX(6px);
      transition: opacity 0.18s, transform 0.18s;
    }
    .float-btn-label::after {
      content: '';
      position: absolute; top: 50%; right: -5px;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-right: none;
      border-left-color: var(--text);
    }
    .float-btn:hover .float-btn-label { opacity: 1; transform: translateX(0); }

    /* ── REVEAL (animations only on buttons/inputs per user request) ── */
    .reveal { opacity: 1; transform: none; }
    .reveal.up { opacity: 1; transform: none; }
    .d1,.d2,.d3,.d4,.d5 { transition-delay: 0s; }

    @media(max-width:900px){
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .nav-links { display: none; }
    }