:root{
  --bg:#ffffff;
  --bg2:#fff7f0;
  --card:rgba(255,255,255,.92);
  --card2:rgba(255,255,255,.86);
  --text:#111827;
  --muted:rgba(17,24,39,.65);
  --border:rgba(17,24,39,.10);
  --shadow: 0 18px 48px rgba(17,24,39,.10);
  --radius:22px;

  /* Brand palette (white + shades of orange) */
  --brand:#fd7b21;
  --accent:#f05a00;

  --max:1240px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-head: Sora, Inter, ui-sans-serif, system-ui;
}

/* Light mode (forced for this project) */
@media (prefers-color-scheme: light){
  :root:not([data-theme]){
    --bg:#ffffff;
    --bg2:#fff7f0;
    --card:rgba(255,255,255,.92);
    --card2:rgba(255,255,255,.86);
    --text:#111827;
    --muted:rgba(17,24,39,.65);
    --border:rgba(17,24,39,.10);
    --shadow: 0 18px 48px rgba(17,24,39,.10);
  }
}


/* Forced theme */
:root[data-theme="light"]{
  --bg:#ffffff;
  --bg2:#fff7f0;
  --card:rgba(255,255,255,.92);
  --card2:rgba(255,255,255,.86);
  --text:#111827;
  --muted:rgba(17,24,39,.65);
  --border:rgba(17,24,39,.10);
  --shadow: 0 18px 48px rgba(17,24,39,.10);
}

*{box-sizing:border-box}
html,body{height:100%; line-height:1.55;}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(253,123,33,.22), transparent 60%),
    radial-gradient(1100px 700px at 110% 10%, rgba(253,123,33,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
}

/* Subtle grid */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(17,24,39,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,24,39,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity:.08;
  mix-blend-mode: multiply;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button,input,select,textarea{font:inherit}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 16px}
@media (min-width: 768px){ .container{padding:0 22px} }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(160%) blur(12px);
  background:rgba(255,255,255,.85);
  border-bottom:1px solid var(--border);
}
:root[data-theme="light"] .header{
  background:rgba(255,255,255,.70);
}
@media (prefers-color-scheme: light){
  :root:not([data-theme]) .header{background:rgba(255,255,255,.70);}
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.logo-word{
  font-family:var(--font-head);
  font-weight:700;
  letter-spacing:-.6px;
  font-size:18px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(253,123,33,.22), rgba(253,123,33,.10));
  box-shadow: 0 14px 34px rgba(253,123,33,.18);
}
:root[data-theme="light"] .logo-word{
  border-color:rgba(253,123,33,.12);
  box-shadow: 0 14px 34px rgba(253,123,33,.12);
}
.brand-title{display:flex; flex-direction:column; line-height:1.1}
.brand-title strong{font-size:14.5px; letter-spacing:.2px}
.brand-title span{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.nav a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover, .nav a.active{
  color:var(--text);
  border-color:var(--border);
  background:rgba(253,123,33,.08);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  white-space:nowrap;
}
.badge b{color:var(--text); font-weight:700}
.icon-btn{
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--text);
  display:grid; place-items:center;
  cursor:pointer;
  transition:transform .08s ease, background .18s ease, border-color .18s ease;
}
.icon-btn:hover{background:rgba(253,123,33,.08); border-color:rgba(17,24,39,.12)}
.icon-btn:active{transform:translateY(1px)}
@media (max-width: 520px){ .badge{display:none} }

