/* ===========================================================
   jennytech Business Solution — Design Tokens & Core Styles
   =========================================================== */

:root{
  --deep-blue:#0A2540;
  --deep-blue-800:#0D2F4E;
  --brand-blue:#007BFF;
  --brand-blue-600:#0064D6;
  --cyan:#00C2FF;
  --white:#FFFFFF;
  --gray-bg:#F5F7FA;
  --slate:#334155;
  --slate-light:#64748B;
  --border:#E2E8F0;
  --success:#16A34A;
  --star:#FFB020;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 8px 30px rgba(10,37,64,0.08);
  --shadow-elev: 0 20px 50px rgba(10,37,64,0.16);
  --container: 1240px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--slate);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,.font-display{font-family:var(--font-display);color:var(--deep-blue);margin:0;}
p{line-height:1.7;margin:0;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;}

.wrap{max-width:var(--container);margin:0 auto;padding:0 24px;}
.section{padding:96px 0;}
.section-alt{background:var(--gray-bg);}
@media (max-width:768px){ .section{padding:64px 0;} }

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--brand-blue);
  background:rgba(0,123,255,0.08);
  padding:5px 12px;border-radius:999px;
  margin-bottom:10px;
}
.eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--cyan);box-shadow:0 0 0 4px rgba(0,194,255,0.2);}

.h2{font-size:clamp(28px,4vw,42px);font-weight:700;line-height:1.15;letter-spacing:-0.01em;}
.h3{font-size:22px;font-weight:600;}
.lede{font-size:18px;color:var(--slate-light);max-width:640px;margin-top:14px;line-height:1.7;}
.section-head{margin-bottom:56px;}
.section-head.center{text-align:center;}
.section-head.center .lede{margin-left:auto;margin-right:auto;}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 28px;border-radius:10px;font-weight:600;font-size:15px;
  border:none;transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--brand-blue),var(--cyan));
  color:#fff;box-shadow:0 10px 24px rgba(0,123,255,0.28);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(0,123,255,0.36);}
.btn-outline{
  background:transparent;border:1.5px solid rgba(255,255,255,0.5);color:#fff;
}
.btn-outline:hover{background:rgba(255,255,255,0.12);border-color:#fff;}
.btn-outline-dark{background:transparent;border:1.5px solid var(--border);color:var(--deep-blue);}
.btn-outline-dark:hover{background:var(--deep-blue);color:#fff;border-color:var(--deep-blue);}
.btn-sm{padding:9px 18px;font-size:13px;border-radius:8px;}
.btn-block{width:100%;}

/* ===================== NAV ===================== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:10px 0;transition:all .35s ease;
  background:rgba(10,37,64,0.92);
  backdrop-filter:blur(12px);
}
.nav.scrolled{
  padding:10px 0;background:rgba(10,37,64,0.85);backdrop-filter:blur(14px);
  box-shadow:0 8px 24px rgba(10,37,64,0.18);
}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:700;font-size:19px;color:#fff;}
.brand-logo{
    height:52px;
    width:auto;
    max-width:160px;
    object-fit:contain;
    display:block;
    mix-blend-mode:screen;
}


.nav-links{display:flex;align-items:center;gap:2px;}
.nav-links a{
  color:rgba(255,255,255,0.85);font-size:14.5px;font-weight:500;padding:10px 16px;border-radius:8px;
  transition:background .2s, color .2s;position:relative;
}
.nav-links a:hover, .nav-links a.active{background:rgba(255,255,255,0.1);color:#fff;}
.nav-cta{display:flex;align-items:center;gap:12px;}
.nav-phone{color:#fff;font-size:14px;display:flex;align-items:center;gap:8px;font-weight:500;}
.nav-phone svg{width:16px;height:16px;color:var(--cyan);}

.nav-toggle{display:none;background:none;border:none;color:#fff;padding:6px;}
.mobile-menu{
  display:none;position:fixed;inset:0;z-index:1100;background:var(--deep-blue);
  padding:76px 24px 40px;flex-direction:column;gap:6px;overflow-y:auto;
}
.mobile-menu.open{display:flex;}
.mobile-menu a{color:#fff;font-size:18px;padding:14px 4px;border-bottom:1px solid rgba(255,255,255,0.08);font-weight:500;}
.mobile-close{
  position:absolute;top:16px;right:16px;
  background:rgba(255,255,255,0.15);
  border:2px solid rgba(255,255,255,0.3);
  color:#fff;
  width:42px;height:42px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:10;
}
.mobile-close svg{width:20px;height:20px;stroke:#fff;}

@media (max-width:980px) {
  .nav-links, .nav-phone { display:none; }
  .nav-toggle { display:block; }
  .nav-cta { display:none; }  /* ADD THIS LINE */
}

/* ===================== HERO / NETWORK MESH ===================== */
.hero{
  position:relative;background:var(--deep-blue);
  padding:80px 0 30px;overflow:hidden;color:#fff;
}
.hero::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,194,255,0.18), transparent 60%),
             radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0,123,255,0.16), transparent 60%);
  pointer-events:none;
}
.mesh-canvas{position:absolute;inset:0;width:100%;height:100%;opacity:.55;}
.hero .wrap{position:relative;z-index:2;}

@media (max-width:980px){.hero-grid{grid-template-columns:1fr;} .hero{padding:120px 0 40px;}}

