
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        *{margin:0;padding:0;box-sizing:border-box}
        :root{--primary-red:#C41E3A;--accent-gold:#D4AF37;--deep-charcoal:#0D0D0D;--slate:#1A1A1A;--text-primary:#FFF;--text-secondary:#A8A8A8}
        body{overflow-x:hidden;font-family:'Inter',sans-serif;background:var(--deep-charcoal);color:var(--text-primary);line-height:1.6;-webkit-font-smoothing:antialiased}
        nav{position:fixed;top:0;width:100%;background:rgba(13,13,13,0.85);backdrop-filter:blur(20px);z-index:1000;padding:1.75rem 0;border-bottom:1px solid rgba(255,255,255,0.06);transition:all 0.4s}
        .nav-container{max-width:1600px;margin:0 auto;padding:0 4rem;display:flex;justify-content:space-between;align-items:center}
        .logo-container{display:flex;flex-direction:column;gap:0.25rem;cursor:pointer}
        .logo-main{font-size:2rem;font-weight:900;letter-spacing:-1px;color:white}
        .logo-sub{font-size:0.5rem;letter-spacing:2px;color:var(--primary-red);font-weight:600}
        .logo-img{height:75px;width:auto;object-fit:contain;display:block}
.footer-logo-img{height:90px;width:auto;object-fit:contain;display:block;margin-bottom:1.5rem}
.nav-links{display:flex;gap:4rem;list-style:none;align-items:center}
        .nav-links a{color:var(--text-secondary);text-decoration:none;font-size:0.875rem;font-weight:500;letter-spacing:0.5px;text-transform:uppercase;transition:all 0.3s;position:relative}
        .nav-links a:hover{color:var(--text-primary)}
        .nav-links a.active{color:var(--text-primary);font-weight:600}
        .nav-links a::after{content:'';position:absolute;bottom:-8px;left:0;width:0;height:1px;background:var(--primary-red);transition:width 0.3s}
        .nav-links a:hover::after{width:100%}
        .nav-links a.active::after{width:100%}
        .nav-cta{background:var(--primary-red);color:var(--text-primary);padding:0.875rem 2rem;border-radius:2px;text-decoration:none;font-weight:600;font-size:0.875rem;letter-spacing:0.5px;text-transform:uppercase;transition:all 0.3s;border:1px solid var(--primary-red)}
        .nav-cta:hover{background:transparent;color:var(--primary-red)}
        .fade-in{opacity:1;transform:translateY(0);transition:opacity 0.8s ease,transform 0.8s ease}
        .fade-in.visible{opacity:1;transform:translateY(0)}
        .mobile-menu-toggle{display:none;background:none !important;background-color:transparent !important;border:0 !important;cursor:pointer;padding:0.5rem;-webkit-appearance:none !important;appearance:none !important;outline:none !important;box-shadow:none !important;border-radius:0 !important}
        .mobile-menu-toggle span{display:block;width:28px;height:2px;background:#FFFFFF;margin:6px 0}
        .mobile-menu{display:none;position:fixed;top:90px;left:0;width:100%;background:rgba(13,13,13,0.98);backdrop-filter:blur(20px);border-bottom:1px solid rgba(255,255,255,0.06);padding:2rem 0;z-index:999}
        .mobile-menu.active{display:block}
        .mobile-menu a{display:block;padding:1rem 4rem;color:var(--text-secondary);text-decoration:none;font-size:0.875rem;font-weight:500;letter-spacing:0.5px;text-transform:uppercase;transition:all 0.3s}
        .mobile-menu a:hover{color:var(--text-primary);background:rgba(255,255,255,0.02)}
        
        .hero{margin-top:90px;position:relative;overflow:hidden}
        .hero::before{content:'';position:absolute;top:-30%;right:-10%;width:800px;height:800px;background:radial-gradient(circle,rgba(196,30,58,0.12) 0%,transparent 70%);filter:blur(100px)}
        .hero-container{max-width:1600px;margin:0 auto;padding:0 4rem;position:relative;z-index:1}
        .hero-eyebrow{font-size:0.875rem;letter-spacing:3px;text-transform:uppercase;color:var(--accent-gold);margin-bottom:2rem;font-weight:600}
        .hero h1{font-size:5.5rem;font-weight:300;line-height:1.1;margin-bottom:2rem;letter-spacing:-3px;max-width:1100px}
        .hero h1 strong{font-weight:700}
        .hero h1 .accent{color:var(--primary-red)}
        .hero-description{font-size:1.3rem;color:var(--text-secondary);max-width:750px;margin-bottom:3rem;line-height:1.8;font-weight:300}
        .primary-btn{background:var(--primary-red);color:var(--text-primary);padding:1.5rem 3.5rem;border-radius:2px;text-decoration:none;font-weight:600;font-size:0.9rem;letter-spacing:1px;text-transform:uppercase;transition:all 0.4s;border:1px solid var(--primary-red);display:inline-block}
        .primary-btn:hover{background:transparent;color:var(--primary-red);transform:translateY(-2px)}
        
        .section{padding:10rem 0;position:relative}
        .section-container{max-width:1600px;margin:0 auto;padding:0 4rem;position:relative}
        .section-eyebrow{font-size:0.875rem;letter-spacing:3px;text-transform:uppercase;color:var(--accent-gold);margin-bottom:1.5rem;font-weight:600}
        
        .logo-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06);padding:1rem 1.5rem;border-radius:4px;display:flex;justify-content:center;align-items:center;transition:all 0.3s}
        .logo-card:hover{border-color:rgba(196,30,58,0.3);transform:translateY(-3px)}
        .logo-card img{max-height:32px;max-width:140px;opacity:0.7;filter:brightness(1.2);object-fit:contain}
        
        .stats-section{padding:5rem 0;background:rgba(196,30,58,0.03);border-top:1px solid rgba(196,30,58,0.1);border-bottom:1px solid rgba(196,30,58,0.1)}
        .stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:3rem;max-width:1100px;margin:0 auto;text-align:center}
        .stat-item h3{font-size:3rem;font-weight:700;color:var(--primary-red);margin-bottom:0.5rem;letter-spacing:-1px}
        .stat-item p{font-size:0.8rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:1px}
        
        .cta-section{padding:8rem 0}
        .cta-box{background:linear-gradient(135deg,rgba(26,26,26,0.95),rgba(38,38,38,0.8));border:1px solid rgba(196,30,58,0.25);padding:5rem;max-width:900px;margin:0 auto;text-align:center}
        .cta-box h2{font-size:3rem;font-weight:300;margin-bottom:1.25rem;letter-spacing:-1.5px}
        .cta-box h2 strong{font-weight:700}
        .cta-box p{font-size:1.1rem;color:var(--text-secondary);margin-bottom:2.5rem;line-height:1.8}
        .cta-buttons{display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap}
        
        footer{padding:6rem 0;background:rgba(13,13,13,0.9);border-top:1px solid rgba(255,255,255,0.06)}
        .footer-container{max-width:1600px;margin:0 auto;padding:0 4rem;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:4rem}
        .footer-brand{max-width:400px}
        .footer-logo{margin-bottom:2rem}
        .footer-logo-main{font-size:2.5rem;font-weight:900;letter-spacing:-1px}
        .footer-logo-sub{font-size:0.6rem;letter-spacing:2px;color:var(--primary-red);font-weight:600}
        .footer-brand p{color:var(--text-secondary);line-height:1.8;margin-bottom:2rem}
        .cert-badges{display:flex;gap:1rem}
        .cert-badge{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);padding:0.5rem 1rem;font-size:0.75rem;color:var(--text-secondary)}
        .footer-links h4{font-size:0.875rem;letter-spacing:1px;text-transform:uppercase;margin-bottom:2rem;color:var(--text-primary)}
        .footer-links ul{list-style:none}
        .footer-links li{margin-bottom:1rem}
        .footer-links a{color:var(--text-secondary);text-decoration:none;font-size:0.9rem;transition:color 0.3s}
        .footer-links a:hover{color:var(--text-primary)}
        .footer-bottom{max-width:1600px;margin:0 auto;padding:4rem 4rem 0;border-top:1px solid rgba(255,255,255,0.06);margin-top:4rem;text-align:center}
        .footer-bottom p{color:var(--text-secondary);font-size:0.875rem}

        @media (max-width:1200px){
            .hero h1{font-size:3.5rem}
            .nav-links{display:none}
            .mobile-menu-toggle{display:block}
            .footer-container{grid-template-columns:1fr 1fr}
        }
        
        html{overflow-x:hidden;scroll-behavior:smooth}
    

/* ========================================
   COMPREHENSIVE MOBILE OVERHAUL v2
   iPhone-first — premium, intentional
   ======================================== */

/* --- TABLET (1200px) --- */
@media (max-width:1200px) {
  .nav-links { display:none }
  .mobile-menu-toggle { display:block }
  .hero { min-height:auto }
  .footer-container { grid-template-columns:1fr 1fr }
}

/* --- MOBILE (768px) --- */
@media (max-width:768px) {
  /* GLOBAL */
  * { -webkit-text-size-adjust:100% }
  body { overflow-x:hidden }
  img { max-width:100%;height:auto }
  
  /* NAV */
  nav { padding:0.6rem 0 }
  nav.scrolled { padding:0.5rem 0 }
  .nav-container { padding:0 1rem }
  .logo-main { font-size:1.75rem }
  .logo-sub { font-size:0.4rem;letter-spacing:1.5px }
  .nav-cta { font-size:0.65rem;padding:0.5rem 1rem;letter-spacing:0.5px }
  .logo-img { height:55px !important }
  .footer-logo-img { height:75px !important }
  .mobile-menu { top:55px }
  .mobile-menu a { padding:0.85rem 1.5rem;font-size:0.85rem }
  
  /* HERO — generous, breathable */
  .hero { 
    min-height:auto !important;
    padding:4rem 0 3rem !important;
    margin-top:55px !important;
    background-attachment:scroll !important;
  }
  .hero-container { 
    padding:0 1.5rem !important;
    grid-template-columns:1fr !important;
    gap:2rem !important;
  }
  .hero h1 { font-size:2.75rem !important;letter-spacing:-1.5px !important;margin-bottom:1.5rem !important;line-height:1.1 !important;font-weight:300 !important }
  .hero-eyebrow { font-size:0.7rem !important;margin-bottom:1.25rem !important;letter-spacing:2.5px !important }
  .hero-description,.hero-tagline,.hero p { font-size:0.95rem !important;margin-bottom:1.75rem !important;line-height:1.6 !important;max-width:90% !important }
  .hero-visual { display:none !important }
  .hero-ctas { flex-direction:column;gap:0.75rem }
  .primary-btn { 
    padding:1rem 2rem !important;
    font-size:0.75rem !important;
    letter-spacing:1.2px !important;
    text-align:center;
  }
  
  /* SECTION EYEBROWS */
  .section-eyebrow { font-size:0.6rem !important;letter-spacing:2.5px !important;margin-bottom:0.75rem !important }
  
  /* SECTION HEADERS */
  .section-header { margin-bottom:2rem !important }
  .section-header h2 { font-size:2rem !important;letter-spacing:-1px !important;margin-bottom:0.75rem !important;font-weight:300 !important }
  .section-header p { font-size:0.88rem !important;line-height:1.6 !important;color:var(--text-secondary) !important }
  
  /* CONTAINERS — consistent 1.5rem padding */
  .section-container,
  .diff-container,
  .cta-box { 
    padding-left:1.5rem !important;
    padding-right:1.5rem !important;
  }
  
  /* PARALLAX SECTIONS — force scroll, keep overlays working */
  .differentiator,
  .carrier-network,
  .cst-section,
  .tech-section,
  .cst-experience,
  .opportunities,
  .testimonials,
  [data-parallax-bg] {
    background-attachment:scroll !important;
  }

  /* ALL SECTIONS — reduce desktop padding */
  .section,
  .services,
  .differentiator,
  .carrier-network,
  .testimonial,
  .cta-section,
  .benefits,
  .opportunities,
  .testimonials,
  .cst-section,
  .commission-section,
  .tech-section,
  .turvo-section,
  .why-section,
  .cst-experience,
  section.section { 
    padding:3.5rem 0 !important;
  }
  
  /* INLINE STYLE OVERRIDES */
  h2[style*="font-size:4.5rem"],
  h2[style*="font-size:4rem"],
  h2[style*="font-size:3.5rem"],
  h2[style*="font-size:3rem"] { 
    font-size:1.85rem !important;
    letter-spacing:-0.5px !important;
    margin-bottom:1rem !important;
  }
  h2[style*="margin-bottom:6rem"],
  h2[style*="margin-bottom:5rem"],
  h2[style*="margin-bottom:4rem"],
  h2[style*="margin-bottom:3rem"] {
    margin-bottom:1.25rem !important;
  }
  p[style*="margin-bottom:6rem"],
  p[style*="margin-bottom:5rem"],
  p[style*="margin-bottom:4rem"] {
    margin-bottom:1.5rem !important;
  }
  p[style*="font-size:1.3rem"],
  p[style*="font-size:1.2rem"] {
    font-size:0.95rem !important;
    line-height:1.65 !important;
  }
  
  /* INLINE GRIDS — force single column */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns:1fr !important;
    gap:0.75rem !important;
  }
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns:1fr !important;
    gap:1.5rem !important;
  }
  [style*="grid-template-columns:repeat(2,1fr)"][style*="gap:2.5rem"] {
    grid-template-columns:1fr !important;
    gap:1.25rem !important;
  }
  [style*="gap:4rem"] { gap:1.5rem !important }
  [style*="gap:3rem"] { gap:1rem !important }
  [style*="margin-top:4rem"] { margin-top:1.5rem !important }
  
  /* INLINE PADDING overrides */
  [style*="padding:5rem"],
  [style*="padding:4rem"],
  [style*="padding:3.5rem"] {
    padding:1.75rem 1.25rem !important;
  }
  [style*="padding:2.5rem 2rem"] { padding:1.25rem 1rem !important }
  
  /* INLINE FONT overrides */
  [style*="font-size:2rem"] { font-size:1.35rem !important }
  [style*="font-size:0.95rem"][style*="line-height:1.8"] { font-size:0.85rem !important;line-height:1.6 !important }
  [style*="font-size:1.1rem"][style*="line-height:1.7"] { font-size:0.88rem !important }
  
  /* CARDS — universal */
  .benefit-card,
  .opp-card,
  .cst-card,
  .tech-card,
  .why-card,
  .commission-card,
  .service-card {
    padding:1.5rem 1.25rem !important;
  }
  .benefit-card h3,.opp-card h3,.service-card h3 { font-size:1.2rem !important;margin-bottom:0.5rem !important }
  .benefit-card p,.opp-card p,.service-card p { font-size:0.88rem !important;line-height:1.6 !important;margin-bottom:1rem !important }
  .cst-card h4 { font-size:1.1rem !important;margin-bottom:0.5rem !important }
  .cst-card p { font-size:0.88rem !important;line-height:1.55 !important }
  .benefit-icon { width:45px !important;height:45px !important;margin-bottom:0.75rem !important;border-radius:8px !important }
  .benefit-icon svg { width:20px !important;height:20px !important }
  
  /* GRIDS — force single column */
  .benefits-grid,
  .opp-grid,
  .testimonial-grid,
  .cst-grid,
  .tech-grid,
  .tech-grid.three,
  .tech-grid.two,
  .commission-grid,
  .why-grid,
  .services-grid {
    grid-template-columns:1fr !important;
    gap:0.75rem !important;
  }
  .cst-grid { margin-bottom:1.5rem !important }
  
  /* STATS */
  .stats-grid,
  .stats-ribbon-inner {
    grid-template-columns:1fr 1fr !important;
    gap:0 !important;
    padding:0 !important;
  }
  .stat-box,.stat-cell {
    padding:1.25rem 1rem !important;
    text-align:center;
  }
  .stat-big,.stat-cell h3 { font-size:1.5rem !important;margin-bottom:0.25rem !important }
  .stat-label,.stat-cell p { font-size:0.6rem !important;letter-spacing:1px !important }
  .stat-cell .stat-detail { font-size:0.75rem !important }
  .stats-showcase { padding:2rem 0 !important }
  
  /* LOGO TICKER — fixed visibility */
  .brands-ticker { padding:1.25rem 0 !important }
  .brands-ticker p { font-size:0.6rem !important;margin-bottom:1rem !important }
  .ticker-item { height:30px !important;min-width:70px !important;flex-shrink:0 !important }
  .ticker-item img { height:100% !important;width:auto !important;max-width:90px !important;object-fit:contain !important;display:block !important }
  .ticker-content { gap:2.5rem !important }
  
  /* LOGO GRIDS inside specialty cards */
  [style*="grid-template-columns:repeat(4,1fr)"][style*="gap:0.75rem"] {
    grid-template-columns:repeat(2,1fr) !important;
    gap:0.5rem !important;
  }
  [style*="height:55px"] { height:45px !important }
  [style*="height:55px"] img { max-height:24px !important;max-width:70px !important }
  
  /* DIFFERENTIATOR / CARRIER NETWORK — text sections with bg images */
  .diff-content h2 { font-size:1.85rem !important }
  .diff-content p { font-size:0.92rem !important }
  .diff-features { 
    grid-template-columns:1fr !important;
    gap:0.5rem !important;
    margin-top:1.5rem !important;
    padding-top:1.5rem !important;
  }
  .diff-features li { 
    padding:1.25rem !important;
    font-size:0.88rem !important;
  }
  .diff-features li strong { font-size:0.88rem !important }
  
  /* TESTIMONIALS */
  .testimonial-card { padding:2rem 1.5rem !important }
  .testimonial-quote { font-size:1.05rem !important;line-height:1.7 !important;margin-bottom:1.75rem !important }
  .testimonial-inner .testimonial-quote { font-size:1.15rem !important }
  .author-initial { width:44px !important;height:44px !important;font-size:1.1rem !important }
  .author-info h4 { font-size:0.95rem !important }
  .author-info p { font-size:0.8rem !important }
  
  /* CTA */
  .cta-section { padding:4rem 0 !important }
  .cta-box h2 { font-size:2rem !important;margin-bottom:1rem !important }
  .cta-box p { font-size:0.95rem !important;line-height:1.7 !important }
  .cta-section .primary-btn { padding:1rem 2rem !important;font-size:0.75rem !important }
  .cta-inner { margin:0 1rem !important;padding:2.5rem 1.5rem !important }
  .cta-inner h2 { font-size:1.75rem !important }
  .cta-inner > p { font-size:0.92rem !important }
  
  /* FOOTER */
  footer { padding:3rem 0 !important }
  .footer-container { 
    grid-template-columns:1fr !important;
    gap:2rem !important;
    padding:0 1.5rem !important;
  }
  .footer-logo-main { font-size:2rem !important }
  .footer-logo-sub { font-size:0.5rem !important }
  .footer-brand p { font-size:0.88rem !important;line-height:1.7 !important }
  .footer-links h4 { font-size:0.8rem !important;margin-bottom:0.75rem !important }
  .footer-links a { font-size:0.85rem !important }
  .footer-links li { margin-bottom:0.5rem !important;font-size:0.85rem !important;color:var(--text-secondary) !important }
  .footer-bottom { padding:1.5rem 1.5rem 0 !important;margin-top:2rem !important }
  .footer-bottom p { font-size:0.75rem !important }
  .cert-badges { gap:0.5rem !important }
  .cert-badge { font-size:0.7rem !important;padding:0.4rem 0.75rem !important }
}