/* Cards */
.card{
  padding:18px;
  background:linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Hero */
.hero{padding:34px 0 18px}
.hero-grid{display:grid; gap:16px}
@media (min-width: 900px){ .hero-grid{grid-template-columns: 1.25fr .75fr; align-items:stretch} }
.hero-card{padding:22px}
.eyebrow{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.hero-card h1{
  margin:0 0 10px;
  font-family:var(--font-head);
  font-size:30px;
  letter-spacing:-.6px;
}
.hero-card p{margin:0 0 16px; color:var(--muted); line-height:1.6}
.hero-media{
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-media img{width:100%; height:auto; max-height:360px}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.trust-item{
  padding:12px;
  border-radius:18px;
  background:rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.10);
}
:root[data-theme="light"] .trust-item{background:rgba(255,255,255,.60);}
@media (max-width: 520px){ .trust-strip{grid-template-columns:1fr;} }
.trust-item b{display:block; font-size:14px}
.trust-item span{display:block; font-size:12px; color:var(--muted); margin-top:4px}

/* Sections */
.section{padding:26px 0 30px}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:14px}
.section-head h2{margin:0; font-family:var(--font-head); letter-spacing:-.4px}
.muted{color:var(--muted)}

/* Tracking */
.track{padding:0 0 30px}
.track-grid{display:grid; gap:14px}
@media (min-width: 900px){ .track-grid{grid-template-columns: 1fr 1fr; align-items:start} }
.form-card{padding:18px}
.form-card h2{margin:0 0 8px; font-size:16px}
.helper{margin:0 0 14px; color:var(--muted); font-size:13px; line-height:1.55}

.field-row{display:grid; gap:10px}
@media (min-width: 520px){ .field-row{grid-template-columns: 1fr 1fr} }

.label{display:block; font-size:12px; color:var(--muted); margin:0 0 8px}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
:root[data-theme="light"] .input{background:rgba(255,255,255,.92); border-color:var(--border)}
@media (prefers-color-scheme: light){
  :root:not([data-theme]) .input{background:rgba(255,255,255,.70); border-color:rgba(253,123,33,.14)}
}
.input:focus{border-color:rgba(253,123,33,.55); box-shadow:0 0 0 4px rgba(253,123,33,.18)}
.actions{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

.btn{
  border:1px solid var(--border);
  background:rgba(255,255,255,.92);
  color:var(--text);
  padding:11px 14px;
  border-radius:16px;
  cursor:pointer;
  transition:transform .08s ease, background .18s ease, border-color .18s ease;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
}
:root[data-theme="light"] .btn{border-color:var(--border); background:rgba(255,255,255,.92)}
@media (prefers-color-scheme: light){
  :root:not([data-theme]) .btn{border-color:rgba(253,123,33,.14); background:rgba(255,255,255,.78)}
}
.btn:hover{background:rgba(253,123,33,.10); border-color:rgba(253,123,33,.22)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:linear-gradient(135deg, var(--brand), rgba(253,123,33,.55));
  border-color:rgba(253,123,33,.45);
  box-shadow:0 14px 32px rgba(253,123,33,.22);
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(253,123,33,.95), rgba(253,123,33,.45))}
.btn.good{
  background:linear-gradient(135deg, var(--accent), rgba(253,123,33,.55));
  border-color:rgba(253,123,33,.45);
  box-shadow:0 14px 32px rgba(253,123,33,.18);
}
.btn.sm{padding:8px 10px; border-radius:14px; font-size:12px}

.note{
  margin-top:14px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(0,0,0,.12);
  border:1px dashed rgba(255,255,255,.22);
  color:var(--muted);
  font-size:12.5px;
}
:root[data-theme="light"] .note{background:rgba(255,255,255,.70); border-color:rgba(253,123,33,.16)}

/* Verification */
.otp{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.10);
}
:root[data-theme="light"] .otp{background:rgba(255,255,255,.72); border-color:rgba(253,123,33,.14)}
.otp-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.countdown{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:2px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
}

/* Results */
.results-card{padding:18px}
.results-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
.results-head h2{margin:0; font-size:16px}
.meta{color:var(--muted); font-size:12.5px; line-height:1.6}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
}
.progress{margin:14px 0 10px}
.progress-bar{
  width:100%;
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.progress-fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--brand), rgba(253,123,33,.9));
  transition:width .5s ease;
}
.progress-meta{display:flex; justify-content:space-between; color:var(--muted); font-size:12px; margin-top:8px; gap:10px}
.info-grid{
  display:grid;
  gap:10px;
  margin:10px 0 12px;
}
@media (min-width: 720px){ .info-grid{grid-template-columns: repeat(2, 1fr)} }
.info-item{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}
:root[data-theme="light"] .info-item{background:rgba(255,255,255,.75); border-color:rgba(253,123,33,.12)}
.info-item .k{
  display:block;
  font-size:11px;
  color:var(--muted);
  letter-spacing:.06em;
  text-transform:uppercase;
}
.info-item .v{
  display:block;
  font-size:13px;
  margin-top:4px;
  line-height:1.45;
}
.timeline{margin-top:14px; display:grid; gap:10px}
.step{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.10);
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:10px;
}
:root[data-theme="light"] .step{background:rgba(255,255,255,.72); border-color:rgba(253,123,33,.12)}
.dot{
  width:12px; height:12px;
  border-radius:999px;
  margin-top:4px;
  background:rgba(255,255,255,.25);
  border:1px solid rgba(255,255,255,.18);
}
.step.done .dot{background:linear-gradient(135deg, var(--accent), rgba(253,123,33,.35));}
.title{display:flex; align-items:baseline; justify-content:space-between; gap:10px; flex-wrap:wrap}
.title b{font-size:13px}
.title span{font-size:12px; color:var(--muted)}
.step p{margin:6px 0 0; color:var(--muted); font-size:12.5px; line-height:1.5}

