  :root {
    --orange: #FF6B00;
    --orange-light: #FF8A33;
    --orange-glow: rgba(255, 107, 0, 0.15);
    --black: #0A0A0A;
    --dark: #1A1A1A;
    --gray-900: #222222;
    --gray-700: #444444;
    --gray-500: #777777;
    --gray-300: #BBBBBB;
    --gray-100: #F0F0F0;
    --white: #FFFFFF;
  }

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

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* â”€â”€â”€ CUSTOM CURSOR DOT â”€â”€â”€ */
  .cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
  }

  /* â”€â”€â”€ PRELOADER â”€â”€â”€ */
  .preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .preloader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .preloader-text {
    font-family: 'Space Mono', monospace;
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: pulse 1.2s ease-in-out infinite;
  }
  .preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-900);
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
  }
  .preloader-bar-fill {
    height: 100%;
    background: var(--orange);
    animation: loadBar 1.8s ease-in-out forwards;
  }
  @keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  .nav-logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    background: none;
    overflow: hidden;
    border-radius: 999px;
  }
  .nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
  }
  .footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
  }
  .nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-logo-icon svg { width: 22px; height: 22px; }
  .nav-logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    letter-spacing: -0.5px;
  }
  .nav-logo-text span { color: var(--orange); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--black); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 24px;
    background: var(--black);
    color: var(--white) !important;
    border-radius: 8px;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover {
    background: var(--orange) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
  }

  /* â”€â”€â”€ HAMBURGER â”€â”€â”€ */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }
  .hamburger span {
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
  }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 120px 48px 80px;
    overflow: hidden;
  }
  .hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../assets/hero-van.jpg') center left / cover no-repeat;
    z-index: 0;
  }
  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.95) 65%);
    z-index: 0;
  }
  .hero-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero-gradient-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
    z-index: 0;
    animation: orbFloat 10s ease-in-out infinite reverse;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: right;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--orange-glow);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 2s forwards;
  }
  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--black);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 2.2s forwards;
  }
  .hero h1 .highlight {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 20px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 2.4s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeUp 0.8s ease 2.6s forwards;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }
  .hero-stats {
    display: flex;
    gap: 48px;
    justify-content: flex-end;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeUp 0.8s ease 2.8s forwards;
  }
  .hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
  }
  .hero-stat-number span { color: var(--orange); }
  .hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* â”€â”€â”€ MARQUEE â”€â”€â”€ */
  .marquee-section {
    padding: 32px 0;
    background: var(--black);
    overflow: hidden;
  }
  .marquee-track {
    display: flex;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
  }
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    white-space: nowrap;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-500);
  }
  .marquee-item .dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* â”€â”€â”€ SECTION SHARED â”€â”€â”€ */
  .section {
    padding: 120px 48px;
  }
  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  .section-desc {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 300;
  }

  /* â”€â”€â”€ BRANDS â”€â”€â”€ */
  .brands-section {
    background: var(--white);
  }
  .brands-header {
    max-width: 600px;
    margin-bottom: 64px;
  }
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
  }
  .brand-card {
    position: relative;
    padding: 48px 36px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
  }
  .brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .brand-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255,107,0,0.08);
  }
  .brand-card:hover::before { transform: scaleX(1); }
  .brand-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background 0.3s ease;
  }
  .brand-card:hover .brand-icon { background: var(--orange); }
  .brand-card:hover .brand-icon svg { stroke: var(--white); }
  .brand-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  .brand-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .brand-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
  }
  .brand-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-700);
  }

  /* â”€â”€â”€ SERVICES â”€â”€â”€ */
  .services-section {
    background: var(--gray-100);
  }
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
  }
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .service-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: default;
  }
  .service-item:hover {
    border-color: var(--orange);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  }
  .service-num {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .service-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  .service-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
  }

  /* â”€â”€â”€ COVERAGE â”€â”€â”€ */
  .coverage-section {
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: var(--black);
  }
  .coverage-bg-images {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .coverage-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .coverage-bg-img.active {
    opacity: 1;
  }
  .coverage-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  .coverage-section .reveal,
  .coverage-section .coverage-grid,
  .coverage-section .coverage-bg-text,
  .coverage-section .coverage-carousel {
    position: relative;
    z-index: 2;
  }
  .coverage-section .section-label { color: var(--orange); }
  .coverage-section .section-title { color: var(--white); }
  .coverage-section .section-desc { color: var(--gray-300); }
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin-top: 64px;
  }
  .coverage-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .coverage-card:hover,
  .coverage-card.active {
    background: rgba(255,107,0,0.12);
    border-color: rgba(255,107,0,0.4);
    transform: translateY(-4px);
  }
  .coverage-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: rgba(255,107,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .coverage-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
  }
  .coverage-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  .coverage-card-sub {
    font-size: 13px;
    color: var(--gray-500);
  }
  .coverage-bg-text {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
  }

  /* Coverage carousel (mobile only) */
  .coverage-carousel {
    display: none;
    margin-top: 40px;
  }
  .coverage-carousel-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
  }
  .coverage-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .coverage-carousel-slide.active {
    opacity: 1;
  }
  .coverage-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .coverage-carousel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
  }
  .coverage-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
  .coverage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
  }
  .coverage-dot.active {
    background: var(--orange);
    border-color: var(--orange);
  }

  /* â”€â”€â”€ TEAM â”€â”€â”€ */
  .team-section {
    background: var(--white);
  }
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin-top: 64px;
  }
  .team-card {
    padding: 48px 36px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .team-card:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 60px rgba(255,107,0,0.06);
  }
  .team-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
  }
  .team-card:hover .team-card-accent { transform: scaleY(1); }
  .team-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
  }
  .team-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  .team-role {
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .team-area {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
  }

  /* â”€â”€â”€ CONTACT â”€â”€â”€ */
  .contact-section {
    background: var(--gray-100);
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    align-items: start;
  }
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
  }
  .contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--black);
  }
  .contact-method:hover {
    border-color: var(--orange);
    transform: translateX(8px);
  }
  .contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--orange-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
  }
  .contact-method-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .contact-method-value {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  .contact-form-card {
    padding: 48px;
    background: var(--black);
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-form-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
    position: relative;
  }
  .contact-form-card > p {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    font-size: 14px;
  }
  .form-group {
    margin-bottom: 18px;
    position: relative;
  }
  .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .form-group select option {
    background: var(--black);
    color: var(--white);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--gray-700);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
    background: rgba(255,107,0,0.05);
  }
  .form-group textarea {
    resize: vertical;
    min-height: 90px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    position: relative;
  }
  .form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    min-height: 22px;
    position: relative;
  }
  .form-status.success { color: #4ade80; }
  .form-status.error { color: #f87171; }
  .form-status.sending { color: var(--orange); }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 32px; }
  }

  /* â”€â”€â”€ FOOTER â”€â”€â”€ */
  footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 48px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-brand-text {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.6;
  }
  .footer-links-group h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
  }
  .footer-links-group a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  .footer-links-group a:hover { color: var(--orange); }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy {
    font-size: 13px;
    color: var(--gray-700);
  }
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  .footer-social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .footer-social:hover {
    background: var(--orange);
    border-color: var(--orange);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--gray-500);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  .footer-social:hover svg { stroke: var(--white); }

  /* â”€â”€â”€ SCROLL ANIMATIONS â”€â”€â”€ */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
  @media (max-width: 1024px) {
    .brands-grid { grid-template-columns: 1fr 1fr; }
    .coverage-grid { grid-template-columns: 1fr 1fr; }
    .services-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-logo-img { height: 56px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 80px 24px; }
    .hero { padding: 100px 24px 60px; justify-content: center; }
    .hero-bg-image { background-position: center center; }
    .hero-bg-overlay { background: rgba(255,255,255,0.88); }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero h1 { letter-spacing: -2px; }
    .hero-stats { flex-direction: column; gap: 24px; justify-content: center; align-items: center; }
    .brands-grid { grid-template-columns: 1fr; }
    .coverage-grid { display: none; }
    .coverage-carousel { display: block; }
    .coverage-bg-images { display: none; }
    .coverage-bg-overlay { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 32px; }
    footer { padding: 48px 24px 24px; }
    .cursor-dot { display: none; }
  }
