/* =========================================================
   TMLOG – Global Trade & Logistics
   Landing page styles (desktop = reference; mobile = compact)
   ========================================================= */

:root {
  --navy: #0b2a5b;
  --navy-900: #071c3f;
  --navy-700: #12356e;
  --blue: #1f5fbf;
  --blue-light: #c5e1ff;
  --ink: #0f1f3d;
  --text: #223354;
  --muted: #5d6b85;
  --line: #e2e8f2;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 42, 91, .08);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 60px);
  --header-h: 84px;
}

html[lang="hi"] { --font: "Noto Sans Devanagari", "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif; }
html[lang="zh"] { --font: "Plus Jakarta Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
  width: 100%;
}
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: middle; flex-shrink: 0; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 6vw, 72px) 0; }
.only-mobile { display: none !important; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,.78); }
h1 { font-size: clamp(38px, 3.9vw, 56px); line-height: 1.06; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
h1 span { color: var(--blue-light); }
h2 { font-size: clamp(26px, 2.2vw, 31px); line-height: 1.18; font-weight: 700; color: var(--navy); letter-spacing: -.015em; }
h3 { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.lead { font-size: clamp(16px, 1.25vw, 18px); line-height: 1.6; color: rgba(255,255,255,.9); }
.muted { color: var(--muted); font-size: 15px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 14px;
  line-height: 1; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1.5px solid transparent;
}
.btn .ico { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 8px 20px rgba(11,42,91,.22); }
.btn-primary:hover { background: var(--navy-700); }
.btn-light { background: var(--white); color: var(--navy); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn-light:hover { background: #f1f5fb; }
.btn-outline { background: transparent; color: var(--navy); border-color: #c9d5e6; }
.btn-outline:hover { border-color: var(--navy); background: rgba(11,42,91,.04); }
.btn-block { width: 100%; justify-content: center; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--blue); margin-top: auto; }
.link-more .ico { width: 14px; height: 14px; transition: transform .2s; }
.link-more:hover .ico { transform: translateX(3px); }

/* ---------- Rings (icon circles) ---------- */
.ring {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.5); color: var(--white);
}
.ring .ico { width: 18px; height: 18px; stroke-width: 1.75; }
.ring-dark { border-color: #c9d5e6; color: var(--navy); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); position: relative; z-index: 95; }
.logo { display: inline-flex; align-items: center; color: var(--navy); }
.logo-img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; margin-left: 28px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--text); padding: 6px 0; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--navy); font-weight: 600; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 22px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); padding: 8px 4px; }
.flag { width: 20px; height: 15px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(11,42,91,.12); flex-shrink: 0; display: inline-block; }
.flag-current { width: 22px; height: 16px; }
.lang-btn .chev { width: 14px; height: 14px; transition: transform .2s; }
.lang-switch.open .chev { transform: rotate(180deg); }
.lang-current { color: var(--navy); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s ease; z-index: 50;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 14px; cursor: pointer; color: var(--text); }
.lang-menu li:hover { background: var(--bg-soft); }
.lang-menu li.is-active { background: rgba(31,95,191,.08); color: var(--navy); font-weight: 600; }
.lang-menu li span { flex: 1; }
.lang-menu li code { font-family: inherit; font-size: 10.5px; font-weight: 700; color: var(--muted); letter-spacing: .04em; }
.lang-menu li.is-active code { color: var(--navy); }

