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

  :root {
    --navy: #0b1628;
    --deep: #060d1a;
    --blue: #1a4b8c;
    --accent: #e8a020;
    --accent2: #f0c060;
    --white: #f4f1ec;
    --muted: #8a9ab5;
    --light: #c8d5e8;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(6,13,26,0.95), transparent);
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
  }
  .logo span { color: var(--accent); }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--light);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent);
    color: var(--deep) !important;
    padding: 0.55rem 1.4rem;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent2) !important; color: var(--deep) !important; }

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

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,75,140,0.35) 0%, transparent 65%),
      radial-gradient(ellipse 50% 80% at 30% 80%, rgba(232,160,32,0.08) 0%, transparent 60%),
      linear-gradient(160deg, #060d1a 0%, #0b1628 50%, #0d1e3a 100%);
  }

  /* Grid lines */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    padding-top: 8rem;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .hero-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--accent);
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
  }
  h1 em {
    font-style: normal;
    color: var(--accent);
    }

  .hero-sub {
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light);
    margin-top: 2rem;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 3rem;
    align-items: center;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--deep);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-101%);
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(0); }

  .btn-ghost {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--accent); }
  .btn-ghost .arrow { transition: transform 0.2s; }
  .btn-ghost:hover .arrow { transform: translateX(4px); }

  .hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
  }
  .stat-value span { color: var(--accent); }
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.3rem;
  }

  /* Hero card - centered below content, not right-floating */
  .hero-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 4rem auto 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 2rem;
    z-index: 2;
  }

  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .card-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
  }
  .live-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .lead-item {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .lead-item:last-child { border-bottom: none; }

  .lead-icon {
    width: 36px; height: 36px;
    background: rgba(26,75,140,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .lead-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
  }
  .lead-type {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.15rem;
  }
  .lead-status {
    margin-left: auto;
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 600;
  }

  /* ── SECTION STYLES ── */
  section { position: relative; }

  .section-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-label::before {
    content: '';
    width: 1.5rem; height: 1px;
    background: var(--accent);
  }

  h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--white);
  }
  h2 em { font-style: italic; color: var(--accent); }

  /* ── FEATURED VERTICALS (Trucking & Contractors) ── */
  .featured-verticals {
    padding: 6rem 0;
    background: var(--deep);
  }
  .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  .featured-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .featured-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .featured-card:hover {
    background: rgba(26,75,140,0.2);
    border-color: rgba(232,160,32,0.3);
  }
  .featured-card:hover::before { transform: scaleX(1); }
  .featured-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
  .featured-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.8rem;
  }
  .featured-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .featured-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
  }
  .featured-card:hover .featured-link { gap: 0.8rem; }

  /* ── HOW IT WORKS ── */
  .how { padding: 8rem 0; background: var(--deep); }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }

  .steps { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.25s;
  }
  .step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .step:hover { padding-left: 0.5rem; }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    transition: color 0.25s;
  }
  .step:hover .step-num { color: var(--accent); }

  .step-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.6rem;
  }
  .step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

  .how-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 3rem;
    position: relative;
  }

  .pipeline-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .pipeline-bar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    transition: background 0.2s;
  }
  .pipeline-bar:hover { background: rgba(26,75,140,0.2); }

  .pbar-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .pbar-name { color: var(--white); font-weight: 500; flex: 1; }
  .pbar-industry { color: var(--muted); font-size: 0.75rem; }

  .pbar-fill {
    height: 4px;
    background: var(--blue);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  .pbar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  /* ── SERVICES ── */
  .services { padding: 8rem 0; }

  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .service-card {
    background: var(--navy);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { background: rgba(26,75,140,0.15); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: block;
  }

  .service-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.8rem;
  }

  .service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

  /* ── INDUSTRIES ── */
  .industries {
    padding: 8rem 0;
    background: linear-gradient(135deg, #070e1d 0%, #0b1628 100%);
  }

  .industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 3rem;
  }

  .industry-tag {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.7rem 1.4rem;
    font-size: 0.82rem;
    color: var(--light);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
  }
  .industry-tag:hover,
  .industry-tag.active {
    background: var(--accent);
    color: var(--deep);
    border-color: var(--accent);
    font-weight: 600;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 8rem 0; background: var(--deep); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .testi-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem;
    transition: border-color 0.3s;
  }
  .testi-card:hover { border-color: rgba(232,160,32,0.3); }

  .testi-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .testi-author { display: flex; align-items: center; gap: 1rem; }
  .testi-avatar {
    width: 42px; height: 42px;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
  }
  .testi-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
  .testi-role { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

  .stars { color: var(--accent); font-size: 0.75rem; margin-bottom: 1.2rem; }

  /* ── CTA SECTION ── */
  .cta-section {
    padding: 8rem 0;
    background:
      radial-gradient(ellipse 70% 70% at 50% 50%, rgba(26,75,140,0.3) 0%, transparent 70%),
      var(--navy);
    text-align: center;
  }

  .cta-section h2 { font-size: clamp(2.2rem, 5vw, 4rem); }

  .cta-desc {
    font-size: 1.1rem;
    color: var(--light);
    max-width: 520px;
    margin: 1.5rem auto 3rem;
    line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 0 2rem;
  }

  .footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand .logo { display: block; margin-bottom: 1rem; }
  .footer-tagline { font-size: 0.88rem; color: var(--muted); line-height: 1.65; max-width: 240px; }

  .footer-col h3 {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 1.2rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-links a,
  .footer-links span {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--light);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy { font-size: 0.78rem; color: var(--muted); }

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

  /* Fallback: show content immediately if animations are disabled */
  @media (prefers-reduced-motion: reduce) {
    .hero-label, h1, .hero-sub, .hero-actions, .hero-stats, .hero-card { opacity: 1 !important; animation: none !important; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: none; }
    .hero-content { padding: 0 2rem; }
    .hero-card { display: none; }
    .section-inner { padding: 0 2rem; }
    .featured-grid { grid-template-columns: 1fr; }
    .how-grid, .services-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }
