/* =========================================================
   MrOceanCargo — Global Logistics Solutions
   Design system + components
   Brand: Ocean Blue #004A8F · Sky Blue #007BFF · Gold #FFC629
   ========================================================= */

:root {
  --ocean: #004a8f;
  --ocean-700: #013a72;
  --ocean-900: #012a54;
  --sky: #007bff;
  --sky-600: #0067d6;
  --gold: #ffc629;
  --gold-600: #f0b400;
  --light-blue: #eaf4ff;
  --ink: #0b1b33;
  --slate: #4b5c72;
  --muted: #7b8aa0;
  --line: #e4ecf5;
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --white: #ffffff;

  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 16px rgba(1, 42, 84, 0.06);
  --shadow: 0 18px 44px rgba(1, 42, 84, 0.10);
  --shadow-lg: 0 30px 70px rgba(1, 42, 84, 0.16);
  --container: 1200px;
  --grad-brand: linear-gradient(135deg, var(--ocean) 0%, var(--sky) 100%);
  --grad-hero: linear-gradient(120deg, #012a54 0%, #013a72 45%, #0057b3 100%);
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ocean); }
h1, h2, h3, h4, h5 { font-family: var(--font); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1rem; color: var(--slate); }
ul { margin: 0; padding: 0; }
section { position: relative; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--grad-hero); color: #dbe9fb; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn i { font-size: 1.05em; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 26px rgba(0,123,255,.32); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0,123,255,.42); }
.btn--gold { background: var(--gold); color: var(--ocean-900); box-shadow: 0 12px 26px rgba(255,198,41,.4); }
.btn--gold:hover { color: var(--ocean-900); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(255,198,41,.55); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--ocean); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--sky); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { font-size: 1.05rem; }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--slate); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.topbar {
  background: var(--ocean-900); color: #cfe0f5; font-size: .84rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cfe0f5; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__left span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__left i { color: var(--gold); }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social a { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.08); transition: background .2s, color .2s; }
.topbar__social a:hover { background: var(--gold); color: var(--ocean-900); }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease; }
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: 12px 16px; font-weight: 600; font-size: .96rem; color: var(--ink); border-radius: 10px;
}
.nav__menu > li > a:hover, .nav__menu > li.active > a { color: var(--sky); }
.nav__menu > li.has-drop > a::after { content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .75rem; opacity: .6; }
.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s ease; z-index: 70;
}
.nav__menu > li.has-drop:hover .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a { display: flex; align-items: center; gap: .6rem; padding: 11px 14px; border-radius: 10px; font-weight: 500; color: var(--slate); }
.nav__drop a i { color: var(--sky); width: 18px; text-align: center; }
.nav__drop a:hover { background: var(--light-blue); color: var(--ocean); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: var(--light-blue); border: 0; width: 46px; height: 46px; border-radius: 12px; color: var(--ocean); font-size: 1.3rem; cursor: pointer; }

/* =========================================================
   HERO
   ========================================================= */
.hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; padding-block: clamp(64px, 9vw, 130px); }
.hero::before { content: ""; position: absolute; inset: 0; background: url("../images/service/hero.jpg") center/cover; opacity: .16; mix-blend-mode: luminosity; }
.hero::after { content: ""; position: absolute; right: -180px; top: -120px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(255,198,41,.22), transparent 62%); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; margin-bottom: 1.4rem; }
.hero__eyebrow i { color: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: #d3e4fa; font-size: 1.15rem; max-width: 560px; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero__stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__stat b { display: block; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero__stat span { font-size: .86rem; color: #a9c6ec; }
.hero__visual { position: relative; }
.hero__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Tracking card */
.track-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.track-card h3 { display: flex; align-items: center; gap: .5rem; margin-bottom: .3rem; }
.track-card h3 i { color: var(--sky); }
.track-card p { font-size: .92rem; margin-bottom: 1.1rem; }
.track-form { display: flex; gap: 10px; flex-wrap: wrap; }
.track-form input { flex: 1; min-width: 0; border: 1.6px solid var(--line); border-radius: 12px; padding: 14px 16px; font-family: var(--font); font-size: .98rem; outline: none; transition: border-color .2s; }
.track-form input:focus { border-color: var(--sky); }
.track-note { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }
.track-result { margin-top: 1rem; padding: 14px 16px; border-radius: 12px; font-size: .9rem; display: none; }
.track-result.show { display: block; }
.track-result--info { background: var(--light-blue); color: var(--ocean); }

/* =========================================================
   MARQUEE / trust
   ========================================================= */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-block: 26px; }
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--slate); font-weight: 600; font-size: .95rem; }
.trust__item i { color: var(--sky); font-size: 1.5rem; }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.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); }

