/* =========================================================
   企多多企业服务 · 官网全局样式
   配色：深正红(主) + 金色(点缀) + 米白底 + 深灰文字
   ========================================================= */

:root {
  --brand: #c8102e;          /* 主品牌红 */
  --brand-dark: #a00d25;     /* 深红 */
  --brand-deep: #7c0a1c;     /* 更深红，用于渐变 */
  --gold: #c9a227;           /* 金色点缀 */
  --gold-light: #e6c961;
  --gold-soft: #f5ecd0;
  --ink: #1f232b;            /* 主文字 */
  --ink-soft: #5b616e;       /* 次要文字 */
  --line: #e6e3dc;           /* 分隔线 */
  --bg: #ffffff;             /* 白底 */
  --bg-soft: #faf8f4;        /* 米白底 */
  --bg-warm: #f4efe6;        /* 暖色区块 */
  --white: #ffffff;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;

  --shadow-s: 0 2px 10px rgba(31, 35, 43, 0.06);
  --shadow-m: 0 10px 30px rgba(31, 35, 43, 0.10);
  --shadow-brand: 0 12px 30px rgba(200, 16, 46, 0.24);

  --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", "Source Han Sans SC", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container { width: min(1200px, 92%); margin: 0 auto; }
.container--narrow { width: min(920px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(200, 16, 46, 0.34); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--ghost:hover { background: rgba(200, 16, 46, 0.06); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2c323d; }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-s); background: rgba(255,255,255,.98); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 46px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__menu a { position: relative; font-size: 15.5px; font-weight: 500; color: var(--ink-soft); padding: 6px 0; transition: color .2s; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--brand); border-radius: 2px; transition: width .25s ease;
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--brand); }
.nav__menu a.is-active::after, .nav__menu a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.nav__phone small { font-size: 11px; color: var(--ink-soft); }
.nav__phone b { font-size: 17px; color: var(--brand); }

