/* ============================================================
   LingJian Business Services — Design System
   Palette: Deep navy hero · Clean white body · Refined blue accents
   Fonts: Sora (headings) + DM Sans (body)
   ============================================================ */

:root {
  --c1: #2553E8;           /* primary blue */
  --c1h: #3366FF;          /* primary hover */
  --c1d: #1A3FB5;          /* primary dark */
  --c1bg: #EFF4FF;         /* primary tint bg */
  --ok: #10B981;           /* success / accent teal */
  --ok-bg: #ECFDF5;
  --hero-1: #F0F4FF;
  --hero-2: #E6EDFD;
  --hero-3: #DCE5FB;
  --slate: #0F172A;
  --tx: #1E293B;
  --tx2: #64748B;
  --tx3: #94A3B8;
  --bg: #FFFFFF;
  --bg2: #F8FAFC;
  --bg3: #F1F5F9;
  --bd: #E2E8F0;
  --bd2: #F1F5F9;
  --r: 14px;
  --rl: 22px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--tx);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.ctn { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ========================= NAVBAR ========================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: .35s ease;
}
.nav.s {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 6px 0;
  box-shadow: 0 1px 0 var(--bd);
}
.nav-w {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}

/* Logo */
.n-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.n-logo img {
  width: 46px; height: 46px; border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(210,170,60,.3));
}
.n-logo-en {
  display: block; font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 15px; color: var(--slate);
  letter-spacing: 1.5px; transition: color .3s;
}
.n-logo-cn {
  display: block; font-family: 'Noto Sans SC', sans-serif;
  font-size: 11.5px; font-weight: 500; color: var(--tx2);
  letter-spacing: 1px; margin-top: 1px;
}



/* Links */
.n-links { display: flex; gap: 1px; }
.n-lk {
  font-size: 13.5px; font-weight: 500; color: var(--tx2);
  text-decoration: none; padding: 7px 11px; border-radius: 8px;
  transition: .2s; white-space: nowrap;
}
.n-lk:hover { color: var(--c1); background: var(--c1bg); }
.nav.s .n-lk { color: var(--tx2); }
.nav.s .n-lk:hover { color: var(--c1); background: var(--c1bg); }