/* --- SMALL PHONES (480px) --- */
@media (max-width:480px) {
  .hero h1 { font-size:2.1rem !important }
  h2[style*="font-size:4.5rem"],
  h2[style*="font-size:4rem"],
  h2[style*="font-size:3.5rem"],
  h2[style*="font-size:3rem"],
  .section-header h2,
  .diff-content h2,
  .cta-box h2 { font-size:1.6rem !important }
}



/* SPLIT HERO */
.hero{margin-top:90px;min-height:auto;padding:0}
.hero-split{display:grid;grid-template-columns:1fr 1fr;min-height:85vh}
.hero-left{padding:6rem 4rem;display:flex;flex-direction:column;justify-content:center;position:relative;max-width:800px;margin-left:auto}
.hero-left::before{content:'';position:absolute;top:-20%;right:-30%;width:600px;height:600px;background:radial-gradient(circle,rgba(196,30,58,0.08) 0%,transparent 70%);filter:blur(80px)}
.hero-left .hero-eyebrow{font-size:0.75rem;letter-spacing:3px;text-transform:uppercase;color:var(--accent-gold);margin-bottom:1.5rem;font-weight:600}
.hero-left h1{font-size:3.2rem;font-weight:300;line-height:1.15;margin-bottom:1.5rem;letter-spacing:-1.5px}
.hero-left h1 strong{font-weight:700}
.hero-left h1 .accent{color:var(--primary-red)}
.hero-left p{font-size:1rem;color:var(--text-secondary);max-width:520px;line-height:1.8;margin-bottom:2rem}
.hero-right{position:relative;overflow:hidden}
.hero-visual{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:3rem}
.hero-img-wrap{position:absolute;inset:0}
.hero-img-wrap img{width:100%;height:100%;object-fit:cover}
.hero-img-wrap::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,var(--deep-charcoal) 0%,rgba(13,13,13,0.3) 30%,rgba(13,13,13,0.1) 100%)}
.hero-stat-overlay{position:relative;z-index:2;display:flex;flex-direction:column;gap:1.5rem;padding:4rem;height:100%;justify-content:center}
.hero-stat{background:rgba(13,13,13,0.7);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,0.08);padding:1.5rem 2rem;border-radius:2px}
.hero-stat .hs-val{font-size:2rem;font-weight:700;color:var(--primary-red);letter-spacing:-1px}
.hero-stat .hs-lbl{font-size:0.7rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:1.5px;margin-top:0.25rem}

