/* ============================================================
   MR STEVEN RICHARD TOPPLE — Logistics & Freight
   steventopple.top
   Light, premium, editorial design system
   ============================================================ */

:root {
  --bg: #f6f8fc;
  --bg-soft: #eef2f9;
  --surface: #ffffff;
  --ink: #0b1c33;
  --ink-soft: #33475f;
  --muted: #64748b;
  --brand: #1f5ae0;
  --brand-dark: #1242b4;
  --brand-deep: #0e3aa8;
  --brand-soft: #e9f0fe;
  --gold: #e8a33d;
  --gold-soft: #fdf3dc;
  --navy: #0b1c33;
  --line: #e4e9f2;
  --line-strong: #d3dce9;
  --shadow-sm: 0 1px 2px rgba(11, 28, 51, 0.06), 0 4px 14px rgba(11, 28, 51, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 28, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 28, 51, 0.14);
  --shadow-blue: 0 16px 40px rgba(31, 90, 224, 0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 84px) 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand);
  padding: 7px 16px; border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid #d6e3fb;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.sec-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 20px 0 16px; }
.sec-head p { color: var(--muted); font-size: 1.06rem; }

.lead { font-size: 1.13rem; color: var(--muted); }

.grad-text {
  background: linear-gradient(120deg, var(--brand) 0%, #3b7bff 60%, var(--gold) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 15px 28px; border-radius: 999px; border: 0;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 22px 48px rgba(31,90,224,.32); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 16px 40px rgba(232,163,61,.3); }
.btn-gold:hover { background: #f0b429; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ---------- Cards & generic ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--brand);
  background: var(--brand-soft); border-radius: 999px; padding: 6px 14px;
}
.badge-pill.gold { color: #a06a10; background: var(--gold-soft); }
.badge-pill.navy { color: var(--navy); background: #e7ecf4; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy); color: #b9c8e4;
  font-size: 0.85rem;
}
.topbar-inner {
  width: min(var(--container), 92%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 42px;
}
.topbar a { color: #dfe9ff; transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  width: min(var(--container), 92%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.brand-name em { font-style: normal; color: var(--brand); }
.brand-tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brand); border-radius: 2px; transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--line); position: relative; z-index: 70; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 6vw, 84px); position: relative; z-index: 2; }

.hero-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--brand); background: #fff; border: 1px solid #d6e3fb; border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-sm); }
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); margin: 26px 0 22px; font-weight: 800; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 1.6px var(--brand); }
.hero-sub { font-size: 1.14rem; color: var(--muted); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-note { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 0.9rem; }
.hero-note .avatars { display: flex; }
.hero-note .avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: linear-gradient(140deg, var(--brand-soft), #cfe0ff); display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; color: var(--brand); }
.hero-note .avatars span:first-child { margin-left: 0; }
.hero-note b { color: var(--ink); }

.hero-visual { position: relative; }
.hero-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.6;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(11,28,51,.0) 40%, rgba(11,28,51,.5)); }

