
    :root {
      --mv-red: #B91C1C;
      --void: #0a0a0a;
      --cream: #F5F5F5;
    }
    .bg-void { background-color: var(--void); }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: auto; }
    
    body {
      background: var(--void);
      color: var(--cream);
      font-family: 'Montserrat', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }
    
    body.lang-th { font-family: 'Kanit', sans-serif; }
    body.lang-th .font-display { font-family: 'Kanit', sans-serif; }
    
    @media (pointer: coarse) {
      body { cursor: auto; }
    }
    
    /* Preloader */
    #preloader {
      position: fixed;
      inset: 0;
      background: #000;
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .preloader-logo { opacity: 0; transform: scale(0.9); }
    .preloader-bar { width: 120px; height: 1px; background: rgba(255,255,255,0.1); overflow: hidden; }
    .preloader-bar-inner { width: 0%; height: 100%; background: var(--mv-red); }
    
    /* WebGL Canvas */
    #webgl-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
    }
    
    /* Grain */
    .grain {
      position: fixed;
      inset: 0;
      z-index: 9998;
      opacity: 0.025;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    
    /* Floating particles */
    .particle {
      position: fixed;
      border-radius: 50%;
      background: var(--mv-red);
      pointer-events: none;
      z-index: 2;
      filter: blur(1px);
      opacity: 0;
    }
    
    /* Cursor */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--mv-red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
      mix-blend-mode: difference;
    }
    .cursor.hover { width: 48px; height: 48px; background: rgba(185, 28, 28, 0.3); }
    @media (pointer: coarse) { .cursor { display: none; } }
    
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: var(--mv-red);
      z-index: 10001;
      transform-origin: left;
      transform: scaleX(0);
    }
    
    .font-display { font-family: 'Cormorant Garamond', serif; }
    body.lang-th .font-display { font-family: 'Kanit', sans-serif; }
    
    /* BIGGER TYPOGRAPHY */
    .display-massive {
      font-size: clamp(3.2rem, 14vw, 13rem);
      line-height: 0.88;
      letter-spacing: -0.02em;
      font-weight: 300;
    }
    body.lang-th .display-massive {
      font-size: clamp(2.8rem, 12vw, 11rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      font-weight: 400;
    }
    
    .display-large {
      font-size: clamp(2.2rem, 7.5vw, 5.8rem);
      line-height: 0.95;
      letter-spacing: -0.01em;
      font-weight: 300;
    }
    body.lang-th .display-large {
      font-size: clamp(2rem, 6.5vw, 5rem);
      line-height: 1.08;
      letter-spacing: 0.01em;
      font-weight: 400;
    }
    
    .display-med {
      font-size: clamp(1.6rem, 4vw, 3rem);
      line-height: 1;
      font-weight: 300;
    }
    body.lang-th .display-med {
      font-size: clamp(1.4rem, 3.5vw, 2.6rem);
      line-height: 1.1;
      font-weight: 400;
    }
    
    .eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--mv-red);
      font-weight: 500;
    }
    body.lang-th .eyebrow { font-size: 0.8rem; letter-spacing: 0.18em; }
    
    /* Logo */
    .logo {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      text-decoration: none;
      color: #fff;
    }
    .logo-svg {
      height: 28px;
      width: auto;
      display: block;
    }
    .preloader-logo .logo-svg { height: 40px; }
    
    /* Nav */
    .nav-pill {
      position: fixed;
      top: 1.25rem;
      right: 1.25rem;
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      opacity: 0;
      transform: translateY(-12px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .nav-pill.visible { opacity: 1; transform: translateY(0); }
    .nav-links { display: flex; gap: 1.5rem; }
    .nav-link {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .nav-link:hover { color: #fff; }
    .lang-toggle {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      padding: 0.4rem 0.8rem;
      cursor: none;
      transition: all 0.25s ease;
    }
    .lang-toggle:hover { border-color: var(--mv-red); color: #fff; }
    .mobile-menu-btn {
      display: none;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: transparent;
      border: none;
      cursor: none;
    }
    .mobile-menu-btn span { display: block; width: 18px; height: 1px; background: #fff; }
    @media (max-width: 1024px) { .nav-links { display: none; } .mobile-menu-btn { display: flex; } .nav-pill { gap: 0.75rem; } }
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.98);
      z-index: 99;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; color: #fff; text-decoration: none; opacity: 0.6; transition: opacity 0.25s; }
    body.lang-th .mobile-menu a { font-family: 'Kanit', sans-serif; font-size: 1.3rem; }
    .mobile-menu a:hover { opacity: 1; }
    .mobile-menu-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 40px; height: 40px; background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: none; }
    
    /* CTA */
    .cta-line {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: #fff;
      padding: 0.7rem 0;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      background: transparent;
      position: relative;
      cursor: none;
      text-decoration: none;
    }
    body.lang-th .cta-line { font-size: 0.85rem; letter-spacing: 0.06em; }
    .cta-line::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--mv-red);
    }
    
    /* Sections */
    .section-pinned {
      position: relative;
      width: 100%;
      height: 160vh;
    }
    .section-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    
    /* Horizontal scroll fleet */
    .fleet-wrapper {
      height: 100vh;
      position: relative;
      background: var(--void);
    }
    .fleet-sticky {
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .fleet-track {
      display: flex;
      gap: 6vw;
      padding: 0 10vw;
      will-change: transform;
    }
    .fleet-card {
      flex-shrink: 0;
      width: 32vw;
      max-width: 400px;
      min-width: 280px;
      opacity: 0.6;
      transform: scale(0.92);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fleet-card.active { opacity: 1; transform: scale(1); }
    .fleet-img-wrap { overflow: hidden; position: relative; border-radius: 2px; }
    .fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
    .fleet-card:hover .fleet-img-wrap img { transform: scale(1.08); }
    
    /* Why cards */
    .why-card {
      position: sticky;
      top: 8vh;
      margin-bottom: 4vh;
      background: #242424;
      border: 1px solid rgba(255,255,255,0.22);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    }
    .why-img-wrap { position: relative; overflow: hidden; }
    .why-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.05) 0%, transparent 80%);
    }
    .why-card:nth-child(even) .why-img-wrap::after {
      background: linear-gradient(to left, rgba(0,0,0,0.05) 0%, transparent 80%);
    }
    
    /* Partners */
    .logo-marquee-track { display: flex; align-items: center; white-space: nowrap; }
    .logo-marquee-track.marquee-forward { animation: marquee-fwd 22s linear infinite; }
    .partner-logo-item { transition: transform 0.3s ease; }
    .partner-logo-item:hover { transform: scale(1.06); }
    .partner-logo-box { height: 80px; width: 150px; display: flex; align-items: center; justify-content: center; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); }
    @media (min-width: 768px) { .partner-logo-box { height: 96px; width: 190px; } }
    
    .text-marquee-track { display: flex; white-space: nowrap; }
    .text-marquee-track.marquee-reverse { animation: marquee-rev 20s linear infinite; }
    
    @keyframes marquee-fwd { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    @keyframes marquee-rev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
    
    /* Pricing */
    .price-row { border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.3s ease; }
    .price-row:hover { background: rgba(255,255,255,0.02); padding-left: 0.75rem; padding-right: 0.75rem; }
    
    /* Services */
    .service-item { transition: all 0.35s ease; }
    .service-item:hover { background: rgba(255,255,255,0.02); padding-left: 1.25rem; }
    .service-icon { transition: transform 0.4s ease; }
    .service-item:hover .service-icon { transform: rotate(360deg) scale(1.08); }
    
    /* Form */
    .form-input { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.8rem 1rem; color: #fff; width: 100%; font-size: 0.95rem; outline: none; transition: border-color 0.25s ease, background 0.25s ease; }
    .form-input:focus { border-color: var(--mv-red); background: rgba(255,255,255,0.06); }
    .form-input::placeholder { color: rgba(255,255,255,0.45); }
    .form-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; display: block; }
    
    /* Utility */
    .text-shadow-soft { text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
    
    /* Floating badge */
    .float-badge {
      animation: float-badge 5s ease-in-out infinite;
    }
    @keyframes float-badge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    /* Split char */
    .split-char span { display: inline-block; }
    
    /* FAQ */
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .faq-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; text-align: left; background: transparent; border: none; color: #fff; cursor: none; }
    .faq-toggle svg { flex-shrink: 0; transition: transform 0.3s ease; }
    .faq-toggle[aria-expanded="true"] svg { transform: rotate(45deg); }
    .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
    .faq-content.open { max-height: 300px; padding-bottom: 1.25rem; }
    
    /* Testimonials */
    .testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.75rem; transition: transform 0.3s ease, background 0.3s ease; }
    .testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
    
    /* Coverage */
    .coverage-left { opacity: 0; transform: translateX(-20px); }
    .coverage-right { opacity: 0; transform: translateX(20px); }
    .coverage-route { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.25s ease, padding 0.25s ease; }
    .coverage-route:hover { background: rgba(255,255,255,0.02); padding-left: 0.5rem; padding-right: 0.5rem; }
    
    /* Speed Dial */
    .speed-dial-wrap { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
    .speed-dial-btn { width: 56px; height: 56px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: none; background: var(--mv-red); color: #fff; box-shadow: 0 6px 24px rgba(185,28,28,0.35); transition: transform 0.25s ease, background 0.25s ease; }
    .speed-dial-btn:hover { transform: scale(1.05); }
    .speed-dial-items { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; opacity: 0; pointer-events: none; transform: translateY(12px); transition: all 0.3s ease; }
    .speed-dial-wrap.open .speed-dial-items { opacity: 1; pointer-events: all; transform: translateY(0); }
    .speed-dial-item { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .speed-dial-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s ease; }
    .speed-dial-item:hover .speed-dial-icon { transform: scale(1.08); }
    .speed-dial-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.6); padding: 0.25rem 0.6rem; border-radius: 4px; backdrop-filter: blur(4px); }
    
    /* Back to top */
    .back-to-top { position: fixed; bottom: 1.5rem; right: 5.5rem; z-index: 199; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.5); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transform: translateY(12px); transition: all 0.3s ease; cursor: none; backdrop-filter: blur(4px); }
    .back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
    .back-to-top:hover { border-color: var(--mv-red); background: rgba(185,28,28,0.15); }
    @media (max-width: 640px) { .back-to-top { right: 5rem; bottom: 1.25rem; width: 40px; height: 40px; } .speed-dial-btn { width: 52px; height: 52px; } }

