    /* ----- CONCEPT 1: Midnight Blue + Electric Cyan ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --bg: #08131F;
      --bg-secondary: #11263A;
      --accent: #4FD8FF;
      --accent-dim: rgba(79, 216, 255, 0.12);
      --highlight: #A7F0FF;
      --text: #F5F7FA;
      --text-secondary: #B0C7DD;
      --text-muted: #6A7F96;
      --glass: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(79, 216, 255, 0.08);
      --shadow: 0 20px 40px rgba(0,0,0,0.6);
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    /* ----- TYPOGRAPHIC BACKGROUND LAYER (signature) ----- */
    .bg-words {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
      user-select: none;
    }
    .bg-words .word {
      position: absolute;
      font-weight: 900;
      font-size: clamp(80px, 18vw, 220px);
      letter-spacing: -0.04em;
      color: rgba(79, 216, 255, 0.03);
      white-space: nowrap;
      line-height: 1;
    }
    .bg-words .word.outline {
      -webkit-text-stroke: 1px rgba(79, 216, 255, 0.05);
      color: transparent;
    }
    .bg-words .word.blur {
      filter: blur(8px);
    }
    .bg-words .word.rotate {
      transform: rotate(-90deg) translateX(-30%);
    }

    /* ----- SVG LINE GRAPHICS (thin, architectural) ----- */
    .bg-svg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.08;
    }
    .bg-svg svg {
      width: 100%;
      height: 100%;
    }

    /* ----- SOFT GLOW ORBS ----- */
    .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.12;
    }

    .section {
      position: relative;
      padding: 80px 0;
      border-bottom: 1px solid rgba(79, 216, 255, 0.04);
      overflow: hidden;
      background: var(--bg);
    }
    .section:nth-child(even) {
      background: var(--bg-secondary);
    }

    /* ----- HEADER (glass) ----- */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(8, 19, 31, 0.75);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--glass-border);
      transition: var(--transition);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 2px;
      color: var(--text);
    }
    .logo span { color: var(--accent); }
    .nav-links {
      display: flex;
      gap: 32px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
    }
    .nav-links a {
      color: var(--text-secondary);
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    .header-cta {
      background: var(--accent);
      color: #08131F;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: 40px;
      font-size: 13px;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }
    .header-cta:hover {
      background: var(--highlight);
      transform: scale(1.02);
      box-shadow: 0 0 30px rgba(79,216,255,0.2);
    }
    .mobile-toggle {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      color: var(--text-secondary);
      cursor: pointer;
    }

    /* ----- HERO (big typography background) ----- */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 72px;
      background: var(--bg);
      border-bottom: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 60px 0;
    }
    .hero-badge {
      display: inline-block;
      background: var(--accent-dim);
      border: 1px solid rgba(79,216,255,0.15);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--accent);
      margin-bottom: 24px;
      backdrop-filter: blur(4px);
    }
    .hero h1 {
      font-size: clamp(40px, 8vw, 72px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
    }
    .hero h1 span { color: var(--accent); }
    .hero p {
      font-size: 18px;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 24px 0 40px;
      line-height: 1.7;
    }
    .btn-primary {
      background: var(--accent);
      color: #08131F;
      font-weight: 700;
      padding: 14px 40px;
      border-radius: 40px;
      font-size: 15px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: 0.3px;
    }
    .btn-primary:hover {
      background: var(--highlight);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(79,216,255,0.2);
    }
    .btn-secondary {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.15);
      padding: 14px 40px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: var(--transition);
      backdrop-filter: blur(4px);
    }
    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-dim);
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

    /* ----- STATS ----- */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 32px;
      text-align: center;
    }
    .stat-item h3 {
      font-size: 32px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: -0.5px;
    }
    .stat-item p { color: var(--text-secondary); font-size: 14px; }

    /* ----- SECTION HEADER ----- */
    .section-header { margin-bottom: 48px; }
    .section-header .label {
      color: var(--accent);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }
    .section-header h2 {
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-top: 4px;
    }
    .section-header p {
      color: var(--text-secondary);
      max-width: 540px;
      margin-top: 12px;
    }

    /* ----- CARDS (glass) ----- */
    .glass-card {
      background: var(--glass);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 24px;
      transition: var(--transition);
    }
    .glass-card:hover {
      border-color: rgba(79,216,255,0.2);
      box-shadow: 0 0 30px rgba(79,216,255,0.05);
    }

    /* ----- FEATURES GRID ----- */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
    }
    .feature-item {
      padding: 28px;
      background: var(--glass);
      border-radius: 16px;
      border: 1px solid var(--glass-border);
      transition: var(--transition);
    }
    .feature-item:hover {
      border-color: rgba(79,216,255,0.2);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .feature-item .icon { color: var(--accent); font-size: 28px; margin-bottom: 12px; }
    .feature-item h4 { font-size: 18px; margin-bottom: 6px; }
    .feature-item p { color: var(--text-secondary); font-size: 14px; }

    /* ----- CAR GRID (with images) ----- */
    .car-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .car-card {
      background: rgba(255,255,255,0.02);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      transition: var(--transition);
    }
    .car-card:hover {
      transform: translateY(-8px);
      border-color: rgba(79,216,255,0.2);
      box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    }
    .car-image {
      height: 200px;
      background: #0a1a2a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 13px;
      position: relative;
      overflow: hidden;
    }
    .car-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .car-card:hover .car-image img {
      transform: scale(1.05);
    }
    .car-image .badge {
      position: absolute;
      top: 12px; right: 12px;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 10px;
      color: var(--accent);
      border: 1px solid rgba(79,216,255,0.15);
      letter-spacing: 0.5px;
    }
    .car-details { padding: 20px 20px 24px; }
    .car-details .title { font-size: 18px; font-weight: 700; }
    .car-details .sub { color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }
    .car-details .price { font-size: 24px; font-weight: 700; color: var(--accent); }
    .car-details .finance { color: var(--text-secondary); font-size: 13px; margin-bottom: 12px; }
    .car-specs {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin: 12px 0 16px;
    }
    .car-specs span {
      background: var(--glass);
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 12px;
      color: var(--text-secondary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .car-actions {
      display: flex; gap: 10px; flex-wrap: wrap;
      margin-top: 12px;
    }
    .car-actions button {
      flex: 1; min-width: 80px;
      padding: 10px 12px;
      border-radius: 30px;
      border: none;
      font-weight: 600;
      font-size: 12px;
      cursor: pointer;
      transition: var(--transition);
    }
    .car-actions .btn-outline {
      background: transparent;
      border: 1px solid rgba(79,216,255,0.2);
      color: var(--accent);
    }
    .car-actions .btn-outline:hover {
      background: var(--accent-dim);
      border-color: var(--accent);
    }
    .car-actions .btn-accent {
      background: var(--accent);
      color: #08131F;
    }
    .car-actions .btn-accent:hover { background: var(--highlight); }
    .car-actions .btn-icon {
      flex: 0 0 44px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--text-secondary);
      border-radius: 30px;
      font-size: 16px;
    }
    .car-actions .btn-icon:hover { border-color: var(--accent); color: var(--accent); }

    /* ----- TWO COLUMN LAYOUTS ----- */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* ----- BRAND GRID ----- */
    .brand-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 16px;
    }
    .brand-item {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 20px 12px;
      text-align: center;
      font-weight: 600;
      font-size: 14px;
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .brand-item:hover {
      border-color: var(--accent);
      color: #fff;
      background: var(--accent-dim);
      transform: translateY(-4px);
    }

    /* ----- CHECKLIST ----- */
    .checklist-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
      margin: 16px 0;
    }
    .checklist-grid li {
      list-style: none;
      color: var(--text-secondary);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .checklist-grid li::before {
      content: '✓';
      color: var(--accent);
      font-weight: 700;
    }

    /* ----- TESTIMONIALS ----- */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
    }
    .testimonial-item {
      background: var(--glass);
      padding: 24px;
      border-radius: 16px;
      border: 1px solid var(--glass-border);
    }
    .testimonial-item .stars { color: var(--accent); margin-bottom: 8px; }
    .testimonial-item p { font-style: italic; color: var(--text-secondary); font-size: 14px; }
    .testimonial-item .author { margin-top: 12px; font-weight: 600; font-size: 14px; }

    /* ----- INSIGHTS / FAQ / PARTNERS ----- */
    .insight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
    }
    .insight-item {
      background: var(--glass);
      padding: 24px;
      border-radius: 16px;
      border: 1px solid var(--glass-border);
    }
    .insight-item h4 { font-size: 18px; margin-bottom: 6px; }
    .insight-item p { color: var(--text-secondary); font-size: 14px; }
    .insight-item a { color: var(--accent); font-weight: 600; font-size: 14px; display: inline-block; margin-top: 8px; }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 40px;
    }
    .faq-item h4 { font-size: 16px; color: var(--accent); margin-bottom: 2px; }
    .faq-item p { color: var(--text-secondary); font-size: 14px; }

    .partner-logos {
      display: flex; flex-wrap: wrap; gap: 24px;
      justify-content: center; margin: 24px 0;
    }
    .partner-logos span {
      background: var(--glass);
      padding: 16px 28px;
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      color: var(--text-muted);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
    }

    /* ----- CONTACT ----- */
    .contact-info p { color: var(--text-secondary); margin: 8px 0; }
    .contact-info i { color: var(--accent); width: 24px; }

    /* ----- FOOTER ----- */
    .footer {
      background: #050e18;
      padding: 60px 0 30px;
      border-top: 1px solid var(--glass-border);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #fff; }
    .footer p, .footer a {
      color: var(--text-secondary);
      font-size: 14px;
      display: block;
      margin-bottom: 6px;
    }
    .footer a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding-top: 24px;
      text-align: center;
      color: var(--text-muted);
      font-size: 13px;
    }

    /* ----- RESPONSIVE ----- */
    @media (max-width: 992px) {
      .two-col { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .header-cta { display: none; }
      .mobile-toggle { display: block; }
      .checklist-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 36px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .car-grid { grid-template-columns: 1fr; }
      .brand-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ----- UTILITY ----- */
    .mt-16 { margin-top: 16px; }
    .mb-12 { margin-bottom: 12px; }
    .text-accent { color: var(--accent); }
    .text-secondary { color: var(--text-secondary); }
    .btn-block {
      width: 100%;
      padding: 14px;
      border-radius: 40px;
      border: none;
      background: var(--accent);
      color: #08131F;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-block:hover {
      background: var(--highlight);
      box-shadow: 0 8px 30px rgba(79,216,255,0.15);
    }
    input, select, textarea {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      padding: 14px 16px;
      border-radius: 12px;
      color: #fff;
      font-size: 14px;
      outline: none;
      transition: var(--transition);
      width: 100%;
      font-family: inherit;
    }
    input:focus, select:focus, textarea:focus {
      border-color: var(--accent);
      background: rgba(79,216,255,0.04);
    }
    input::placeholder, textarea::placeholder { color: var(--text-muted); }
    select option { background: #0a1a2a; }
    .gold-separator {
      width: 40px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      margin: 8px 0 16px;
    }