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

    :root {
      --red: #c8102e;
      --red-dark: #a50e26;
      --navy: #1a1f2e;
      --navy-mid: #252b3b;
      --white: #ffffff;
      --cream: #f8f6f2;
      --gray-light: #f0eee9;
      --gray: #e2ddd6;
      --gray-mid: #b0a99f;
      --text: #1a1f2e;
      --text-mid: #4a5068;
      --text-light: #7a8099;
      --gold: #b8962e;
      --border: #e5e1db;
    }

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

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 52px; height: 140px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 20px rgba(26,31,46,0.06);
    }
    .nav-logo { display:flex; align-items:center;
      font-family: 'Bebas Neue', sans-serif; font-size: 1.85rem;
      letter-spacing: 0.1em; color: var(--navy); text-decoration: none;
    }
    .nav-logo span { color: var(--red); }
    .nav-accent { display: inline-block; width: 6px; height: 6px; background: var(--red); border-radius: 50%; margin: 0 4px 4px; vertical-align: middle; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-mid); text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-phone {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.92rem; font-weight: 700;
      letter-spacing: 0.06em; color: var(--navy); text-decoration: none;
      display: flex; align-items: center; gap: 6px; transition: color 0.2s;
    }
    .nav-phone:hover { color: var(--red); }
    .nav-phone-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
    @keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(200,16,46,.4)} 50%{box-shadow:0 0 0 6px rgba(200,16,46,0)} }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-cta {
      background: var(--red); color: var(--white);
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 10px 26px; border: none; cursor: pointer; transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--red-dark); }
    /* hamburger */
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed; top: 140px; left: 0; right: 0; z-index: 99;
      background: #fff; border-bottom: 2px solid var(--red);
      padding: 24px 28px; flex-direction: column; gap: 0;
      box-shadow: 0 8px 32px rgba(26,31,46,0.12);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-mid); text-decoration: none;
      padding: 14px 0; border-bottom: 1px solid var(--border); transition: color 0.18s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--red); }
    .mobile-menu .mob-cta {
      margin-top: 16px; background: var(--red); color: #fff;
      text-align: center; padding: 14px; border-bottom: none;
    }
    .mobile-menu .mob-cta:hover { background: var(--red-dark); color: #fff; }

        /* ── HERO ── */
    .hero {
      background:
        linear-gradient(90deg, rgba(12,16,25,.70) 0%, rgba(12,16,25,.45) 42%, rgba(12,16,25,.05) 100%),
        url("images/image_1.jpg");
      background-size: 110%;
      background-position: center;
      min-height: 720px;
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 52px 90px;
      position: relative; overflow: hidden;
      animation: cinematicMove 12s ease-in-out infinite alternate;
    }
    @keyframes cinematicMove {
      0% {
        background-position: center right;
        background-size: 110%;
      }
      100% {
        background-position: center top;
        background-size: 120%;
      }
    }
    .hero-bottom-cut {
      position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1;
      height: 100px; background: var(--white);
      clip-path: polygon(0 100%, 100% 30%, 100% 100%);
    }
    .hero-content { position: relative; z-index: 2; max-width: 860px; }
    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.35em; text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
      animation: fadeUp 0.7s ease both;
    }
    .hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--red); }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 9.5vw, 8.5rem);
      line-height: 0.93; letter-spacing: 0.04em; color: #ffffff;
      animation: fadeUp 0.7s 0.12s ease both;
    }
    .hero-title .red { color: var(--red); }
    .hero-title .outline {
      display: block;
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
      color: transparent;
    }
    .hero-sub {
      font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.65);
      line-height: 1.75; max-width: 520px; margin: 26px 0 38px;
      animation: fadeUp 0.7s 0.24s ease both;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.36s ease both; }
    .btn-red {
      background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 15px 34px; border: none; cursor: pointer;
      transition: all 0.18s; text-decoration: none; display: inline-block;
    }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent; color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 13px 34px; border: 2px solid rgba(255,255,255,0.3);
      cursor: pointer; transition: all 0.18s; text-decoration: none; display: inline-block;
    }
    .btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }
    .hero-stats {
      display: flex; gap: 44px; flex-wrap: wrap;
      margin-top: 60px; padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.1);
      animation: fadeUp 0.7s 0.48s ease both;
    }
    .stat-val {
      font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem;
      letter-spacing: 0.04em; color: #fff; line-height: 1;
    }
    .stat-val em { color: var(--red); font-style: normal; }
    .stat-lbl {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-top: 4px;
    }
    @keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }

    /* ── TICKER ── */
    .ticker { background: var(--red); padding: 11px 0; overflow: hidden; white-space: nowrap; }
    .ticker-inner { display: inline-block; animation: tick 30s linear infinite; }
    .ticker-item {
      display: inline-block; padding: 0 36px;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92);
    }
    @keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── SHARED SECTION ── */
    section { padding: 88px 52px; }
    .sec-label {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .sec-label::after { content: ''; width: 28px; height: 2px; background: var(--red); }
    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      letter-spacing: 0.04em; line-height: 1; color: var(--navy);
      margin-bottom: 18px;
    }
    .sec-title.light { color: #fff; }

    /* ── PRODUCTS ── */
    #products { background: var(--cream); }
    .products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 32px; }
    .products-intro { max-width: 480px; }
    .products-intro p { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.75; }
    .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .product-card {
      background: var(--white); border: 1px solid var(--border);
      position: relative; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
      display: flex; flex-direction: column;
    }
    .product-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--red);
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .product-card:hover::after { transform: scaleX(1); }
    .product-card:hover { box-shadow: 0 8px 32px rgba(26,31,46,0.1); transform: translateY(-3px); }
    .product-card:hover .product-photo img { transform: scale(1.06); }
    .product-photo {
      width: 100%; height: 190px; overflow: hidden; position: relative;
      background: var(--gray-light);
    }
    .product-photo img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.45s ease; display: block;
    }
    .product-photo-tag {
      position: absolute; top: 12px; left: 12px;
      background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      padding: 4px 10px;
    }
    .product-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
    .product-name {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--navy); margin-bottom: 8px;
    }
    .product-desc { font-size: 0.88rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; flex: 1; }
    .product-link {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--red); text-decoration: none;
      display: flex; align-items: center; gap: 6px; transition: gap 0.18s;
    }
    .product-link:hover { gap: 12px; }

    /* ── GALLERY ── */
    #gallery { background: var(--white); }
    .gallery-header { margin-bottom: 40px; }
    .gallery-header p { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.75; max-width: 500px; margin-top: 10px; }
    .gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
    .filter-btn {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 8px 18px; border: 1.5px solid var(--border);
      background: transparent; color: var(--text-mid); cursor: pointer; transition: all 0.18s;
    }
    .filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
    .filter-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }
    .gallery-item {
      position: relative; overflow: hidden; cursor: pointer;
      background: var(--gray-light); min-height: 220px;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; min-height: 440px; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-thumb {
      width: 100%; height: 100%; min-height: 180px;
      display: flex; align-items: flex-end; justify-content: flex-start;
      padding: 16px; position: relative; overflow: hidden;
    }
    .gallery-overlay {
      position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,31,46,0.75) 0%, transparent 55%);
      opacity: 0; transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label {
      position: relative; z-index: 2;
    }
    .gallery-tag {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      background: var(--red); color: #fff; padding: 4px 10px;
      display: inline-block; margin-bottom: 6px;
    }
    .gallery-name {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: #fff; display: block; text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }
    .gallery-thumb img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover .gallery-thumb img { transform: scale(1.06); }
    .gallery-cta { text-align: center; margin-top: 32px; }
    .btn-outline-dark {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 13px 32px; border: 2px solid var(--navy);
      color: var(--navy); text-decoration: none; transition: all 0.18s;
    }
    .btn-outline-dark:hover { background: var(--navy); color: #fff; }

    /* ── WHY US ── */
    #why { background: var(--cream); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .why-visual {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 40px; position: relative; overflow: hidden;
      min-height: 440px; display: flex; flex-direction: column; justify-content: space-between;
      gap: 0;
    }
    .why-visual-top {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 24px; border-bottom: 1px solid var(--border);
    }
    .why-visual-logo {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
      letter-spacing: 0.1em; color: var(--navy);
    }
    .why-visual-logo span { color: var(--red); }
    .why-visual-badge {
      background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 6px 14px; position: static;
    }
    .why-stats-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; flex: 1;
    }
    .why-stat {
      padding: 28px 24px;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }
    .why-stat:nth-child(2n) { border-right: none; }
    .why-stat:nth-child(3), .why-stat:nth-child(4) { border-bottom: none; }
    .why-stat-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
      letter-spacing: 0.04em; color: var(--navy); line-height: 1;
    }
    .why-stat-num em { color: var(--red); font-style: normal; }
    .why-stat-label {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-light); margin-top: 6px;
    }
    .why-stat-desc {
      font-size: 0.82rem; font-weight: 300; color: var(--text-mid);
      line-height: 1.5; margin-top: 4px;
    }
    .why-features { display: flex; flex-direction: column; gap: 0; }
    .feature {
      display: flex; gap: 18px; padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }
    .feature:first-child { padding-top: 0; }
    .feature:last-child { border-bottom: none; }
    .feature-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
      color: var(--red); opacity: 0.5; line-height: 1; min-width: 44px;
    }
    .feature-title {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--navy); margin-bottom: 5px;
    }
    .feature-desc { font-size: 0.9rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

    /* ── FINANCING ── */
    #financing { background: var(--navy); position: relative; overflow: hidden; }
    #financing::before {
      content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
      background: linear-gradient(170deg, rgba(200,16,46,0.07) 0%, transparent 60%);
    }
    .financing-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; position: relative; z-index: 1; }
    .financing-intro p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.78; margin-top: 14px; }
    .financing-badges { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
    .fin-badge {
      display: flex; align-items: center; gap: 12px;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
    }
    .fin-badge-dot { width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }
    .financing-plans { display: flex; flex-direction: column; gap: 14px; }
    .fin-plan {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 24px 28px;
      display: flex; justify-content: space-between; align-items: center; gap: 24px;
      transition: border-color 0.2s, background 0.2s;
    }
    .fin-plan:hover { border-color: rgba(200,16,46,0.5); background: rgba(200,16,46,0.05); }
    .fin-plan.featured {
      border-color: var(--red); background: rgba(200,16,46,0.08);
      position: relative;
    }
    .fin-plan.featured::before {
      content: 'Most Popular';
      position: absolute; top: -11px; left: 24px;
      background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 12px;
    }
    .fin-plan-name {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 4px;
    }
    .fin-plan-desc { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.45); }
    .fin-plan-rate {
      text-align: right; flex-shrink: 0;
    }
    .fin-rate-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
      letter-spacing: 0.04em; color: #fff; line-height: 1;
    }
    .fin-rate-num span { color: var(--red); font-size: 1.2rem; }
    .fin-rate-label {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35);
    }
    .fin-note {
      font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.3);
      margin-top: 16px; line-height: 1.6;
    }

    /* ── PROCESS ── */
    #process { background: var(--white); }
    .process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; }
    .step { background: var(--cream); padding: 36px 28px; position: relative; }
    .step-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem;
      letter-spacing: 0.04em; color: rgba(200,16,46,0.12); line-height: 1; margin-bottom: 16px;
    }
    .step-title {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
    }
    .step-desc { font-size: 0.88rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
    .step-arrow {
      position: absolute; top: 36px; right: -12px;
      width: 24px; height: 24px; background: var(--red);
      clip-path: polygon(0 0, 70% 50%, 0 100%); z-index: 2;
    }
    .step:last-child .step-arrow { display: none; }
    .step::before {
      content: ''; display: block; width: 32px; height: 3px;
      background: var(--red); margin-bottom: 20px;
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--cream); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
    .testimonial { background: var(--white); border: 1px solid var(--border); padding: 32px 28px; }
    .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testimonial-text { font-size: 0.93rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; }
    .author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--navy); color: #fff;
      font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--red); flex-shrink: 0;
    }
    .author-name {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
    }
    .author-role { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: var(--red); padding: 68px 52px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
      position: relative; overflow: hidden;
    }
    .cta-banner::after {
      content: 'NMS'; font-family: 'Bebas Neue', sans-serif; font-size: 18rem;
      color: rgba(255,255,255,0.06); position: absolute; right: -20px; top: 50%;
      transform: translateY(-50%); letter-spacing: 0.05em; pointer-events: none;
    }
    .cta-banner-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,4vw,3.2rem); letter-spacing: 0.04em; line-height: 1.05; color: #fff; }
    .cta-banner-sub { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.75); margin-top: 10px; max-width: 440px; line-height: 1.65; }
    .btn-white {
      background: #fff; color: var(--red);
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 16px 36px; border: none; cursor: pointer;
      transition: all 0.18s; white-space: nowrap; text-decoration: none; display: inline-block;
    }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

    /* ── CONTACT ── */
    #contact { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; margin-top: 48px; }
    .contact-info { display: flex; flex-direction: column; gap: 0; }
    .contact-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0; border-bottom: 1px solid var(--border);
    }
    .contact-item:first-child { padding-top: 0; }
    .contact-item:last-child { border-bottom: none; }
    .contact-icon { font-size: 1.25rem; color: var(--red); min-width: 28px; margin-top: 2px; }
    .contact-item-label {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px;
    }
    .contact-item-value { font-size: 1rem; font-weight: 400; color: var(--navy); }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light);
    }
    .form-group input, .form-group select, .form-group textarea {
      background: var(--cream); border: 1.5px solid var(--border);
      color: var(--text); padding: 12px 14px;
      font-family: 'Barlow', sans-serif; font-size: 0.92rem;
      outline: none; transition: border-color 0.18s; width: 100%;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-mid); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: #fff; }
    .form-group select { appearance: none; cursor: pointer; }
    .form-group textarea { resize: vertical; min-height: 140px; }
    .form-submit {
      background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 16px; border: none; cursor: pointer;
      transition: background 0.18s;
      width: 100%;
    }
    .form-submit:hover { background: var(--red-dark); }

    /* ── FOOTER ── */
    footer { background: var(--navy); padding: 56px 52px 28px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
    .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 0.1em; color: #fff; margin-bottom: 12px; }
    .footer-logo span { color: var(--red); }
    .footer-desc { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; }
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 18px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.18s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07);
    }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.05em; }
    .footer-flag { font-size: 1.3rem; }

    /* ── FLOATING WIDGETS ── */
    .float-bar {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
    }
    .float-btn {
      display: flex; align-items: center; gap: 10px;
      padding: 13px 20px; border: none; cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18); transition: all 0.2s; text-decoration: none;
      white-space: nowrap;
    }
    .float-call { background: var(--red); color: #fff; }
    .float-call:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,16,46,0.35); }
    .float-chat { background: var(--navy); color: #fff; }
    .float-chat:hover { background: #252b3b; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,31,46,0.35); }
    .float-icon { font-size: 1.1rem; }
    /* chat panel */
    .chat-panel {
      position: fixed; bottom: 130px; right: 28px; z-index: 199;
      width: 320px; background: #fff;
      border: 1px solid var(--border); border-radius: 2px;
      box-shadow: 0 12px 48px rgba(26,31,46,0.18);
      display: none; flex-direction: column; overflow: hidden;
    }
    .chat-panel.open { display: flex; }
    .chat-header {
      background: var(--navy); color: #fff; padding: 16px 18px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .chat-header-info { display: flex; align-items: center; gap: 10px; }
    .chat-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--red); display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #fff; flex-shrink: 0;
    }
    .chat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em; }
    .chat-status { font-size: 0.75rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 5px; margin-top: 1px; }
    .chat-status-dot { width: 7px; height: 7px; background: #4caf50; border-radius: 50%; }
    .chat-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.2rem; line-height: 1; padding: 2px; }
    .chat-close:hover { color: #fff; }
    .chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 140px; background: var(--cream); }
    .chat-bubble {
      background: #fff; border: 1px solid var(--border);
      padding: 10px 14px; font-size: 0.88rem; font-weight: 300; color: var(--text);
      line-height: 1.5; max-width: 88%; border-radius: 0 8px 8px 8px;
    }
    .chat-bubble.agent { background: var(--navy); color: #fff; border: none; border-radius: 8px 8px 8px 0; align-self: flex-start; }
    .chat-footer { padding: 12px 14px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
    .chat-input {
      flex: 1; border: 1.5px solid var(--border); padding: 9px 12px;
      font-family: 'Barlow', sans-serif; font-size: 0.88rem; outline: none;
      transition: border-color 0.18s;
    }
    .chat-input:focus { border-color: var(--navy); }
    .chat-send {
      background: var(--red); color: #fff; border: none; padding: 9px 14px;
      cursor: pointer; font-size: 1rem; transition: background 0.18s;
    }
    .chat-send:hover { background: var(--red-dark); }
    .chat-quick { padding: 0 14px 12px; display: flex; gap: 6px; flex-wrap: wrap; }
    .chat-q {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      border: 1.5px solid var(--border); background: #fff; color: var(--text-mid);
      padding: 5px 10px; cursor: pointer; transition: all 0.15s;
    }
    .chat-q:hover { border-color: var(--red); color: var(--red); }

    /* ── IMPROVED CONTACT FORM ── */
    .contact-form-wrap { display: flex; flex-direction: column; gap: 0; }
    .form-steps { display: flex; gap: 0; margin-bottom: 28px; }
    .form-step-item {
      flex: 1; display: flex; align-items: center; gap: 0;
      position: relative;
    }
    .form-step-item::after {
      content: ''; flex: 1; height: 2px;
      background: var(--border); margin: 0 6px;
    }
    .form-step-item:last-child::after { display: none; }
    .step-circle {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
      color: var(--text-light); background: #fff; flex-shrink: 0;
      transition: all 0.25s; position: relative; z-index: 1;
    }
    .step-circle.active { border-color: var(--red); color: var(--red); }
    .step-circle.done { border-color: var(--red); background: var(--red); color: #fff; }
    .step-circle.done::after { content: '✓'; }
    .step-circle.done .step-num-label { display: none; }
    .step-label {
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-light); position: absolute; top: 38px; left: 50%; transform: translateX(-50%);
      white-space: nowrap; transition: color 0.25s;
    }
    .form-step-item.active .step-label,
    .form-step-item.done .step-label { color: var(--red); }
    .form-page { display: none; flex-direction: column; gap: 14px; }
    .form-page.active { display: flex; }
    .form-page-title {
      font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--navy); margin-bottom: 2px;
    }
    .form-page-sub { font-size: 0.82rem; font-weight: 300; color: var(--text-light); margin-bottom: 6px; }
    .contact-pref { display: flex; gap: 8px; }
    .pref-btn {
      flex: 1; padding: 10px 8px; border: 1.5px solid var(--border);
      background: #fff; cursor: pointer; text-align: center; transition: all 0.18s;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid);
    }
    .pref-btn.active { border-color: var(--red); background: rgba(200,16,46,0.05); color: var(--red); }
    .pref-btn:hover:not(.active) { border-color: var(--navy); }
    .form-nav { display: flex; gap: 10px; margin-top: 6px; }
    .btn-next {
      flex: 1; background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 14px; border: none; cursor: pointer; transition: background 0.18s;
    }
    .btn-next:hover { background: var(--red-dark); }
    .btn-back {
      background: transparent; color: var(--text-mid); border: 1.5px solid var(--border);
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 14px 20px; cursor: pointer; transition: all 0.18s;
    }
    .btn-back:hover { border-color: var(--navy); color: var(--navy); }
    .form-success {
      display: none; flex-direction: column; align-items: center;
      text-align: center; padding: 32px 20px; gap: 14px;
    }
    .form-success.show { display: flex; }
    .success-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(200,16,46,0.08); border: 2px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
    }
    .success-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.06em; color: var(--navy); }
    .success-sub { font-size: 0.92rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; max-width: 300px; }

    /* ── SCROLL ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── BACK TO TOP ── */
    .back-top {
      position: fixed; bottom: 28px; left: 28px; z-index: 200;
      width: 42px; height: 42px; background: var(--navy); color: #fff;
      border: none; cursor: pointer; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: all 0.25s;
      box-shadow: 0 4px 14px rgba(26,31,46,0.25);
    }
    .back-top.show { opacity: 1; pointer-events: auto; }
    .back-top:hover { background: var(--red); transform: translateY(-2px); }
    @media(max-width:900px){
      nav { padding: 0 24px; }
      .nav-links, .nav-phone { display: none; }
      .nav-hamburger { display: flex; }
      .float-btn span.float-label { display: none; }
      .float-btn { padding: 13px 16px; }
      section { padding: 64px 24px; }
      .hero { padding: 96px 24px 72px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .products-header { flex-direction: column; align-items: flex-start; }
      .products-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
      .gallery-item:nth-child(4) { grid-column: span 1; }
      .why-grid { grid-template-columns: 1fr; }
      .financing-grid { grid-template-columns: 1fr; gap: 40px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .step-arrow { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-banner { flex-direction: column; text-align: center; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; }
      #service-areas { padding: 64px 24px; }
      #service-areas > div > div[style*="grid"] { grid-template-columns: 1fr !important; }
      .chat-panel { width: calc(100vw - 56px); right: 28px; }
      .back-top { bottom: 28px; left: 14px; }
      .float-bar { right: 14px; bottom: 14px; }
    }