/* Right section */
.n-r { display: flex; align-items: center; gap: 6px; }
.lang-sw {
  display: flex; border: 1px solid var(--bd);
  border-radius: 8px; overflow: hidden; margin-right: 4px;
}
.nav.s .lang-sw { border-color: var(--bd); }
.lang-sw button {
  background: none; border: none; color: var(--tx3);
  font-size: 12px; font-weight: 600; padding: 6px 10px;
  cursor: pointer; transition: .2s; font-family: inherit;
  position: relative;
}
.lang-sw button:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 18%; height: 64%;
  width: 1px; background: var(--bd);
}
.nav.s .lang-sw button:not(:last-child)::after { background: var(--bd); }
.lang-sw button:hover { color: var(--tx); }
.lang-sw button.a { color: #fff; background: var(--c1); }
.nav.s .lang-sw button { color: var(--tx3); }
.nav.s .lang-sw button.a { color: #fff; background: var(--c1); }

.n-cta {
  background: var(--c1); color: #fff; font-weight: 700;
  padding: 8px 20px; border-radius: 10px; text-decoration: none;
  font-size: 13.5px; transition: .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.n-cta:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); transform: translateY(-1px); }


.ham { display: none; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.ham span { display: block; width: 21px; height: 2px; background: var(--slate); margin: 5px 0; transition: .3s; border-radius: 2px; }


/* ========================= HERO ========================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(168deg, #FFFFFF 0%, var(--hero-1) 30%, var(--hero-2) 65%, var(--hero-1) 100%);
  position: relative; overflow: hidden;
  padding: 150px 0 120px;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,83,232,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg)); opacity: .6;
}
.hero-w {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}

.h-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--c1bg); border: 1px solid rgba(37,83,232,.15);
  color: var(--c1); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 24px; margin-bottom: 24px;
}
.h-badge svg { color: var(--ok); }
.h-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.8vw, 56px); font-weight: 800;
  color: var(--slate); line-height: 1.1; margin-bottom: 22px; letter-spacing: -.5px;
}
.h-title em { font-style: normal; color: var(--c1); }
.h-sub {
  font-size: 17px; color: var(--tx2); line-height: 1.8;
  margin-bottom: 36px; max-width: 480px; font-weight: 400;
}
.h-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }

.btn-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c1); color: #fff; font-weight: 700;
  padding: 15px 30px; border-radius: 12px; text-decoration: none;
  font-size: 15px; border: none; cursor: pointer;
  transition: .3s; box-shadow: 0 4px 20px rgba(37,83,232,.25);
}
.btn-w:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,83,232,.3); }
.btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--c1); border: 1.5px solid var(--c1);
  padding: 15px 30px; border-radius: 12px; text-decoration: none;
  font-size: 15px; font-weight: 600; transition: .3s;
}
.btn-o:hover { border-color: var(--c1d); background: var(--c1bg); color: var(--c1d); }

.h-pay {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 48px; font-size: 13.5px; font-weight: 500;
  color: var(--tx3);
}
.h-pay a { color: var(--ok); text-decoration: none; border-bottom: 1px dashed rgba(16,185,129,.4); padding-bottom: 1px; transition: .2s; }
.h-pay a:hover { color: #fff; border-color: #fff; }

.h-stats { display: flex; align-items: center; }
.h-st { text-align: center; padding: 0 26px; }
.h-st:first-child { padding-left: 0; }
.h-st-n { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--slate); letter-spacing: -1px; }
.h-st-n sup { font-size: 22px; font-weight: 600; }
.h-st-l { display: block; font-size: 13px; font-weight: 500; color: var(--tx2); margin-top: 4px; }
.h-dv { width: 1px; height: 44px; background: var(--bd); }

/* Hero cards */
.h-vis { position: relative; }
.h-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg); backdrop-filter: blur(12px);
  border: 1.5px solid var(--bd); box-shadow: 0 2px 8px rgba(0,0,0,.04);
  padding: 14px 18px; border-radius: 14px; margin-bottom: 10px;
  animation: cSlide .55s ease-out both; transition: .25s;
}
.h-card:hover { background: var(--bg); border-color: var(--c1); box-shadow: 0 4px 16px rgba(37,83,232,.08); transform: translateX(6px); }
.h-card-i {
  font-size: 20px; width: 38px; height: 38px; border-radius: 10px;
  background: var(--c1bg); display: flex; align-items: center; justify-content: center;
}
.h-card-t { flex: 1; }
.h-card-t b { display: block; color: var(--slate); font-size: 14px; font-weight: 600; }
.h-card-t span { font-size: 12.5px; color: var(--tx2); }
.h-card-ck {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(16,185,129,.12); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
@keyframes cSlide { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ========================= TRUST BAR ========================= */
.trust { background: var(--bg2); border-bottom: 1px solid var(--bd2); padding: 22px 0; }
.trust-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.trust-i { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--tx); }
.trust-i svg { color: var(--c1); flex-shrink: 0; }
.trust-i small { display: block; font-size: 12px; font-weight: 500; color: var(--tx2); }

/* ========================= SHARED SECTION ========================= */
.s-hdr { text-align: center; margin-bottom: 56px; }
.s-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--c1); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.s-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; color: var(--slate);
  line-height: 1.18; margin-bottom: 16px; letter-spacing: -.3px;
}
.s-desc { font-size: 16.5px; color: var(--tx2); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ========================= SERVICES ========================= */
.svc { padding: 110px 0; background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-c { display: flex; flex-direction: column; }
.svc-c > p { flex: 1; }
.svc-pay { margin-top: auto; }
.svc-c {
  background: var(--bg); border: 1.5px solid var(--bd); border-radius: var(--rl);
  padding: 34px 22px 28px; transition: .4s; position: relative; overflow: hidden;
}
.svc-c:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.07); border-color: var(--c1); }
.svc-c.feat { border-color: var(--c1); background: linear-gradient(180deg, var(--c1bg), var(--bg)); }
.svc-bdg { position: absolute; top: 14px; right: 14px; background: var(--c1); color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 10px; letter-spacing: .3px; }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--c1bg); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; }
.svc-c h3 { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--slate); }
.svc-c > p { font-size: 14.5px; color: var(--tx2); margin-bottom: 18px; line-height: 1.7; }
.svc-ft { list-style: none; margin-bottom: 20px; }
.svc-ft li { font-size: 14px; font-weight: 500; color: var(--tx); padding: 4px 0 4px 20px; position: relative; }
.svc-ft li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 700; font-size: 13px; }
.svc-lk { display: block; font-size: 14px; font-weight: 600; color: var(--c1); text-decoration: none; margin-bottom: 12px; transition: .2s; }
.svc-lk:hover { color: var(--c1d); }
.svc-pay {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 0; border-radius: 10px; width: 100%;
  background: var(--c1); color: #fff; font-size: 13.5px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none; font-family: inherit;
  transition: .3s;
}
.svc-pay:hover { background: var(--c1d); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,83,232,.2); }