/* Feature grid */
.grid3{display:grid; gap:12px}
@media (min-width: 900px){ .grid3{grid-template-columns: repeat(3, 1fr)} }
.mini{padding:16px; box-shadow:none}
.mini h3{margin:0 0 6px; font-family:var(--font-head); font-size:15px}
.mini p{margin:0; color:var(--muted); line-height:1.55}
.feature{padding:16px}
.feature-img{width:100%; height:auto; max-height:150px; margin-bottom:12px}
.feature h3{margin:0 0 6px; font-family:var(--font-head); font-size:15px}
.feature p{margin:0; color:var(--muted); line-height:1.55}

/* Footer */
.footer{padding:22px 0 26px; border-top:1px solid var(--border)}
.footer-top{display:grid; gap:18px}
@media (min-width: 900px){ .footer-top{grid-template-columns: 1fr 1.3fr; align-items:start} }
.footer-brand{display:flex; flex-direction:column; gap:10px}
.footer-logo{display:inline-flex; width:fit-content}
.footer-pills{display:flex; gap:10px; flex-wrap:wrap}
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 720px){ .footer-cols{grid-template-columns: 1fr; } }
.footer-cols b{display:block; margin-bottom:8px}
.footer-cols a,.footer-cols span{display:block; color:var(--muted); margin:8px 0; line-height:1.4}
.footer-cols a:hover{color:var(--text)}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-top:14px;
  margin-top:18px;
  border-top:1px solid var(--border);
}
.bottom-link{color:var(--text); padding:10px 12px; border-radius:14px; border:1px solid var(--border); background:rgba(255,255,255,.05)}
.bottom-link:hover{background:rgba(255,255,255,.08)}

/* About */
.about-hero{display:grid; gap:16px}
@media (min-width: 900px){ .about-hero{grid-template-columns: 1.2fr .8fr; align-items:stretch} }

/* Skeleton */
.skeleton{
  border-radius:16px;
  background:linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.14), rgba(255,255,255,.06));
  background-size: 220% 100%;
  animation: shimmer 1.2s infinite;
}
:root[data-theme="light"] .skeleton{background:linear-gradient(90deg, rgba(17,24,39,.06), rgba(17,24,39,.12), rgba(17,24,39,.06));}
@keyframes shimmer{
  0%{background-position: 0% 0%}
  100%{background-position: 200% 0%}
}

/* Toast */
.toast{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  background:rgba(0,0,0,.78);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  padding:12px 14px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  max-width:calc(100% - 32px);
  width:fit-content;
}
:root[data-theme="light"] .toast{background:rgba(253,123,33,.95)}
.toast.show{opacity:1; transform:translateX(-50%) translateY(-6px)}



/* Modal (OTP) */
.modal[hidden]{ display:none !important; }
.modal{ position:fixed; inset:0; z-index:80; display:flex; align-items:center; justify-content:center; }
.modal-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.62); backdrop-filter: blur(4px); }
.modal-panel{ position:relative; width:min(520px, calc(100% - 28px)); background:var(--bg2); border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow:hidden; }
.modal-head{ display:flex; align-items:center; justify-content:space-between; padding:18px 18px 12px; border-bottom:1px solid var(--border); }
.modal-body{ padding:18px; }
.countdown-line{ display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border:1px dashed var(--border); border-radius:14px; margin-bottom:12px; }
.modal-actions{ display:flex; gap:10px; margin-top:12px; }
.modal-error{ margin-top:12px; padding:10px 12px; border-radius:14px; border:1px solid rgba(255,99,99,.35); background:rgba(255,99,99,.12); color:var(--text); }
.icon-btn{ width:38px; height:38px; display:grid; place-items:center; border-radius:12px; border:1px solid var(--border); background:var(--card2); color:var(--text); cursor:pointer; }
.icon-btn:hover{ transform: translateY(-1px); }