.btn-header { padding: 13px 22px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 10px; color: var(--navy); position: relative; z-index: 120; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .45s var(--ease-out), opacity .3s, width .3s; transform-origin: center; }
.nav-toggle[aria-expanded="true"] { color: var(--white); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.menu-open { background: var(--navy); border-color: transparent; box-shadow: none; }
.site-header.menu-open .logo-img { content: url("/assets/img/logo-tmlog-white.png"); }
.site-header.menu-open .lang-btn { color: rgba(255,255,255,.8); }
.site-header.menu-open .lang-current { color: var(--white); }


.mobile-menu { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: var(--navy-900); color: var(--white); overflow: hidden; min-height: 500px; }
.hero-media { position: absolute; inset: 0; }
.hero-media picture { position: absolute; inset: 0; z-index: 0; }
.hero-media::before, .hero-media::after { z-index: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 42%; }
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #0a2350 0%, #0a2350 30%, rgba(10,35,80,.9) 42%, rgba(10,35,80,.3) 56%, rgba(10,35,80,0) 68%);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,28,63,.15) 0%, rgba(7,28,63,0) 30%, rgba(7,28,63,.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: clamp(40px, 4.5vw, 64px); padding-bottom: clamp(30px, 3vw, 40px); display: flex; flex-direction: column; min-height: 500px; }
.hero-content { max-width: 640px; }
.hero-content h1 { margin-bottom: 22px; }
.hero-content .lead { max-width: 520px; margin-bottom: 30px; }
.feature-row { display: flex; flex-wrap: wrap; gap: 20px 44px; margin-top: auto; padding-top: clamp(32px, 4vw, 52px); }
.feature-row li { display: flex; align-items: center; gap: 12px; font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,.92); }

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section-head { display: flex; align-items: flex-end; gap: 32px; margin-bottom: 30px; }
.section-head > div:first-child { flex: 1 1 auto; min-width: 0; }
.section-head h2 { font-size: clamp(26px, 2.05vw, 29px); }
.section-head .eyebrow { margin-bottom: 10px; }
.section-note { flex: 0 0 240px; max-width: 240px; font-size: 12.5px; line-height: 1.5; color: var(--muted); padding-bottom: 4px; }
.section-head .btn { flex-shrink: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg-soft); }
.slider { position: relative; }
.slider-track { display: grid; gap: 18px; }
.cards-6 { grid-template-columns: repeat(6, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.slider-dots { display: none; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4 / 2.5; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-ico { width: 28px; height: 28px; color: var(--navy); margin-bottom: 4px; stroke-width: 1.6; }
.card-body h3 { font-size: 15.5px; min-height: 2.6em; }
.card-body p { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }

/* =========================================================
   GLOBAL TRADE
   ========================================================= */
.global-trade { background: var(--navy); color: var(--white); }
.gt-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.gt-content { display: flex; align-items: center; }
.gt-inner {
  width: 100%; max-width: calc(var(--container) / 2 + var(--gutter));
  margin-left: auto; padding: 56px var(--gutter) 48px var(--gutter);
}
.gt-inner h2 { color: var(--white); font-size: clamp(28px, 2.6vw, 36px); margin-bottom: 22px; }
.gt-inner .lead { max-width: 560px; margin-bottom: 30px; font-size: 16px; }
.feature-row-gt { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 18px 30px; padding-top: 40px; }
.feature-row-gt li { font-size: 12px; }
.feature-row-gt li > span:last-child { white-space: nowrap; }
.gt-media { position: relative; overflow: hidden; }
.gt-media picture { position: absolute; inset: 0; }
.gt-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; position: absolute; inset: 0; }
.gt-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,28,63,0) 50%, rgba(7,28,63,.7) 100%); }
.gt-caption {
  position: absolute; right: var(--gutter); bottom: 34px; z-index: 2;
  font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; line-height: 1.7; text-align: right;
  color: var(--white);
}

/* =========================================================
   NUMBERS
   ========================================================= */
.numbers { background: var(--white); border-bottom: 1px solid var(--line); }
.numbers-inner { display: flex; align-items: center; gap: 40px; padding-top: 44px; padding-bottom: 44px; }
.numbers-head { flex: 0 0 auto; padding-right: 30px; border-right: 1px solid var(--line); min-width: 240px; }
.numbers-head .eyebrow { margin-bottom: 8px; }
.numbers-head h2 { font-size: clamp(22px, 2vw, 28px); }
.stats { display: flex; flex: 1; }
.stats li { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--line); padding: 4px 8px; }
.stats li:last-child { border-right: 0; }
.stats strong { font-size: clamp(28px, 2.4vw, 34px); font-weight: 700; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stats span { font-size: 12.5px; color: var(--muted); }

/* =========================================================
   PRESENCE
   ========================================================= */
.presence { background: var(--bg-soft); }
.presence-grid { display: grid; grid-template-columns: 300px 1fr 260px; gap: 40px; align-items: center; }
.presence-content h2 { margin-bottom: 18px; }
.presence-content .muted { margin-bottom: 28px; }
.presence-map { position: relative; }
.presence-map img { width: 100%; height: auto; opacity: .95; }
.map-pin { position: absolute; left: 32.5%; top: 66%; transform: translate(-50%, -100%); display: flex; align-items: flex-end; gap: 6px; }
.map-pin > .ico { width: 30px; height: 30px; color: var(--navy); fill: var(--navy); stroke: var(--white); stroke-width: 1.5; filter: drop-shadow(0 4px 8px rgba(11,42,91,.35)); animation: pinBounce 2.4s ease-in-out infinite; }
@keyframes pinBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.map-pin-label { display: flex; flex-direction: column; line-height: 1.2; padding-bottom: 6px; }
.map-pin-label strong { font-size: 13px; color: var(--navy); }
.map-pin-label em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.regions { display: flex; flex-direction: column; gap: 14px; }
.regions li { display: flex; align-items: center; gap: 12px; }
.regions strong { display: block; font-size: 13.5px; color: var(--navy); line-height: 1.25; }
.regions span { font-size: 12px; color: var(--muted); }

/* =========================================================
   CASES
   ========================================================= */
.cases { background: var(--white); }
.section-head-cases .slider-nav { display: flex; gap: 10px; margin-right: 6px; }
.circle-btn {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--navy); transition: all .2s;
}
.circle-btn .ico { width: 18px; height: 18px; }
.circle-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.circle-btn:disabled { opacity: .4; cursor: default; }
.circle-btn:disabled:hover { background: var(--bg-soft); color: var(--navy); border-color: var(--line); }