/* ========================= WHY LINGJIAN ========================= */
.why { padding: 110px 0; background: var(--bg2); }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.adv-c {
  padding: 34px 24px; border-radius: var(--rl);
  background: var(--bg); border: 1.5px solid var(--bd);
  transition: .4s; position: relative; overflow: hidden;
}
.adv-c:hover { border-color: var(--c1); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.05); }
.adv-num { font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; color: var(--bd); position: absolute; top: 10px; right: 16px; line-height: 1; }
.adv-i { font-size: 28px; margin-bottom: 14px; }
.adv-c h4 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.adv-c p { font-size: 14.5px; color: var(--tx2); line-height: 1.75; }

/* ========================= REVIEWS ========================= */
.rev { padding: 110px 0; background: var(--bg); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.rev-c { background: var(--bg2); border: 1.5px solid var(--bd); border-radius: var(--rl); padding: 30px; transition: .4s; }
.rev-c:hover { border-color: var(--c1); box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.rev-stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.rev-c > p { font-size: 15px; color: var(--tx); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.rev-a { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; background: var(--c1); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.rev-a strong { font-size: 14px; color: var(--slate); display: block; }
.rev-a span { font-size: 12.5px; color: var(--tx2); }
.g-rate { text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--tx); }

/* ========================= PARTNERS ========================= */
.partners { padding: 80px 0; background: var(--bg2); border-top: 1px solid var(--bd2); }
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.p-logo {
  background: var(--bg); border: 1.5px solid var(--bd); border-radius: var(--r);
  padding: 22px 16px; display: flex; align-items: center; justify-content: center;
  gap: 10px; transition: .3s; min-height: 80px;
}
.p-logo:hover { border-color: var(--c1); box-shadow: 0 4px 12px rgba(0,0,0,.03); }
.p-logo .p-mark { flex-shrink: 0; }
.p-logo .p-name { font-size: 15px; font-weight: 700; color: var(--tx2); white-space: nowrap; }

/* ========================= ABOUT ========================= */
.about { padding: 110px 0; background: var(--bg); }
.about-g { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.about-c .s-title { text-align: left; }
.about-c p { font-size: 15.5px; color: var(--tx2); margin-bottom: 16px; line-height: 1.85; }
.about-lic {
  display: flex; align-items: center; gap: 14px;
  background: var(--c1bg); border: 1.5px solid var(--c1); border-radius: var(--r);
  padding: 20px; margin-top: 24px;
}
.about-lic strong { display: block; font-size: 14.5px; color: var(--slate); }
.about-lic span { font-size: 13.5px; font-weight: 500; color: var(--tx2); }
.about-vis { display: flex; justify-content: center; }
.about-logo-d {
  text-align: center; width: 100%;
  background: linear-gradient(168deg, #0B1120, #111B33, #162040);
  border-radius: var(--rl); padding: 56px 44px;
}
.about-logo-d img { width: 140px; height: 140px; margin-bottom: 24px; filter: drop-shadow(0 0 16px rgba(210,170,60,.25)); }
.about-logo-d .stars { color: rgba(255,255,255,.3); font-size: 18px; letter-spacing: 6px; display: block; margin-bottom: 8px; }
.about-logo-d .stars-t { color: rgba(255,255,255,.25); font-size: 12.5px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; }

/* ========================= CTA BANNER ========================= */
.cta-bk {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1120, #162040);
  position: relative; overflow: hidden;
}
.cta-bk::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,83,232,.12), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Sora', sans-serif; font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.45); margin-bottom: 30px; line-height: 1.8; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ok); color: #fff; font-weight: 700;
  padding: 15px 30px; border-radius: 12px; text-decoration: none;
  font-size: 15px; border: none; cursor: pointer;
  transition: .3s; box-shadow: 0 4px 16px rgba(16,185,129,.25);
}
.btn-green:hover { filter: brightness(1.1); transform: translateY(-2px); }
.cta-note { font-size: 13.5px; color: rgba(255,255,255,.3); font-weight: 500; }
.cta-note a { color: var(--ok); text-decoration: none; }

/* ========================= CONTACT ========================= */
.contact { padding: 100px 0; background: var(--bg2); }
.ct-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ct-card { background: var(--bg); border: 1.5px solid var(--bd); border-radius: var(--r); padding: 28px 22px; transition: .3s; }
.ct-card:hover { border-color: var(--c1); box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.ct-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--slate); }
.ct-card p { font-size: 14.5px; color: var(--tx2); line-height: 1.7; }
.ct-big { display: block; font-size: 20px; font-weight: 700; color: var(--slate); margin: 6px 0 4px; text-decoration: none; transition: .2s; word-break: break-all; }
.ct-big:hover { color: var(--c1); }
.ct-chs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.ch-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 10px; font-size: 13.5px; font-weight: 600; text-decoration: none; color: #fff; transition: .3s; }
.ch-wa { background: #25D366; }
.ch-wa:hover { background: #1DA851; }

/* ========================= FOOTER ========================= */
.ft { background: #0B1120; color: rgba(255,255,255,.45); padding: 52px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ft-logo img { width: 38px; height: 38px; filter: drop-shadow(0 0 6px rgba(210,170,60,.2)); }
.ft-logo strong { display: block; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 1.5px; }
.ft-logo span { font-size: 11.5px; color: rgba(255,255,255,.35); }
.ft-brand p { font-size: 13.5px; margin-bottom: 10px; line-height: 1.7; }
.ft-lic { font-size: 12.5px; color: var(--ok); font-weight: 600; }
.ft-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.ft-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.35); text-decoration: none; padding: 4px 0; transition: .2s; }
.ft-col a:hover { color: var(--ok); }
.ft-bot { padding: 22px 0; text-align: center; }
.ft-bot p { font-size: 12px; color: rgba(255,255,255,.18); }

/* ========================= FLOATS ========================= */
.wa-fl {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: .3s; text-decoration: none; animation: fp 3s ease-in-out infinite;
}
.wa-fl:hover { transform: scale(1.08); }
@keyframes fp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.btt {
  position: fixed; bottom: 24px; right: 92px; z-index: 999;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.05); cursor: pointer;
  transition: .3s; opacity: 0; pointer-events: none;
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { border-color: var(--c1); transform: translateY(-2px); }
.btt svg { color: var(--c1); }

/* ========================= ANIMATIONS ========================= */
.fu { opacity: 0; transform: translateY(20px); transition: .55s cubic-bezier(.16,1,.3,1); }
.fu.v { opacity: 1; transform: translateY(0); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .hero-w { grid-template-columns: 1fr; text-align: center; }
  .h-sub { margin: 0 auto 36px; }
  .h-ctas, .h-pay { justify-content: center; }
  .h-stats { justify-content: center; }
  .h-vis { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .about-g { grid-template-columns: 1fr; }
  .about-c .s-title { text-align: center; }
  .ct-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .n-links {
    display: none; position: fixed; inset: 0;
    background: var(--bg); flex-direction: column;
    align-items: center; justify-content: center; gap: 4px; z-index: 999;
  }
  .n-links.on { display: flex; }
  .n-links .n-lk { color: var(--slate); font-size: 18px; padding: 10px 18px; }
  .ham { display: block; }
  .ham.on span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .ham.on span:nth-child(2) { opacity: 0; }
  .ham.on span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .svc-grid, .adv-grid, .rev-grid, .p-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; }
  .h-stats { flex-wrap: wrap; gap: 16px; }
  .h-dv { display: none; }
  .btt { right: 24px; bottom: 92px; }
}
