:root{
  --ink:#0E1B2B;
  --navy:#122540;
  --navy-deep:#0A1729;
  --blue:#2E63F6;
  --blue-soft:#EAF0FF;
  --orange:#FF7A33;
  --paper:#F7F8FA;
  --card:#FFFFFF;
  --line:#E4E8EF;
  --muted:#5B6779;
  --radius:14px;
  --max:1160px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Manrope', sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{font-family:'Space Grotesk', sans-serif; font-weight:600; letter-spacing:-0.01em; color:var(--navy-deep);}
a{color:inherit; text-decoration:none;}
img,svg{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}
button{font-family:inherit; cursor:pointer;}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:3px solid var(--blue); outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){ *{animation-duration:.001ms !important; transition-duration:.001ms !important;} }

/* ---- NAV ---- */
header{position:sticky; top:0; z-index:50; background:rgba(247,248,250,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.navbar{display:flex; align-items:center; justify-content:space-between; padding:18px 28px; max-width:var(--max); margin:0 auto;}
.brand{display:flex; align-items:center; gap:11px;}
.brand-mark{width:42px; height:42px; flex-shrink:0;}
.brand-text{display:flex; flex-direction:column; line-height:1.1;}
.brand-name{font-family:'Space Grotesk'; font-weight:700; font-size:20px;}
.brand-sub{font-size:9.5px; font-weight:700; color:var(--muted); letter-spacing:.09em; text-transform:uppercase; margin-top:1px;}
nav.links{display:flex; gap:30px;}
nav.links a{font-size:14.5px; font-weight:600; color:var(--navy);}
nav.links a:hover{color:var(--blue);}
.navcta{display:flex; align-items:center; gap:14px;}
.lang-toggle{display:flex; border:1.5px solid var(--line); border-radius:8px; overflow:hidden; font-size:12.5px; font-weight:700;}
.lang-toggle button{background:transparent; border:none; padding:7px 12px; color:var(--muted);}
.lang-toggle button.active{background:var(--navy-deep); color:#fff;}
.btn-primary{background:var(--blue); color:#fff; border:none; padding:11px 20px; border-radius:9px; font-size:14px; font-weight:700; box-shadow:0 6px 16px rgba(46,99,246,0.28); transition:transform .15s ease; display:inline-block;}
.btn-primary:hover{transform:translateY(-1px);}
.btn-ghost{border:1.5px solid var(--line); background:#fff; padding:10px 18px; border-radius:9px; font-size:14px; font-weight:700; color:var(--navy); display:inline-block;}
@media (max-width:880px){ nav.links{display:none;} }

/* ---- HERO (home) ---- */
.hero{padding:70px 0 30px;}
.hero-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:50px; align-items:center;}
@media (max-width:920px){ .hero-grid{grid-template-columns:1fr;} }
.badge{display:inline-flex; align-items:center; gap:8px; background:var(--blue-soft); color:var(--blue); border-radius:999px; padding:7px 14px; font-size:12.5px; font-weight:700; margin-bottom:22px;}
.badge .dot{width:6px; height:6px; border-radius:50%; background:var(--orange);}
.hero h1{font-size:clamp(32px,4.4vw,52px); line-height:1.08; margin-bottom:20px;}
.hero h1 .accent{color:var(--blue);}
.hero p.lead{font-size:17px; color:var(--muted); max-width:500px; margin-bottom:30px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px;}
.stat-row{display:flex; gap:34px; flex-wrap:wrap;}
.stat b{font-family:'Space Grotesk'; font-size:24px; display:block; color:var(--navy-deep);}
.stat span{font-size:12.5px; color:var(--muted);}

.hero-art{position:relative;}
.hero-photo-wrap{position:relative; border-radius:20px; overflow:hidden; box-shadow:0 24px 60px -20px rgba(14,27,43,0.35); margin-bottom:18px;}
.hero-photo{width:100%; height:260px; object-fit:cover; display:block;}
.hero-card{background:var(--card); border-radius:20px; border:1px solid var(--line); box-shadow:0 24px 60px -20px rgba(14,27,43,0.25); padding:26px; position:relative; overflow:hidden;}
.hero-card .track-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
.track-head span{font-size:12px; font-weight:700; color:var(--muted); letter-spacing:.03em; text-transform:uppercase;}
.pill-live{background:#E6F7EE; color:#1E9E5A; font-size:11.5px; font-weight:700; padding:4px 10px; border-radius:999px;}
.track-step{display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid var(--line);}
.track-step:last-child{border-bottom:none;}
.track-dot{width:26px; height:26px; border-radius:50%; background:var(--blue-soft); color:var(--blue); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; flex-shrink:0;}
.track-step.done .track-dot{background:var(--blue); color:#fff;}
.track-copy b{font-size:13.5px; display:block;}
.track-copy span{font-size:12px; color:var(--muted);}
.float-chip{position:absolute; background:var(--navy-deep); color:#fff; border-radius:12px; padding:10px 14px; font-size:12px; font-weight:700; box-shadow:0 12px 24px rgba(10,23,41,0.35);}
.chip-1{top:-14px; right:-10px; background:var(--orange);}
.chip-2{bottom:-16px; left:-14px;}

/* ---- PAGE HERO (pricing/quote sub-pages) ---- */
.page-hero{padding:56px 0 44px; border-bottom:1px solid var(--line);}
.page-hero .eyebrow{margin-bottom:14px;}
.page-hero h1{font-size:clamp(30px,4vw,46px); line-height:1.1; margin-bottom:14px;}
.page-hero p{color:var(--muted); font-size:16px; max-width:560px;}
.breadcrumb{font-size:12.5px; color:var(--muted); margin-bottom:18px;}
.breadcrumb a:hover{color:var(--blue);}

/* ---- SECTION HEAD ---- */
section.band{padding:84px 0;}
.section-head{max-width:620px; margin-bottom:46px;}
.eyebrow{font-size:12.5px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px;}
.section-head h2{font-size:clamp(26px,3vw,36px); line-height:1.15;}
.section-head p{color:var(--muted); margin-top:14px; font-size:15.5px;}
.band.dark{background:var(--navy-deep); color:#fff;}
.band.dark h2, .band.dark h3{color:#fff;}
.band.dark .section-head p, .band.dark p{color:#AAB6C8;}
.band.alt{background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}

/* ---- SERVICES ---- */
.service-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:880px){ .service-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .service-grid{grid-template-columns:1fr;} }
.service-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px; transition:transform .15s ease, box-shadow .15s ease;}
.service-card:hover{transform:translateY(-3px); box-shadow:0 16px 30px -18px rgba(14,27,43,0.25);}
.icon-box{width:42px; height:42px; border-radius:10px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.service-card h3{font-size:16.5px; margin-bottom:8px;}
.service-card p{font-size:14px; color:var(--muted);}

/* ---- PROCESS ---- */
.process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
@media (max-width:920px){ .process-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .process-grid{grid-template-columns:1fr;} }
.process-card{position:relative; padding:28px 20px 20px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius);}
.process-num{font-family:'Space Grotesk'; font-size:34px; font-weight:700; color:var(--orange); margin-bottom:14px; display:block;}
.process-card h3{font-size:16px; margin-bottom:8px; color:#fff;}
.process-card p{font-size:13.5px; color:#AAB6C8;}

/* ---- PRICING ---- */
.tier-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:920px){ .tier-grid{grid-template-columns:1fr;} }
.tier-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; position:relative;}
.tier-card.featured{border:2px solid var(--blue); box-shadow:0 20px 40px -20px rgba(46,99,246,0.35);}
.tier-badge{position:absolute; top:-13px; right:24px; background:var(--blue); color:#fff; font-size:11px; font-weight:800; padding:5px 12px; border-radius:999px; text-transform:uppercase; letter-spacing:.04em;}
.tier-name{font-size:13px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px;}
.tier-price{font-family:'Space Grotesk'; font-size:32px; font-weight:700; color:var(--navy-deep); margin-bottom:4px;}
.tier-price span{font-size:13px; color:var(--muted); font-weight:500; font-family:'Manrope';}
.tier-desc{font-size:13.5px; color:var(--muted); margin-bottom:20px;}
.tier-list{list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:24px;}
.tier-list li{font-size:13.5px; display:flex; gap:9px; align-items:flex-start; color:var(--ink);}
.tier-list li .check{color:var(--blue); font-weight:800; flex-shrink:0;}

.price-cols{display:grid; grid-template-columns:1.35fr 1fr; gap:26px; align-items:start;}
@media (max-width:880px){ .price-cols{grid-template-columns:1fr;} }
.price-table{width:100%; border-collapse:collapse; background:#fff; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);}
.price-table th, .price-table td{padding:14px 18px; text-align:left; font-size:14px; border-bottom:1px solid var(--line);}
.price-table thead th{background:var(--navy-deep); color:#fff; font-size:12px; text-transform:uppercase; letter-spacing:.05em; font-weight:700;}
.price-table tbody tr:last-child td{border-bottom:none;}
.price-table td.amount{font-weight:800; color:var(--blue); font-family:'Space Grotesk';}
.price-note{margin-top:14px; font-size:13px; color:var(--muted);}
.pallet-box{background:var(--navy-deep); color:#fff; border-radius:var(--radius); padding:24px;}
.pallet-box h3{font-size:16px; margin-bottom:16px; color:#fff;}
.pallet-row{display:flex; justify-content:space-between; font-size:13.5px; padding:9px 0; border-bottom:1px solid rgba(255,255,255,0.14);}
.pallet-row:last-child{border-bottom:none;}
.pallet-row b{font-family:'Space Grotesk'; color:var(--orange);}

.faq-item{border-bottom:1px solid var(--line); padding:20px 0;}
.faq-item:first-child{padding-top:0;}
.faq-item h3{font-size:15.5px; margin-bottom:8px;}
.faq-item p{font-size:14px; color:var(--muted);}

/* ---- WHY ---- */
.why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:26px;}
@media (max-width:760px){ .why-grid{grid-template-columns:1fr;} }
.why-card{display:flex; gap:16px; align-items:flex-start;}
.why-icon{width:44px; height:44px; border-radius:10px; background:var(--blue-soft); flex-shrink:0; display:flex; align-items:center; justify-content:center;}
.why-card h3{font-size:16px; margin-bottom:6px;}
.why-card p{font-size:14px; color:var(--muted);}

/* ---- TRUST (quote page) ---- */
.trust-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:30px;}
@media (max-width:760px){ .trust-grid{grid-template-columns:1fr;} }
.trust-card{text-align:center; padding:20px;}
.trust-card b{font-family:'Space Grotesk'; font-size:26px; display:block; color:var(--navy-deep); margin-bottom:4px;}
.trust-card span{font-size:13px; color:var(--muted);}

/* ---- CONTACT / QUOTE FORM ---- */
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:44px;}
@media (max-width:880px){ .contact-grid{grid-template-columns:1fr;} }
.info-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px;}
.info-row{display:flex; gap:14px; padding:13px 0; border-bottom:1px solid var(--line); align-items:flex-start;}
.info-row:last-child{border-bottom:none;}
.info-row .tag{font-size:11.5px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; min-width:110px;}
form{display:flex; flex-direction:column; gap:14px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media (max-width:560px){ .form-row{grid-template-columns:1fr;} }
label{font-size:12.5px; font-weight:700; color:var(--navy); margin-bottom:6px; display:block;}
input, select, textarea{width:100%; border:1.5px solid var(--line); border-radius:9px; background:#fff; padding:11px 13px; font-family:inherit; font-size:14px; color:var(--ink);}
input:focus, select:focus, textarea:focus{border-color:var(--blue);}
textarea{resize:vertical; min-height:100px;}
.submit-row{display:flex; align-items:center; gap:16px; margin-top:4px;}
#formStatus{font-size:13px; font-weight:600;}
#formStatus.ok{color:#1E9E5A;}
#formStatus.err{color:#D9483B;}

footer{background:var(--navy-deep); color:#AAB6C8; padding:40px 0;}
.footer-row{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;}
.footer-row p{font-size:12.5px;}
.footer-address{font-size:11.5px; color:#7E8AA0; margin-top:2px;}
.footer-links{display:flex; gap:22px;}
.footer-links a{font-size:12.5px; font-weight:600; color:#AAB6C8;}
.footer-links a:hover{color:#fff;}

/* ---- VOLUME TIER PRICING (pricing page) ---- */
.track-block{margin-bottom:48px;}
.track-head-row{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:20px; flex-wrap:wrap; gap:10px;}
.track-head-row h3{font-size:19px;}
.track-head-row span{font-size:13px; color:var(--muted);}
.tier-row{display:grid; grid-template-columns:repeat(5,1fr); gap:14px; margin-bottom:22px;}
@media (max-width:920px){ .tier-row{grid-template-columns:repeat(3,1fr);} }
@media (max-width:600px){ .tier-row{grid-template-columns:repeat(2,1fr);} }
.tier-chip{background:var(--card); border:1px solid var(--line); border-radius:12px; padding:18px 14px; text-align:center;}
.tier-chip.best{border-color:var(--blue); box-shadow:0 14px 26px -16px rgba(46,99,246,0.35);}
.tier-chip .range{font-size:11px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.03em; margin-bottom:8px;}
.tier-chip .pkg-name{font-size:12.5px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.04em; margin-bottom:6px;}
.tier-chip .pkg-price{font-family:'Space Grotesk'; font-size:20px; font-weight:700; color:var(--navy-deep);}
.tier-chip .pkg-price span{font-size:11px; color:var(--muted); font-weight:500; font-family:'Manrope'; display:block;}
.included-box{background:var(--blue-soft); border-radius:var(--radius); padding:22px 24px;}
.included-box h4{font-size:13.5px; text-transform:uppercase; letter-spacing:.04em; color:var(--navy-deep); margin-bottom:14px;}
.included-list{display:grid; grid-template-columns:repeat(2,1fr); gap:10px 20px; list-style:none;}
@media (max-width:700px){ .included-list{grid-template-columns:1fr;} }
.included-list li{font-size:13.5px; display:flex; gap:8px; align-items:flex-start;}
.included-list li .check{color:var(--blue); font-weight:800; flex-shrink:0;}

.addon-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media (max-width:920px){ .addon-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .addon-grid{grid-template-columns:1fr;} }
.addon-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:20px;}
.addon-card h4{font-size:14.5px; margin-bottom:6px;}
.addon-card p.desc{font-size:12.5px; color:var(--muted); margin-bottom:14px;}
.addon-row{display:flex; justify-content:space-between; font-size:13px; padding:7px 0; border-bottom:1px solid var(--line);}
.addon-row:last-child{border-bottom:none;}
.addon-row b{font-family:'Space Grotesk'; color:var(--blue); font-weight:700;}

/* ---- FACILITY GALLERY ---- */
.gallery-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr; grid-template-rows:1fr 1fr; gap:16px; height:460px;}
@media (max-width:880px){ .gallery-grid{grid-template-columns:1fr 1fr; grid-template-rows:auto auto auto; height:auto;} }
@media (max-width:560px){ .gallery-grid{grid-template-columns:1fr; height:auto;} }
.gallery-item{position:relative; border-radius:16px; overflow:hidden; grid-row:span 2;}
.gallery-item.small{grid-row:span 1;}
.gallery-item img{width:100%; height:100%; object-fit:cover; display:block;}
.gallery-caption{position:absolute; left:0; right:0; bottom:0; padding:16px 18px 14px; background:linear-gradient(to top, rgba(10,23,41,0.85), transparent); color:#fff; font-size:13.5px; font-weight:700;}

/* ---- ILLUSTRATION BANNER ---- */
.illus-band{background:var(--blue-soft); padding:50px 0;}
.illus-wrap{max-width:900px; margin:0 auto;}
.illus-caption{text-align:center; margin-top:18px; font-size:13.5px; color:var(--muted); font-weight:600;}
.auth-wrap{min-height:calc(100vh - 74px); display:flex; align-items:center; justify-content:center; padding:60px 20px;}

/* ---- AUTH SPLIT SCREEN ---- */
.auth-split{display:grid; grid-template-columns:1.1fr 1fr; min-height:calc(100vh - 74px);}
@media (max-width:900px){ .auth-split{grid-template-columns:1fr;} }
.auth-photo{position:relative; display:block; overflow:hidden;}
@media (max-width:900px){ .auth-photo{display:none;} }
.auth-photo img{width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0;}
.auth-photo-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,23,41,0.15), rgba(10,23,41,0.75)); display:flex; flex-direction:column; justify-content:flex-end; padding:44px;}
.auth-photo-overlay h2{color:#fff; font-size:26px; line-height:1.25; margin-bottom:10px;}
.auth-photo-overlay p{color:#DCE3F0; font-size:14.5px; max-width:380px;}
.auth-form-side{display:flex; align-items:center; justify-content:center; padding:40px 20px;}

/* ---- PAGE BANNER PHOTO (pricing / quote) ---- */
.page-banner{position:relative; height:220px; overflow:hidden;}
.page-banner img{width:100%; height:100%; object-fit:cover; display:block;}
.page-banner::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,23,41,0.15), rgba(10,23,41,0.55));}

.auth-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:36px 32px; width:100%; max-width:420px; box-shadow:0 24px 60px -30px rgba(14,27,43,0.25);}
.auth-card h1{font-size:24px; margin-bottom:8px;}
.auth-card p.sub{color:var(--muted); font-size:14px; margin-bottom:26px;}
.auth-card form{gap:16px;}
.auth-switch{text-align:center; font-size:13.5px; color:var(--muted); margin-top:20px;}
.auth-switch a{color:var(--blue); font-weight:700;}
#authMsg{font-size:13px; font-weight:600; text-align:center; display:block; margin-top:10px;}
#authMsg.err{color:#D9483B;}
#authMsg.ok{color:#1E9E5A;}
.auth-divider{display:flex; align-items:center; gap:10px; margin:6px 0; color:var(--muted); font-size:12px;}
.auth-divider::before,.auth-divider::after{content:""; flex:1; height:1px; background:var(--line);}

/* ---- DASHBOARD ---- */
.dash-shell{display:grid; grid-template-columns:220px 1fr; min-height:calc(100vh - 74px);}
@media (max-width:800px){ .dash-shell{grid-template-columns:1fr;} }
.dash-side{background:var(--navy-deep); color:#fff; padding:28px 18px;}
.dash-side .who{font-size:13px; color:#AAB6C8; margin-bottom:22px; word-break:break-all;}
.dash-nav a{display:block; padding:10px 12px; border-radius:8px; font-size:14px; font-weight:600; color:#DDE3EE; margin-bottom:4px;}
.dash-nav a:hover, .dash-nav a.active{background:rgba(255,255,255,0.08); color:#fff;}
.dash-main{padding:36px 32px; background:var(--paper);}
.dash-header{display:flex; justify-content:space-between; align-items:flex-start; gap:20px; margin-bottom:28px; flex-wrap:wrap;}
.dash-header h1{font-size:24px;}
.dash-header p{color:var(--muted); font-size:14px; margin-top:4px;}
.kpi-row{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:28px;}
@media (max-width:760px){ .kpi-row{grid-template-columns:repeat(2,1fr);} }
.kpi-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:18px 20px;}
.kpi-card b{font-family:'Space Grotesk'; font-size:26px; display:block; color:var(--navy-deep);}
.kpi-card span{font-size:12.5px; color:var(--muted);}
.dash-panel{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:24px; margin-bottom:24px;}
.dash-panel-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; flex-wrap:wrap; gap:12px;}
.dash-panel-head h2{font-size:17px;}
.inv-table{width:100%; border-collapse:collapse;}
.inv-table th, .inv-table td{text-align:left; padding:11px 10px; font-size:13.5px; border-bottom:1px solid var(--line);}
.inv-table th{font-size:11.5px; text-transform:uppercase; letter-spacing:.04em; color:var(--muted);}
.status-pill{font-size:11.5px; font-weight:700; padding:4px 10px; border-radius:999px; display:inline-block;}
.status-received{background:#EAF0FF; color:#2E63F6;}
.status-inspected{background:#FFF3E4; color:#B35A00;}
.status-prepped{background:#EFEAFF; color:#5B3FD1;}
.status-shipped{background:#E6F7EE; color:#1E9E5A;}
.row-actions{display:flex; gap:8px;}
.icon-btn{border:1px solid var(--line); background:#fff; border-radius:7px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; font-size:13px;}
.icon-btn:hover{border-color:var(--blue);}
.add-item-form{display:grid; grid-template-columns:1.4fr 1fr 0.8fr 1fr auto; gap:10px; align-items:end;}
@media (max-width:800px){ .add-item-form{grid-template-columns:1fr 1fr;} }
.add-item-form label{font-size:11px;}
.empty-state{text-align:center; padding:40px 20px; color:var(--muted); font-size:14px;}
