/* =====================================================================
   南京致诚天运信息科技有限公司 · 官网样式
   ZCTY corporate website — shared design system
   ===================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand palette */
  --ink:        #0f1b2d;
  --ink-2:      #3a4a66;
  --muted:      #6b7a93;
  --brand-900:  #0a2540;
  --brand-800:  #0e3260;
  --brand-700:  #12407a;
  --brand-600:  #1a56b4;
  --brand-500:  #2e7cf6;
  --brand-400:  #5b9cff;
  --cyan:       #00b4d8;
  --accent:     #22d3ee;
  --gold:       #f5a623;

  /* Surfaces */
  --bg:         #ffffff;
  --bg-soft:    #f4f7fc;
  --bg-soft-2:  #eaf1fb;
  --line:       #e3e9f2;
  --white:      #ffffff;

  /* Shape */
  --radius-sm:  10px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm:  0 2px 8px rgba(15,27,45,.06);
  --shadow:     0 12px 32px rgba(15,27,45,.09);
  --shadow-lg:  0 26px 64px rgba(15,27,45,.15);

  /* Layout */
  --container:  1200px;
  --header-h:   74px;

  /* Gradient */
  --grad:       linear-gradient(120deg, #1a56b4 0%, #2e7cf6 45%, #00b4d8 100%);
  --grad-deep:  linear-gradient(135deg, #0a2540 0%, #12407a 60%, #1a56b4 100%);

  /* Type */
  --font: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans SC",
          "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-500); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.25; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--deep { background: var(--grad-deep); color: #cfe0f7; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--tight { padding: 56px 0; }
.text-center { text-align: center; }
.text-light  { color: rgba(255,255,255,.86); }
.lead { font-size: 1.1rem; color: var(--ink-2); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}

/* Section heading block */
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  color: var(--brand-600); text-transform: uppercase;
  background: var(--bg-soft-2); border: 1px solid #d8e6fb;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.section--deep .eyebrow { color: #bfe3ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.section-sub { font-size: 1.08rem; color: var(--muted); margin-top: 10px; }
.section--deep .section-sub { color: #bcd0ee; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; cursor: pointer;
  padding: 13px 26px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(46,124,246,.32); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(46,124,246,.4); }
.btn-outline { background: transparent; color: var(--brand-600); border-color: var(--brand-400); }
.btn-outline:hover { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }
.btn-light { background: #fff; color: var(--brand-700); }
.btn-light:hover { color: var(--brand-800); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--brand-700); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- 5. Header / navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__cn { font-size: 1.18rem; font-weight: 800; color: var(--ink); letter-spacing: .02em; }
.logo__en { font-size: .64rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 8px 14px; font-weight: 500; color: var(--ink-2);
  border-radius: var(--radius-sm);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__link:hover { color: var(--brand-600); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brand-700); font-weight: 600; }
.nav__cta { margin-left: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* push content below fixed header */
.page { padding-top: var(--header-h); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(8,28,58,.94) 0%, rgba(14,50,96,.82) 45%, rgba(0,120,170,.55) 100%);
}
.hero__inner { max-width: 760px; padding: 60px 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  font-size: .85rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .grad-text { background: linear-gradient(90deg,#9bd0ff,#22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.18rem; color: rgba(255,255,255,.9); max-width: 600px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 54px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__stat .num { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; }
.hero__stat .num small { font-size: 1.1rem; font-weight: 700; }
.hero__stat .label { color: rgba(255,255,255,.78); font-size: .92rem; margin-top: 6px; }

/* Inner page hero */
.page-hero {
  position: relative; color: #fff; padding: 130px 0 80px; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(8,28,58,.93), rgba(14,50,96,.78) 55%, rgba(0,120,170,.6));
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero__sub { font-size: 1.12rem; color: rgba(255,255,255,.9); max-width: 640px; }
.breadcrumb { margin-top: 22px; font-size: .9rem; color: rgba(255,255,255,.75); }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; opacity: .6; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 7. Grids & cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe0fb; }

/* icon feature card */
.feature-card .icon-badge {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eaf1fb, #dbe9fc); color: var(--brand-600);
  margin-bottom: 20px; transition: all .25s ease;
}
.feature-card:hover .icon-badge { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.05); }
.feature-card .icon-badge svg { width: 30px; height: 30px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

/* media card (image on top) */
.media-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.media-card__img { aspect-ratio: 16/10; overflow: hidden; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover .media-card__img img { transform: scale(1.06); }
.media-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.media-card__tag {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  color: var(--brand-600); background: var(--bg-soft-2); padding: 4px 12px; border-radius: var(--radius-pill);
  align-self: flex-start; margin-bottom: 14px;
}
.media-card h3 { margin-bottom: 8px; }
.media-card p { color: var(--muted); margin-bottom: 18px; flex: 1; }
.media-card__more { font-weight: 600; color: var(--brand-600); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- 8. Two-column / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.checklist { margin: 18px 0 26px; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  background: var(--grad); border-radius: 50%;
  background-image: var(--grad);
}
.checklist li::after {
  content: ""; position: absolute; left: 7px; top: 8px; width: 6px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* ---------- 9. Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 30px 16px; }
.stat-box .num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-box .num .grad-text { background: linear-gradient(90deg,#9bd0ff,#22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-box .label { color: #cfe0f7; margin-top: 10px; font-size: .96rem; }

/* ---------- 10. Timeline ---------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 3px; background: var(--bg-soft-2); border-radius: 3px; }
.tl-item { position: relative; padding-left: 60px; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 9px; top: 4px; width: 21px; height: 21px; border-radius: 50%;
  background: #fff; border: 4px solid var(--brand-500); box-shadow: 0 0 0 5px #dce9fb;
}
.tl-item .tl-year { font-weight: 800; color: var(--brand-600); font-size: 1.15rem; }
.tl-item h4 { margin: 4px 0 6px; }
.tl-item p { margin: 0; color: var(--muted); }

/* ---------- 11. Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 2.4rem; font-weight: 800; color: var(--bg-soft-2); line-height: 1; margin-bottom: 12px; display: block;
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- 12. Accordion (FAQ) ---------- */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: #fff; }
.acc-head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 24px; font: inherit; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc-head .acc-ico { flex: none; width: 26px; height: 26px; position: relative; }
.acc-head .acc-ico::before, .acc-head .acc-ico::after { content: ""; position: absolute; background: var(--brand-500); border-radius: 2px; transition: .3s; }
.acc-head .acc-ico::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.acc-head .acc-ico::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.acc-item.is-open .acc-ico::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px; }
.acc-item.is-open .acc-body { max-height: 400px; padding-bottom: 22px; }
.acc-body p { margin: 0; color: var(--muted); }

/* ---------- 13. CTA band ---------- */
.cta-band {
  position: relative; color: #fff; border-radius: var(--radius-lg); overflow: hidden;
  padding: 64px; text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,37,64,.94), rgba(0,120,170,.8)); }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 14. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-item:first-of-type { border-top: 1px solid var(--line); }
.ci-ico { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--bg-soft-2); color: var(--brand-600); display: grid; place-items: center; }
.ci-ico svg { width: 24px; height: 24px; }
.ci-item h4 { margin: 0 0 4px; font-size: 1.02rem; }
.ci-item p { margin: 0; color: var(--muted); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 8px; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 4px rgba(46,124,246,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- 15. Logo / partner strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.logo-strip .pill {
  font-weight: 700; color: var(--muted); opacity: .8; font-size: 1.05rem;
  padding: 8px 18px; border: 1px dashed var(--line); border-radius: var(--radius-pill);
}

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--brand-900); color: #b9cbe6; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-col a, .footer-col p { color: #b9cbe6; display: block; margin-bottom: 11px; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-col--brand .logo__cn { color: #fff; }
.footer-col--brand .logo__en { color: #8ba6cf; }
.footer-col--brand p { margin-top: 16px; max-width: 320px; }
.footer-contact { margin-top: 8px; }
.footer-contact p { margin-bottom: 8px; }
.footer-qrcode { width: 110px; height: 110px; background: #fff; border-radius: var(--radius-sm); display: grid; place-items: center; color: var(--brand-800); font-weight: 700; font-size: .72rem; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .86rem; }
.footer-bottom a:hover { color: #fff; }
.beian-link { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- 17. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 18. Decorative ---------- */
.bg-glow { position: relative; }
.bg-glow::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(46,124,246,.12), transparent 70%); z-index: -1; pointer-events: none;
}
.badge-soft { display: inline-block; font-size: .8rem; font-weight: 600; color: var(--brand-600); background: var(--bg-soft-2); padding: 6px 14px; border-radius: var(--radius-pill); }

/* ---------- 19. Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 20px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 13px 8px; border-bottom: 1px solid var(--bg-soft); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 12px 0 0; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero__stats { gap: 26px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .grid-2, .grid-3, .grid-4, .steps, .form-row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom__inner { justify-content: center; text-align: center; }
  .cta-band { padding: 40px 24px; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
  .logo__en { display: none; }
}