.hero h1{font-size:clamp(26px,3.2vw,38px);font-weight:700;line-height:1.28;letter-spacing:-0.015em;color:#fff;}
.hero h1 .accent{background:linear-gradient(135deg,var(--cyan),#7CE8FF);-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero p.lede{color:rgba(255,255,255,0.72);font-size:18px;max-width:520px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:16px;}

.hero-stats{display:flex;gap:32px;margin-top:16px;}
.hero-stat b{font-family:var(--font-display);font-size:26px;color:#fff;display:block;}
.hero-stat span{font-size:13px;color:rgba(255,255,255,0.6);}

.hero-text{max-width:620px;}

.hero-diagonal-panel{
  position:absolute;top:92px;right:0;bottom:0;width:56%;
  background:#fff;
  clip-path:polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index:1;
  display:flex;align-items:center;justify-content:center;
  padding:40px 40px 40px 140px;
}
.hero-diagonal-panel img{width:100%;max-width:620px;height:auto;}

.hero-slider{position:relative;width:100%;max-width:620px;aspect-ratio:3/2;}
.hero-slide{
  position:absolute;inset:0;width:100%;height:100%;object-fit:contain;
  opacity:0;transition:opacity 1.2s ease;max-width:none;
}
.hero-slide.active{opacity:1;position:relative;}

@media (max-width:980px){
  .hero-diagonal-panel{
    position:static;width:100%;clip-path:none;
    padding:24px;margin-top:32px;border-radius:var(--radius-lg);
  }
  .hero-diagonal-panel img{max-width:100%;}
}

.status-chip{
  position:absolute;top:-14px;right:20px;background:var(--success);color:#fff;
  font-size:12px;font-weight:600;padding:7px 14px;border-radius:999px;display:flex;align-items:center;gap:6px;
  box-shadow:0 8px 20px rgba(22,163,74,0.35);
}
.status-chip::before{content:'';width:7px;height:7px;background:#fff;border-radius:50%;animation:pulse 1.6s infinite;}
@keyframes pulse{0%{opacity:1;}50%{opacity:.3;}100%{opacity:1;}}

/* thin mesh divider used between sections */
.mesh-divider{height:56px;position:relative;background:var(--deep-blue);overflow:hidden;}
.mesh-divider svg{width:100%;height:100%;}

/* ===================== COUNTERS ===================== */
.counters{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
@media (max-width:768px){.counters{grid-template-columns:repeat(2,1fr);}}
.counter-card{text-align:center;padding:28px 12px;border-radius:var(--radius-md);background:var(--white);border:1px solid var(--border);}
.counter-card b{font-family:var(--font-display);font-size:38px;color:var(--brand-blue);display:block;}
.counter-card span{font-size:13.5px;color:var(--slate-light);font-weight:500;}

/* ===================== CARDS (glass + solid) ===================== */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
@media (max-width:980px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.grid-3,.grid-4,.grid-2{grid-template-columns:1fr;}}

.service-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);
  padding:30px 26px;transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
  position:relative;overflow:hidden;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-elev);border-color:transparent;}
.service-card .icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,rgba(0,123,255,0.12),rgba(0,194,255,0.12));
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.service-card .icon svg{width:26px;height:26px;color:var(--brand-blue);}
.service-card h3{font-size:18px;margin-bottom:8px;}
.service-card p{font-size:14.5px;color:var(--slate-light);margin-bottom:16px;}
.service-card .learn{font-size:13.5px;font-weight:600;color:var(--brand-blue);display:inline-flex;align-items:center;gap:6px;}
.service-card .learn svg{width:14px;height:14px;transition:transform .2s;}
.service-card:hover .learn svg{transform:translateX(4px);}

/* glass variant for dark backgrounds */
.glass-card{
  background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(14px);border-radius:var(--radius-md);padding:26px;
}

/* product cards */
.product-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;
  transition:transform .3s, box-shadow .3s;
}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-elev);}
.product-thumb{
  aspect-ratio:4/3;
  background:linear-gradient(135deg,#EAF3FF,#F5FBFF);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.product-thumb img{
  position:absolute;
  top:0;left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product-thumb svg{
  width:64px;height:64px;
  color:var(--brand-blue);
  opacity:.85;
  position:relative;
  z-index:1;
}
.product-thumb .product-tag{
  position:absolute;
  top:12px;left:12px;
  z-index:2;
}
.product-body{padding:18px 20px 20px;}
.product-body h4{font-size:15.5px;color:var(--deep-blue);margin-bottom:6px;font-weight:600;}
.product-body p{font-size:13px;color:var(--slate-light);margin-bottom:14px;}

/* ===================== LOGO MARQUEE ===================== */
/* ===================== LOGO MARQUEE ===================== */
.marquee-wrap{overflow:hidden;position:relative;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);}
.marquee-track{display:flex;gap:48px;width:max-content;animation:scroll-x 100s linear infinite;align-items:center;}
.marquee-track.reverse{animation-direction:reverse;}
.marquee-track img, .marquee-track span{height:30px;opacity:.55;filter:grayscale(1);transition:opacity .25s, filter .25s;}
.marquee-track .logo-item{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--slate-light);opacity:.55;filter:grayscale(1);transition:.25s;white-space:nowrap;}
.marquee-track .logo-item:hover{opacity:1;filter:grayscale(0);color:var(--brand-blue);}
@keyframes scroll-x{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ===================== WHY CHOOSE US ===================== */
.why-item{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--border);}
.why-item .icon{width:44px;height:44px;border-radius:12px;background:rgba(0,123,255,0.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.why-item .icon svg{width:22px;height:22px;color:var(--brand-blue);}
.why-item h4{font-size:15.5px;color:var(--deep-blue);margin-bottom:4px;font-weight:600;}
.why-item p{font-size:13.5px;color:var(--slate-light);}

/* ===================== INDUSTRIES ===================== */
.industry-chip{
  display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center;
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);padding:26px 14px;
  transition:.3s;
}
.industry-chip:hover{border-color:var(--brand-blue);box-shadow:var(--shadow-soft);transform:translateY(-4px);}
.industry-chip .icon{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,var(--brand-blue),var(--cyan));display:flex;align-items:center;justify-content:center;}
.industry-chip .icon svg{width:22px;height:22px;color:#fff;}
.industry-chip span{font-size:13.5px;font-weight:600;color:var(--deep-blue);}

/* ===================== TESTIMONIALS ===================== */
.test-track{display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:12px;}
.test-track::-webkit-scrollbar{height:6px;}
.test-track::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}
.test-card{
  scroll-snap-align:start;min-width:340px;background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-md);padding:28px;flex-shrink:0;
}
.stars{display:flex;gap:3px;margin-bottom:14px;}
.stars svg{width:16px;height:16px;color:var(--star);}
.test-card p.quote{font-size:14.5px;color:var(--slate);margin-bottom:20px;width:auto;max-width:100%;}
.test-person{display:flex;align-items:center;gap:12px;}
.test-avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--brand-blue),var(--cyan));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:15px;font-family:var(--font-display);}
.test-person b{display:block;font-size:14px;color:var(--deep-blue);}
.test-person span{font-size:12.5px;color:var(--slate-light);}

/* ===================== CTA BAND ===================== */
.cta-band{
  background:linear-gradient(120deg,var(--deep-blue) 0%,#0d3a63 60%,#0a4d7a 100%);
  border-radius:var(--radius-lg);padding:64px 48px;position:relative;overflow:hidden;
  text-align:center;color:#fff;
}
.cta-band h2{color:#fff;}
.cta-band p{color:rgba(255,255,255,0.72);margin-top:12px;}
.cta-band .hero-actions{justify-content:center;margin-top:30px;}
@media (max-width:640px){.cta-band{padding:44px 24px;}}

/* ===================== FOOTER ===================== */
footer{background:var(--deep-blue);color:rgba(255,255,255,0.7);padding-top:72px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,0.1);}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-grid h5{color:#fff;font-family:var(--font-display);font-size:15px;margin-bottom:18px;}
.footer-grid ul li{margin-bottom:11px;font-size:14px;}
.footer-grid ul li a:hover{color:var(--cyan);}
.footer-social{display:flex;gap:10px;margin-top:20px;}
.footer-social a{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;transition:.2s;}
.footer-social a:hover{background:var(--brand-blue);}
.footer-social svg{width:16px;height:16px;}
.newsletter-row{display:flex;gap:8px;margin-top:14px;}
.newsletter-row input{
  flex:1;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);
  border-radius:8px;padding:11px 14px;color:#fff;font-size:13.5px;
}
.newsletter-row input::placeholder{color:rgba(255,255,255,0.4);}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:26px 0;font-size:13px;flex-wrap:wrap;gap:12px;}
.footer-bottom a{color:rgba(255,255,255,0.55);}
.footer-contact-item{display:flex;gap:10px;margin-bottom:14px;font-size:13.5px;}
.footer-contact-item svg{width:17px;height:17px;color:var(--cyan);flex-shrink:0;margin-top:2px;}