/* Loading overlay */
.loading-overlay[hidden]{ display:none !important; }
.loading-overlay{ position:fixed; inset:0; z-index:90; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.55); backdrop-filter: blur(6px); }
.loading-card{ display:flex; align-items:center; gap:14px; width:min(560px, calc(100% - 28px)); padding:18px; background:var(--bg2); border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.spinner{ width:34px; height:34px; border-radius:50%; border:3px solid var(--border); border-top-color: var(--accent); animation: spin 1s linear infinite; }
@keyframes spin{ to { transform: rotate(360deg); } }
.loading-text b{ display:block; }
.loading-text span{ display:block; margin-top:3px; }

/* Page hero */
.page-hero{ padding:56px 0 20px; }
.page-hero-card{ padding:28px; border-radius: var(--radius); border:1px solid var(--border); background: radial-gradient(900px 300px at 20% 0%, rgba(253,123,33,.22), transparent 60%), radial-gradient(800px 260px at 90% 20%, rgba(253,123,33,.20), transparent 55%), var(--card2); box-shadow: var(--shadow); }
.page-hero h1{ margin:0 0 10px; font-family: var(--font-head); letter-spacing:-0.02em; }

/* Layout helpers for new sections */
.split{ display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; }
.media-card{padding:0; overflow:hidden}
.media-card img{ width:100%; height:auto; border-radius: 18px; display:block; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.section-head{ margin-bottom:14px; }
.section-head h2{ margin-bottom:6px; }

.review-card p{ margin:10px 0 14px; }
.stars{ letter-spacing: 2px; font-weight: 800; }
.review-meta{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding-top:10px; border-top:1px solid var(--border); }

.office{ padding:12px 0; border-top:1px solid var(--border); }
.office:first-of-type{ border-top:0; padding-top:0; }
.card-map img{ width:100%; height:auto; border-radius:18px; border:1px solid var(--border); margin-top:14px; }

.faq-card h3{ margin:0 0 8px; }
.faq-card p{ margin:0; }

.cta-card{ padding:28px; text-align:left; }
.pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.bullets{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin:8px 0; }

@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

/* Mini list (About section) */
.mini-list{margin-top:14px; display:grid; gap:12px}
.mini{display:grid; gap:4px; padding:12px 12px; border:1px solid var(--border); border-radius:16px; background:rgba(255,255,255,.03)}
.mini b{font-size:13px}

.field-row.single{grid-template-columns:1fr}

/* Shipment stepper */
.shipment-wrap{padding:22px 0 46px}
.shipment-head{display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:12px}
.shipment-head h1{margin:0; font-size:20px}
.shipment-head .pill{display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; border:1px solid var(--border); background:rgba(255,255,255,.04)}
.shipment-grid{display:grid; gap:14px; margin-top:14px}
@media (min-width: 980px){ .shipment-grid{grid-template-columns: 1.15fr .85fr; align-items:start} }

.stepper{position:relative; overflow-x:auto; padding:14px 12px 6px; scroll-snap-type:x mandatory}
.stepper-track{display:flex; gap:22px; align-items:flex-start; min-width:max-content}
.step{scroll-snap-align:start; width:240px}
.step .dot{width:14px; height:14px; border-radius:50%; border:2px solid var(--border); background:transparent; margin-bottom:10px; position:relative}
.step.done .dot{background:var(--accent); border-color:rgba(0,0,0,.0)}
.step.current .dot{border-color:var(--accent); box-shadow:0 0 0 6px rgba(253,123,33,.12)}
.step .line{position:absolute; top:6px; left:14px; height:2px; width:248px; background:rgba(255,255,255,.14)}
.step:last-child .line{display:none}
.step.done .line{background:rgba(253,123,33,.55)}
.step h4{margin:0 0 6px; font-size:14px}
.step p{margin:0; color:var(--muted); font-size:13px; line-height:1.35}
.step .meta{margin-top:8px; color:var(--muted); font-size:12px}

.kv{display:grid; gap:10px}
.kv .row{display:flex; gap:10px; justify-content:space-between; border-bottom:1px dashed rgba(255,255,255,.16); padding:8px 0}
.kv .row b{font-size:13px}
.kv .row span{color:var(--muted); text-align:right; max-width:70%}

.notice{margin-top:10px; color:var(--muted); font-size:13px}

/* Shared header layout helpers */
.header-inner{position:relative;}
.header-right{display:flex; align-items:center; gap:10px;}
.nav-toggle{display:none;}

@media (max-width: 760px){
  .nav-toggle{display:grid;}
  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius:18px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow);
  }
  :root[data-theme="dark"] .nav{
    background:rgba(15,16,34,.92);
  }
  .nav.open{display:flex;}
  .nav a{justify-content:flex-start;}
  .nav .badge{display:inline-flex;}
}
