/** Shopify CDN: Minification failed

Line 245:4 Unexpected "}"

**/

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

    :root {
      --black: #080808;
      --dark: #0f0f0f;
      --card: #181818;
      --border: #2a2a2a;
      --red: #D42B2B;
      --red-bright: #FF3333;
      --red-dim: rgba(212,43,43,0.15);
      --grey: #3A3A3A;
      --grey-light: #555555;
      --white: #F5F5F0;
      --muted: #888888;
      
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1000; opacity: 0.4;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 72px;
      height: 72px;
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex; flex-direction: column; gap: 0;
      text-decoration: none;
    }
    .nav-logo-top {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 0.08em;
      color: var(--white);
      line-height: 1;
    }
    .nav-logo-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
    }

    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #999999;
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      background: var(--red);
      color: var(--black) !important;
      padding: 10px 22px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .nav-cta:hover { background: var(--red-bright); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 120px 72px 80px;
    }

    .hero-bg { position: absolute; inset: 0; z-index: 0; }

    /* Animated grid lines */
    .hero-grid {
      position: absolute; inset: 0; z-index: 1;
      background-image:
        linear-gradient(rgba(212,43,43,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,43,43,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 80%);
      animation: gridPulse 8s ease-in-out infinite;
    }
    @keyframes gridPulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    /* Car silhouette lines */
    .hero-accent {
      position: absolute; right: -5%; top: 50%;
      transform: translateY(-50%);
      width: 55%; height: 65%;
      z-index: 2;
    }

    .hero-content { position: relative; z-index: 3; max-width: 640px; }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 28px;
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow-line {
      width: 40px; height: 1px; background: var(--red);
    }
    .hero-eyebrow-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 10vw, 128px);
      line-height: 0.92;
      letter-spacing: 0.01em;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--red);
      display: block;
    }

    .hero-sub {
      margin-top: 28px;
      font-size: 16px;
      font-weight: 300;
      color: #999999;
      max-width: 420px;
      line-height: 1.7;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions {
      margin-top: 44px;
      display: flex; gap: 16px; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--red);
      color: var(--black);
      padding: 16px 36px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }
    .btn-primary svg { width: 16px; height: 16px; }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--white);
      padding: 16px 36px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .btn-outline:hover {
      border-color: var(--red);
      background: var(--red-dim);
      transform: translateY(-2px);
    }

    .hero-stats {
      margin-top: 64px;
      display: flex; gap: 48px; flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      animation: fadeUp 0.8s 0.4s ease both;
    }
    .hero-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      color: var(--red);
      line-height: 1;
    }
    .hero-stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #999999;
      margin-top: 4px;
    }

    /* Car SVG illustration */
      to { transform: translateY(-50%) translateX(0); opacity: 0.85; }
    }

    /* ─── SECTION COMMONS ─── */
    section { padding: 100px 72px; }
    .section-label {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 16px;
    }
    .section-label-line { width: 32px; height: 1px; background: var(--red); }
    .section-label-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 72px);
      line-height: 1;
      letter-spacing: 0.02em;
    }

    /* ─── SERVICES ─── */
    #services { background: var(--dark); }
    .services-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 56px; flex-wrap: wrap; gap: 24px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }

    .service-card {
      position: relative; overflow: hidden;
      background: var(--card);
      aspect-ratio: 4/3;
      cursor: pointer;
      min-height: 380px;
    }

    .service-card-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.4s ease;
      filter: brightness(0.55) saturate(0.8);
    }
    .service-card:hover .service-card-img {
      transform: scale(1.06);
      filter: brightness(0.45) saturate(0.6);
    }

    .service-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
    }

    .service-card-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 36px 32px;
    }
    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 0.3em;
      color: var(--red);
      margin-bottom: 8px;
    }
    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 0.04em;
      line-height: 1;
      margin-bottom: 10px;
    }
    .service-desc {
      font-size: 13px;
      font-weight: 300;
      color: #999999;
      line-height: 1.6;
      max-width: 320px;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 14px; }

    /* Gold accent border on hover */
    .service-card::after {
      content: '';
      position: absolute; inset: 0;
      border: 1px solid transparent;
      transition: border-color 0.3s;
      pointer-events: none;
    }
    .service-card:hover::after { border-color: var(--red); }

    /* ─── WHY US / FEATURES ─── */
    #why {
      background: var(--black);
      position: relative; overflow: hidden;
    }
    #why::before {
      content: 'DETAILS';
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28vw;
      color: rgba(212,43,43,0.04);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
    }
    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why-left {}
    .why-desc {
      margin-top: 24px;
      font-size: 16px;
      color: #999999;
      max-width: 440px;
      line-height: 1.8;
    }
    .why-phone {
      margin-top: 40px;
      display: flex; align-items: center; gap: 16px;
    }
    .why-phone-icon {
      width: 52px; height: 52px;
      background: var(--red-dim);
      border: 1px solid rgba(212,43,43,0.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .why-phone-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #999999;
    }
    .why-phone-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 0.05em;
      color: var(--red);
      text-decoration: none;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
    }
    .feature {
      background: var(--card);
      padding: 36px 32px;
      transition: background 0.2s;
    }
    .feature:hover { background: #1a1a1a; }
    .feature-icon {
      width: 44px; height: 44px;
      background: var(--red-dim);
      border: 1px solid rgba(212,43,43,0.25);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .feature-icon svg { width: 20px; height: 20px; color: var(--red); }
    .feature-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .feature-text {
      font-size: 13px;
      color: #999999;
      line-height: 1.7;
    }

    /* ─── PROCESS ─── */
    #process { background: var(--dark); }
    .process-steps {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red), var(--red), var(--red), transparent);
      opacity: 0.3;
    }
    .step {
      padding: 0 24px;
      text-align: center;
    }
    .step-num {
      width: 56px; height: 56px;
      background: var(--card);
      border: 1px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 28px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      color: var(--red);
      position: relative; z-index: 1;
    }
    .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .step-text {
      font-size: 13px;
      color: #999999;
      line-height: 1.7;
    }

    /* ─── FAQ ─── */
    #faq { background: var(--black); }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      margin-top: 16px;
    }
    .faq-side {}
    .faq-side-text {
      font-size: 15px;
      color: #999999;
      line-height: 1.8;
      margin-top: 20px;
    }
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 0;
      cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px;
      font-weight: 500;
      letter-spacing: 0.04em;
      user-select: none;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--red); }
    .faq-icon {
      width: 28px; height: 28px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s, transform 0.3s;
      font-size: 18px; color: var(--red);
    }
    .faq-item.open .faq-icon {
      background: var(--red-dim);
      border-color: var(--red);
      transform: rotate(45deg);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      font-size: 14px;
      color: #999999;
      line-height: 1.8;
    }
    .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 24px;
    }

    /* ─── QUOTE FORM ─── */
    #quote {
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    #quote::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red), transparent);
    }
    .quote-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .quote-left {}
    .quote-desc {
      margin-top: 20px;
      font-size: 15px;
      color: #999999;
      line-height: 1.8;
      max-width: 380px;
    }
    .quote-contact-items {
      margin-top: 44px;
      display: flex; flex-direction: column; gap: 20px;
    }
    .quote-contact-item {
      display: flex; align-items: center; gap: 16px;
    }
    .qci-icon {
      width: 40px; height: 40px;
      background: var(--red-dim);
      border: 1px solid rgba(212,43,43,0.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .qci-icon svg { width: 16px; height: 16px; color: var(--red); }
    .qci-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #999999;
    }
    .qci-value {
      font-size: 15px;
      font-weight: 400;
      color: var(--white);
      text-decoration: none;
    }
    .qci-value:hover { color: var(--red); }

    .quote-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #999999;
    }
    .form-input, .form-select, .form-textarea {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px 18px;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(136,136,128,0.5); }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--red);
    }
    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      cursor: pointer;
    }
    .form-select option { background: var(--card); }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--red);
      color: var(--black);
      border: none; cursor: pointer;
      padding: 18px 40px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: background 0.2s, transform 0.2s;
      margin-top: 8px;
      align-self: flex-start;
    }
    .form-submit:hover { background: var(--red-bright); transform: translateY(-2px); }

    /* ─── AREAS ─── */
    #areas { background: var(--black); text-align: center; }
    .areas-desc {
      margin: 16px auto 48px;
      max-width: 500px;
      font-size: 15px;
      color: #999999;
      line-height: 1.8;
    }
    .areas-chips {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
    }
    .area-chip {
      border: 1px solid var(--border);
      padding: 10px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #999999;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .area-chip:hover, .area-chip.primary {
      border-color: var(--red);
      color: var(--red);
      background: var(--red-dim);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: 64px 72px 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-brand {}
    .footer-logo-top {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 0.08em;
      line-height: 1;
    }
    .footer-logo-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 14px;
      color: #999999;
      line-height: 1.7;
      max-width: 260px;
    }
    .footer-social {
      display: flex; gap: 12px; margin-top: 24px;
    }
    .footer-social a {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: #999999;
      text-decoration: none;
      font-size: 14px;
      transition: border-color 0.2s, color 0.2s;
    }
    .footer-social a:hover { border-color: var(--red); color: var(--red); }

    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 13px;
      color: #999999;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--red); }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-size: 12px; color: #999999;
    }
    .footer-copy span { color: var(--red); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── MOBILE MENU ─── */
    .hamburger {
      display: none;
      flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: var(--white);
      transition: transform 0.3s;
    }


    /* ─── TESTIMONIALS ─── */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .review-card {
      background: var(--card);
      padding: 36px 32px;
      display: flex; flex-direction: column; gap: 20px;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s, background 0.2s;
    }
    .review-card:hover {
      background: #1c1c1c;
      border-bottom-color: var(--red);
    }
    .review-stars {
      color: var(--red);
      font-size: 16px;
      letter-spacing: 2px;
    }
    .review-text {
      font-size: 14px;
      color: #aaaaaa;
      line-height: 1.8;
      font-style: italic;
      flex: 1;
    }
    .review-author {
      display: flex; align-items: center; gap: 14px;
      margin-top: 8px;
    }
    .review-avatar {
      width: 40px; height: 40px;
      background: var(--red-dim);
      border: 1px solid rgba(212,43,43,0.3);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--red);
      flex-shrink: 0;
    }
    .review-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .review-location {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
    }
    @media (max-width: 1024px) {
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .reviews-grid { grid-template-columns: 1fr; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-layout, .quote-layout { grid-template-columns: 1fr; gap: 48px; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process-steps::before { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 72px 24px; }
      .hero { padding: 100px 24px 64px; }
      .services-grid { grid-template-columns: 1fr; }

      .features-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 48px 24px 24px; }
    }
  