/* ===================== FLOATING BUTTONS ===================== */
.float-btns{position:fixed;bottom:26px;right:26px;z-index:900;display:flex;flex-direction:column;gap:12px;align-items:flex-end;}
.wa-btn{
  width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,0.4);transition:transform .25s;
}
.wa-btn:hover{transform:scale(1.08);}
.wa-btn svg{width:28px;height:28px;color:#fff;}
.top-btn{
  width:44px;height:44px;border-radius:50%;background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-soft);opacity:0;pointer-events:none;transform:translateY(10px);transition:.3s;
}
.top-btn.show{opacity:1;pointer-events:auto;transform:translateY(0);}
.top-btn svg{width:18px;height:18px;color:var(--brand-blue);}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero{
  background:var(--deep-blue);padding:120px 0 32px;;position:relative;overflow:hidden;color:#fff;
}
.page-hero .wrap{position:relative;z-index:2;}
.breadcrumb{font-size:13.5px;color:rgba(255,255,255,0.6);margin-bottom:16px;}
.breadcrumb a:hover{color:var(--cyan);}
.page-hero h1{font-size:clamp(28px,4vw,44px);color:#fff;}
.page-hero p{color:rgba(255,255,255,0.7);margin-top:12px;max-width:600px;}

/* ===================== FORMS ===================== */
.form-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:36px;box-shadow:var(--shadow-soft);}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
@media (max-width:560px){.field-row{grid-template-columns:1fr;}}
.field label{display:block;font-size:13px;font-weight:600;color:var(--deep-blue);margin-bottom:7px;}
.field input, .field select, .field textarea{
  width:100%;border:1.5px solid var(--border);border-radius:10px;padding:12px 14px;font-size:14.5px;
  font-family:inherit;transition:border-color .2s, box-shadow .2s;background:#fff;color:var(--slate);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;border-color:var(--brand-blue);box-shadow:0 0 0 4px rgba(0,123,255,0.12);
}
.field-full{margin-bottom:16px;}

/* ===================== FILTER / SEARCH (products page) ===================== */
.filter-bar{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-bottom:36px;}
.filter-chip{
  padding:9px 18px;border-radius:999px;border:1.5px solid var(--border);font-size:13.5px;font-weight:600;
  color:var(--slate);background:#fff;transition:.2s;
}
.filter-chip:hover{border-color:var(--brand-blue);color:var(--brand-blue);}
.filter-chip.active{background:var(--deep-blue);border-color:var(--deep-blue);color:#fff;}
.search-box{position:relative;flex:1;min-width:220px;}
.search-box input{width:100%;padding:11px 16px 11px 42px;border-radius:999px;border:1.5px solid var(--border);font-size:14px;}
.search-box svg{position:absolute;left:15px;top:50%;transform:translateY(-50%);width:17px;height:17px;color:var(--slate-light);}

/* reveal on scroll */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1;transform:translateY(0);}

/* misc */
.divider-label{display:flex;align-items:center;gap:14px;color:rgba(255,255,255,0.4);font-size:12.5px;margin-bottom:26px;letter-spacing:.06em;text-transform:uppercase;}
.divider-label::after{content:'';flex:1;height:1px;background:rgba(255,255,255,0.12);}
.badge-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px;}
.mini-badge{font-size:12px;font-weight:600;color:var(--deep-blue);background:var(--gray-bg);border:1px solid var(--border);padding:6px 12px;border-radius:8px;}