.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: var(--grad-brand); transition: width .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-card__icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--light-blue); color: var(--sky); font-size: 1.7rem; margin-bottom: 1.2rem; transition: background .25s, color .25s; }
.service-card:hover .service-card__icon { background: var(--grad-brand); color: #fff; }
.service-card h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.service-card p { font-size: .95rem; margin-bottom: 1rem; }
.service-card .arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--ocean); font-size: .9rem; }
.service-card .arrow i { transition: transform .2s; }
.service-card:hover .arrow i { transform: translateX(4px); }

/* image service card */
.svc-img { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.svc-img:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-img__media { aspect-ratio: 16/10; overflow: hidden; }
.svc-img__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-img:hover .svc-img__media img { transform: scale(1.06); }
.svc-img__body { padding: 24px 24px 28px; }
.svc-img__body h3 { font-size: 1.25rem; margin-bottom: .4rem; }

/* =========================================================
   ABOUT / feature split
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__badge { position: absolute; bottom: -26px; left: -26px; background: var(--grad-brand); color: #fff; padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__badge b { font-size: 2.1rem; font-weight: 800; display: block; line-height: 1; }
.split__badge span { font-size: .85rem; opacity: .9; }
.check-list { list-style: none; display: grid; gap: 14px; margin: 1.5rem 0; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--slate); font-weight: 500; }
.check-list i { color: var(--sky); margin-top: 3px; font-size: 1.05rem; }
.check-list b { color: var(--ink); }

/* =========================================================
   STATS band
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat b { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: #fff; display: block; line-height: 1; }
.stat b .plus { color: var(--gold); }
.stat span { color: #b9d2f2; font-size: .95rem; }

/* =========================================================
   PROCESS timeline
   ========================================================= */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.process__step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 24px 28px; text-align: center; }