.case-card {
  display: grid; grid-template-columns: 44% 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-img { min-height: 190px; }
.case-img picture { height: 100%; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.tag { display: inline-block; align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: #e8eef8; padding: 5px 10px; border-radius: 6px; }
.case-body h3 { font-size: 15px; }
.case-body p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { position: relative; background: var(--navy-900); color: var(--white); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; filter: saturate(.6); }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,30,66,.96) 0%, rgba(8,30,66,.88) 50%, rgba(8,30,66,.8) 100%); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 48px; padding-top: 56px; padding-bottom: 56px; }
.cta-text { flex: 1 1 auto; }
.cta-text h2 { color: var(--white); }
.cta-desc { max-width: 300px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.88); }
.cta-inner .btn { flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--white); }
.footer-top { display: flex; align-items: center; gap: 40px; padding-top: 34px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-nav { display: flex; gap: 24px; margin-left: 20px; }
.footer-nav a { font-size: 13.5px; font-weight: 500; color: var(--text); }
.footer-nav a:hover { color: var(--blue); }
.footer-contact { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.social { display: flex; gap: 14px; padding-right: 22px; border-right: 1px solid var(--line); }
.social a { color: var(--navy); display: inline-flex; }
.social .ico { width: 18px; height: 18px; }
.social a:hover { color: var(--blue); }
.footer-link { font-size: 13px; color: var(--text); }
.footer-link + .footer-link { padding-left: 22px; border-left: 1px solid var(--line); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px var(--gutter); font-size: 11.5px; color: var(--muted); }
.footer-legal { display: flex; gap: 18px; align-items: center; }
.footer-admin { display: inline-flex; align-items: center; gap: 6px; opacity: .7; }
.footer-admin .ico { width: 13px; height: 13px; }
.footer-admin:hover { opacity: 1; color: var(--blue); }
.mobile-admin { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.mobile-admin .ico { width: 14px; height: 14px; }
.footer-legal a:hover { color: var(--blue); }

/* =========================================================
   MOTION – entrance, reveal, micro-interactions
   ========================================================= */
:root { --ease-out: cubic-bezier(.22, 1, .36, 1); --ease-soft: cubic-bezier(.4, 0, .2, 1); }
html { scroll-padding-top: calc(var(--header-h) + 8px); }

/* Header shadow on scroll */
.site-header { transition: box-shadow .4s var(--ease-soft), background .4s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11,42,91,.08); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* Hero entrance (page load) */
.hero-content > *, .hero .feature-row > li {
  opacity: 0; transform: translateY(26px); filter: blur(8px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
body.is-loaded .hero-content > *, body.is-loaded .hero .feature-row > li { opacity: 1; transform: none; filter: blur(0); }
body.is-loaded .hero-content > :nth-child(1) { transition-delay: .15s; }
body.is-loaded .hero-content > :nth-child(2) { transition-delay: .28s; }
body.is-loaded .hero-content > :nth-child(3) { transition-delay: .42s; }
body.is-loaded .hero-content > :nth-child(4) { transition-delay: .56s; }
body.is-loaded .hero .feature-row > li:nth-child(1) { transition-delay: .75s; }
body.is-loaded .hero .feature-row > li:nth-child(2) { transition-delay: .85s; }
body.is-loaded .hero .feature-row > li:nth-child(3) { transition-delay: .95s; }
body.is-loaded .hero .feature-row > li:nth-child(4) { transition-delay: 1.05s; }

/* Hero image: Ken Burns + parallax (translate set by JS) */
.hero-media img { transform: scale(1.1); transition: transform 7s var(--ease-out), opacity 1.2s ease; opacity: 0; will-change: transform; }
body.is-loaded .hero-media img { transform: scale(1.02) translate3d(0, var(--parallax, 0px), 0); opacity: 1; }
.hero-media::before { opacity: 0; transition: opacity 1.2s ease .2s; }
body.is-loaded .hero-media::before { opacity: 1; }
.hero-inner { will-change: transform, opacity; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }
.reveal-img > picture { clip-path: inset(0 0 0 100%); transition: clip-path 1.2s var(--ease-out); }
.reveal-img.is-visible > picture { clip-path: inset(0 0 0 0); }

/* Cards: hover lift + arrow nudge */
.card, .case-card { transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s; }
.card:hover, .case-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(11,42,91,.12); border-color: #d3deee; }
.card-img img, .case-img img { transition: transform 1.2s var(--ease-out); }
.card:hover .card-img img, .case-card:hover .case-img img { transform: scale(1.06); }
.card-ico { transition: transform .5s var(--ease-out), color .4s; }
.card:hover .card-ico { transform: translateY(-3px); color: var(--blue); }

/* Buttons: arrow slide */
.btn .ico { transition: transform .4s var(--ease-out); }
.btn:hover .ico { transform: translateX(4px); }
.btn { transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .3s, color .3s, border-color .3s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(11,42,91,.3); }
.btn-light:hover { box-shadow: 0 14px 30px rgba(0,0,0,.24); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .1s; }

/* Rings: subtle hover */
.ring { transition: background .4s, border-color .4s, transform .5s var(--ease-out); }
li:hover > .ring { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.85); transform: scale(1.06); }
.regions li:hover > .ring { background: rgba(31,95,191,.08); border-color: var(--navy); }

/* Map pin pulse */
.map-pin::before {
  content: ""; position: absolute; left: 15px; bottom: -2px; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(31,95,191,.35); transform: translate(-50%, 50%); animation: pinPulse 2.4s ease-out infinite;
}
@keyframes pinPulse { 0% { transform: translate(-50%, 50%) scale(.6); opacity: .9; } 100% { transform: translate(-50%, 50%) scale(3.2); opacity: 0; } }

/* Nav underline */
.main-nav a::after { transition: transform .45s var(--ease-out); }

/* Stats: number pop */
.stats strong { display: inline-block; }
.stats li.is-visible strong { animation: numPop .8s var(--ease-out) both; }
@keyframes numPop { 0% { transform: translateY(10px) scale(.92); opacity: 0; } 100% { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img > picture, .hero-content > *, .hero .feature-row > li, .hero-media img, .hero-media::before { opacity: 1; transform: none; filter: none; clip-path: none; transition: none; animation: none; }
  .map-pin > .ico, .map-pin::before, .stats li.is-visible strong { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   TABLET (768 – 1099)
   ========================================================= */
@media (max-width: 1099px) {
  .main-nav { gap: 18px; margin-left: 12px; }
  .main-nav a { font-size: 13px; }
  .cards-6 { grid-template-columns: repeat(3, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 34% 1fr; }
  .case-img { min-height: 150px; }
  .presence-grid { grid-template-columns: 1fr 1fr; }
  .presence-map { grid-column: 1 / -1; order: 3; max-width: 720px; margin: 0 auto; }
  .regions { gap: 12px; }
  .numbers-inner { flex-wrap: wrap; }
  .numbers-head { border-right: 0; min-width: 0; width: 100%; padding-right: 0; }
  .section-note { display: none; }
}
@media (max-width: 1023px) {
  .main-nav, .btn-header { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { gap: 8px; }
  .mobile-menu { display: block; position: fixed; inset: 0; height: 100dvh; z-index: 90; overflow: hidden; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(4,16,40,.55); opacity: 0; transition: opacity .45s var(--ease-soft); }
  .mobile-menu-panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: 100%; max-width: 480px;
    background: linear-gradient(180deg, var(--navy) 0%, #081f4a 100%); color: var(--white);
    padding: calc(var(--header-h) + 18px) var(--gutter) calc(28px + env(safe-area-inset-bottom, 0px)); display: flex; flex-direction: column; gap: 22px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform .55s var(--ease-out);
    box-shadow: -30px 0 60px rgba(0,0,0,.35);
  }
  .mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }
  .mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
  .mobile-menu.is-closing .mobile-menu-backdrop { opacity: 0; transition-duration: .35s; }
  .mobile-menu.is-closing .mobile-menu-panel { transform: translateX(100%); transition: transform .4s var(--ease-soft); }

  .mobile-nav { display: flex; flex-direction: column; }
  .mobile-nav a {
    display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 22px; font-weight: 600; letter-spacing: -.01em; color: var(--white);
    opacity: 0; transform: translateX(28px); transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), padding-left .3s;
  }
  .mobile-nav a .num { font-size: 11px; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,.45); width: 26px; }
  .mobile-nav a .ico { margin-left: auto; width: 18px; height: 18px; opacity: .5; transition: transform .3s var(--ease-out), opacity .3s; }
  .mobile-nav a:active { padding-left: 6px; }
  .mobile-nav a:active .ico { transform: translateX(4px); opacity: 1; }
  .mobile-menu.is-open .mobile-nav a { opacity: 1; transform: none; }
  .mobile-menu.is-open .mobile-nav a:nth-child(1) { transition-delay: .12s; }
  .mobile-menu.is-open .mobile-nav a:nth-child(2) { transition-delay: .17s; }
  .mobile-menu.is-open .mobile-nav a:nth-child(3) { transition-delay: .22s; }
  .mobile-menu.is-open .mobile-nav a:nth-child(4) { transition-delay: .27s; }
  .mobile-menu.is-open .mobile-nav a:nth-child(5) { transition-delay: .32s; }
  .mobile-menu.is-open .mobile-nav a:nth-child(6) { transition-delay: .37s; }
  .mobile-menu.is-open .mobile-nav a:nth-child(7) { transition-delay: .42s; }

  .mobile-lang, .mobile-menu-foot { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .6s var(--ease-out); }
  .mobile-menu.is-open .mobile-lang { opacity: 1; transform: none; transition-delay: .5s; }
  .mobile-menu.is-open .mobile-menu-foot { opacity: 1; transform: none; transition-delay: .58s; }
  .mobile-menu.is-closing .mobile-nav a, .mobile-menu.is-closing .mobile-lang, .mobile-menu.is-closing .mobile-menu-foot { opacity: 0; transition-duration: .25s; transition-delay: 0s; }

  .mobile-lang-label { display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 10px; font-weight: 600; }
  .mobile-lang-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .mobile-lang-list button { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); transition: background .3s, border-color .3s, color .3s; }
  .mobile-lang-list button.is-active { background: var(--white); color: var(--navy); border-color: var(--white); }
  .mobile-menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
  .mobile-menu-contact { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: rgba(255,255,255,.8); }
  .social-light a { color: var(--white); }
  .social-light { border: 0; padding: 0; }
  .gt-grid { grid-template-columns: 1fr; min-height: 0; }
  .gt-media { min-height: 300px; order: -1; }
  .gt-media img { position: absolute; }
  .gt-inner { max-width: none; padding: 40px var(--gutter) 40px; }
  .cta-inner { flex-wrap: wrap; gap: 24px; }
  .cta-desc { max-width: none; }
  .footer-top { flex-wrap: wrap; gap: 20px; }
  .footer-nav { margin-left: 0; flex-wrap: wrap; gap: 14px 20px; width: 100%; }
  .footer-contact { margin-left: 0; flex-wrap: wrap; gap: 14px; }
}

/* =========================================================
   MOBILE (≤ 767) – compact vertical rhythm, sliders
   ========================================================= */
@media (max-width: 767px) {
  :root { --header-h: 66px; --gutter: 20px; }
  .only-mobile { display: inline-flex !important; margin-top: 18px; }
  .section { padding: 40px 0; }
  .logo-img { height: 38px; }
  h1 { font-size: clamp(34px, 9.5vw, 42px); }
  h2 { font-size: 24px; }
  .eyebrow { margin-bottom: 10px; }

  /* Hero – photo-first, compact */
  .hero { min-height: 0; }
  .hero-inner { transform: none !important; opacity: 1 !important; will-change: auto; }
  body.is-loaded .hero-media img { transform: scale(1.02); }
  .hero-media img { transition: transform 5s var(--ease-out), opacity 1s ease; }
  .hero-media img { object-position: 62% 40%; }
  .hero-media::before { background: linear-gradient(180deg, rgba(10,35,80,.18) 0%, rgba(10,35,80,.35) 28%, rgba(10,35,80,.92) 50%, #0a2350 72%, #0a2350 100%); }
  .hero-media::after { display: none; }
  .hero-inner { min-height: calc(100dvh - var(--header-h)); padding-top: 40dvh; padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)); justify-content: flex-end; }
  .hero-content .eyebrow { margin-bottom: 8px; }
  .hero-content h1 { font-size: clamp(34px, 9.6vw, 40px); margin-bottom: 14px; }
  .hero-content .lead { font-size: 15px; line-height: 1.55; margin-bottom: 20px; color: rgba(255,255,255,.86); }
  .hero-content .btn { width: 100%; justify-content: center; padding: 16px 24px; }
    .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 22px; }
  .feature-row li {
    font-size: 12px; gap: 10px; padding: 10px 12px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06);
  }
  .feature-row .ring { width: 34px; height: 34px; border-color: rgba(255,255,255,.35); }
  .feature-row .ring .ico { width: 16px; height: 16px; }
  .feature-row li > span:last-child br { display: none; }

  /* Section heads */
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
  .section-head > .btn { display: none; }
  .section-head-cases { flex-direction: row; flex-wrap: wrap; align-items: flex-end; }
  .section-head-cases > div:first-child { width: 100%; }
  .section-head-cases .slider-nav { display: none; }

  /* Sliders (scroll-snap) */
  .slider { margin: 0 calc(var(--gutter) * -1); }
  .slider-track {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px var(--gutter) 12px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .slider-track::-webkit-scrollbar { display: none; }
  .slider-track > * { flex: 0 0 78%; scroll-snap-align: start; }
  .card-body h3 { min-height: 0; }
  .card-body p { margin-bottom: 4px; }
  .slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 6px; }
  .slider-dots button { width: 7px; height: 7px; border-radius: 50%; background: #c9d5e6; transition: all .25s; }
  .slider-dots button.is-active { width: 20px; border-radius: 4px; background: var(--navy); }

  /* Global trade */
  .gt-media { min-height: 220px; }
  .gt-caption { bottom: 16px; font-size: 11px; }
  .gt-inner { padding: 32px var(--gutter) 36px; }
  .gt-inner h2 { font-size: 26px; margin-bottom: 14px; }
  .gt-inner .lead { font-size: 15px; margin-bottom: 22px; }
  .gt-inner .btn { width: 100%; justify-content: center; }
  .feature-row-gt { padding-top: 26px; }
  .feature-row-gt li > span:last-child { white-space: normal; }

  /* Numbers */
  .numbers-inner { padding-top: 32px; padding-bottom: 28px; gap: 20px; }
  .numbers-head { text-align: center; }
  .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 8px; width: 100%; }
  .stats li { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 8px; background: var(--bg-soft); }
  .stats li:last-child { grid-column: 1 / -1; }
  .stats strong { font-size: 28px; }

  /* Presence */
  .presence-grid { grid-template-columns: 1fr; gap: 22px; }
  .presence-content .btn { width: 100%; justify-content: center; }
  .presence-map { order: 2; }
  .map-pin > .ico { width: 24px; height: 24px; }
  .map-pin-label strong { font-size: 12px; }
  .map-pin-label em { font-size: 10px; }
  .regions { order: 3; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .regions li { padding: 10px 12px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }

  /* Cases */
  .case-card { grid-template-columns: 1fr; }
  .case-img { min-height: 0; aspect-ratio: 16 / 9; }
  .case-body { padding: 16px; }

  /* CTA */
  .cta-inner { padding-top: 44px; padding-bottom: 44px; }
  .cta-text h2 { font-size: 26px; }
  .cta-inner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; padding-top: 28px; padding-bottom: 22px; }
  .footer-nav { gap: 10px 18px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 12px; }
  .social { border-right: 0; padding-right: 0; }
  .footer-link + .footer-link { padding-left: 0; border-left: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 16px; padding-bottom: 20px; }
}

/* =========================================================
   HOME v3 (reference update): hero side panel, ops, sectors, presence, cta
   ========================================================= */
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 8px 22px rgba(31,95,191,.3); }
.btn-blue:hover { background: #1a52a8; box-shadow: 0 14px 30px rgba(31,95,191,.35); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: var(--white); }
.hero-eyebrow { display: flex; flex-direction: column; gap: 4px; }
.hero-eyebrow span:first-child { color: var(--blue-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-content h1 { font-size: clamp(34px, 3.4vw, 50px); }
.hero-side { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.hero-side .hero-regions { display: flex; flex-direction: column; gap: 2px; font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,.45); padding-bottom: 18px; border-bottom: 2px solid var(--blue-light); }
.hero-side-caption { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--blue-light); line-height: 1.7; }
.feature-row li { font-size: 12px; }
.link-more-lg { font-size: 14px; align-self: flex-end; padding-bottom: 6px; }
.ops-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ops-panel { position: relative; min-height: 380px; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: var(--white); }
.ops-panel picture, .ops-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ops-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,30,66,.96) 0%, rgba(8,30,66,.85) 45%, rgba(8,30,66,.25) 100%); }
.ops-panel-alt::after { background: linear-gradient(90deg, rgba(13,46,102,.96) 0%, rgba(13,46,102,.85) 45%, rgba(13,46,102,.25) 100%); }
.ops-inner { position: relative; z-index: 2; padding: 52px var(--gutter); max-width: 560px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.ops-inner h2 { color: var(--white); font-size: clamp(24px, 2.2vw, 30px); }
.ops-inner p:not(.eyebrow) { font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.6; }
.ops-inner .btn { margin-top: 6px; }
.ops-inner .eyebrow { margin-bottom: 0; }
.sectors { background: var(--white); }
.sector-grid { display: grid; grid-template-columns: repeat(8, 1fr); }
.sector-grid li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 18px 10px; border-right: 1px solid var(--line); font-size: 13px; color: var(--text); line-height: 1.35; transition: transform .4s var(--ease-out), color .3s; }
.sector-grid li:last-child { border-right: 0; }
.sector-grid li:hover { transform: translateY(-4px); color: var(--navy); }
.sector-grid .ico { width: 34px; height: 34px; color: var(--navy); stroke-width: 1.5; }
.presence-v3 { grid-template-columns: 300px 1fr 300px; align-items: center; }
.map-pin-region { transform: translate(-50%, -100%); }
.map-pin-region > .ico { animation: none; }
.map-pin-region .map-pin-label strong { white-space: nowrap; font-size: 12.5px; }
.numbers-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); }
.numbers-card .eyebrow { margin-bottom: 14px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 10px; }
.stats-grid li { border: 0; border-bottom: 1px solid var(--line); text-align: left; padding: 6px 0 14px; }
.stats-grid li:nth-child(n+3) { border-bottom: 0; padding-bottom: 0; }
.stats-grid strong { font-size: 30px; }
.cta-v3 .cta-inner { gap: 40px; }
.cta-v3 .cta-text { max-width: 520px; }
.cta-v3 .cta-desc { max-width: 460px; margin-top: 10px; }
.cta-contacts { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta-contacts li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 600; color: var(--white); }
.cta-contacts .ico { width: 20px; height: 20px; color: var(--blue-light); }
.cta-v3 .cta-bg img { filter: saturate(.7); object-position: 100% 50%; }
.cta-v3 .cta-bg::after { background: linear-gradient(90deg, rgba(8,30,66,.97) 0%, rgba(8,30,66,.9) 45%, rgba(8,30,66,.45) 100%); }
.footer-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-link .ico { width: 15px; height: 15px; color: var(--navy); }
.footer-tagline { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); line-height: 1.6; text-align: right; padding-left: 22px; border-left: 1px solid var(--line); }
.footer-bottom { align-items: center; }
@media (max-width: 1280px) { .hero-side { display: none; } }
@media (max-width: 1099px) {
  .sector-grid { grid-template-columns: repeat(4, 1fr); }
  .sector-grid li { border-bottom: 1px solid var(--line); }
  .sector-grid li:nth-child(4n) { border-right: 0; }
  .sector-grid li:nth-child(n+5) { border-bottom: 0; }
  .presence-v3 { grid-template-columns: 1fr 1fr; }
  .presence-v3 .presence-map { grid-column: 1 / -1; order: 3; }
  .footer-tagline { border-left: 0; padding-left: 0; text-align: left; }
}
@media (max-width: 1023px) { .ops-grid { grid-template-columns: 1fr; } .ops-panel { min-height: 300px; } }
@media (max-width: 767px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .feature-row li:nth-child(5) { grid-column: 1 / -1; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .sector-grid li:nth-child(2n) { border-right: 0; }
  .sector-grid li:nth-child(n+7) { border-bottom: 0; }
  .presence-v3 { grid-template-columns: 1fr; }
  .map-pin-region .map-pin-label strong { font-size: 10px; }
  .map-pin-region > .ico { width: 18px; height: 18px; }
  .stats-grid li { background: transparent; padding: 4px 0 12px; }
  .cta-contacts li { font-size: 15px; }
  .ops-inner { padding: 36px var(--gutter); }
}

/* Cases: 3 visible cards with slider on every screen size */
@media (min-width: 768px) {
  .cards-3 { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 4px 14px; margin: -6px -4px -14px; scrollbar-width: none; }
  .cards-3::-webkit-scrollbar { display: none; }
  .cards-3 > * { flex: 0 0 calc((100% - 44px - 8px) / 3); scroll-snap-align: start; }
}

/* =========================================================
   CASES SLIDER (3 visible on desktop, arrows + snap)
   ========================================================= */
@media (min-width: 768px) {
  [data-slider="cases"] .slider-track {
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 6px 4px 14px; margin: -6px -4px 0; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  [data-slider="cases"] .slider-track::-webkit-scrollbar { display: none; }
  [data-slider="cases"] .slider-track > * { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; }
  [data-slider="cases"] .slider-dots { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-slider="cases"] .slider-track > * { flex-basis: calc((100% - 22px) / 2); }
}

/* =========================================================
   HERO MOBILE 100dvh: full-bleed photo, content pinned to the bottom
   ========================================================= */
@media (max-width: 767px) {
  .hero { height: calc(100dvh - var(--header-h)); min-height: 0; max-height: none; display: flex; }
  .hero-media img { object-position: 58% 45%; }
  .hero-media::before {
    background: linear-gradient(180deg, rgba(10,35,80,.10) 0%, rgba(10,35,80,.18) 30%, rgba(10,35,80,.62) 48%, rgba(10,35,80,.92) 62%, #0a2350 100%);
  }
  .hero-inner {
    min-height: 0; height: 100%; padding-top: 0; padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    display: flex; flex-direction: column; justify-content: flex-end; gap: 0;
  }
  .hero-content { max-width: none; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
  .hero-eyebrow { gap: 2px; font-size: 10px; margin-bottom: 8px; }
  .hero-content h1 { font-size: clamp(27px, 7.6vw, 34px); line-height: 1.1; margin-bottom: 10px; }
  .hero-content .lead { font-size: 14px; line-height: 1.45; margin-bottom: 14px; color: rgba(255,255,255,.88); }
  .hero-actions { flex-wrap: nowrap; gap: 8px; }
  .hero-actions .btn { flex: 1 1 0; width: auto; padding: 13px 10px; font-size: 13px; gap: 8px; }
  .hero-actions .btn .ico { width: 14px; height: 14px; }
  .feature-row {
    display: flex; flex-wrap: nowrap; gap: 8px; padding: 14px 0 0; margin: 0 calc(var(--gutter) * -1);
    padding-left: var(--gutter); padding-right: var(--gutter); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .feature-row::-webkit-scrollbar { display: none; }
  .feature-row li {
    flex: 0 0 auto; grid-column: auto !important; font-size: 11.5px; line-height: 1.25; gap: 8px; padding: 8px 12px 8px 8px;
    border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
  }
  .feature-row li > span:last-child br { display: none; }
  .feature-row .ring { width: 28px; height: 28px; border-color: rgba(255,255,255,.4); }
  .feature-row .ring .ico { width: 14px; height: 14px; }
  /* hero entrance stays, but never hides content if JS is slow */
  body:not(.is-loaded) .hero-content > *, body:not(.is-loaded) .hero .feature-row > li { transition-delay: 0s; }
}
@media (max-width: 767px) and (max-height: 620px) {
  .hero-content .lead { display: none; }
  .hero-content h1 { font-size: clamp(24px, 7vw, 30px); }
  .feature-row { padding-top: 10px; }
}