.timeline{border-left:2px solid var(--border);padding-left:32px;}
.timeline-item{position:relative;padding-bottom:36px;}
.timeline-item::before{content:'';position:absolute;left:-38px;top:2px;width:14px;height:14px;border-radius:50%;background:var(--brand-blue);border:3px solid #fff;box-shadow:0 0 0 2px var(--brand-blue);}
.timeline-item b{color:var(--deep-blue);font-family:var(--font-display);font-size:15px;}
.timeline-item p{margin-top:6px;font-size:14px;color:var(--slate-light);}

.value-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);padding:26px;text-align:center;}
.value-card .icon{width:50px;height:50px;border-radius:14px;background:linear-gradient(135deg,var(--brand-blue),var(--cyan));display:flex;align-items:center;justify-content:center;margin:0 auto 16px;}
.value-card .icon svg{width:24px;height:24px;color:#fff;}

.project-card{border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--border);background:#fff;transition:.3s;}
.project-card:hover{box-shadow:var(--shadow-elev);transform:translateY(-5px);}
.project-thumb{aspect-ratio:16/10;background:linear-gradient(135deg,#0A2540,#0d5a8a);position:relative;display:flex;align-items:center;justify-content:center;}
.project-thumb svg{width:48px;height:48px;color:rgba(255,255,255,0.5);}
.project-industry{position:absolute;top:12px;left:12px;background:rgba(255,255,255,0.15);backdrop-filter:blur(6px);color:#fff;font-size:11px;font-weight:600;padding:5px 11px;border-radius:999px;}
.project-body{padding:20px 22px 22px;}
.project-body h4{font-size:16px;color:var(--deep-blue);margin-bottom:8px;}
.project-body p{font-size:13.5px;color:var(--slate-light);margin-bottom:14px;}
.tech-tags{display:flex;gap:6px;flex-wrap:wrap;}
.tech-tags span{font-size:11px;font-weight:600;background:var(--gray-bg);color:var(--slate);padding:4px 10px;border-radius:6px;}

.map-frame{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border);height:100%;min-height:340px;}
.contact-info-card{background:var(--deep-blue);border-radius:var(--radius-lg);padding:36px;color:#fff;}
.contact-info-card .footer-contact-item{color:rgba(255,255,255,0.8);}

.sticky-top{position:sticky;top:110px;}

/* ===================== MEGA MENU (Products) ===================== */
.nav-item{
  position:relative;display:flex;align-items:center;border-radius:8px;transition:background .2s;
}
.nav-item:hover, .nav-item.open{background:rgba(255,255,255,0.1);}
.mega-link{
  color:rgba(255,255,255,0.85);font-size:14.5px;font-weight:500;
  padding:10px 4px 10px 16px;border-radius:8px 0 0 8px;transition:color .2s;
}
.mega-toggle{
  background:none;border:none;padding:10px 14px 10px 6px;margin:0;
  color:rgba(255,255,255,0.85);display:flex;align-items:center;cursor:pointer;
  border-radius:0 8px 8px 0;transition:color .2s;
}
.nav-item:hover .mega-link, .nav-item:hover .mega-toggle,
.nav-item.open .mega-link, .nav-item.open .mega-toggle,
.mega-link.active{color:#fff;}
.mega-toggle .chev{width:12px;height:12px;transition:transform .25s;pointer-events:none;}
.nav-item:hover .mega-toggle .chev, .nav-item.open .mega-toggle .chev{transform:rotate(180deg);}

.mega-panel{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);
  background:#fff;border-radius:18px;box-shadow:0 24px 60px rgba(10,37,64,0.22);
  padding:20px;min-width:560px;display:grid;grid-template-columns:1fr 1fr;gap:6px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .22s ease, transform .22s ease, visibility .22s;z-index:1200;
}
.nav-item:hover .mega-panel, .nav-item.open .mega-panel{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0);
}
.mega-panel::before{
  content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%) rotate(45deg);
  width:12px;height:12px;background:#fff;border-radius:2px;
}
.mega-item{
  display:flex;align-items:center;gap:14px;padding:12px;border-radius:12px;transition:background .2s;
}
.mega-item:hover{background:var(--gray-bg);}
.mega-item .icon{
  width:40px;height:40px;border-radius:10px;flex-shrink:0;
  background:linear-gradient(135deg,rgba(0,123,255,0.1),rgba(0,194,255,0.1));
  display:flex;align-items:center;justify-content:center;
}
.mega-item .icon svg{width:19px;height:19px;color:var(--brand-blue);}
.mega-item b{display:block;font-size:14px;color:var(--deep-blue);font-weight:600;}
.mega-item span{font-size:12px;color:var(--slate-light);}
.mega-item.all-products{grid-column:1 / -1;background:var(--gray-bg);}
.mega-item.all-products .icon{background:linear-gradient(135deg,var(--brand-blue),var(--cyan));}
.mega-item.all-products .icon svg{color:#fff;}

/* mobile accordion (Products, inside full-screen mobile menu) */
.mobile-accordion{border-bottom:1px solid rgba(255,255,255,0.08);}
.accordion-toggle{
  width:100%;background:none;border:none;color:#fff;font-size:18px;font-weight:500;
  padding:14px 4px;display:flex;align-items:center;justify-content:space-between;
}
.accordion-toggle .chev{width:16px;height:16px;transition:transform .25s;color:rgba(255,255,255,0.6);}
.mobile-accordion.open .accordion-toggle .chev{transform:rotate(180deg);}
.accordion-panel{max-height:0;overflow:hidden;transition:max-height .3s ease;display:flex;flex-direction:column;}
.mobile-accordion.open .accordion-panel{max-height:400px;}
.accordion-panel a{color:rgba(255,255,255,0.75);font-size:15.5px;padding:10px 4px 10px 14px;border-bottom:none;}

/* nav active state driven by JS (data-nav matching) */
.nav-links > a.active, .nav-item .mega-link.active{background:rgba(255,255,255,0.1);color:#fff;}
.mobile-menu a.active, .accordion-toggle.active{color:var(--cyan);}

/* ===================== CATEGORY PAGE: TWO-COLUMN FILTER LAYOUT ===================== */
.products-layout{
  display:grid;grid-template-columns:280px 1fr;gap:32px;align-items:flex-start;
}
@media (max-width:900px){.products-layout{grid-template-columns:1fr;}}

.filter-sidebar{
  position:sticky;top:100px;
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);
  padding:24px 22px;max-height:calc(100vh - 130px);overflow-y:auto;
}
@media (max-width:900px){.filter-sidebar{position:static;max-height:none;}}
.filter-sidebar::-webkit-scrollbar{width:5px;}
.filter-sidebar::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}

.filter-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;}
.filter-head h3{font-size:17px;}
.clear-filters-btn{background:none;border:none;color:var(--brand-blue);font-size:12.5px;font-weight:600;padding:0;}
.clear-filters-btn:hover{text-decoration:underline;}

.filter-search{position:relative;margin-bottom:22px;}
.filter-search svg{position:absolute;left:13px;top:50%;transform:translateY(-50%);width:15px;height:15px;color:var(--slate-light);}
.filter-search input{
  width:100%;padding:10px 12px 10px 36px;border-radius:9px;border:1.5px solid var(--border);font-size:13.5px;
}
.filter-search input:focus{outline:none;border-color:var(--brand-blue);}

.filter-group{padding:16px 0;border-top:1px solid var(--border);}
.filter-group:first-of-type{border-top:none;padding-top:0;}
.filter-group h4{font-size:13px;font-weight:600;color:var(--deep-blue);margin-bottom:12px;text-transform:uppercase;letter-spacing:.03em;}
.filter-options{display:flex;flex-direction:column;gap:9px;max-height:180px;overflow-y:auto;padding-right:4px;}
.filter-options::-webkit-scrollbar{width:4px;}
.filter-options::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}
.filter-check{display:flex;align-items:center;gap:9px;font-size:13.5px;color:var(--slate);cursor:pointer;}
.filter-check input{width:16px;height:16px;accent-color:var(--brand-blue);cursor:pointer;flex-shrink:0;}

.products-main-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;flex-wrap:wrap;gap:10px;}
.results-count{font-size:13.5px;color:var(--slate-light);font-weight:500;}
.product-grid-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:1100px){.product-grid-cards{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.product-grid-cards{grid-template-columns:repeat(2,1fr);gap:10px;}}
.filter-empty{
  grid-column:1/-1;text-align:center;padding:60px 20px;color:var(--slate-light);
  border:1.5px dashed var(--border);border-radius:var(--radius-md);font-size:14.5px;
}

.category-chip-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:28px;}
.category-chip-row a{
  padding:8px 16px;border-radius:999px;border:1.5px solid var(--border);font-size:13px;font-weight:600;
  color:var(--slate);transition:.2s;
}
.category-chip-row a:hover{border-color:var(--brand-blue);color:var(--brand-blue);}
.category-chip-row a.current{background:var(--deep-blue);border-color:var(--deep-blue);color:#fff;}



/* ===================== REAL PHOTOGRAPHY additions ===================== */
.hero-bg-photo{
  position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:0.16;z-index:0;
}
.mesh-canvas{z-index:1;}
.hero .wrap{z-index:2;}

.about-photo{
  width:100%;border-radius:var(--radius-lg);object-fit:cover;aspect-ratio:4/3;
  box-shadow:var(--shadow-elev);
}

.product-thumb img{width:100%;height:100%;object-fit:cover;}
.product-thumb.has-photo::after{
  content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(10,37,64,0.15));
}

.industry-chip.photo{
  position:relative;overflow:hidden;background-size:cover;background-position:center;
  color:#fff;justify-content:flex-end;padding:0;min-height:150px;gap:0;
}
.industry-chip.photo::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,37,64,0.1) 40%,rgba(10,37,64,0.88) 100%);
}
.industry-chip.photo span{
  position:relative;z-index:2;color:#fff;padding:16px;width:100%;text-align:left;
  font-size:14px;font-weight:700;
}
.industry-chip.photo:hover{transform:translateY(-4px);box-shadow:var(--shadow-elev);}





/* ===================== BRAND LOGO MARQUEE (logos only, no container) ===================== */
.brand-marquee-track{
  display:flex;gap:56px;align-items:center;width:max-content;
  animation:scroll-x 90s linear infinite;
}
.brand-marquee-track.reverse{animation-direction:reverse;}
.brand-marquee-track img{
  height:36px;width:auto;max-width:120px;object-fit:contain;flex-shrink:0;
}



