* { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: #080A0E;
    color: #D0D8E4;
    overflow-x: hidden;
  }

  /* ── Scrollbar ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: #080A0E; }
  ::-webkit-scrollbar-thumb { background: #42c574; border-radius: 2px; }

  /* ── Typography ── */
  .font-display { font-family: 'Bebas Neue', sans-serif; }

  /* ── 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='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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
  }

  /* ── Gradient line ── */
  .gradient-line {
    background: linear-gradient(90deg, transparent, #42c574, transparent);
    height: 1px;
  }

  /* ── Glow effects ── */
  .glow-red {
    box-shadow: 0 0 40px rgba(66, 197, 116, 0.35), 0 0 80px rgba(66, 197, 116, 0.15);
  }
  .glow-red-text {
    text-shadow: 0 0 40px rgba(66, 197, 116, 0.6);
  }
  .glow-green-text {
    /*text-shadow: 0 0 40px rgba(66, 197, 116, 0.6);*/
    text-shadow: 0 0 100px rgb(14 18 24);
   
  }

  /* ── Hero bg ── */
  .hero-bg {
    background-image:
      linear-gradient(to bottom, rgba(8,10,14,0.3) 0%, rgba(8,10,14,0.7) 60%, rgba(8,10,14,1) 100%),
      url('../img/roadred_bg_hero_2.jpg');
    background-size: cover;
    background-position: center 40%;
  }

  /* ── App mockup card ── */
  .phone-frame {
    background: linear-gradient(145deg, #1A2030, #0D1117);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  }

  /* ── Cards ── */
  .glass-card {
    background: rgba(19, 24, 32, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
  }
  .glass-card:hover {
    border-color: rgba(66, 197, 116, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  /* ── Feature cards ── */
  .feature-card {
    background: linear-gradient(145deg, rgba(19,24,32,0.9), rgba(13,17,23,0.9));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .feature-card:hover {
    border-color: rgba(66, 197, 116, 0.4);
    box-shadow: 0 20px 60px rgba(66, 197, 116, 0.12);
    transform: translateY(-4px);
  }
  .feature-card:hover .feature-icon {
    background: rgba(66, 197, 116, 0.2);
    transform: scale(1.1);
  }
  .feature-icon {
    background: rgba(66, 197, 116, 0.1);
    transition: all 0.3s ease;
    border-radius: 14px;
  }

  /* ── Buttons ── */
  .btn-primary {
    background: #42c574;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .btn-primary:hover { background: #35a85f; box-shadow: 0 8px 30px rgba(66,197,116,0.4); transform: translateY(-1px); }
  .btn-primary:hover::after { opacity: 1; }

  .btn-secondary {
    background: transparent;
    color: white;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    transition: all 0.2s ease;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); transform: translateY(-1px); }

  /* ── Floating mission cards ── */
  .mission-card {
    background: rgba(13,17,23,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
  }
  .pulse-dot {
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
  }
  @keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  }

  /* ── Scroll truck ── */
  #scroll-truck {
    position: fixed;
    bottom: 60px;
    left: -160px;
    width: 120px;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.5s;
    filter: drop-shadow(0 4px 20px rgba(66,197,116,0.3));
  }

  /* ── Notification bubble ── */
  #truck-notification {
    position: fixed;
    bottom: 40px;
    left: -200px;
    z-index: 101;
    pointer-events: none;
    opacity: 0;
  }

  /* ── Map SVG ── */
  .route-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw-route 3s ease forwards;
  }
  @keyframes draw-route {
    to { stroke-dashoffset: 0; }
  }

  .map-dot {
    animation: map-pulse 2s ease-in-out infinite;
  }
  @keyframes map-pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.6; }
  }

  /* ── Number counters ── */
  .counter { font-variant-numeric: tabular-nums; }

  /* ── Testimonial cards ── */
  .testimonial-card {
    background: linear-gradient(145deg, rgba(19,24,32,0.95), rgba(13,17,23,0.95));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  .testimonial-card:hover {
    border-color: rgba(66,197,116,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }

  /* ── FAQ ── */
  .faq-item details summary { cursor: pointer; list-style: none; }
  .faq-item details summary::-webkit-details-marker { display: none; }
  .faq-item details[open] summary .faq-icon { transform: rotate(45deg); }
  .faq-icon { transition: transform 0.3s ease; }
  .faq-item details[open] {
    border-color: rgba(66,197,116,0.3) !important;
  }

  /* ── Section reveal ── */
  .reveal { opacity: 0; transform: translateY(30px); }

  /* ── Step connector ── */
  .step-connector {
    background: linear-gradient(90deg, #42c574, rgba(66,197,116,0.1));
  }

  /* ── Badge ── */
  .euro-badge {
    background: linear-gradient(135deg, rgba(66,197,116,0.15), rgba(66,197,116,0.05));
    border: 1px solid rgba(66,197,116,0.3);
    border-radius: 100px;
  }

  /* ── Logos ── */
  .logo-item {
    filter: grayscale(1) brightness(0.5);
    transition: filter 0.3s ease;
  }
  .logo-item:hover { filter: grayscale(0) brightness(1); }

  /* ── Nav ── */
  .nav-blur {
    /*background: rgba(8, 10, 14, 0.85);*/
    background: rgb(8 10 14 / 0%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* ── Form input ── */
  .form-input {
    background: rgba(19,24,32,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    transition: border-color 0.2s;
    width: 100%;
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
  }
  .form-input:focus {
    outline: none;
    border-color: rgba(66, 197, 116, 0.6);
    box-shadow: 0 0 0 3px rgba(66, 197, 116, 0.1);
  }
  .form-input::placeholder { color: rgba(176,186,201,0.5); }
  select.form-input option { background: #131820; color: white; }

  /* ── Animated gradient bg ── */
  .animated-gradient {
    background: radial-gradient(ellipse at 20% 50%, rgba(66,197,116,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(66,197,116,0.05) 0%, transparent 50%),
                #080A0E;
  }

  /* ── Video placeholder ── */
  .video-container {
    background: linear-gradient(135deg, #0D1117, #131820);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
  }

  /* ── Stats row ── */
  .stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
  }

  /* ── Truck SVG animation stages ── */
  #truck-loading-bar {
    width: 0%;
    transition: width 1s ease;
  }

  /* ── Mobile menu ── */
  #mobile-menu { display: none; }
  #mobile-menu.open { display: block; }

  @media (max-width: 768px) {
    .hero-title { font-size: clamp(3rem, 12vw, 6rem); line-height: 0.95; }
  }
  
 
 
    /* ── Nav ── */
    .features-blur {
        /*background: rgba(8, 10, 14, 0.85);*/
        background: rgb(8 10 14 / 35%);
        backdrop-filter: blur(5px);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .features-blur:hover{
        background: rgb(8 10 14 / 80%);
    }
  
  
/* Floating Button */
#floating-btns {
position: fixed;
bottom: 32px;
right: 28px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 9000;
}

#floating-btns a,
#floating-btns button {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: none;
transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), opacity 0.2s ease, box-shadow 0.2s ease;
text-decoration: none;
}


/* whatsapp Button */
#btn-whatsapp {
background: #25d366;
color: #ffffff;
box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
#btn-whatsapp:hover {
transform: scale(1.1);
box-shadow: 0 6px 22px rgba(37,211,102,0.5);
}
#btn-whatsapp:active { transform: scale(0.96); }

#btn-scrolltop {
background: #44ad4e;
color: #ffffff;
box-shadow: 0 4px 16px rgba(68,173,78,0.35);
opacity: 0;
pointer-events: none;
transform: translateY(10px);
}
#btn-scrolltop.visible {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}
#btn-scrolltop:hover {
transform: scale(1.1);
box-shadow: 0 6px 22px rgba(68,173,78,0.5);
}
#btn-scrolltop:active { transform: scale(0.96); }

@media (max-width: 640px) {
#floating-btns {
  bottom: 20px;
  right: 16px;
}
#floating-btns a,
#floating-btns button {
  width: 46px;
  height: 46px;
}
}









.sc-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0,1fr));
gap: 16px;
width: 100%;
margin: 0 auto;
}
@media(min-width:768px){
.sc-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.sc-card {
border-radius: 18px;
padding: 28px 18px 22px;
text-align: center;
opacity: 0;
transform: translateY(36px);
transition: opacity .65s ease, transform .65s ease, box-shadow .3s;
background: #141414;
border: 1px solid rgba(255,255,255,0.07);
position: relative;
overflow: hidden;
}
.sc-card::after {
content: '';
position: absolute;
bottom: 0; left: 16px; right: 16px;
height: 1px;
background: var(--c);
opacity: .45;
border-radius: 2px;
}
.sc-card.in { opacity: 1; transform: translateY(0); }
.sc-card:hover { box-shadow: 0 8px 32px var(--cg); transform: translateY(-5px); border-color: var(--c); }
.sc-card:nth-child(1){ --c:#E57AFF; --cg:rgba(229,122,255,.18); transition-delay:0s; }
.sc-card:nth-child(2){ --c:#5CC8FF; --cg:rgba(92,200,255,.18); transition-delay:.1s; }
.sc-card:nth-child(3){ --c:#FFB347; --cg:rgba(255,179,71,.18); transition-delay:.2s; }
.sc-card:nth-child(4){ --c:#5DCAA5; --cg:rgba(93,202,165,.18); transition-delay:.3s; }
.sc-icon {
width: 38px; height: 38px; border-radius: 50%;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.08);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 14px; font-size: 18px; color: var(--c);
}
.sc-num { display: block; font-size: 2.5rem; font-weight: 700; color: var(--c); line-height: 1; letter-spacing: -1.5px; margin-bottom: 10px; }
.sc-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.45; margin-bottom: 12px; min-height: 2.6em; }
.sc-accroche { font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--c); opacity: .7; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
.sc-bar-bg { height: 3px; background: rgba(255,255,255,0.07); border-radius: 99px; margin: 10px 0 14px; overflow: hidden; }
.sc-bar { height: 100%; background: var(--c); border-radius: 99px; width: 0; transition: width 1.4s cubic-bezier(.22,1,.36,1); opacity: .75; }