/* INTERACTIVE TOOL */
.tool-section{padding:6rem 0;background:linear-gradient(180deg,rgba(196,30,58,0.04) 0%,transparent 100%);border-top:1px solid rgba(196,30,58,0.08);border-bottom:1px solid rgba(196,30,58,0.08)}
.tool-card{background:linear-gradient(145deg,rgba(20,20,20,0.95),rgba(30,30,30,0.9));border:1px solid rgba(255,255,255,0.08);border-radius:2px;max-width:900px;margin:0 auto;overflow:hidden}
.tool-header{padding:2.5rem 3rem 0;text-align:center}
.tool-header h3{font-size:1.8rem;font-weight:400;letter-spacing:-0.5px;margin-bottom:0.5rem}
.tool-header h3 strong{font-weight:700}
.tool-header p{font-size:0.85rem;color:var(--text-secondary)}
.tool-body{padding:2rem 3rem 3rem}
.tool-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.tool-select{width:100%;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.1);color:var(--text-primary);padding:1rem 1.25rem;font-size:0.9rem;font-family:'Inter',sans-serif;outline:none;appearance:none;-webkit-appearance:none;border-radius:2px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%23737373' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center}
.tool-select:focus{border-color:rgba(196,30,58,0.4)}
.tool-select option{background:#1A1A1A;color:#E8E8E8;padding:0.5rem}
.tool-select option:checked{background:#C41E3A;color:#fff}
.tool-select option:hover{background:rgba(196,30,58,0.3)}
.tool-input{width:100%;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.1);color:var(--text-primary);padding:1rem 1.25rem;font-size:0.9rem;font-family:'Inter',sans-serif;outline:none;border-radius:2px}
.tool-input:focus{border-color:rgba(196,30,58,0.4)}
.tool-input::placeholder{color:rgba(255,255,255,0.25)}
.tool-label{font-size:0.7rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:1.5px;font-weight:600;margin-bottom:0.5rem;display:block}
.tool-btn{width:100%;padding:1.1rem;background:var(--primary-red);border:1px solid var(--primary-red);color:#fff;font-size:0.85rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;cursor:pointer;font-family:'Inter',sans-serif;transition:all 0.3s;border-radius:2px;margin-top:0.5rem}
.tool-btn:hover{background:transparent;color:var(--primary-red)}
.tool-result{margin-top:2rem;display:none;animation:hubFade 0.4s ease}
.tool-result.show{display:block}
.tool-result-card{background:rgba(0,0,0,0.3);border:1px solid rgba(255,255,255,0.06);padding:2rem;border-radius:2px}
.tr-row{display:flex;justify-content:space-between;align-items:center;padding:0.75rem 0;border-bottom:1px solid rgba(255,255,255,0.04)}
.tr-row:last-child{border-bottom:none}
.tr-lbl{font-size:0.85rem;color:var(--text-secondary)}
.tr-val{font-size:0.95rem;font-weight:700;color:var(--text-primary)}
.tr-val.red{color:var(--primary-red)}
.tr-val.green{color:#22C55E}
.tr-val.gold{color:var(--accent-gold)}
.tr-note{margin-top:1.5rem;padding:1.25rem;background:rgba(196,30,58,0.05);border:1px solid rgba(196,30,58,0.15);font-size:0.85rem;color:var(--text-secondary);line-height:1.7;border-radius:2px}

@media(max-width:768px){
  .hero-split{grid-template-columns:1fr !important;min-height:auto}
  .hero-left{padding:3rem 1.5rem !important}
  .hero-left h1{font-size:2rem !important}
  .hero-right{min-height:250px !important}
  .hero-stat-overlay{padding:1.5rem !important;flex-direction:row !important;flex-wrap:wrap;gap:0.75rem !important}
  .hero-stat{padding:1rem !important;flex:1;min-width:120px}
  .hero-stat .hs-val{font-size:1.3rem !important}
  .tool-body{padding:1.5rem !important}
  .tool-header{padding:1.5rem 1.5rem 0 !important}
  .tool-grid{grid-template-columns:1fr !important}
  .tr-row{flex-direction:column;align-items:flex-start;gap:0.25rem}
}



/* COLD CHAIN PAGE — COMPLETE REDESIGN */

/* CINEMATIC HERO */
.hero-cinematic{margin-top:90px;min-height:85vh;position:relative;overflow:hidden;display:flex;align-items:center}
.hero-cinematic .hero-video-bg{position:absolute;inset:0;z-index:0}
.hero-cinematic .hero-video-bg iframe{width:100%;height:100%;border:none;pointer-events:none}
.hero-cinematic .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(13,13,13,0.05) 0%,rgba(13,13,13,0.15) 40%,rgba(13,13,13,0.5) 75%,var(--deep-charcoal) 100%)}
.hero-cinematic .hero-content{position:relative;z-index:2;max-width:1600px;margin:0 auto;padding:0 4rem;width:100%}
.hero-cinematic h1{font-size:5rem;font-weight:300;line-height:1.08;letter-spacing:-3px;margin-bottom:1.5rem;max-width:800px}
.hero-cinematic h1 strong{font-weight:700}
.hero-cinematic .hero-sub{font-size:1.05rem;color:rgba(255,255,255,0.65);max-width:550px;line-height:1.8;margin-bottom:2.5rem}
.hero-cinematic .hero-tag{display:inline-flex;align-items:center;gap:0.6rem;padding:0.4rem 1.25rem;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:100px;font-size:0.65rem;color:rgba(255,255,255,0.5);letter-spacing:2px;text-transform:uppercase;font-weight:500;margin-bottom:2rem}
.hero-cinematic .hero-tag span{width:5px;height:5px;background:var(--primary-red);border-radius:50%}

/* TOOL — REFINED */
.temp-tool{background:linear-gradient(160deg,rgba(22,22,24,0.98),rgba(28,28,30,0.95));border:1px solid rgba(255,255,255,0.06);border-radius:4px;max-width:1000px;margin:0 auto;overflow:hidden;position:relative}
.temp-tool::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.15),var(--primary-red),rgba(255,255,255,0.15),transparent)}
.temp-tool-header{padding:2.5rem 3rem 0;display:flex;align-items:center;gap:1.5rem}
.temp-icon-wrap{width:44px;height:44px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.temp-tool-header h3{font-size:1.5rem;font-weight:400;letter-spacing:-0.5px;margin:0}
.temp-tool-header h3 strong{font-weight:700}
.temp-tool-header .tool-desc{font-size:0.8rem;color:var(--text-secondary);margin-top:0.25rem}
.temp-tool-body{padding:2rem 3rem 3rem}
.temp-status{display:inline-flex;align-items:center;gap:0.5rem;padding:0.35rem 1rem;background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.06);border-radius:100px;font-size:0.65rem;color:var(--text-secondary);letter-spacing:1px;text-transform:uppercase;font-weight:600;margin-top:0.75rem}
.temp-status::before{content:'';width:5px;height:5px;background:var(--primary-red);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.3}}

