/* ===================================================
   AL RAYYAN TRADING — Design System
   Palette: Trust Blue / Signal Orange / Paper White
   =================================================== */

:root{
  /* Brand colors — derived from logo */
  --navy:        #0B1F4D;   /* deep text / footer */
  --blue:        #1E4FD9;   /* primary brand blue (eagle) */
  --blue-dark:   #163CA6;
  --blue-light:  #EAF0FF;
  --orange:      #F5821F;   /* accent (logo rings) */
  --orange-dark: #D9690B;
  --orange-light:#FFF1E2;

  --paper:       #FFFFFF;
  --bg-soft:     #F6F8FC;
  --bg-soft-2:   #F0F3FA;
  --slate:       #5B6B82;   /* body text */
  --slate-light: #8C9AB0;
  --line:        #E4E9F2;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(11,31,77,0.06);
  --shadow-md: 0 10px 30px rgba(11,31,77,0.10);
  --shadow-lg: 0 24px 60px rgba(11,31,77,0.16);

  --ease: cubic-bezier(.2,.7,.2,1);

  --container: 1240px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family:'Inter', -apple-system, sans-serif;
  color: var(--slate);
  background: var(--paper);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,h5{
  font-family:'Sora', sans-serif;
  color: var(--navy);
  margin:0;
  line-height:1.18;
  letter-spacing:-0.01em;
}
p{ margin:0; }
.container{
  width:100%;
  max-width: var(--container);
  margin:0 auto;
  padding:0 24px;
}
section{ position:relative; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* Visible focus state for accessibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:3px solid var(--orange);
  outline-offset:2px;
  border-radius:4px;
}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Sora', sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: var(--orange-dark);
}
.eyebrow::before{
  content:'';
  width:18px; height:2px;
  background: var(--orange);
  border-radius:2px;
}
.section-head{
  max-width:640px;
  margin-bottom:48px;
}
.section-head.center{
  margin-left:auto; margin-right:auto; text-align:center;
}
.section-head h2{
  font-size: clamp(28px,4vw,40px);
  margin-top:12px;
}
.section-head p{
  margin-top:14px;
  font-size:16.5px;
  color:var(--slate);
}
.pad{ padding: 96px 0; }
.pad-sm{ padding:64px 0; }
.bg-soft{ background: var(--bg-soft); }
.bg-navy{ background: var(--navy); color:#C9D3EA; }
.bg-navy h2,.bg-navy h3,.bg-navy h4{ color:#fff; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:'Sora', sans-serif;
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.01em;
  padding:14px 28px;
  border-radius:999px;
  border:2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background: var(--orange);
  color:#fff;
  box-shadow: 0 8px 20px rgba(245,130,31,0.30);
}
.btn-primary:hover{
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(245,130,31,0.38);
}
.btn-outline{
  background:transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-outline:hover{
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-light{
  background:#fff;
  color:var(--navy);
}
.btn-light:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-block{ width:100%; }
.btn svg{ width:16px; height:16px; flex-shrink:0; transition: transform .25s var(--ease); }
.btn-primary:hover svg, .btn-outline:hover svg{ transform: translateX(3px); }

/* =====================================================
   HEADER
   ===================================================== */
.topbar{
  background: var(--navy);
  color:#A9B7D6;
  font-size:13px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:9px;
  padding-bottom:9px;
  gap:16px;
}
.topbar-left{ display:flex; gap:24px; flex-wrap:wrap; }
.topbar-left a, .topbar-left span{ display:inline-flex; align-items:center; gap:7px; color:#A9B7D6; }
.topbar-left svg{ width:14px; height:14px; color: var(--orange); flex-shrink:0; }
.topbar-right{ display:flex; align-items:center; gap:14px; }
.topbar-right a{
  width:28px; height:28px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.08);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.topbar-right a:hover{ background: var(--orange); color:#fff; }
.topbar-right svg{ width:14px; height:14px; }

.navwrap{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:500;
  transition: box-shadow .3s var(--ease);
}
.navwrap.scrolled{ box-shadow: var(--shadow-md); }
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  flex-shrink:0;
}
.brand img{ height:50px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{
  font-family:'Sora', sans-serif;
  font-size:19px;
  color: var(--navy);
  font-weight:700;
  letter-spacing:0.01em;
}
.brand-text span{
  font-size:11px;
  letter-spacing:0.14em;
  color: var(--orange-dark);
  font-weight:600;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0 auto;
}
.nav-links > li{ position:relative; }
.nav-links > li > a, .nav-links > li > button{
  display:flex; align-items:center; gap:6px;
  font-family:'Sora', sans-serif;
  font-size:14.5px;
  font-weight:600;
  color: var(--navy);
  padding:10px 16px;
  border-radius:8px;
  background:none; border:none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > button:hover,
.nav-links > li.active > a{ color: var(--blue); background: var(--blue-light); }
.nav-links svg.chev{ width:13px; height:13px; transition: transform .25s var(--ease); }
.nav-links li.has-mega:hover svg.chev{ transform: rotate(180deg); }

/* Mega menu */
.mega{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  transform: translateX(-50%) translateY(8px);
  width:640px;
  background:#fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border:1px solid var(--line);
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index:600;
}
.has-mega:hover .mega{
  opacity:1; visibility:visible; transform: translateX(-50%) translateY(0);
}
.mega-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.mega-item{
  display:flex; align-items:flex-start; gap:13px;
  padding:13px;
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease);
}
.mega-item:hover{ background: var(--bg-soft); }
.mega-ic{
  width:40px; height:40px; flex-shrink:0;
  border-radius:10px;
  background: var(--blue-light);
  display:flex; align-items:center; justify-content:center;
  color: var(--blue);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.mega-item:hover .mega-ic{ background: var(--orange); color:#fff; }
.mega-ic svg{ width:20px; height:20px; }
.mega-item h5{ font-size:14.5px; margin-bottom:3px; }
.mega-item p{ font-size:12.5px; color: var(--slate-light); line-height:1.4; }

.nav-cta{ display:flex; align-items:center; gap:10px; flex-shrink:0; }

.navtoggle{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center; justify-content:center;
  flex-shrink:0;
}
.navtoggle span{
  display:block; width:18px; height:2px; background: var(--navy); position:relative; border-radius:2px;
  transition: background .2s;
}
.navtoggle span::before,.navtoggle span::after{
  content:''; position:absolute; left:0; width:18px; height:2px; background:var(--navy); border-radius:2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.navtoggle span::before{ top:-6px; }
.navtoggle span::after{ top:6px; }
.navtoggle.open span{ background:transparent; }
.navtoggle.open span::before{ transform: rotate(45deg); top:0; }
.navtoggle.open span::after{ transform: rotate(-45deg); top:0; }

/* =====================================================
   HERO
   ===================================================== */
.hero{
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding:84px 0 0;
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:50px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(34px, 5vw, 56px);
  margin-top:18px;
}
.hero-copy h1 .hl{ color: var(--blue); position:relative; }
.hero-copy p{
  margin-top:20px;
  font-size:17.5px;
  max-width:520px;
  color: var(--slate);
}
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-stats{
  display:flex;
  gap:36px;
  margin-top:44px;
  padding-top:30px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.hero-stats div strong{
  display:block;
  font-family:'Sora', sans-serif;
  font-size:28px;
  color: var(--navy);
}
.hero-stats div span{ font-size:13px; color: var(--slate-light); }

.hero-visual{ position:relative; }
.hero-art{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
}
.hero-art img{ width:100%; height:100%; object-fit:cover; }
.hero-art::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,31,77,0) 40%, rgba(11,31,77,0.55) 100%);
}
.hero-badge{
  position:absolute;
  bottom:-26px; left:-26px;
  background:#fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding:18px 20px;
  display:flex; align-items:center; gap:14px;
  max-width:240px;
  animation: float 5s ease-in-out infinite;
}
.hero-badge .ic{
  width:46px; height:46px; flex-shrink:0;
  border-radius:12px;
  background: var(--orange-light);
  color: var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.hero-badge .ic svg{ width:24px; height:24px; }
.hero-badge strong{ display:block; font-family:'Sora'; font-size:14px; color:var(--navy); }
.hero-badge span{ font-size:12px; color: var(--slate-light); }

.hero-ring{
  position:absolute;
  top:-40px; right:-40px;
  width:180px; height:180px;
  border:18px solid var(--orange-light);
  border-radius:50%;
  z-index:-1;
}
@keyframes float{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

.marquee-strip{
  margin-top:70px;
  border-top:1px solid var(--line);
  padding:26px 0;
}
.marquee-strip p{
  text-align:center;
  font-size:12.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--slate-light);
  margin-bottom:18px;
}
.marquee-track{
  display:flex; gap:60px; align-items:center; flex-wrap:wrap; justify-content:center;
  opacity:0.55;
}
.marquee-track span{
  font-family:'Sora', sans-serif;
  font-weight:700;
  font-size:18px;
  color: var(--navy);
  letter-spacing:0.02em;
}

/* =====================================================
   CATEGORY GRID  — signature element
   ===================================================== */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
.cat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  padding:30px 26px;
  position:relative;
  overflow:hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.cat-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.cat-card .num{
  position:absolute;
  top:18px; right:22px;
  font-family:'Sora';
  font-size:13px;
  font-weight:700;
  color: var(--line);
}
.cat-ic{
  width:58px; height:58px;
  border-radius:14px;
  background: var(--blue-light);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.cat-card:hover .cat-ic{ background: var(--orange); color:#fff; transform: rotate(-8deg) scale(1.06); }
.cat-ic svg{ width:28px; height:28px; }
.cat-card h3{ font-size:19px; margin-bottom:10px; }
.cat-card p{ font-size:14.5px; color: var(--slate); margin-bottom:18px; }
.cat-link{
  display:inline-flex; align-items:center; gap:7px;
  font-family:'Sora'; font-size:13.5px; font-weight:600;
  color: var(--blue);
}
.cat-link svg{ width:14px; height:14px; transition: transform .25s var(--ease); }
.cat-card:hover .cat-link svg{ transform: translateX(4px); }

/* =====================================================
   ABOUT / SPLIT SECTIONS
   ===================================================== */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.split.reverse .split-media{ order:2; }
.split-media{ position:relative; }
.split-media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width:100%;
  aspect-ratio:1/0.82;
  object-fit:cover;
}
.split-media .accent-box{
  position:absolute;
  width:120px; height:120px;
  background: var(--orange);
  border-radius: var(--radius-md);
  z-index:-1;
}
.split-media .accent-box.tl{ top:-22px; left:-22px; }
.split-media .accent-box.br{ bottom:-22px; right:-22px; background:var(--blue); }

.check-list{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.check-list li{ display:flex; align-items:flex-start; gap:12px; font-size:15px; color: var(--slate); }
.check-list .tick{
  width:22px; height:22px; flex-shrink:0; margin-top:1px;
  border-radius:50%;
  background: var(--blue-light); color: var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.check-list .tick svg{ width:12px; height:12px; }

/* =====================================================
   WHY / FEATURE STRIP
   ===================================================== */
.feat-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background: var(--line);
  border-radius: var(--radius-md);
  overflow:hidden;
}
.feat-cell{
  background:#fff;
  padding:34px 26px;
  transition: background .25s var(--ease);
}
.feat-cell:hover{ background: var(--bg-soft); }
.feat-cell .ic{
  width:48px; height:48px; border-radius:12px;
  background: var(--orange-light); color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feat-cell .ic svg{ width:24px; height:24px; }
.feat-cell h4{ font-size:16px; margin-bottom:8px; }
.feat-cell p{ font-size:13.5px; color: var(--slate); }

/* =====================================================
   PROCESS / STEPS
   ===================================================== */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  position:relative;
}
.step{ position:relative; }
.step-num{
  font-family:'Sora'; font-weight:700; font-size:42px;
  color: var(--blue-light);
  -webkit-text-stroke: 1.5px var(--blue);
  color:transparent;
  margin-bottom:14px;
  display:block;
}
.step h4{ font-size:16.5px; margin-bottom:8px; }
.step p{ font-size:14px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.t-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.t-card{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--radius-md);
  padding:30px;
}
.t-stars{ display:flex; gap:3px; color: var(--orange); margin-bottom:18px; }
.t-stars svg{ width:16px; height:16px; }
.t-card p{ font-size:14.5px; color: var(--navy); margin-bottom:22px; }
.t-person{ display:flex; align-items:center; gap:12px; }
.t-person img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
.t-person strong{ display:block; font-family:'Sora'; font-size:14px; color:var(--navy); }
.t-person span{ font-size:12px; color: var(--slate-light); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band{
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding:56px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute;
  top:-60%; right:-10%;
  width:380px; height:380px;
  background: radial-gradient(circle, rgba(245,130,31,0.30), transparent 70%);
}
.cta-band h3{ color:#fff; font-size: clamp(22px,3vw,30px); max-width:480px; }
.cta-band p{ color:#A9B7D6; margin-top:10px; }
.cta-actions{ display:flex; gap:14px; flex-shrink:0; }

/* =====================================================
   PAGE HEADER (sub-pages)
   ===================================================== */
.pagehead{
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding:74px 0 64px;
  position:relative;
  overflow:hidden;
}
.pagehead::after{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 80% 20%, rgba(245,130,31,0.18), transparent 55%);
}
.pagehead .container{ position:relative; }
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:#A9B7D6; margin-bottom:16px;
}
.breadcrumb a:hover{ color:#fff; }
.breadcrumb svg{ width:12px; height:12px; }
.pagehead h1{ color:#fff; font-size: clamp(30px,4.5vw,44px); }
.pagehead p{ color:#A9B7D6; margin-top:12px; max-width:560px; }

/* =====================================================
   SUPPLIES PAGE — category sections
   ===================================================== */
.supply-nav{
  display:flex; gap:10px; flex-wrap:wrap;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  margin-bottom:60px;
  position:sticky; top:80px; background:#fff; z-index:80;
}
.supply-nav a{
  font-family:'Sora'; font-size:13.5px; font-weight:600;
  padding:9px 18px; border-radius:999px;
  background: var(--bg-soft); color: var(--navy);
  transition: background .2s, color .2s;
}
.supply-nav a:hover, .supply-nav a.active{ background: var(--blue); color:#fff; }

.supply-block{ margin-bottom:90px; scroll-margin-top:150px; }
.supply-block-head{
  display:flex; align-items:center; gap:18px;
  margin-bottom:34px;
}
.supply-block-head .cat-ic{ margin-bottom:0; flex-shrink:0; }
.supply-block-head h2{ font-size: clamp(22px,3vw,28px); }
.supply-block-head p{ color:var(--slate-light); font-size:13.5px; margin-top:4px; }

.prod-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.prod-card{
  border:1px solid var(--line); border-radius: var(--radius-md);
  overflow:hidden; background:#fff;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.prod-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prod-img{ aspect-ratio:1/0.85; overflow:hidden; background: var(--bg-soft); }
.prod-img img{ width:100%; height:100%; object-fit:cover; transition: transform .4s var(--ease); }
.prod-card:hover .prod-img img{ transform: scale(1.06); }
.prod-card-body{ padding:18px; }
.prod-tag{ font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color: var(--orange-dark); }
.prod-card h5{ font-size:15px; margin-top:6px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:50px; }
.contact-info{ display:flex; flex-direction:column; gap:20px; }
.info-card{
  display:flex; gap:16px; align-items:flex-start;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding:22px;
}
.info-card .ic{
  width:46px; height:46px; flex-shrink:0; border-radius:12px;
  background: var(--blue-light); color: var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.info-card .ic svg{ width:22px; height:22px; }
.info-card h5{ font-size:15px; margin-bottom:5px; }
.info-card p, .info-card a{ font-size:13.5px; color:var(--slate); }

.form-card{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding:40px;
  box-shadow: var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{
  display:block; font-family:'Sora'; font-size:13px; font-weight:600;
  color: var(--navy); margin-bottom:8px;
}
.field input, .field select, .field textarea{
  width:100%;
  border:1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding:13px 15px;
  font-family:'Inter'; font-size:14.5px;
  color: var(--navy);
  background: var(--bg-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--blue); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color: var(--slate-light); margin-top:10px; display:flex; gap:8px; align-items:flex-start; }
.form-note svg{ width:14px; height:14px; flex-shrink:0; margin-top:1px; color: var(--blue); }

.map-embed{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  height:380px;
}
.map-embed iframe{ width:100%; height:100%; border:0; filter: grayscale(0.15) contrast(1.05); }

/* =====================================================
   FOOTER
   ===================================================== */
footer{ background: var(--navy); color:#9CACCD; }
.footer-top{ padding:80px 0 50px; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr; gap:50px;
}
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand img{ height:44px; }
.footer-brand strong{ color:#fff; font-family:'Sora'; font-size:18px; }
.footer-col p{ font-size:14px; line-height:1.7; }
.footer-col h5{ color:#fff; font-family:'Sora'; font-size:15px; margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col ul a{ font-size:14px; transition: color .2s; }
.footer-col ul a:hover{ color: var(--orange); }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s;
}
.footer-social a:hover{ background: var(--orange); }
.footer-social svg{ width:16px; height:16px; color:#fff; }
.footer-contact-item{ display:flex; gap:10px; align-items:flex-start; margin-bottom:14px; font-size:13.5px; }
.footer-contact-item svg{ width:15px; height:15px; color: var(--orange); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:22px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px;
  flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ transition: color .2s; }
.footer-bottom a:hover{ color:#fff; }
.footer-legal{ display:flex; gap:20px; }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.totop{
  position:fixed; bottom:26px; right:26px;
  width:46px; height:46px; border-radius:50%;
  background: var(--blue); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  z-index:400; border:none;
}
.totop.show{ opacity:1; visibility:visible; transform: translateY(0); }
.totop:hover{ background: var(--orange); }
.totop svg{ width:18px; height:18px; }

/* =====================================================
   REVEAL ANIMATION
   Lightweight, safe progressive enhancement: sections fade
   in once when they first enter the viewport. No JS = fully
   visible, no animation. Threshold is generous so content
   never sits invisible during normal scroll speeds.
   ===================================================== */
.js-reveal .reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js-reveal .reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width:1080px){
  .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
  .steps{ grid-template-columns:repeat(2,1fr); gap:36px; }
  .feat-strip{ grid-template-columns:repeat(2,1fr); }
  .prod-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:980px){
  .nav > .nav-links, .nav > .nav-cta{ display:none; }
  .navtoggle{ display:flex; }
  .nav{ padding:12px 18px; }
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:440px; margin:0 auto 20px; }
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .split, .split.reverse{ grid-template-columns:1fr; gap:36px; }
  .split.reverse .split-media{ order:0; }
  .t-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .cta-band{ flex-direction:column; text-align:center; padding:44px 30px; }
  .supply-nav{ position:static; }
}
@media (max-width:760px){
  .topbar .container{ flex-direction:column; gap:6px; align-items:flex-start; }
  .topbar-left{ gap:14px; font-size:12px; }
  .cat-grid, .feat-strip, .prod-grid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .form-row{ grid-template-columns:1fr; }
  .pad{ padding:64px 0; }
}
@media (max-width:560px){
  .cat-grid, .feat-strip, .prod-grid, .steps{ grid-template-columns:1fr; }
  .hero-badge{ left:10px; bottom:-20px; padding:14px 16px; }
  .cta-actions{ flex-direction:column; width:100%; }
  .cta-actions .btn{ width:100%; }
}

/* Mobile nav drawer */
.mobile-drawer{
  position:fixed; inset:0 0 0 auto;
  width:min(86vw,360px);
  background:#fff;
  z-index:900;
  box-shadow: -10px 0 40px rgba(11,31,77,0.18);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y:auto;
  padding:24px;
}
.mobile-drawer.open{ transform: translateX(0); }
.drawer-overlay{
  position:fixed; inset:0; background: rgba(11,31,77,0.5);
  z-index:890; opacity:0; visibility:hidden; transition: opacity .3s, visibility .3s;
}
.drawer-overlay.show{ opacity:1; visibility:visible; }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.drawer-close{ width:36px; height:36px; border-radius:50%; background: var(--bg-soft); display:flex; align-items:center; justify-content:center; border:none; }
.drawer-close svg{ width:16px; height:16px; }
.mobile-drawer .nav-links{ flex-direction:column; align-items:stretch; gap:4px; }
.mobile-drawer .nav-links > li > a, .mobile-drawer .nav-links > li > button{
  width:100%; justify-content:space-between; padding:13px 14px;
}
.mobile-drawer .mega{
  position:static !important; width:100% !important; left:auto !important;
  transform:none !important; opacity:1; visibility:visible;
  box-shadow:none; border:none; display:none; padding:8px 0 8px 14px;
}
.mobile-drawer li.mega-open .mega{ display:block; }
.mobile-drawer .mega-grid{ grid-template-columns:1fr; }
.drawer-cta{ display:flex; flex-direction:column; gap:10px; margin-top:20px; }
