    /* ── TOKENS ── */
    :root {
      --bg:           #FFF5F5;
      --bg-alt:       #FFE0E0;
      --surface:      #FFFAFA;
      --surface-2:    #FFFFFF;
      --accent:       #ff5c5c;
      --accent-mid:   #ff7979;
      --accent-light: #ffb3b3;
      --accent-ghost: rgba(255,92,92,0.08);
      --accent-border:rgba(255,92,92,0.15);
      --text-1:       #1A1A1A;
      --text-2:       #4D4D4D;
      --text-3:       #808080;
      --border:       rgba(26,26,26,0.08);
      --shadow-sm:    0 2px 12px rgba(255,92,92,0.06);
      --shadow-md:    0 8px 32px rgba(255,92,92,0.10);
      --shadow-lg:    0 24px 64px rgba(255,92,92,0.13);
      --silk:         cubic-bezier(0.16, 1, 0.3, 1);
      --silk-dur:     0.8s;
      --radius:       16px;
      --radius-lg:    24px;
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-1);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

    /* ── UTILITY ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent);
      background: var(--accent-ghost);
      border: 1px solid var(--accent-border);
      padding: 6px 14px; border-radius: 100px;
      margin-bottom: 20px;
    }
    .section-label::before {
      content: ''; width: 6px; height: 6px;
      background: var(--accent); border-radius: 50%;
    }
    .section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; letter-spacing: -0.03em;
      line-height: 1.15; color: var(--text-1);
    }
    .section-title em {
      font-style: italic;
      font-family: 'Playfair Display', serif;
      color: var(--accent);
    }
    .section-sub {
      font-size: 1.0625rem; line-height: 1.75;
      color: var(--text-2); max-width: 520px; margin-top: 16px;
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--silk), transform 0.7s var(--silk); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════════════
       1. NAV
    ══════════════════════════════════════════ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 20px 0;
      transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    .nav.scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1160px; margin: 0 auto; padding: 0 32px;
    }
    .nav-logo {
      display: flex; align-items: center;
      height: 60px;
    }
    .nav-logo-img {
      height: 100%; width: auto;
    }
    .nav-links-desktop {
      display: flex; align-items: center; gap: 36px;
    }
    .nav-link {
      font-size: 0.9rem; font-weight: 500; color: #374151;
      position: relative; padding: 7px 16px; border-radius: 100px;
      background: transparent;
      box-shadow: inset 0 0 0 0px transparent;
      transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    .nav-link:hover {
      color: #ff5c5c;
      background: rgba(255, 92, 92, 0.1);
      box-shadow: inset 0 0 0 1px rgba(255, 92, 92, 0.2);
    }
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 28px; padding: 4px; cursor: pointer;
      background: transparent; border: none;
    }
    .nav-hamburger span {
      display: block; height: 2px; background: #374151;
      border-radius: 2px; transition: all 0.4s ease;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 999;
      background: white;
      display: flex; flex-direction: column; align-items: center;
      justify-content: flex-start;
      gap: 0;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
      overflow-y: auto;
      padding: 100px 32px 100px;
    }
    .mobile-menu.open {
      opacity: 1; pointer-events: all;
    }
    .mobile-menu-inner {
      width: 100%; max-width: 480px;
    }
    .mobile-menu-close {
      display: flex; flex-direction: column; gap: 5px;
      width: 28px; padding: 4px; cursor: pointer;
      background: transparent; border: none;
      margin-bottom: 32px;
      align-self: flex-end;
    }
    .mobile-menu-close span {
      display: block; height: 2px; background: #374151;
      border-radius: 2px; transition: all 0.4s ease;
    }
    .mobile-menu-close span:nth-child(1) { transform: rotate(45deg); }
    .mobile-menu-close span:nth-child(2) { transform: rotate(-45deg); }
    .mobile-menu-links {
      margin-bottom: 48px;
    }
    .mobile-menu-link {
      display: block; font-size: 1.1rem; font-weight: 600;
      color: #111827; padding: 14px 0; width: 100%; text-align: left;
      border-bottom: 1px solid #e5e7eb;
      transition: color 0.3s ease;
    }
    .mobile-menu-link:first-child { border-top: 1px solid #e5e7eb; }
    .mobile-menu-link:hover { color: #ff5c5c; }
    .mobile-menu-cta {
      background: #fff;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    .mobile-menu-cta-content h3 {
      font-size: 1.25rem; font-weight: 700; color: #111827;
      margin-bottom: 12px;
    }
    .mobile-menu-cta-content p {
      font-size: 0.875rem; color: #6b7280;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .mobile-menu-cta-contact {
      display: flex; align-items: center; gap: 12px;
    }
    .contact-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255, 92, 92, 0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem;
    }
    .contact-text {
      flex: 1;
    }
    .contact-title {
      font-size: 0.875rem; font-weight: 600; color: #111827;
    }
    .contact-subtitle {
      font-size: 0.75rem; color: #6b7280;
    }
    @media (max-width: 768px) {
      .nav-links-desktop {
        display: none;
      }
      .nav-hamburger {
        display: flex;
      }
    }
    @media (min-width: 769px) {
      .mobile-menu {
        display: none;
      }
    }

    /* ══════════════════════════════════════════
       2. HERO — with bottom curve + scroll button
    ══════════════════════════════════════════ */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: clamp(8rem, 15vh, 10rem);
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      text-align: center;
    }
    .hero-content h1 {
      font-size: clamp(3rem, 7vw, 7rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: white;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero-content h1 span {
      color: #ff5c5c;
      display: block;
      font-size: 0.9em;
      margin-top: 0.5rem;
      letter-spacing: -0.02em;
    }
    .hero-subtitle {
      font-size: clamp(1.125rem, 2.5vw, 1.25rem);
      font-weight: 400;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
      text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    }
    .hero-description {
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 1.6;
      color: rgba(255,255,255,0.8);
      max-width: 680px;
      margin: 0 auto;
      text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    /* ── Hero Bottom: Curve + Scroll Button ── */
    .hero-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 120px;
      z-index: 20;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
    .hero-bottom svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    .hero-scroll-btn {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 80px;
      background-color: #ff5c5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(255,92,92,0.45);
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 30;
      border: none;
      outline: none;
      animation: heroFloat 3s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }
    .hero-scroll-btn:hover {
      background-color: #ff4a4a;
      box-shadow: 0 14px 36px rgba(255,92,92,0.55);
      transform: translateX(-50%) scale(1.05);
    }
    .hero-scroll-btn svg {
      position: static;
      width: 24px;
      height: 24px;
    }

    @media (max-width: 768px) {
      .hero-scroll-btn {
        width: 64px;
        height: 64px;
        bottom: 20px;
      }
      .hero-scroll-btn svg {
        width: 20px;
        height: 20px;
      }
      .hero-bottom {
        height: 96px;
      }
    }

    /* ══════════════════════════════════════════
       3. ABOUT US — clean, no curves
    ══════════════════════════════════════════ */
    .about-section {
      position: relative;
      padding: 80px 0 96px;
      background: white;
      overflow: hidden;
    }
    .about-background {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .about-bg-pattern {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.05;
    }
    .about-container {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
    }
    .about-header {
      text-align: center;
      margin-bottom: 16px;
    }
    .about-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ff5c5c;
      background: rgba(255, 92, 92, 0.1);
      border: 1px solid rgba(255, 92, 92, 0.2);
      border-radius: 100px;
    }
    .about-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: #111827;
      text-align: center;
      margin-bottom: 64px;
    }
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-images {
      position: relative;
    }
    .about-main-image {
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: 16px;
      overflow: hidden;
    }
    .about-main-image .main-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-secondary-image {
      position: absolute;
      bottom: -32px;
      right: -32px;
      width: 50%;
      aspect-ratio: 3 / 4;
      border-radius: 16px;
      overflow: hidden;
      border: 4px solid #ff5c5c;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      z-index: 2;
    }
    .about-secondary-image .secondary-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-text {
      position: relative;
    }
    .about-text-container {
      background: #f9fafb;
      border-radius: 24px;
      padding: 48px;
      border: 1px solid #e5e7eb;
    }
    .about-text-container p {
      font-size: 1.125rem;
      line-height: 1.75;
      color: #374151;
      margin-bottom: 24px;
    }
    .about-text-container p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 1024px) {
      .about-content {
        grid-template-columns: 1fr;
        gap: 80px;
      }
      .about-secondary-image {
        bottom: -24px;
        right: -16px;
        width: 45%;
      }
    }
    @media (max-width: 768px) {
      .about-container {
        padding: 0 20px;
      }
      .about-text-container {
        padding: 32px 24px;
      }
      .about-text-container p {
        font-size: 1rem;
      }
    }
    @media (max-width: 480px) {
      .about-secondary-image {
        bottom: -16px;
        right: -8px;
        width: 42%;
        border-width: 3px;
      }
    }

    /* ══════════════════════════════════════════
       4. HOW IT WORKS
    ══════════════════════════════════════════ */
    .how-it-works-section {
      position: relative;
      padding: 80px 0 96px;
      background: #f9fafb;
      overflow: hidden;
    }
    .how-it-works-container {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 32px;
      border-radius: 24px;
      border: 1px solid #e5e7eb;
    }
    .how-it-works-header {
      text-align: center;
      margin-bottom: 16px;
    }
    .how-it-works-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 14px;
      font-weight: 500;
      color: #ff5c5c;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      border: 1px solid rgba(255, 92, 92, 0.2);
    }
    .how-it-works-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: #111827;
      text-align: center;
      margin-bottom: 16px;
    }
    .how-it-works-subtitle {
      font-size: 1.125rem;
      color: #6b7280;
      text-align: center;
      margin-bottom: 48px;
    }
    .how-it-works-steps {
      background: #ff5c5c;
      border-radius: 24px;
      padding: 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .how-it-works-step {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .how-it-works-step:hover {
      transform: translateY(-20px);
    }
    .step-content {
      position: relative;
      z-index: 2;
      background: white;
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease;
    }
    .how-it-works-step:hover .step-content {
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    .step-number {
      font-size: 2rem;
      font-weight: 700;
      color: #ff5c5c;
      margin-bottom: 16px;
    }
    .step-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 16px;
    }
    .step-description {
      font-size: 0.875rem;
      color: #4b5563;
      line-height: 1.6;
    }
    .step-hover-image {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 16px;
      overflow: hidden;
    }
    .step-hover-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .how-it-works-step:hover .step-hover-image {
      opacity: 1;
    }

    @media (max-width: 1024px) {
      .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 640px) {
      .how-it-works-steps {
        grid-template-columns: 1fr;
      }
      .how-it-works-container {
        padding: 16px;
      }
      .how-it-works-steps {
        padding: 24px;
      }
    }

    /* ══════════════════════════════════════════
       5. CALL TO ACTION BANNER
    ══════════════════════════════════════════ */
    .cta-banner-section {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
    }
    .cta-banner-background {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .cta-banner-bg-image {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .cta-banner-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .cta-banner-content {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
    }
    .cta-banner-inner {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 48px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .cta-banner-title {
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 700;
      color: white;
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .cta-banner-body {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .cta-banner-closing {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      font-weight: 500;
    }
    .cta-banner-points {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .cta-banner-points-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
      margin-bottom: 24px;
    }
    .cta-banner-point {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .cta-banner-point:last-child {
      margin-bottom: 0;
    }
    .cta-banner-point-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: #ff5c5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin-top: 2px;
    }
    .cta-banner-point-text h4 {
      font-size: 1.125rem;
      font-weight: 600;
      color: white;
      margin-bottom: 4px;
    }
    .cta-banner-point-text p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
    }

    @media (max-width: 1024px) {
      .cta-banner-inner {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 640px) {
      .cta-banner-inner {
        padding: 24px;
      }
    }

    /* ══════════════════════════════════════════
       6. TEAMS
    ══════════════════════════════════════════ */
    .teams-section {
      position: relative;
      padding: 80px 0 96px;
      overflow: hidden;
    }
    .teams-container {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
    }
    .teams-header {
      text-align: center;
      margin-bottom: 16px;
    }
    .teams-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ff5c5c;
      background: rgba(255, 92, 92, 0.1);
      border: 1px solid rgba(255, 92, 92, 0.2);
      border-radius: 100px;
    }
    .teams-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: #111827;
      text-align: center;
      margin-bottom: 64px;
    }
    .teams-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }
    .team-card {
      flex-shrink: 0;
      width: 320px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
      padding: 24px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    .team-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 0.875rem;
      font-weight: 600;
      color: #ff5c5c;
      margin-bottom: 12px;
    }
    .team-description {
      font-size: 0.875rem;
      color: #6b7280;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .teams-grid {
        gap: 16px;
      }
      .team-card {
        width: calc(50% - 8px);
      }
    }
    @media (max-width: 480px) {
      .team-card {
        width: 100%;
      }
    }

    /* ══════════════════════════════════════════
       7. LOGO TICKER
    ══════════════════════════════════════════ */
    .logo-ticker-section {
      padding: 96px 0 48px;
      background: #f5f5f5;
    }
    .logo-ticker-container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .logo-ticker-title {
      text-align: center;
      font-size: 1.125rem;
      font-weight: 500;
      color: #6b7280;
      margin-bottom: 32px;
    }
    .logo-ticker-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 32px;
      align-items: center;
    }
    .logo-ticker-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
    }
    .logo-ticker-item:hover {
      filter: grayscale(0%);
      opacity: 1;
    }
    .logo-ticker-item img {
      max-width: 120px;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .logo-ticker-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
    }
    @media (max-width: 480px) {
      .logo-ticker-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ══════════════════════════════════════════
       8. CUSTOMERS (Find My Car Form)
    ══════════════════════════════════════════ */
    .customers-section {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
    }
    .customers-background {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .customers-bg-image {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .customers-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .customers-pattern {
      position: absolute;
      inset: 0;
      background: url('/assets/images/grid-pattern.svg') repeat;
      opacity: 0.05;
      pointer-events: none;
    }
    .customers-content {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
    }
    .customers-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .customers-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 14px;
      font-weight: 500;
      color: white;
      background: rgba(255, 92, 92, 0.1);
      border: 1px solid rgba(255, 92, 92, 0.2);
      border-radius: 100px;
      margin-bottom: 16px;
    }
    .customers-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: white;
      margin-bottom: 24px;
    }
    .customers-subtitle {
      font-size: 1.125rem;
      color: white;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .customers-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .customers-info-box {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .customers-info-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 24px;
    }
    .customers-info-list {
      list-style: none;
      margin-bottom: 32px;
    }
    .customers-info-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }
    .customers-info-list li:last-child {
      margin-bottom: 0;
    }
    .customers-info-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: #ff5c5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .customers-info-list span {
      color: white;
      font-size: 0.9375rem;
    }
    .customers-how-it-works {
      background: rgba(255, 92, 92, 0.05);
      border-radius: 16px;
      padding: 24px;
      border: 1px solid rgba(255, 92, 92, 0.2);
    }
    .customers-how-title {
      font-weight: 600;
      color: white;
      margin-bottom: 12px;
    }
    .customers-how-list {
      list-style: decimal;
      list-style-position: inside;
      color: white;
    }
    .customers-how-list li {
      margin-bottom: 8px;
      font-size: 0.875rem;
    }
    .customers-form-wrapper {
      position: relative;
    }
    .customers-form {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-height: 80vh;
      overflow-y: auto;
    }

    /* Form Shared Styles */
    .form-section {
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .form-section:last-of-type {
      border-bottom: none;
      margin-bottom: 24px;
      padding-bottom: 0;
    }
    .form-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .form-section-icon {
      width: 40px;
      height: 40px;
      background: #ff5c5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }
    .form-section-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
    }
    .form-group {
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: white;
      margin-bottom: 8px;
    }
    .required {
      color: #ff5c5c;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      transition: all 0.3s ease;
      outline: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: rgba(255, 92, 92, 0.5);
      box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.2);
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }
    .form-group select option {
      background: #1f2937;
      color: white;
    }
    .form-group textarea {
      resize: none;
    }
    .form-hint {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 8px;
    }
    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      color: white;
      cursor: pointer;
    }
    .checkbox-label input[type="checkbox"] {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 4px;
      cursor: pointer;
      accent-color: #ff5c5c;
    }
    .radio-group {
      display: flex;
      gap: 16px;
    }
    .radio-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      color: white;
      cursor: pointer;
    }
    .radio-label input[type="radio"] {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      accent-color: #ff5c5c;
    }
    .checkbox-consent {
      flex-direction: row;
      align-items: flex-start;
    }
    .checkbox-consent input[type="checkbox"] {
      margin-top: 2px;
    }
    .form-submit-btn {
      width: 100%;
      padding: 12px 24px;
      background: #ff5c5c;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .form-submit-btn:hover {
      background: #ff4a4a;
    }
    .form-submit-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* Form Messages */
    .form-message {
      padding: 16px;
      border-radius: 8px;
      margin-bottom: 16px;
      text-align: center;
      font-size: 0.9375rem;
    }
    .form-success {
      background: #d1fae5;
      border: 1px solid #6ee7b7;
      color: #065f46;
    }
    .form-error {
      background: #fee2e2;
      border: 1px solid #fca5a5;
      color: #991b1b;
    }

    @media (max-width: 1024px) {
      .customers-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 640px) {
      .customers-form {
        padding: 24px;
      }
      .checkbox-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════════════════
       9. DEALERS (Partnership Form)
    ══════════════════════════════════════════ */
    .dealers-section {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
    }
    .dealers-background {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .dealers-bg-image {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .dealers-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .dealers-pattern {
      position: absolute;
      inset: 0;
      background: url('/assets/images/grid-pattern.svg') repeat;
      opacity: 0.05;
      pointer-events: none;
    }
    .dealers-content {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
    }
    .dealers-header {
      text-align: center;
      margin-bottom: 32px;
    }
    .dealers-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: #ff5c5c;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      border: 1px solid rgba(255, 92, 92, 0.2);
    }
    .dealers-form-container {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 48px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-width: 800px;
      margin: 0 auto;
    }
    .dealers-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: white;
      text-align: center;
      margin-bottom: 24px;
    }
    .dealers-intro {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      margin-bottom: 32px;
      line-height: 1.7;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .dealers-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .dealers-form-grid .full-width {
      grid-column: span 2;
    }
    .dealers-support {
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
      margin-top: 24px;
    }

    @media (max-width: 640px) {
      .dealers-form-container {
        padding: 24px;
      }
      .dealers-form-grid {
        grid-template-columns: 1fr;
      }
      .dealers-form-grid .full-width {
        grid-column: span 1;
      }
    }

    /* ══════════════════════════════════════════
       10. FOOTER
    ══════════════════════════════════════════ */
    .footer {
      background: #0a0a0a;
      padding: 64px 0;
    }
    .footer-container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-logo {
      margin-bottom: 16px;
    }
    .footer-logo img {
      height: 40px;
      width: auto;
    }
    .footer-brand-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: white;
      margin-bottom: 12px;
    }
    .footer-brand-desc {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .footer-cta-btn {
      display: inline-block;
      padding: 12px 24px;
      background: #ff5c5c;
      color: black;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .footer-cta-btn:hover {
      background: #ff4a4a;
    }
    .footer-column-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: white;
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.3s ease;
    }
    .footer-links a:hover {
      color: #ff5c5c;
    }
    .footer-contact {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .footer-contact-icon {
      font-size: 1.25rem;
    }
    .footer-contact-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
    }
    .footer-contact-value {
      font-size: 0.875rem;
      color: white;
    }
    .footer-contact-value a {
      color: white;
      transition: color 0.3s ease;
    }
    .footer-contact-value a:hover {
      color: #ff5c5c;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copyright p {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.5);
    }
    .footer-socials {
      display: flex;
      gap: 24px;
    }
    .footer-social-link {
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.3s ease;
    }
    .footer-social-link:hover {
      color: #ff5c5c;
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-contact {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .feature-row { grid-template-columns: 1fr; gap: 40px; }
      .feature-row.reverse { direction: ltr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-card:last-child { border-bottom: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-inner { flex-direction: column; padding: 56px 40px; }
      .faq-inner { grid-template-columns: 1fr; }
      .faq-sidebar { position: static; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card.tall { grid-row: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { padding: 40px 24px; }
      .pricing-grid { max-width: 100%; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Scrollbar styling for form containers */
    .customers-form::-webkit-scrollbar,
    .dealers-form::-webkit-scrollbar {
      width: 6px;
    }
    .customers-form::-webkit-scrollbar-track,
    .dealers-form::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 3px;
    }
    .customers-form::-webkit-scrollbar-thumb,
    .dealers-form::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
    }
    .customers-form::-webkit-scrollbar-thumb:hover,
    .dealers-form::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.5);
    }