/* ============================================================
   UniSole Logistics — Design System
   Brand: pink -> purple gradient identity
   ============================================================ */

:root {
  /* Brand colors */
  --purple-900: #3d1a5b;
  --purple-700: #5b2a86;
  --purple-600: #6d3299;
  --magenta-600: #a52b8b;
  --pink-500: #c0328e;
  --pink-400: #d94ba6;

  --grad-brand: linear-gradient(120deg, #5b2a86 0%, #a52b8b 55%, #c0328e 100%);
  --grad-brand-soft: linear-gradient(120deg, #6d3299 0%, #c0328e 100%);
  --grad-hero: linear-gradient(135deg, #3d1a5b 0%, #5b2a86 40%, #a52b8b 100%);

  /* Neutrals */
  --ink: #26222b;
  --ink-soft: #55505d;
  --line: #ece7f1;
  --bg: #ffffff;
  --bg-alt: #faf7fc;
  --bg-tint: #f4eef9;
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(61, 26, 91, 0.06);
  --shadow-md: 0 12px 30px rgba(61, 26, 91, 0.10);
  --shadow-lg: 0 24px 60px rgba(61, 26, 91, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset-ish */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--pink-500); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--purple-700); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

/* Layout */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tint { background: var(--bg-alt); }
.section--brand { background: var(--grad-hero); color: #fff; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 14px;
}
.section--brand .eyebrow { color: #f6c9e6; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section--brand p { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(192, 50, 142, 0.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(192, 50, 142, 0.42); color:#fff; }
.btn--ghost {
  background: transparent;
  color: var(--purple-700);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--pink-400); color: var(--pink-500); transform: translateY(-2px); }
.btn--white { background:#fff; color: var(--purple-700); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--purple-700); }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { font-family:"Poppins",sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--purple-700); }
.brand__text b { color: var(--pink-500); font-weight: 700; }
.brand__text span { display:block; font-size: 0.6rem; letter-spacing: 0.28em; color: var(--ink-soft); font-weight: 500; margin-top: -4px; }

.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: 0.97rem; position: relative; }
.nav__links a::after {
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px;
  background: var(--grad-brand); transition: width .25s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width:100%; }
.nav__links a.active { color: var(--purple-700); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display:flex; align-items:center; gap:8px; font-family:"Poppins",sans-serif; font-weight:600; color:var(--purple-700); font-size:0.95rem; }
.nav__phone:hover { color: var(--pink-500); }

.burger { display:none; flex-direction: column; gap: 5px; background:none; border:none; cursor:pointer; padding:8px; }
.burger span { width: 26px; height: 2.5px; background: var(--purple-700); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--grad-hero); color:#fff; padding: 88px 0 96px; }
.hero::before, .hero::after {
  content:""; position:absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}
.hero::before { width: 520px; height: 520px; top:-180px; right:-120px; }
.hero::after { width: 420px; height: 420px; bottom:-200px; left:-140px; background: radial-gradient(circle, rgba(217,75,166,0.35), transparent 70%); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; z-index: 2; }
.hero h1 { color:#fff; }
.hero h1 .grad { background: linear-gradient(90deg,#ffd9ef,#ffb3df); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.18rem; max-width: 540px; }
.hero__actions { display:flex; gap:16px; flex-wrap: wrap; margin-top: 30px; }
.hero__badges { display:flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__badge { display:flex; align-items:center; gap:10px; font-size:0.92rem; color: rgba(255,255,255,0.9); font-weight:500; }
.hero__badge svg { flex:none; }

/* Hero card / visual */
.hero__card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__card h3 { color:#fff; font-size:1.1rem; margin-bottom: 18px; display:flex; align-items:center; gap:10px; }
.load-row {
  display:flex; align-items:center; justify-content: space-between;
  background: rgba(255,255,255,0.94); border-radius: 14px; padding: 14px 16px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.load-row:last-child { margin-bottom: 0; }
.load-row__route { font-family:"Poppins",sans-serif; font-weight:600; color: var(--ink); font-size: 0.98rem; }
.load-row__meta { font-size: 0.8rem; color: var(--ink-soft); }
.load-row__rate { font-family:"Poppins",sans-serif; font-weight:700; color: var(--pink-500); font-size: 1.05rem; }
.tag { display:inline-block; font-size:0.7rem; font-weight:600; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--bg-tint); color: var(--purple-700); }

/* ============================================================
   Trust bar / stats
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align:center; padding: 10px; }
.stat__num { font-family:"Poppins",sans-serif; font-weight:700; font-size: 2.6rem; background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.stat__label { color: var(--ink-soft); font-size: 0.95rem; margin-top: 4px; }

.logos { display:flex; align-items:center; justify-content:center; gap: 46px; flex-wrap: wrap; opacity: 0.6; }
.logos span { font-family:"Poppins",sans-serif; font-weight:600; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ============================================================
   Cards / features grid
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: var(--bg-tint); color: var(--pink-500); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.98rem; }

/* Icon hexagon accent */
.hex {
  width: 56px; height: 56px; flex:none;
  display:flex; align-items:center; justify-content:center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: var(--grad-brand); color:#fff;
}
.hex svg { width: 26px; height: 26px; }

/* Steps */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
  font-family:"Poppins",sans-serif; font-weight:700; color:#fff; background: var(--grad-brand);
  margin-bottom: 16px; box-shadow: 0 8px 20px rgba(192,50,142,0.3);
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: 0.95rem; }

/* Equipment cards */
.equip {
  border-radius: var(--radius); overflow:hidden; border:1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  background:#fff;
}
.equip:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.equip__top { height: 120px; background: var(--grad-brand-soft); display:flex; align-items:center; justify-content:center; color:#fff; }
.equip__top svg { width: 96px; height: auto; opacity:0.96; }
.equip__body { padding: 24px; }
.equip__body h3 { margin-bottom: 6px; }
.equip__body p { margin: 0; font-size: 0.94rem; }

/* Testimonials */
.quote {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 30px; position: relative;
}
.quote__mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: 0; color: var(--pink-400); opacity:0.4; position:absolute; top: 24px; right: 24px; }
.quote p { font-style: italic; color: var(--ink); font-size: 1.02rem; }
.quote__who { display:flex; align-items:center; gap: 12px; margin-top: 18px; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color:#fff; display:flex; align-items:center; justify-content:center; font-family:"Poppins",sans-serif; font-weight:600; }
.quote__name { font-family:"Poppins",sans-serif; font-weight:600; color: var(--ink); font-size: 0.95rem; }
.quote__role { font-size: 0.82rem; color: var(--ink-soft); }

/* Pricing */
.price-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 26px; align-items: stretch; max-width: 760px; margin-inline: auto; }
.plan {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display:flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--featured { background: var(--grad-hero); color:#fff; border:none; box-shadow: var(--shadow-lg); }
.plan--featured h3, .plan--featured .plan__price { color:#fff; }
.plan--featured p, .plan--featured li { color: rgba(255,255,255,0.9); }
.plan__badge { align-self:flex-start; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; background: rgba(255,255,255,0.2); color:#fff; padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.plan__price { font-family:"Poppins",sans-serif; font-weight:700; font-size: 2.6rem; color: var(--purple-700); margin: 6px 0 2px; }
.plan__price small { font-size: 1rem; font-weight:500; color: var(--ink-soft); }
.plan--featured .plan__price small { color: rgba(255,255,255,0.8); }
.plan__list { list-style:none; margin: 22px 0; display:flex; flex-direction:column; gap: 12px; flex:1; }
.plan__list li { display:flex; align-items:flex-start; gap: 10px; font-size: 0.96rem; }
.plan__list li::before { content:"✓"; font-weight:700; color: var(--pink-500); }
.plan--featured .plan__list li::before { color: #ffd9ef; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline:auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 22px 0; font-family:"Poppins",sans-serif; font-weight:600; font-size:1.08rem; color:var(--ink);
  display:flex; justify-content:space-between; align-items:center; gap: 16px;
}
.faq__q span.icon { flex:none; width:26px; height:26px; border-radius:50%; background:var(--bg-tint); color:var(--pink-500); display:flex; align-items:center; justify-content:center; font-size:1.2rem; transition: transform .3s var(--ease); }
.faq__item.open .faq__q span.icon { transform: rotate(45deg); background: var(--grad-brand); color:#fff; }
.faq__a { max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 0 22px; margin:0; }

/* CTA band */
.cta-band { background: var(--grad-hero); color:#fff; border-radius: var(--radius-lg); padding: 60px; text-align:center; position:relative; overflow:hidden; }
.cta-band::before { content:""; position:absolute; width:360px; height:360px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%); top:-120px; right:-80px; }
.cta-band h2 { color:#fff; position:relative; }
.cta-band p { color: rgba(255,255,255,0.9); position:relative; max-width:560px; margin-inline:auto; }
.cta-band .hero__actions { justify-content:center; position:relative; }

/* Forms */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:0.88rem; color:var(--ink); margin-bottom:7px; font-family:"Poppins",sans-serif; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size:0.98rem; color:var(--ink); background:#fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--pink-400); box-shadow: 0 0 0 4px rgba(217,75,166,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field--row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }

/* Contact info list */
.contact-list { list-style:none; display:flex; flex-direction:column; gap: 22px; }
.contact-list li { display:flex; gap: 16px; align-items:flex-start; }
.contact-list .hex { width: 48px; height: 48px; }
.contact-list .hex svg { width:22px; height:22px; }
.contact-list h4 { font-family:"Poppins",sans-serif; font-size:1rem; margin:0 0 3px; }
.contact-list p { margin:0; }

/* Page hero (interior pages) */
.page-hero { background: var(--grad-hero); color:#fff; padding: 70px 0 76px; text-align:center; position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(217,75,166,0.4), transparent 70%); bottom:-220px; right:-100px; }
.page-hero h1 { color:#fff; position:relative; }
.page-hero p { color: rgba(255,255,255,0.9); position:relative; max-width: 620px; margin: 0 auto; font-size:1.12rem; }
.crumbs { position:relative; font-size:0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.crumbs a { color: #ffd0ec; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #241238; color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer__grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color:#fff; font-size:0.95rem; font-family:"Poppins",sans-serif; margin-bottom:18px; letter-spacing:0.04em; }
.footer a { color: rgba(255,255,255,0.7); display:block; margin-bottom: 10px; font-size:0.95rem; }
.footer a:hover { color:#fff; }
.footer .brand__text { color:#fff; }
.footer .brand__text b { color: var(--pink-400); }
.footer .brand__text span { color: rgba(255,255,255,0.55); }
.footer p { color: rgba(255,255,255,0.6); font-size:0.95rem; }
.footer__bottom { border-top:1px solid rgba(255,255,255,0.12); margin-top: 46px; padding-top: 24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:0.86rem; }
.footer__social { display:flex; gap: 12px; }
.footer__social a { width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; margin:0; }
.footer__social a:hover { background: var(--grad-brand); }

/* Floating call button (mobile) */
.float-call {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height:58px; border-radius:50%; background: var(--grad-brand); color:#fff;
  display:none; align-items:center; justify-content:center; box-shadow: 0 10px 26px rgba(192,50,142,0.45);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(192,50,142,0.5);} 70%{box-shadow:0 0 0 16px rgba(192,50,142,0);} 100%{box-shadow:0 0 0 0 rgba(192,50,142,0);} }

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

/* ============================================================
   Responsive
   ============================================================ */
/* Collapse nav to a burger before the 7-link bar runs out of room (~1000px) */
@media (max-width: 1024px) {
  .nav__links, .nav__phone { display:none; }
  .nav__links.open {
    display:flex; position:absolute; top:74px; left:0; right:0; flex-direction:column;
    background:#fff; padding: 16px 24px 22px; gap: 2px; border-bottom:1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav__links.open a { padding: 12px 4px; width:100%; }
  .nav__links.open a::after { display:none; }
  .burger { display:flex; margin-left: 14px; }
  .nav__cta { margin-left: auto; }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 460px; }
  .grid--3, .grid--4, .steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .grid--3, .grid--4, .grid--2, .steps, .price-grid, .field--row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .form-card { padding: 26px; }
  .float-call { display:flex; }
  .nav__cta .btn { display:none; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction:column; text-align:center; }
}
/* Small phones: tighten oversized spacing so nothing feels cramped */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 58px 0 66px; }
  .hero p { font-size: 1.05rem; }
  .hero__card { padding: 20px; }
  .hero__badges { gap: 16px 24px; }
  .load-row { padding: 12px 13px; }
  .load-row__route { font-size: 0.9rem; }
  .section { padding: 52px 0; }
  .page-hero { padding: 50px 0 56px; }
  .stat__num { font-size: 2.1rem; }
  .plan { padding: 28px 22px; }
  .cta-band { padding: 38px 22px; }
  .form-card { padding: 22px; }
  .btn--lg { padding: 15px 26px; font-size: 1rem; }
}