/* About page feature grid */
.about-feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.about-feature-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;transition:transform .25s,box-shadow .25s;}
.about-feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.about-feature-card .afc-img-wrap{overflow:hidden;height:130px;}
.about-feature-card .afc-img{width:100%;height:130px;object-fit:cover;display:block;transition:transform .4s ease;}
.about-feature-card:hover .afc-img{transform:scale(1.05);}
.about-feature-card .afc-body{padding:18px 18px 20px;}
.about-feature-card .icon-circle{width:42px;height:42px;border-radius:50%;background:rgba(0,123,255,0.1);display:flex;align-items:center;justify-content:center;margin-bottom:12px;}
.about-feature-card .icon-circle svg{width:20px;height:20px;color:var(--brand-blue);}
.about-feature-card h4{font-size:15px;color:var(--deep-blue);margin-bottom:6px;font-weight:600;}
.about-feature-card p{font-size:13px;color:var(--slate-light);}
.about-trust-strip{display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;margin-top:48px;padding-top:32px;border-top:1px solid var(--border);}
.trust-item{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--slate);font-weight:600;max-width:200px;}
.trust-item svg{width:26px;height:26px;color:var(--brand-blue);flex-shrink:0;}

/* Product Categories grid (12-card) */
.grid-12{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:900px){.grid-12{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.grid-12{grid-template-columns:1fr;}}
.category-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);
  overflow:hidden;transition:transform .25s, box-shadow .25s;
  display:flex;flex-direction:column;
}
.category-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.category-card .cat-img{
  width:100%;height:180px;object-fit:cover;display:block;
  transition:transform .4s ease;
}
.category-card:hover .cat-img{transform:scale(1.04);}
.category-card .cat-img-wrap{overflow:hidden;flex-shrink:0;}
.category-card .cat-body{padding:18px 20px 20px;}
.category-card .icon-badge{
  width:34px;height:34px;border-radius:9px;background:rgba(0,123,255,0.1);
  display:flex;align-items:center;justify-content:center;margin-bottom:10px;
}
.category-card .icon-badge svg{width:17px;height:17px;color:var(--brand-blue);}
.category-card h4{font-size:15px;color:var(--deep-blue);margin-bottom:6px;font-weight:600;}
.category-card p{font-size:12.5px;color:var(--slate-light);margin-bottom:10px;line-height:1.6;}
.category-card .learn{font-size:12.5px;font-weight:600;color:var(--brand-blue);}

/* Portfolio cards (4-card, colored badges) */
.portfolio-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;
  transition:transform .3s, box-shadow .3s;
}
.portfolio-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-elev);}
.portfolio-badge{
  display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;
  color:#fff;padding:6px 12px;border-radius:999px;letter-spacing:.03em;text-transform:uppercase;
  position:absolute;top:12px;left:12px;z-index:2;
}
.portfolio-badge.blue{background:var(--brand-blue);}
.portfolio-badge.green{background:var(--success);}
.portfolio-thumb{aspect-ratio:4/3;position:relative;background:var(--gray-bg);}
.portfolio-thumb img{width:100%;height:100%;object-fit:cover;}
.portfolio-body{padding:18px 20px 20px;}
.portfolio-body h4{font-size:16px;color:var(--deep-blue);margin-bottom:6px;font-weight:600;}
.portfolio-body p{font-size:13px;color:var(--slate-light);margin-bottom:14px;line-height:1.6;}
.btn-outline-blue{background:transparent;border:1.5px solid var(--brand-blue);color:var(--brand-blue);}
.btn-outline-blue:hover{background:var(--brand-blue);color:#fff;}
.btn-outline-green{background:transparent;border:1.5px solid var(--success);color:var(--success);}
.btn-outline-green:hover{background:var(--success);color:#fff;}


/* ===================== LOGISTICS PARTNERS ===================== */
.logistics-card{
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-md);
  padding:24px;text-align:center;transition:.25s;
}
.logistics-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.logistics-card.featured{border-color:var(--brand-blue);box-shadow:0 0 0 3px rgba(0,123,255,0.08);}
.logistics-logo{height:32px;width:auto;max-width:100%;object-fit:contain;margin:0 auto 18px;}
.logistics-card h4{font-size:15px;color:var(--deep-blue);font-weight:700;margin-bottom:4px;}
.logistics-card p{font-size:12.5px;color:var(--slate-light);}

.courier-pill {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  
  /* Keeps things centered and aligned */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px; /* Optional: adjust spacing between logos */
}

.courier-logo {
  max-height: 32px; /* Makes the logo a bit bigger since the box is gone */
  width: auto;
  object-fit: contain;
  display: block;
}
/* =====================================================================
   MOBILE RESPONSIVE FIXES — all screens <= 640px (phones)
   ===================================================================== */

@media (max-width:640px) {
  .brand-logo { height:38px; max-width:120px; }

  /* ── HERO ─────────────────────────────────────────────────────────── */
  .hero { padding:100px 0 40px; }

  /* Hide diagonal white panel image on mobile — hero looks broken */
  .hero-diagonal-panel { display:none; }

  /* Hero text full width */
  .hero-text { max-width:100%; padding:0 4px; }

  /* Smaller headline on phone */
  .hero h1 { font-size:26px; line-height:1.3; }
  .hero p.lede { font-size:15px; }

  /* Stack hero stats 2x2 */
  .hero-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; }
  .hero-stat b { font-size:22px; }

  /* Hero action buttons stack */
  .hero-actions { flex-direction:column; gap:10px; }
  .hero-actions .btn { width:100%; justify-content:center; }

  /* ── BRAND / NAV ──────────────────────────────────────────────────── */
  .brand span { font-size:20px; }
  .brand span small { font-size:9px; letter-spacing:1px; }

  /* ── SECTION HEADINGS ─────────────────────────────────────────────── */
  .h2 { font-size:24px; }
  .lede { font-size:15px; }
  .section-head { margin-bottom:36px; }

  /* ── ABOUT SECTION ────────────────────────────────────────────────── */
  .about-photo { aspect-ratio:16/9; }

  /* Counters 2x2 on mobile */
  .counters { grid-template-columns:repeat(2,1fr); gap:12px; }
  .counter-card { padding:18px 8px; }
  .counter-card b { font-size:28px; }

  /* Badge row wraps cleanly */
  .badge-row { gap:8px; }
  .mini-badge { font-size:11px; padding:5px 10px; }

  /* ── PRODUCT CATEGORIES (12-card grid) ───────────────────────────── */
  .category-card .cat-img { height:160px; }
  .category-card .cat-body { padding:14px 16px 16px; }
  .category-card h4 { font-size:14px; }
  .category-card p { font-size:12px; }

  /* ── PORTFOLIO 4-CARD ────────────────────────────────────────────── */
  .grid-4 { grid-template-columns:1fr; }
  .portfolio-body h4 { font-size:14px; }

  /* ── TRUST STRIP ──────────────────────────────────────────────────── */
  .about-trust-strip {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    justify-items:start;
    padding-top:24px;
    margin-top:32px;
  }
  .trust-item { max-width:100%; font-size:12px; }
  .trust-item svg { width:20px; height:20px; }

  /* ── WHY CHOOSE US ────────────────────────────────────────────────── */
  .why-item { gap:12px; padding:14px 0; }
  .why-item h4 { font-size:14px; }
  .why-item p { font-size:13px; }

  /* ── LOGISTICS CARDS ──────────────────────────────────────────────── */
  .logistics-card { padding:18px 14px; }
  .logistics-card h4 { font-size:14px; }
  .logistics-card p { font-size:12px; }
  .logistics-logo { height:26px; margin-bottom:12px; }

  /* ── TESTIMONIALS ─────────────────────────────────────────────────── */
  .test-card { min-width:280px; padding:20px; }
  .test-card p.quote { font-size:13.5px; width:auto; }
  .test-person b { font-size:13px; }
  .test-person span { font-size:11.5px; }

  /* ── CTA BAND ─────────────────────────────────────────────────────── */
  .cta-band { padding:36px 20px; border-radius:var(--radius-md); }
  .cta-band h2 { font-size:22px; }
  .cta-band .lede { font-size:14px; }

  /* ── FOOTER ───────────────────────────────────────────────────────── */
  .footer-bottom {
    flex-direction:column;
    text-align:center;
    gap:10px;
    font-size:12px;
  }
  .footer-bottom div { justify-content:center; }
  .newsletter-row { flex-direction:column; gap:10px; }
  .newsletter-row input { width:100%; }
  .newsletter-row .btn { width:100%; }

  /* ── PAGE HERO (inner pages) ──────────────────────────────────────── */
  .page-hero { padding:100px 0 28px; }
  .page-hero h1 { font-size:26px; }
  .page-hero p { font-size:14px; }

  /* ── CONTACT PAGE ─────────────────────────────────────────────────── */
  .form-card { padding:24px 18px; }
  .contact-info-card { padding:24px 18px; }
  .map-frame { min-height:220px; }

  /* ── ABOUT FEATURE CARDS (2x2 grid) ──────────────────────────────── */
  .about-feature-grid { grid-template-columns:1fr; }
  .about-feature-card .afc-img-wrap { height:110px; }
  .about-feature-card .afc-img { height:110px; }
  .about-feature-card .afc-body { padding:14px; }

  /* ── PRODUCT FILTER LAYOUT ────────────────────────────────────────── */
  .category-chip-row { gap:8px; }
  .category-chip-row a { padding:6px 12px; font-size:12px; }

  /* ── FLOATING BUTTONS ─────────────────────────────────────────────── */
  .float-btns { bottom:18px; right:18px; gap:10px; }
  .wa-btn { width:50px; height:50px; }
  .wa-btn svg { width:24px; height:24px; }

  /* ── VALUE CARDS (mission/vision/core values) ─────────────────────── */
  .value-card { padding:20px; }
  .value-card h4 { font-size:14px; }

  /* ── SECTION PADDING ──────────────────────────────────────────────── */
  .section { padding:52px 0; }
  .wrap { padding:0 16px; }
}