.process__step .num { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(0,123,255,.35); }
.process__step .ico { width: 58px; height: 58px; border-radius: 16px; background: var(--light-blue); color: var(--sky); display: grid; place-items: center; font-size: 1.5rem; margin: 8px auto 1rem; }
.process__step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.process__step p { font-size: .9rem; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.testi__stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testi p { font-size: 1rem; color: var(--ink); font-style: italic; flex: 1; }
.testi__who { display: flex; align-items: center; gap: 12px; margin-top: 1.2rem; }
.testi__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testi__who b { display: block; font-size: .98rem; }
.testi__who span { font-size: .82rem; color: var(--muted); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: var(--grad-brand); border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; bottom: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,198,41,.28), transparent 65%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #e5f0ff; position: relative; max-width: 620px; margin: 0 auto 1.8rem; }
.cta-band .btn { position: relative; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   BLOG cards
   ========================================================= */
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; gap: 16px; font-size: .82rem; color: var(--muted); margin-bottom: .7rem; }
.blog-card__meta i { color: var(--sky); margin-right: 4px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }

/* =========================================================
   PAGE HERO (inner)
   ========================================================= */
.page-hero { background: var(--grad-hero); color: #fff; padding-block: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: url("../images/pages/about.jpg") center/cover; opacity: .14; mix-blend-mode: luminosity; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.breadcrumb { display: inline-flex; gap: .5rem; align-items: center; color: #bcd6f6; font-size: .92rem; }
.breadcrumb a { color: #bcd6f6; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .7rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 18px; transition: transform .2s, box-shadow .2s; }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card__icon { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--light-blue); color: var(--sky); display: grid; place-items: center; font-size: 1.3rem; }
.info-card h4 { margin: 0 0 .2rem; font-size: 1.05rem; }
.info-card p { margin: 0; font-size: .95rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.6px solid var(--line); border-radius: 12px; padding: 13px 15px;
  font-family: var(--font); font-size: .97rem; color: var(--ink); outline: none; transition: border-color .2s; background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky); }
.message-status { margin-top: 12px; font-size: .92rem; }
.message-status .ok { color: #17915b; }
.message-status .err { color: #d1435b; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--font); font-weight: 600; font-size: 1.02rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q i { color: var(--sky); transition: transform .25s; flex: none; }
.faq__item.open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; margin: 0; font-size: .96rem; }

/* =========================================================
   PRICING
   ========================================================= */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; text-align: center; transition: transform .25s, box-shadow .25s; position: relative; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card--featured { border-color: transparent; background: var(--grad-hero); color: #fff; box-shadow: var(--shadow-lg); }
.price-card--featured h3, .price-card--featured .price { color: #fff; }
.price-card--featured p, .price-card--featured .price-list li { color: #d3e4fa; }
.price-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--ocean-900); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.price-card .ico { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 16px; background: var(--light-blue); color: var(--sky); display: grid; place-items: center; font-size: 1.6rem; }
.price-card--featured .ico { background: rgba(255,255,255,.16); color: var(--gold); }
.price { font-size: 2.4rem; font-weight: 800; color: var(--ocean); margin: .4rem 0; }
.price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-list { list-style: none; text-align: left; margin: 1.4rem 0; display: grid; gap: 12px; }
.price-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--slate); }
.price-list i { color: var(--sky); margin-top: 3px; }
.price-card--featured .price-list i { color: var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ocean-900); color: #a9c2e2; padding-top: 72px; }
.footer a { color: #a9c2e2; }
.footer a:hover { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 52px; }
.footer__brand-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.footer__brand-mark img { height: 46px; }
.footer__wordmark { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer__wordmark .mr { color: var(--gold); }
.footer p { color: #93add0; font-size: .95rem; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer__links { list-style: none; display: grid; gap: 12px; }
.footer__links a { font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; }
.footer__links i { font-size: .7rem; color: var(--sky); }
.footer__contact li { display: flex; gap: .7rem; margin-bottom: 14px; font-size: .95rem; color: #93add0; }
.footer__contact i { color: var(--gold); margin-top: 4px; }
.footer__social { display: flex; gap: 12px; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--gold); color: var(--ocean-900); transform: translateY(-3px); }
.newsletter { display: flex; gap: 8px; margin-top: 1rem; }
.newsletter input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: var(--font); outline: none; }
.newsletter input::placeholder { color: #7b96bc; }
.newsletter button { flex: none; border: 0; background: var(--gold); color: var(--ocean-900); width: 48px; border-radius: 10px; cursor: pointer; font-size: 1.1rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .88rem; color: #7b96bc; }
.footer__bottom a { color: #a9c2e2; }

/* WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* =========================================================
   AOS-lite reveal
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav__menu {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 22px 22px; gap: 2px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .3s ease; max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu > li > a { padding: 14px 6px; border-radius: 8px; }
  .nav__drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--light-blue); border-radius: 0; margin: 0 0 6px 12px; padding: 0; display: none; }
  .nav__menu > li.has-drop.open .nav__drop { display: block; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__actions .btn:not(.nav__toggle) { display: none; }
}
@media (max-width: 640px) {
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .process, .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .split__badge { left: 50%; transform: translateX(-50%); }
  .hero__stats { gap: 20px; }
}

/* ---------- Tracking result ---------- */
.tr-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tr-badge { background: var(--grad-brand); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.tr-head b { font-size: 1.05rem; color: var(--ink); }
.tr-route { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-weight: 600; color: var(--ocean); margin-bottom: 14px; font-size: .95rem; }
.tr-route i.fa-arrow-right-long { color: var(--gold); }
.tr-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.tr-meta small { display: block; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
.tr-meta b { font-size: .92rem; color: var(--ink); }
.tr-timeline { list-style: none; border-top: 1px dashed var(--line); padding-top: 14px; display: grid; gap: 16px; }
.tr-timeline li { display: flex; gap: 12px; align-items: flex-start; }
.tl-dot { flex: none; width: 12px; height: 12px; border-radius: 50%; background: var(--sky); margin-top: 5px; box-shadow: 0 0 0 4px var(--light-blue); }
.tr-timeline li:first-child .tl-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(255,198,41,.25); }
.tr-timeline b { font-size: .92rem; }
.tl-time { display: block; font-size: .78rem; color: var(--muted); font-style: normal; }
.tl-note { font-size: .84rem; margin: 4px 0 0; color: var(--slate); }
@media (max-width: 560px) { .tr-meta { grid-template-columns: 1fr; } }