/* PREVENTION SECTION */
.prevention-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;max-width:1100px;margin:0 auto}
.prevention-card{padding:2.5rem;border:1px solid rgba(255,255,255,0.04);position:relative;transition:all 0.3s}
.prevention-card:hover{background:rgba(255,255,255,0.02)}
.prevention-card .p-num{font-size:0.6rem;color:var(--primary-red);letter-spacing:2px;font-weight:700;margin-bottom:1rem;text-transform:uppercase}
.prevention-card h4{font-size:1rem;font-weight:600;margin-bottom:0.75rem;color:var(--text-primary)}
.prevention-card p{font-size:0.88rem;color:var(--text-secondary);line-height:1.75}

/* SEASONAL CALENDAR */
.season-calendar{max-width:1100px;margin:0 auto}
.season-row{display:flex;align-items:center;margin-bottom:1.25rem}
.season-label{width:180px;flex-shrink:0;font-size:0.8rem;font-weight:600;color:var(--text-primary);padding-right:1.5rem;text-align:right}
.season-track{flex:1;height:32px;position:relative;background:rgba(255,255,255,0.02);border-radius:2px;overflow:hidden;border:1px solid rgba(255,255,255,0.03)}
.season-bar{position:absolute;top:4px;bottom:4px;border-radius:2px;display:flex;align-items:center;justify-content:center;font-size:0.6rem;font-weight:700;letter-spacing:0.5px;color:rgba(255,255,255,0.85);text-transform:uppercase}
.season-months{display:flex;flex:1}
.season-months span{flex:1;text-align:center;font-size:0.6rem;color:rgba(255,255,255,0.25);letter-spacing:0.5px;font-weight:500}
.month-header{display:flex;padding-left:180px;margin-bottom:0.75rem}
.month-header span{flex:1;text-align:center;font-size:0.6rem;color:rgba(255,255,255,0.3);letter-spacing:1px;font-weight:600;text-transform:uppercase}