/* ── TABLET fixes (641px – 900px) ──────────────────────────────────── */
@media (min-width:641px) and (max-width:900px) {
  .hero h1 { font-size:30px; }
  .hero-diagonal-panel {
    position:static; width:100%; clip-path:none;
    padding:24px; margin-top:24px; border-radius:var(--radius-lg);
  }
  .hero-stats { gap:20px; }
  .grid-2 { grid-template-columns:1fr; gap:32px; }
  .about-trust-strip { grid-template-columns:repeat(3,1fr); gap:16px; display:grid; }
  .trust-item { max-width:100%; }
  .test-card { min-width:300px; }
  .test-card p.quote { width:auto; }
}

/* ── Testimonial quote width fix for ALL mobile ─────────────────────── */
@media (max-width:900px) {
  .test-card p.quote { width:auto; max-width:100%; }
}



@media (max-width:640px) {
/* ── NAV mobile fixes ─────────────────────────────────────────────── */
.nav-cta { display:none; }
.nav-toggle { display:block !important; padding:8px; }
.nav-toggle svg { width:26px; height:26px; }
.nav .wrap { padding:0 16px; }

/* ── Hero white panel overflow fix ───────────────────────────────── */
.hero-diagonal-panel { display:none !important; }
.hero { overflow:hidden; padding:90px 0 40px; }
.hero .wrap { padding:0 16px; }



  /* Contact page */
  .contact-info-card { padding:20px 16px; }
  .contact-info-card h3 { font-size:18px; }
  .map-frame { min-height:200px; }

  /* Shipping page incoterm cards */
  .incoterm-visual-grid { grid-template-columns:1fr !important; gap:16px; }
  .incoterm-visual-card svg.iv-diagram { height:100px; }
  .incoterm-badge { font-size:16px; padding:5px 16px; }

  /* Courier pills row wraps on mobile */
  .courier-name { gap:10px; flex-wrap:wrap; justify-content:center; }
  .courier-pill { font-size:13px; padding:8px 14px; }

  /* Payment page */
  .payment-grid { grid-template-columns:1fr 1fr !important; gap:12px; }
  .payment-card { padding:18px 12px; }
  .payment-card h4 { font-size:13px; }
  .security-strip { flex-direction:column; align-items:flex-start; gap:14px; }
  .security-item { font-size:13px; }

  /* Privacy policy */
  .policy-body h3 { font-size:16px; }
  .policy-body p, .policy-body ul li { font-size:14px; }

  /* Product filter sidebar collapse button on mobile */
  .filter-sidebar { padding:18px 16px; }
  .filter-head h3 { font-size:15px; }
  .filter-check { font-size:13px; }

  /* Product grid 1 column on small phones */
  .product-grid-cards { grid-template-columns:1fr 1fr; gap:14px; }
  .product-body h4 { font-size:14px; }

  /* About feature cards 1 column already set, make image smaller */
  .about-feature-card .afc-img-wrap { height:100px; }
  .about-feature-card .afc-img { height:100px; }

  /* World map legend wraps */
  .wm-legend { gap:12px; justify-content:flex-start; }
  .wm-legend-item { font-size:11px; }

  /* ── Category card images fit properly ───────────────────────────── */
.category-card .cat-img { height:140px; }
.cat-img-wrap { overflow:hidden; }

/* ── About feature card images ────────────────────────────────────── */
.afc-img-wrap { height:100px !important; }
.afc-img { height:100px !important; }

/* ── Portfolio card images ─────────────────────────────────────────── */
.portfolio-thumb { aspect-ratio:16/9; }

/* ── Product thumb images ──────────────────────────────────────────── */
.product-thumb { aspect-ratio:4/3; }
.product-grid-cards { grid-template-columns:1fr 1fr; gap:12px; }
.product-body { padding:12px 14px 14px; }
.product-body h4 { font-size:13px; }
}






/* =========================================================
   BRAND LOGO + TEXT
   Used in both Navbar and Footer
   ========================================================= */

/* ---------- TOP NAVBAR ---------- */

.brand-with-text {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-with-text .brand-logo {
  width: 58px;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  color: #ffffff;
}

.brand-subtitle {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--cyan);
}

.brand-tagline {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.brand-tagline span {
  color: var(--cyan);
  margin: 0 3px;
}


/* ---------- FOOTER ---------- */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 16px;
}