.float-card {
  position: absolute; background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; z-index: 3;
  border: 1px solid rgba(255,255,255,.7);
  animation: floaty 6s ease-in-out infinite;
}
.float-card .f-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float-card .f-icon svg { width: 22px; height: 22px; }
.float-card .f-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.float-card .f-sub { font-size: 0.78rem; color: var(--muted); }
.float-card.one { top: 8%; left: -6%; animation-delay: 0s; }
.float-card.two { bottom: 10%; right: -7%; animation-delay: 2.5s; }
.float-card.three { bottom: -4%; left: 12%; animation-delay: 1.2s; }
.f-icon.blue { background: var(--brand-soft); color: var(--brand); }
.f-icon.gold { background: var(--gold-soft); color: #a06a10; }
.f-icon.green { background: #e6f7ee; color: #15944f; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* 3D isometric cubes in hero background */
.iso-scene { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.iso-scene .cube-wrap { position: absolute; perspective: 900px; }
.cube-wrap.c1 { right: -30px; top: -40px; transform: scale(.55); }
.cube-wrap.c2 { right: 34%; top: 40%; transform: scale(.3); opacity: .8; }
.cube-wrap.c3 { left: -46px; bottom: -30px; transform: scale(.4); }
.iso-cube { position: relative; width: 120px; height: 120px; transform-style: preserve-3d; animation: cubeFloat 9s ease-in-out infinite; }
.cube-wrap.c2 .iso-cube { animation-delay: 3s; }
.cube-wrap.c3 .iso-cube { animation-delay: 6s; }
.face { position: absolute; border-radius: 6px; }
.face.front { transform: translateZ(60px); width: 120px; height: 120px; }
.face.back { transform: rotateY(180deg) translateZ(60px); width: 120px; height: 120px; background: #dbe6fb; }
.face.right { transform: rotateY(90deg) translateZ(60px); width: 120px; height: 120px; }
.face.left { transform: rotateY(-90deg) translateZ(60px); width: 120px; height: 120px; }
.face.top { transform: rotateX(90deg) translateZ(60px); width: 120px; height: 120px; }
.face.bottom { transform: rotateX(-90deg) translateZ(60px); width: 120px; height: 120px; background: #e3ebfa; }
.cube-wrap .face.front { background: linear-gradient(140deg, #3b7bff, #1f5ae0); }
.cube-wrap .face.right { background: linear-gradient(140deg, #2b6cff, #1242b4); }
.cube-wrap .face.left { background: linear-gradient(140deg, #5a93ff, #2b6cff); }
.cube-wrap .face.top { background: linear-gradient(140deg, #8fb7ff, #5a93ff); }
.cube-wrap.c1 .face.front { background: linear-gradient(140deg, #f6c445, #e8a33d); }
.cube-wrap.c1 .face.right { background: linear-gradient(140deg, #e8a33d, #c9862a); }
.cube-wrap.c1 .face.left { background: linear-gradient(140deg, #f9d67e, #e8a33d); }
.cube-wrap.c1 .face.top { background: linear-gradient(140deg, #fdf0cd, #f9d67e); }
.cube-wrap.c1 .face.back, .cube-wrap.c1 .face.bottom { background: #f3e6c8; }
@keyframes cubeFloat { 0%,100% { transform: translateY(0) rotateX(-6deg) rotateY(8deg); } 50% { transform: translateY(-22px) rotateX(-6deg) rotateY(8deg); } }

/* grid backdrop */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(31,90,224,.08), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(232,163,61,.1), transparent 40%);
}

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: flex; align-items: center; gap: clamp(24px, 5vw, 72px); overflow: hidden; padding: 30px 0; }
.trust-inner .ttl { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 0.8rem; letter-spacing: .14em; text-transform: uppercase; flex: none; }
.marquee { display: flex; gap: 56px; align-items: center; animation: marquee 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #b6c3d8; white-space: nowrap; }
.marquee span b { color: var(--brand); font-weight: 700; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 34px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.9rem); letter-spacing: -0.03em; color: var(--ink); }
.stat .num sup { font-size: 0.55em; color: var(--brand); }
.stat .lbl { margin-top: 8px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.svc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(190deg, transparent 55%, rgba(11,28,51,.55)); }
.svc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); margin-top: -44px; position: relative; z-index: 2; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.svc-icon svg { width: 26px; height: 26px; }
.svc-body h3 { font-size: 1.22rem; }
.svc-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand); font-size: 0.93rem; }
.svc-link svg { width: 16px; height: 16px; transition: transform .25s; }
.svc-link:hover svg { transform: translateX(4px); }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; }
.split-media .ring {
  position: absolute; inset: -18px -18px auto auto; width: 46%; aspect-ratio: 1;
  border: 2px dashed var(--gold); border-radius: 50%; z-index: -1; opacity: .8;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.split-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.check-list .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: #e6f7ee; color: #15944f; display: grid; place-items: center; margin-top: 2px; }
.check-list .tick svg { width: 14px; height: 14px; }

/* ---------- How it works ---------- */
.hiw { background: var(--surface); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg); transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 22px; right: 24px; font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; letter-spacing: -0.03em; color: #dfe7f5; }
.step .s-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); margin-bottom: 20px; }
.step .s-icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- CTA banner ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(52px, 7vw, 96px) clamp(28px, 5vw, 72px); color: #fff; background: var(--navy); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: url("../images/containers.jpg") center/cover no-repeat; opacity: .28; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 18% 0%, rgba(31,90,224,.65), rgba(11,28,51,.55)); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 18px 0 16px; }
.cta-inner p { color: #c6d4ef; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.cta-meta { margin-top: 28px; display: flex; gap: 26px; color: #9fb3d9; font-size: 0.9rem; flex-wrap: wrap; }
.cta-meta span { display: inline-flex; align-items: center; gap: 8px; }
.cta-meta svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Section head row with link ---------- */
.head-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(36px, 5vw, 60px); }
.head-row .sec-head { margin-bottom: 0; }

/* ---------- Values / why us ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, border-color .3s; }
.value:hover { transform: translateY(-6px); border-color: #c3d6f8; }
.value .v-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; }
.value .v-icon svg { width: 24px; height: 24px; }
.value.blue .v-icon { background: var(--brand-soft); color: var(--brand); }
.value.gold .v-icon { background: var(--gold-soft); color: #a06a10; }
.value.green .v-icon { background: #e6f7ee; color: #15944f; }
.value h3 { font-size: 1.12rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quote-card { padding: 34px 32px; }
.quote-card .stars { color: var(--gold); display: flex; gap: 4px; margin-bottom: 18px; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; color: var(--ink-soft); line-height: 1.55; }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.quote-card .who .ava { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-deep)); }
.quote-card .who b { font-size: 0.95rem; display: block; }
.quote-card .who small { color: var(--muted); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: linear-gradient(180deg, var(--brand-soft), var(--bg)); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .container { padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 88px); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin: 20px 0 14px; }
.page-hero p { color: var(--muted); max-width: 620px; font-size: 1.08rem; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.breadcrumb a { color: var(--brand); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 13px; height: 13px; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 10%, rgba(232,163,61,.16), transparent 60%); pointer-events: none; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(28px, 4vw, 48px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 14px 16px; background: #fbfcfe; color: var(--ink); width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(31,90,224,.12); background: #fff;
}
.field textarea { resize: vertical; min-height: 140px; }
.field .hint { font-size: 0.8rem; color: var(--muted); }
.check-field { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.check-field input { margin-top: 4px; accent-color: var(--brand); width: 17px; height: 17px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 16px; }
.form-note a { color: var(--brand); text-decoration: underline; }

.form-alert { display: none; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; margin-bottom: 22px; }
.form-alert.ok { display: block; background: #e6f7ee; color: #0d7a3f; border: 1px solid #bde6cf; }
.form-alert.err { display: block; background: #fdecec; color: #b3261e; border: 1px solid #f5c6c2; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.c-card { display: flex; gap: 18px; align-items: flex-start; padding: 26px; }
.c-card .c-icon { width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }
.c-card .c-icon svg { width: 22px; height: 22px; }
.c-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.c-card p { color: var(--muted); font-size: 0.93rem; }
.c-card a { color: var(--brand); font-weight: 600; }

/* ---------- Fleet / gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gal-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 20px 16px; background: linear-gradient(transparent, rgba(11,28,51,.72)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand), var(--gold)); border-radius: 2px; }
.t-item { position: relative; padding: 0 0 38px 26px; }
.t-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--surface); border: 4px solid var(--brand); }
.t-item:last-child { padding-bottom: 0; }
.t-item h3 { font-size: 1.12rem; }
.t-item time { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--brand); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.t-item p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Tables (policy) ---------- */
.policy-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem; }
.policy-table th, .policy-table td { border: 1px solid var(--line); padding: 12px 16px; text-align: left; vertical-align: top; }
.policy-table th { background: var(--brand-soft); font-family: var(--font-display); font-size: 0.88rem; color: var(--brand-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #aab9d6; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding: clamp(56px, 7vw, 88px) 0 44px; }
.footer .brand-name { color: #fff; }
.footer .brand-tag { color: var(--gold); }
.footer-about p { margin-top: 18px; font-size: 0.93rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.98rem; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer ul { display: grid; gap: 12px; font-size: 0.92rem; }
.footer ul a { transition: color .2s, padding-left .2s; }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.foot-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; line-height: 1.5; }
.foot-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.foot-contact a { color: #dfe9ff; }
.foot-contact a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 0.85rem; color: #7f90b0; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom .legal a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 10px; }
.footer-badges span { border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 5px 13px; font-size: 0.72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #c4d2ee; }

/* ---------- Policy layout ---------- */
.policy-wrap { max-width: 860px; margin-inline: auto; }
.doc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(28px, 5vw, 64px); }
.doc .updated { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-soft); color: var(--brand-dark); font-weight: 600; font-size: 0.85rem; border-radius: 999px; padding: 7px 16px; margin-bottom: 30px; }
.doc h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.doc h2:first-of-type { margin-top: 8px; }
.doc h3 { font-size: 1.12rem; margin: 26px 0 10px; }
.doc p { color: var(--ink-soft); margin-bottom: 14px; }
.doc ul { list-style: none; display: grid; gap: 10px; margin: 14px 0 20px; }
.doc ul li { padding-left: 26px; position: relative; color: var(--ink-soft); }
.doc ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 2px; background: var(--brand); }
.doc .company-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin: 20px 0; display: grid; gap: 6px; font-size: 0.95rem; }
.doc .company-card b { color: var(--ink); }
.doc a { color: var(--brand); text-decoration: underline; }
.doc .mini-toc { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 26px; margin: 24px 0 36px; }
.doc .mini-toc b { display: block; margin-bottom: 10px; font-family: var(--font-display); }
.doc .mini-toc ol { display: grid; gap: 8px; margin: 0; }
.doc .mini-toc li { padding-left: 0; }
.doc .mini-toc li::before { display: none; }
.doc .mini-toc a { text-decoration: none; color: var(--brand); font-size: 0.94rem; }
.doc .mini-toc a:hover { text-decoration: underline; }
.doc .table-wrap { overflow-x: auto; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 48px; height: 48px; border-radius: 14px; background: var(--brand); color: #fff; border: 0; box-shadow: var(--shadow-blue); display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .3s, transform .3s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 20px; height: 20px; }
.to-top:hover { background: var(--brand-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .value-grid, .contact-cards, .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .float-card.one { left: 2%; }
  .float-card.two { right: 2%; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(84%, 340px); z-index: 65;
    background: #fff; box-shadow: var(--shadow-lg); padding: 92px 30px 40px;
    display: flex; flex-direction: column; gap: 8px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { padding: 13px 12px; border-radius: 12px; font-weight: 600; color: var(--ink); }
  .mobile-menu a:hover, .mobile-menu a.active { background: var(--brand-soft); color: var(--brand); }
  .mobile-menu .btn { margin-top: 16px; }
  .stats-grid, .svc-grid, .value-grid, .contact-cards, .gal-grid, .steps, .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-right .hide-m { display: none; }
  .head-row { flex-direction: column; align-items: flex-start; }
  .doc .mini-toc ol { grid-template-columns: 1fr; }
}