.nav__toggle { display: none; width: 44px; height: 44px; border: none; background: var(--bg-soft); border-radius: 10px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .25s;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 70px 0 74px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-soft); color: #9a7b18;
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero__tag::before { content: "★"; color: var(--gold); }
.hero h1 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.18; font-weight: 800; letter-spacing: .5px; }
.hero h1 em { font-style: normal; color: var(--brand); position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 100%; height: 12px; background: var(--gold-light); opacity: .45; z-index: -1; }
.hero__lead { margin: 22px 0 30px; font-size: 17.5px; color: var(--ink-soft); max-width: 540px; }
.hero__stats { display: flex; gap: 40px; margin-top: 38px; }
.hero__stats-item { display: flex; flex-direction: column; }
.hero__stats-item b { font-size: 32px; font-weight: 800; color: var(--brand); }
.hero__stats-item b span { font-size: 17px; }
.hero__stats-item small { font-size: 13.5px; color: var(--ink-soft); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__badge { position: absolute; z-index: 2; }
.hero__badge--top { top: -14px; right: -8px; }
.hero__badge--bottom { bottom: 30px; left: -26px; }
.badge-card {
  background: #fff; border-radius: var(--radius-m); box-shadow: var(--shadow-m);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.badge-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.badge-card__icon--red { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.badge-card__icon--gold { background: linear-gradient(135deg, var(--gold), #b28d1f); }
.badge-card__icon--ink { background: linear-gradient(135deg, #2c323d, #15171c); }
.badge-card b { display: block; font-size: 15px; }
.badge-card small { font-size: 12px; color: var(--ink-soft); }

/* ---------- Section base ---------- */
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 700; font-size: 13.5px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.section__eyebrow::before, .section__eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--brand); opacity: .5; }
.section__title { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; line-height: 1.25; }
.section__desc { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 34px 28px 30px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--brand), var(--gold)); opacity: 0; transition: opacity .25s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card__num { font-size: 13px; color: #c1c6cf; font-weight: 700; letter-spacing: 2px; }
.svc-card__icon { width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 16px 0 20px; color: #fff; font-size: 26px; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.svc-card:nth-child(2) .svc-card__icon { background: linear-gradient(135deg, var(--gold), #b28d1f); }
.svc-card:nth-child(3) .svc-card__icon { background: linear-gradient(135deg, #2c323d, #15171c); }
.svc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.svc-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.svc-card ul { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card ul li { font-size: 12.5px; background: var(--bg-warm); color: var(--ink-soft); padding: 5px 11px; border-radius: 999px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.why-visual { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; align-items: flex-start; gap: 18px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); transition: box-shadow .25s, transform .25s; }
.why-item:hover { box-shadow: var(--shadow-s); transform: translateX(4px); }
.why-item__n { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-warm); color: var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.why-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.why-item p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 34px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); }
.step__n { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); box-shadow: var(--shadow-brand); }
.step:nth-child(even) .step__n { background: linear-gradient(135deg, var(--gold), #b28d1f); box-shadow: 0 12px 26px rgba(201,162,39,.3); }
.step h3 { font-size: 17px; font-weight: 700; }
.step p { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; }

/* ---------- Qualifications ---------- */
.qual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.qual-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 26px 22px; text-align: center; transition: transform .25s, box-shadow .25s; }
.qual-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.qual-card__icon { font-size: 34px; margin-bottom: 14px; }
.qual-card h3 { font-size: 16px; font-weight: 700; }
.qual-card p { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; background: linear-gradient(135deg, #7c0a1c, #c8102e); border-radius: var(--radius-l); padding: 46px; color: #fff; overflow: hidden; position: relative; }
.founder-grid::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border: 2px solid rgba(255,255,255,.12); border-radius: 50%; }
.founder-visual { text-align: center; }
.founder-visual .avatar { width: 170px; height: 170px; margin: 0 auto 18px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; color: #7c0a1c; font-size: 60px; font-weight: 800; border: 5px solid rgba(255,255,255,.5); }
.founder-visual b { font-size: 24px; }
.founder-visual small { display: block; margin-top: 6px; color: rgba(255,255,255,.8); font-size: 14px; }
.founder-body h2 { font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.founder-body .role { color: var(--gold-light); font-weight: 600; margin-bottom: 20px; }
.founder-body p { color: rgba(255,255,255,.92); font-size: 15.5px; margin-bottom: 16px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.founder-tags span { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); padding: 6px 14px; border-radius: 999px; font-size: 13px; }

/* ---------- Cases ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.case-card__top { height: 150px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; font-weight: 800; }
.case-card:nth-child(1) .case-card__top { background: linear-gradient(135deg, #c8102e, #7c0a1c); }
.case-card:nth-child(2) .case-card__top { background: linear-gradient(135deg, #2c323d, #15171c); }
.case-card:nth-child(3) .case-card__top { background: linear-gradient(135deg, #c9a227, #b28d1f); }
.case-card__body { padding: 24px 24px 28px; }
.case-card__body h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.case-card__body .industry { font-size: 13px; color: var(--brand); font-weight: 600; }
.case-card__body p { font-size: 14px; color: var(--ink-soft); margin: 12px 0 16px; }
.case-card__body .metric { font-size: 15px; font-weight: 700; color: var(--ink); background: var(--bg-warm); padding: 10px 14px; border-radius: 10px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 30px; position: relative; }
.testi-card::before { content: "“"; font-size: 70px; color: var(--gold-light); position: absolute; top: 4px; right: 22px; line-height: 1; }
.testi-card p { font-style: italic; color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.testi-card__who { display: flex; align-items: center; gap: 12px; }
.testi-card__who .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; color: var(--brand); font-weight: 800; }
.testi-card__who b { font-size: 15px; }
.testi-card__who small { display: block; font-size: 12.5px; color: var(--ink-soft); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.news-card__img { height: 160px; background: linear-gradient(135deg, var(--bg-warm), var(--gold-soft)); position: relative; }
.news-card__img span { position: absolute; left: 20px; bottom: 16px; font-size: 34px; font-weight: 800; color: var(--brand); opacity: .9; }
.news-card__body { padding: 24px; }
.news-card__date { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.news-card__body h3 { font-size: 17px; font-weight: 700; margin: 12px 0 10px; line-height: 1.4; }
.news-card__body p { font-size: 14px; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta { position: relative; background: linear-gradient(120deg, #7c0a1c, #c8102e 55%, #e03a22); border-radius: var(--radius-l); padding: 56px 48px; color: #fff; overflow: hidden; }
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); }
.cta::before { width: 320px; height: 320px; right: -90px; top: -120px; }
.cta::after { width: 200px; height: 200px; left: -50px; bottom: -70px; }
.cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.cta p { margin-top: 10px; color: rgba(255,255,255,.9); max-width: 460px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #15171c; color: #b7bcc5; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 48px; }
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: #8b919c; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; color: #9aa0ab; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 14px; color: #9aa0ab; }
.footer-contact li strong { color: #fff; min-width: 44px; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: .2s; }
.footer-social a:hover { background: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #6f7683; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #8b919c; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Floating customer service + back to top ---------- */
.float-panel { position: fixed; right: 22px; bottom: 90px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); transition: transform .2s; position: relative; }
.float-btn:hover { transform: scale(1.06); }
.float-btn--top { background: var(--ink); box-shadow: var(--shadow-m); opacity: 0; pointer-events: none; transform: translateY(12px); }
.float-btn--top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-btn__tip { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); background: #1f232b; color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.float-btn:hover .float-btn__tip { opacity: 1; }

/* ---------- 在线客服（企业微信客服） ---------- */
.float-btn--kf { background: linear-gradient(135deg, #1aad19, #0e8a10); box-shadow: 0 12px 30px rgba(26, 173, 25, .28); }
.kf-mask { position: fixed; inset: 0; background: rgba(15, 18, 24, .55); z-index: 1200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .22s; }
.kf-mask.show { opacity: 1; pointer-events: auto; }
.kf-card { position: relative; width: 300px; max-width: calc(100vw - 40px); background: #fff; border-radius: var(--radius-m); padding: 30px 24px 24px; text-align: center; box-shadow: 0 22px 60px rgba(0, 0, 0, .28); transform: translateY(12px) scale(.96); transition: transform .22s; }
.kf-mask.show .kf-card { transform: translateY(0) scale(1); }
.kf-card__close { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border: none; border-radius: 50%; background: #f2f3f5; color: var(--ink-soft); font-size: 17px; line-height: 1; cursor: pointer; }
.kf-card__close:hover { background: #e6e8eb; }
.kf-card h4 { font-size: 18px; font-weight: 700; color: var(--ink); }
.kf-card__sub { margin-top: 6px; font-size: 13px; color: var(--ink-soft); }
.kf-card__qr { width: 186px; height: 186px; margin: 18px auto 10px; display: block; object-fit: contain; }
.kf-card__hint { font-size: 12px; color: var(--ink-soft); line-height: 1.7; }
.kf-card__link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--brand); font-weight: 600; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: linear-gradient(120deg, #7c0a1c, #c8102e); color: #fff; padding: 62px 0 58px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -40px; top: -60px; width: 280px; height: 280px; border: 2px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-hero__inner { position: relative; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.page-hero p { margin-top: 14px; color: rgba(255,255,255,.9); font-size: 17px; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 20px; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 38px; box-shadow: var(--shadow-s); }
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-card > p { color: var(--ink-soft); font-size: 14px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(200,16,46,.1); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 22px; transition: box-shadow .25s; }
.contact-info-card:hover { box-shadow: var(--shadow-s); }
.contact-info-card .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--bg-warm); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-info-card h3 { font-size: 15px; font-weight: 700; }
.contact-info-card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.map-wrap { margin-top: 8px; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-s); border: 1px solid var(--line); }

/* ---------- Media queries ---------- */
@media (max-width: 992px) {
  .svc-grid, .qual-grid, .case-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .nav__menu {
    position: fixed; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column;
    padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m); transform: translateY(-120%); transition: transform .3s ease; align-items: flex-start;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { width: 100%; padding: 14px 4px; font-size: 16px; }
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .nav__cta .btn { display: none; }
  .svc-grid, .qual-grid, .case-grid, .news-grid, .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stats-item b { font-size: 26px; }
  .cta { padding: 40px 26px; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero__badge--bottom { left: 0; }
}

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