/* PHOTO DIVIDER */
.photo-divider{height:45vh;position:relative;overflow:hidden;background-size:cover;background-position:center;background-repeat:no-repeat;background-attachment:fixed}
.photo-divider::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,var(--deep-charcoal) 0%,rgba(13,13,13,0) 15%,rgba(13,13,13,0) 85%,var(--deep-charcoal) 100%)}

@media(max-width:768px){
  .hero-cinematic{min-height:60vh}
  .hero-cinematic h1{font-size:2.2rem !important;letter-spacing:-1px}
  .hero-cinematic .hero-content{padding:0 1.5rem}
  .hero-cinematic .hero-sub{font-size:0.9rem}
  .hero-cinematic .hero-tag{font-size:0.55rem;padding:0.3rem 0.8rem}
  .temp-tool-header{flex-direction:column;text-align:center;padding:1.5rem 1.5rem 0}
  .temp-tool-body{padding:1.5rem}
  .prevention-grid{grid-template-columns:1fr;gap:0}
  [style*="grid-template-columns:repeat(4"]{grid-template-columns:1fr 1fr !important}
  .prevention-card{padding:1.75rem 1.5rem !important;border-right:none !important;border-bottom:1px solid rgba(255,255,255,0.04) !important}
  
  /* SEASONAL CALENDAR — mobile layout */
  .season-calendar{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .season-row{min-width:500px}
  .month-header{min-width:500px;padding-left:100px}
  .season-label{width:100px;font-size:0.7rem}
  .season-bar{font-size:0.5rem !important;letter-spacing:0}
  
  /* LOGOS — 2x2 grid on mobile */
  .stats-section [style*="display:flex"][style*="justify-content:center"]{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:0.75rem !important;
    max-width:100% !important;
    padding:0 1.5rem !important;
  }
  .logo-card{min-width:0 !important;max-width:none !important}
  
  /* PHOTO DIVIDERS */
  .photo-divider{height:35vh}
  
  /* SECTION PADDING */
  [style*="padding:8rem 0"]{padding:4rem 0 !important}
  [style*="padding:7rem 0"]{padding:3.5rem 0 !important}
  [style*="max-width:700px"]{padding:0 1.5rem !important}
  
  /* SECTION HEADINGS */
  [style*="font-size:3rem"]{font-size:1.85rem !important;letter-spacing:-0.5px !important}
  
  .video-story{grid-template-columns:1fr !important;gap:2rem}
}

