:root {
  --navy: #101d32;
  --navy-2: #172a46;
  --ink: #223048;
  --muted: #637087;
  --paper: #fffdf9;
  --soft: #f7f4f1;
  --line: #e8e2dc;
  --blue: #2e7dff;
  --coral: #e9615f;
  --gold: #ffc96a;
  --magenta: #ce278b;
  --purple: #7d55cf;
  --gradient: linear-gradient(115deg, #f28468 0%, #ffc96a 37%, #d72d86 71%, #745bd8 100%);
  --shadow: 0 20px 60px rgba(16, 29, 50, .10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--gradient); }
.section-title { margin: 0 0 18px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.12; letter-spacing: -.035em; }
.section-title--light { color: #fff; }
.section-lead { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-lead--light { color: #b9c6d8; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 720px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; border-radius: 8px; color: #fff; background: var(--navy); transition: top .2s; }
.skip-link:focus { top: 16px; }
.topbar { padding: 8px 0; color: #d8e1ed; background: var(--navy); font-size: .78rem; }
.topbar__inner { display: flex; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--gold); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 253, 249, .94); border-bottom: 1px solid rgba(232, 226, 220, .8); backdrop-filter: blur(14px); }
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: min(280px, 32vw); }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) { position: relative; color: var(--navy); font-size: .92rem; font-weight: 650; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gradient); transition: right .25s; }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 42px; padding: 0; border: 0; border-radius: 10px; background: var(--soft); }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform .2s, opacity .2s; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 22px; border: 0; border-radius: 999px; font-size: .9rem; font-weight: 750; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--navy); box-shadow: 0 10px 28px rgba(16,29,50,.18); }
.btn--primary:hover { box-shadow: 0 14px 34px rgba(16,29,50,.25); }
.btn--gradient { color: #241729; background: var(--gradient); box-shadow: 0 12px 32px rgba(215,45,134,.19); }
.btn--outline { color: var(--navy); background: transparent; border: 1px solid #d7dce5; }
.btn--outline:hover { border-color: var(--coral); }
.btn--light { color: var(--navy); background: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: .9rem; font-weight: 800; }
.text-link::after { content: "→"; color: var(--coral); transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,18,33,.96) 0%, rgba(8,18,33,.82) 40%, rgba(8,18,33,.28) 72%, rgba(8,18,33,.12) 100%), url("../images/generated-hero-image.png") center/cover no-repeat; }
.hero::after { content: ""; position: absolute; width: 480px; height: 480px; left: -210px; bottom: -300px; border: 70px solid rgba(255,201,106,.11); border-radius: 50%; }
.hero__content { position: relative; z-index: 1; max-width: 670px; padding: 95px 0; }
.hero .eyebrow { color: #ffd580; }
.hero h1 { max-width: 650px; margin: 0 0 24px; font-size: clamp(2.65rem, 5.5vw, 4.65rem); line-height: 1.03; letter-spacing: -.055em; }
.hero__lead { max-width: 620px; margin: 0 0 33px; color: #d9e2ec; font-size: 1.12rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 650px; margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.19); }
.proof-item strong { display: block; margin-bottom: 2px; color: #fff; font-size: .91rem; }
.proof-item span { color: #aebdce; font-size: .76rem; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip__inner { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); align-items: center; }
.trust-strip__label, .trust-strip__item { min-height: 82px; display: flex; align-items: center; padding: 16px 24px; border-right: 1px solid var(--line); }
.trust-strip__label { padding-left: 0; color: var(--navy); font-weight: 800; }
.trust-strip__item { justify-content: center; gap: 9px; color: var(--muted); font-size: .83rem; font-weight: 700; text-align: center; }
.trust-strip__item:last-child { border-right: 0; }
.trust-strip__item::before { content: "✓"; display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient); font-size: .72rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__image--wide { aspect-ratio: 3/2; }
.image-note { position: absolute; right: -24px; bottom: 28px; max-width: 220px; padding: 20px; border-radius: 16px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.image-note strong { display: block; margin-bottom: 4px; font-size: 1.04rem; }
.image-note span { color: #bdc9d9; font-size: .79rem; }
.body-copy p { margin: 0 0 18px; color: var(--muted); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; padding: 0; margin: 27px 0 32px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; color: var(--navy); font-size: .88rem; font-weight: 700; }
.check-list li::before { content: "✓"; display: grid; width: 21px; height: 21px; flex: 0 0 21px; margin-top: 2px; place-items: center; border-radius: 50%; color: #fff; background: var(--coral); font-size: .65rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 245px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); }
.service-card__num { display: inline-grid; width: 46px; height: 46px; margin-bottom: 25px; place-items: center; border-radius: 13px; color: var(--navy); background: linear-gradient(135deg, #fff0df, #f6d7ef); font-size: .82rem; font-weight: 850; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.1rem; line-height: 1.35; }
.service-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.service-card::after { content: ""; position: absolute; width: 90px; height: 90px; right: -55px; bottom: -55px; border: 12px solid rgba(215,45,134,.08); border-radius: 50%; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.category { padding: 24px; border-radius: 16px; color: #fff; background: var(--navy-2); }
.category small { display: block; margin-bottom: 8px; color: #f4b25d; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.category h3 { margin: 0; font-size: 1rem; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 1px; background: #d9d9dc; }
.process-step { position: relative; text-align: center; }
.process-step__num { position: relative; z-index: 1; display: grid; width: 58px; height: 58px; margin: 0 auto 20px; place-items: center; border: 8px solid var(--soft); border-radius: 50%; color: #fff; background: var(--navy); font-size: .8rem; font-weight: 800; }
.process-step h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .83rem; }

.feature-band { overflow: hidden; border-radius: 26px; color: #fff; background: var(--navy); }
.feature-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; }
.feature-band__content { padding: 65px; }
.feature-band__image { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 34px; background: rgba(255,255,255,.13); }
.stat { padding: 20px; background: var(--navy); }
.stat strong { display: block; color: #fff; font-size: 1.5rem; }
.stat span { color: #b8c5d5; font-size: .76rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.quote-card__mark { margin-bottom: 10px; color: var(--coral); font-family: Georgia, serif; font-size: 3.2rem; line-height: 1; }
.quote-card blockquote { margin: 0 0 23px; color: var(--ink); font-size: .91rem; }
.quote-card cite { color: var(--navy); font-size: .84rem; font-style: normal; font-weight: 800; }
.quote-card cite span { display: block; color: var(--muted); font-size: .75rem; font-weight: 500; }

.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; align-items: start; }
.faq-aside { position: sticky; top: 130px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; color: var(--navy); background: transparent; text-align: left; font-weight: 750; }
.faq-question span:last-child { color: var(--coral); font-size: 1.3rem; transition: transform .2s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 40px 22px 0; color: var(--muted); font-size: .9rem; }

.cta-band { position: relative; overflow: hidden; padding: 76px 0; color: #fff; background: var(--navy); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .18; background: radial-gradient(circle at 20% 0%, #ffcb6b, transparent 34%), radial-gradient(circle at 92% 100%, #ce278b, transparent 35%); }
.cta-band__inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-band h2 { max-width: 730px; margin: 0 0 8px; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }
.cta-band p { margin: 0; color: #bac6d6; }
.cta-band__actions { display: flex; flex: 0 0 auto; gap: 12px; }

.page-hero { position: relative; padding: 105px 0 85px; overflow: hidden; color: #fff; background: var(--navy); }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -100px; top: -210px; border: 65px solid rgba(255,201,106,.12); border-radius: 50%; }
.page-hero__inner { position: relative; z-index: 1; max-width: 810px; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 24px; color: #aebed1; font-size: .78rem; }
.breadcrumbs a:hover { color: #fff; }
.page-hero h1 { margin: 0 0 18px; font-size: clamp(2.7rem, 5vw, 4.4rem); line-height: 1.05; letter-spacing: -.05em; }
.page-hero p { max-width: 680px; margin: 0; color: #c2cedd; font-size: 1.08rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.value-card__icon { display: grid; width: 44px; height: 44px; margin-bottom: 22px; place-items: center; border-radius: 12px; color: var(--navy); background: linear-gradient(135deg, #ffebcf, #efdaf4); font-weight: 900; }
.value-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.03rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.service-detail__num { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; color: #fff; background: var(--navy); font-size: .74rem; font-weight: 800; }
.service-detail h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.02rem; }
.service-detail p { margin: 0; color: var(--muted); font-size: .84rem; }
.product-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0; margin: 34px 0 0; list-style: none; }
.product-list li { padding: 18px; border-left: 3px solid var(--coral); color: var(--navy); background: #fff; font-size: .87rem; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; }
.contact-card { display: flex; gap: 16px; margin-bottom: 14px; padding: 21px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.contact-card__icon { display: grid; width: 43px; height: 43px; flex: 0 0 43px; place-items: center; border-radius: 11px; color: #fff; background: var(--navy); font-size: .85rem; font-weight: 800; }
.contact-card small { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong, .contact-card a { color: var(--navy); font-size: .9rem; font-weight: 750; }
.contact-card a:hover { color: var(--coral); }
.form-panel { padding: 38px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.form-panel h2 { margin: 0 0 7px; color: var(--navy); font-size: 1.65rem; }
.form-panel > p { margin: 0 0 28px; color: var(--muted); font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field--full { grid-column: 1/-1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .78rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dbe0e8; border-radius: 11px; padding: 13px 14px; color: var(--ink); background: #fbfcfd; outline: none; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,125,255,.1); }
.form-status { min-height: 24px; margin: 13px 0 0; color: var(--muted); font-size: .82rem; }
.map-card { min-height: 380px; display: grid; place-items: center; overflow: hidden; border-radius: 24px; background: linear-gradient(rgba(16,29,50,.72),rgba(16,29,50,.72)), url("../images/generated-logistics-image.png") center/cover; color: #fff; text-align: center; }
.map-card__content { max-width: 520px; padding: 45px; }
.map-card h2 { margin: 0 0 10px; color: #fff; font-size: 2rem; }
.map-card p { margin: 0 0 24px; color: #d0dae6; }

.site-footer { padding: 72px 0 0; color: #bac5d4; background: #0b1525; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 55px; padding-bottom: 52px; }
.footer-brand { width: 245px; height: auto; margin-bottom: 20px; padding: 7px 10px; border-radius: 8px; background: #fff; }
.footer-about { margin: 0; max-width: 330px; font-size: .84rem; }
.footer-title { margin: 0 0 19px; color: #fff; font-size: .9rem; }
.footer-links { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.footer-links a { font-size: .81rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 13px; font-size: .81rem; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8593a6; font-size: .73rem; }
.floating-call { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: none; min-height: 48px; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--navy); box-shadow: 0 12px 30px rgba(16,29,50,.3); font-size: .82rem; font-weight: 800; }

.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .topbar { display: none; }
  .brand { width: 245px; }
  .nav { position: fixed; inset: 78px 0 auto; max-height: 0; display: grid; gap: 0; overflow: hidden; background: #fff; box-shadow: 0 18px 30px rgba(16,29,50,.12); transition: max-height .3s; }
  .nav.is-open { max-height: 430px; padding: 12px 20px 24px; }
  .nav a:not(.btn) { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 13px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split { gap: 45px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-card:last-child { display: none; }
  .feature-band__content { padding: 45px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
  .footer-grid > div:last-child { grid-column: 1/-1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .btn, .section-head .text-link { margin-top: 22px; }
  .hero { min-height: 670px; }
  .hero::before { background: linear-gradient(90deg, rgba(8,18,33,.94), rgba(8,18,33,.72)), url("../images/generated-hero-image.png") 64% center/cover no-repeat; }
  .hero__content { padding: 75px 0; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero__proof { grid-template-columns: 1fr; gap: 12px; margin-top: 38px; }
  .proof-item span { display: inline; margin-left: 5px; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .trust-strip__label { grid-column: 1/-1; min-height: 62px; padding: 14px 0; justify-content: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__item { min-height: 68px; padding: 12px; }
  .trust-strip__item:nth-child(3) { border-right: 0; }
  .split, .feature-band__grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .split--reverse .split__media { order: 0; }
  .image-note { right: 12px; bottom: 12px; }
  .services-grid, .service-detail-grid, .value-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .quote-card:last-child { display: block; }
  .category-grid, .product-list { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 18px; }
  .process-grid::before { display: none; }
  .feature-band__content { padding: 38px 28px; }
  .feature-band__image { min-height: 310px; }
  .faq-aside { position: static; }
  .cta-band__inner { display: block; }
  .cta-band__actions { margin-top: 27px; }
  .page-hero { padding: 80px 0 68px; }
  .form-panel { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-bottom { display: block; padding-bottom: 82px; }
  .floating-call { display: flex; }
}

@media (max-width: 480px) {
  .brand { width: 210px; }
  .navbar { min-height: 70px; }
  .nav { inset: 70px 0 auto; }
  .hero__actions, .cta-band__actions { display: grid; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
  .check-list, .category-grid, .product-list, .process-grid, .stats { grid-template-columns: 1fr; }
  .image-note { position: static; max-width: 100%; margin-top: -18px; border-radius: 0 0 16px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}
/* @vn-deploy:1788485191740 */