.footer-jt-logo {
  width: 68px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-brand-subtitle {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.2;
  color: var(--cyan);
}

.footer-brand-tagline {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.2;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.footer-brand-tagline span {
  color: var(--cyan);
  margin: 0 4px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 560px) {

  .brand-with-text {
    gap: 7px;
  }

  .brand-with-text .brand-logo {
    width: 48px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-subtitle {
    font-size: 6.5px;
    letter-spacing: 1.5px;
  }

  .brand-tagline {
    font-size: 5px;
    letter-spacing: 1px;
  }

  .footer-jt-logo {
    width: 58px;
  }

  .footer-brand-name {
    font-size: 18px;
  }

  .footer-brand-subtitle {
    font-size: 7px;
  }

  .footer-brand-tagline {
    font-size: 5.5px;
  }
}

/* ===========================================================
   MOBILE COMPATIBILITY LAYER — phones + small tablets
   Safe, additive overrides. Loaded last so it wins.
   =========================================================== */

/* ---- Base: stop sideways scroll, notch support, tap UX ---- */
html{
  -webkit-text-size-adjust:100%;
  scroll-padding-top:84px;
}
body{
  overflow-x:clip;
  text-rendering:optimizeLegibility;
  -webkit-tap-highlight-color:rgba(0,194,255,.18);
}
img,svg,video,iframe{max-width:100%;}
img{height:auto;}
iframe{border:0;}
table{width:100%;border-collapse:collapse;}
a,button{-webkit-tap-highlight-color:rgba(0,194,255,.2);}
:focus-visible{outline:2px solid var(--cyan);outline-offset:2px;border-radius:4px;}

/* Fixed nav offset for anchor jumps */
section[id],div[id]{scroll-margin-top:90px;}

/* ---- Nav: 44px touch targets, notch padding ---- */
.nav .wrap{
  min-height:64px;
  padding-top:calc(10px + env(safe-area-inset-top, 0px)*0);
  padding-left:max(16px, env(safe-area-inset-left));
  padding-right:max(16px, env(safe-area-inset-right));
}
.nav-toggle{
  width:44px;height:44px;
  display:none;align-items:center;justify-content:center;
  border-radius:10px;
}
.nav-toggle:active{background:rgba(255,255,255,.12);}
.nav-toggle svg{width:26px;height:26px;}

/* ---- Mobile menu: half-page side drawer (page stays visible behind) ---- */
.mobile-menu{
  left:auto;right:0;top:0;bottom:0;
  width:min(78vw,360px);height:100vh;height:100dvh;max-height:100dvh;
  border-top-left-radius:18px;border-bottom-left-radius:18px;
  box-shadow:-24px 0 60px rgba(2,10,24,.45);
  padding-top:calc(68px + env(safe-area-inset-top));
  padding-bottom:calc(32px + env(safe-area-inset-bottom));
  padding-left:20px;
  padding-right:max(20px, env(safe-area-inset-right));
  transform:translateX(105%);
  transition:transform .32s cubic-bezier(.32,.72,.35,1);
  display:flex !important;
  visibility:hidden;
  will-change:transform;
}
.mobile-menu.open{
  transform:translateX(0);
  visibility:visible;
}
.menu-backdrop{
  position:fixed;inset:0;z-index:1090;
  background:rgba(4,15,30,.55);
  -webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);
  opacity:0;visibility:hidden;
  transition:opacity .3s ease, visibility .3s;
}
.menu-backdrop.show{opacity:1;visibility:visible;}
body.menu-open{overflow:hidden;overscroll-behavior:contain;}
.mobile-menu > a,
.mobile-accordion .accordion-toggle{
  min-height:48px;
  display:flex;align-items:center;
  font-size:17px;
}
.mobile-menu > a.btn{
  min-height:50px;
  border-bottom:none;
  margin-top:20px;
  font-size:16px;
}
.mobile-accordion .accordion-panel a{
  min-height:44px;
  display:flex;align-items:center;
}
/* Legacy support: if any page still has desktop .nav-item inside .mobile-menu,
   render its mega-panel as a simple stacked accordion */
.mobile-menu .nav-item{
  display:block;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:none;
  border-radius:0;
}
.mobile-menu .nav-item .mega-link{
  display:inline-flex;align-items:center;
  min-height:48px;
  color:#fff;font-size:17px;font-weight:500;
  padding:14px 4px;
}
.mobile-menu .nav-item .mega-toggle{
  float:right;
  width:44px;height:48px;
  align-items:center;justify-content:center;
  color:rgba(255,255,255,.7);
  padding:0;
}
.mobile-menu .nav-item .mega-toggle .chev{width:16px;height:16px;}
.mobile-menu .nav-item.open .mega-toggle .chev{transform:rotate(180deg);}
.mobile-menu .nav-item .mega-panel{
  position:static;transform:none;opacity:1;visibility:visible;pointer-events:auto;
  display:none;
  min-width:0 !important;
  background:transparent;box-shadow:none;border-radius:0;padding:0 0 8px;
  grid-template-columns:1fr !important;
}
.mobile-menu .nav-item .mega-panel::before{display:none;}
.mobile-menu .nav-item.open .mega-panel{display:grid;}
.mobile-menu .nav-item .mega-item{
  padding:10px 4px 10px 14px;
  border-radius:8px;
}
.mobile-menu .nav-item .mega-item:hover{background:rgba(255,255,255,.06);}
.mobile-menu .nav-item .mega-item .icon{display:none;}
.mobile-menu .nav-item .mega-item b{color:#fff;font-size:15.5px;font-weight:500;}
.mobile-menu .nav-item .mega-item span{display:none;}
.mobile-menu .nav-item .mega-item.all-products{background:transparent;}

/* ---- Hero: fixed-nav clearance + fluid type ---- */
.hero{
  padding-top:calc(108px + env(safe-area-inset-top));
}
.hero h1{
  font-size:clamp(26px,7.2vw,38px);
  text-wrap:balance;
  overflow-wrap:anywhere;
}
.hero p.lede,.lede{
  overflow-wrap:anywhere;
  font-size:clamp(15px,4vw,18px);
}
.hero-actions .btn{
  min-height:50px;
  font-size:16px;
}
/* Keep the white diagonal panel hidden on phones (already done),
   but show a compact version on large tablets in portrait */
@media (min-width:641px) and (max-width:980px){
  .hero-diagonal-panel{display:flex !important;}
}

/* ---- Grids: single source of truth, override stray inline styles ---- */
@media (max-width:980px){
  .grid-2{grid-template-columns:1fr !important;gap:32px !important;}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-12{grid-template-columns:repeat(2,1fr);}
  .counters{grid-template-columns:repeat(2,1fr) !important;gap:12px;}
  .product-grid-cards{grid-template-columns:repeat(2,1fr);}
  .products-layout{grid-template-columns:1fr;}
  .filter-sidebar{position:static;max-height:none;}
}
@media (max-width:600px){
  .grid-3,.grid-4,.grid-12{grid-template-columns:1fr;}
  .product-grid-cards{grid-template-columns:1fr 1fr;gap:12px;}
  .about-feature-grid{grid-template-columns:1fr;}
  .service-detail{grid-template-columns:1fr !important;padding:40px 0;gap:28px;}
}
@media (max-width:420px){
  /* Keep 2-per-row even on very small phones */
  .product-grid-cards{grid-template-columns:1fr 1fr !important;gap:10px;}
  .payment-grid{grid-template-columns:1fr !important;}
  .logistics-card{padding:16px 12px;}
}

/* ---- Products: compact 2-per-row cards on phones ---- */
.product-thumb .product-tag{
  background:rgba(10,37,64,.85);
  color:#fff;
  font-size:11px;font-weight:600;
  padding:5px 10px;border-radius:999px;
  backdrop-filter:blur(4px);
  max-width:calc(100% - 16px);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
@media (max-width:640px){
  .product-grid-cards{grid-template-columns:1fr 1fr !important;gap:10px;}
  .product-card{border-radius:12px;display:flex;flex-direction:column;}
  .product-thumb{aspect-ratio:1/1;}
  .product-thumb svg{width:40px;height:40px;}
  .product-thumb .product-tag{top:8px;left:8px;font-size:10px;padding:4px 8px;}
  .product-body{padding:10px 10px 12px;display:flex;flex-direction:column;flex:1;}
  .product-body h4{
    font-size:12.5px;line-height:1.35;margin-bottom:4px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
    overflow:hidden;min-height:2.7em;
  }
  .product-body p{
    font-size:11px;margin-bottom:8px;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  }
  .product-body .tech-tags{gap:4px;margin-bottom:10px !important;}
  .product-body .tech-tags span{font-size:10px;padding:3px 7px;}
  .product-body .tech-tags span:nth-child(n+3){display:none;}
  .product-body .btn{padding:8px 6px;font-size:12px;min-height:38px;border-radius:8px;margin-top:auto;}
}
@media (max-width:380px){
  .product-grid-cards{gap:8px;}
  .product-body{padding:8px 8px 10px;}
  .product-body h4{font-size:12px;}
  .product-body p{font-size:10.5px;}
  .product-body .btn{font-size:11.5px;}
}

/* ---- Category chips: swipeable row on touch ---- */
@media (max-width:768px){
  .category-chip-row{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    padding-bottom:10px;
    margin-left:-16px;margin-right:-16px;
    padding-left:16px;padding-right:16px;
    scrollbar-width:none;
  }
  .category-chip-row::-webkit-scrollbar{display:none;}
  .category-chip-row a{flex:0 0 auto;scroll-snap-align:start;}
}

/* ---- Filter sidebar: collapsible on mobile (button injected by JS) ---- */
.filter-toggle-btn{
  display:none;
  width:100%;
  align-items:center;justify-content:space-between;
  background:var(--deep-blue);color:#fff;
  border:none;border-radius:12px;
  padding:14px 18px;
  font-size:15px;font-weight:600;
  margin-bottom:14px;
  min-height:50px;
}
.filter-toggle-btn .chev{width:18px;height:18px;transition:transform .25s;}
.filter-toggle-btn[aria-expanded="true"] .chev{transform:rotate(180deg);}
@media (max-width:900px){
  .filter-toggle-btn{display:inline-flex;}
  .filter-sidebar{transition:max-height .3s ease, opacity .25s ease;}
  .filter-sidebar.collapsed{display:none;}
  .products-main-head{margin-bottom:14px;}
}

/* ---- Marquee: smaller logos, no layout jank on phones ---- */
@media (max-width:640px){
  .brand-marquee-track{gap:32px;animation-duration:60s;}
  .brand-marquee-track img{height:28px;max-width:96px;}
  .marquee-track{gap:32px;}
}

/* ---- Testimonials: momentum scroll + snap ---- */
.test-track{
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
  scroll-padding:0 16px;
  margin-left:-16px;margin-right:-16px;
  padding-left:16px;padding-right:16px;
}
.test-card{scroll-snap-align:start;}
@media (max-width:640px){
  .test-track{gap:14px;}
  .test-card{min-width:min(84vw,320px);}
}

/* ---- Images / thumbs: consistent ratios, no stretch ---- */
.cat-img,.portfolio-thumb img,.product-thumb img,.about-photo{
  width:100%;height:100%;object-fit:cover;
}
.cat-img-wrap{aspect-ratio:16/10;}
@media (max-width:640px){
  .category-card .cat-img{height:100%;}
  .portfolio-thumb{aspect-ratio:16/10;}
}

/* ---- Forms: 16px inputs stop iOS auto-zoom, full-width buttons ---- */
.field input,.field select,.field textarea,.filter-search input,.search-box input{
  font-size:16px;
}
@media (max-width:560px){
  .form-card{padding:24px 18px;}
  .form-card .btn-block,.contact-info-card .btn-block{width:100%;min-height:50px;}
  .newsletter-row .btn{min-height:48px;}
}

/* ---- Footer: stack + safe-area ---- */
footer{padding-bottom:env(safe-area-inset-bottom);}
@media (max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px;}
}
@media (max-width:560px){
  .footer-grid{grid-template-columns:1fr;gap:24px;padding-bottom:32px;}
  .footer-social a{width:44px;height:44px;}
}

/* ---- Floating buttons: safe-area + smaller on phones ---- */
.float-btns{
  right:max(18px, env(safe-area-inset-right));
  bottom:max(18px, env(safe-area-inset-bottom));
}
@media (max-width:640px){
  .wa-btn{width:54px;height:54px;}
  .top-btn{width:44px;height:44px;}
}

/* ---- World map + courier + incoterms: touch friendly ---- */
.world-map-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;}
.world-map-svg{min-width:640px;}
@media (max-width:640px){
  .world-map-svg text{font-size:12px !important;}
  .wm-tooltip{max-width:calc(100vw - 48px);white-space:normal;}
  .courier-strip{gap:20px;}
  .courier-strip img{height:30px;}
  .courier-name{gap:10px;}
  .courier-logo{max-height:28px;}
  .incoterm-visual-grid{grid-template-columns:1fr !important;}
}
@media (hover:none){
  .wm-pin{cursor:pointer;}
}

/* ---- Page hero + sections: tighter on phones ---- */
@media (max-width:640px){
  .btn{white-space:normal;text-align:center;line-height:1.4;}
  .hero-actions .btn{width:100%;}
  .page-hero{padding-top:calc(104px + env(safe-area-inset-top));}
  .breadcrumb{font-size:12.5px;overflow-x:auto;white-space:nowrap;-webkit-overflow-scrolling:touch;}
  .section{padding:52px 0;}
  .section-head{margin-bottom:32px;}
  .cta-band .hero-actions .btn{width:100%;}
  .about-trust-strip{gap:14px;}
  .value-card{padding:20px 16px;}
  .sd-visual{min-height:220px;}
  .incoterm-visual-card{padding:22px 18px;}
}

/* ---- Motion safety + landscape phones ---- */
@media (prefers-reduced-motion:reduce){
  .brand-marquee-track,.marquee-track{animation:none;}
  .reveal{opacity:1;transform:none;transition:none;}
  html{scroll-behavior:auto;}
}
@media (max-height:500px) and (orientation:landscape){
  .mobile-menu{padding-top:64px;}
  .hero{padding-top:96px;}
}






.world-map-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.world-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}