/*
Theme Name: 致兴建设
Theme URI: https://example.com/zhxing
Author: 致兴建设
Description: 致兴建设企业官网 WordPress 主题。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: zhxing
*/

/* ============================================================
   致远钢结构 企业官网 — 设计稿转码样式
   配色：深矿青 / 锻造青 / 氧化铜橙 / 石灰白
   ============================================================ */

:root {
  --bg:            #234A77;   /* 深矿青：主背景 */
  --bg-soft:       #2C527A;   /* 锻造青：业务与实力版块 */
  --bg-dark:       #142A45;   /* 炉膛墨青：深色版块 */
  --nav:           #152B46;   /* 炭黑青：导航与 CTA */
  --footer:        #0E1B33;   /* 深铸铁：页脚 */
  --border:        #5C7BA8;   /* 氧化钢：描边与分隔线 */
  --gold:          #E8943A;   /* 氧化铜橙：行动强调 */
  --gold-deep:     #13243F;   /* 铜橙底上的深色文字 */
  --cream:         #F4EFE4;   /* 石灰白：主文字 */
  --muted:         #CBD8E8;   /* 钢雾灰：次级文字 */
  --dim:           #8AA3C0;   /* 深钢灰：辅助文字 */

  --font-cn:    system-ui, -apple-system, 'Segoe UI', 'Microsoft YaHei', sans-serif;
  --font-kicker:system-ui, -apple-system, 'Segoe UI', 'Microsoft YaHei', sans-serif;
  --font-num:   system-ui, -apple-system, 'Segoe UI', 'Microsoft YaHei', sans-serif;
  --font-mono:  ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', monospace;

  --maxw: 1440px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-cn);
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 外层 section 全宽，内容由内部结构控制最大宽度 */
/* 顶部导航铺满整屏：背景满宽到屏幕两侧，内部内容居中于 --maxw 与版块对齐 */
.site-header { width: 100%; }

/* ============================================================
   顶部导航
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.site-logo-image { display: block; width: 196px; height: auto; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-size: 18px; font-weight: 700;
}
.logo-text { font-size: 20px; font-weight: 700; color: var(--cream); }

.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 14px; color: var(--muted); transition: color .2s; }
.nav-link:hover { color: var(--cream); }
.nav-link.active { color: var(--gold); }

.header-cta {
  background: var(--gold);
  color: var(--gold-deep);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ============================================================
   Hero 首屏（整屏轮播：文案 + 图片同步切换）
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-carousel { position: relative; overflow: hidden; }
.hero > .hero-carousel { max-width: var(--maxw); margin-inline: auto; }
.hero-track { display: flex; transition: transform .6s ease; }
.hero-slide { min-width: 100%; }

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
  padding: 96px 80px 80px;
}
.hero-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 26px; }
.kicker-row { display: flex; align-items: center; gap: 14px; }
.gold-line { width: 44px; height: 2px; background: var(--gold); }
.kicker {
  font-family: var(--font-kicker);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
}
.hero-h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 78px;
  color: var(--cream);
}
.hero-sub { font-size: 22px; font-weight: 600; color: var(--gold); }
.hero-desc { font-size: 16px; line-height: 28px; color: var(--muted); }

.cta-row { display: flex; flex-direction: row; gap: 16px; padding-top: 12px; }
.btn-primary {
  background: var(--gold);
  color: var(--gold-deep);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(232,148,58,0.24);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 16px; font-weight: 500;
}

.trust-row { display: flex; flex-direction: row; gap: 40px; padding-top: 20px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-num); font-size: 32px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); }

/* 轮播控制（桌面端定位在右侧图片列） */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(14,27,51,0.62); color: var(--cream);
  font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: background .2s, color .2s; backdrop-filter: blur(4px);
}
.carousel-arrow:hover { background: var(--gold); color: var(--gold-deep); }
.carousel-arrow.prev { right: 594px; left: auto; }
.carousel-arrow.next { right: 94px; }
.carousel-dots {
  position: absolute; bottom: 24px; right: 330px; left: auto;
  transform: translateX(50%);
  display: flex; gap: 8px; z-index: 3;
}
.carousel-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(244,239,228,0.48); transition: all .25s; }
.carousel-dots .dot.active { background: var(--gold); width: 22px; border-radius: 5px; }

.hero-right {
  width: 500px; height: 580px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 0;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   版块通用标题（仅首页 pain/biz/cases/strength/faq 使用）
   ============================================================ */
.pain .section-head,
.biz .section-head,
.cases .section-head,
.strength .section-head,
.faq .section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 52px; }
.pain .kicker-row,
.biz .kicker-row,
.strength .kicker-row,
.process .kicker-row,
.faq .kicker-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 52px;
}
.section-h2 { font-size: 40px; font-weight: 700; color: var(--cream); line-height: 1.25; }
.section-sub { font-size: 16px; color: var(--muted); }
.pain .section-sub,
.cases .section-sub,
.faq .section-sub,
.pain .card-desc,
.cases .card-desc,
.faq .card-desc { color: var(--cream-dim); }
.card-row { display: flex; flex-direction: row; gap: 24px; }

/* 深色版块（黑0.18叠加等效） */
.pain, .cases, .faq, .process, .home-articles { background: var(--bg-dark); }
/* 浅色版块 */
.biz, .strength { background: var(--bg-soft); }

.pain, .biz, .cases, .strength, .faq, .process, .home-articles {
  padding: 96px 80px;
}
.pain > *,
.biz > *,
.cases > *,
.home-articles > *,
.strength > *,
.process > *,
.faq > *,
.faq + .cta > * {
  max-width: calc(var(--maxw) - 160px);
  margin-inline: auto;
}
.strength > * { width: 100%; }

/* ============================================================
   行业痛点 / 核心业务 卡片
   ============================================================ */
.pain-card, .biz-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(244,239,228,0.055);
}
.card-num { font-family: var(--font-mono); font-size: 14px; color: var(--gold); }
.card-title { font-size: 20px; font-weight: 700; color: var(--cream); }
.card-desc { font-size: 14px; line-height: 24px; color: var(--muted); }
.card-sol { font-size: 13px; font-weight: 500; line-height: 22px; color: var(--gold); }
.card-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--gold); }

/* 核心业务 — 筛选 + 网格列表 */
.biz-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.filter-btn {
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); font-size: 14px; transition: all .2s;
}
.filter-btn:hover { color: var(--cream); border-color: var(--gold); }
.filter-btn.active { background: var(--gold); color: var(--gold-deep); border-color: var(--gold); font-weight: 700; }
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-card.hide { display: none; }

/* ============================================================
   工程案例
   ============================================================ */
.cases-head {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.cases-head-left { display: flex; flex-direction: column; gap: 16px; }
.cases-more { font-size: 15px; font-weight: 500; color: var(--gold); }

.case-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(244,239,228,0.055);
}
.case-img { height: 240px; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-body { display: flex; flex-direction: column; gap: 10px; padding: 24px; }
.case-title { font-size: 18px; font-weight: 700; color: var(--cream); }
.case-spec { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

/* ============================================================
   首页 — 技术干货（精选文章列表）
   ============================================================ */
.ha-head {
  display: flex; flex-direction: row; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 52px;
}
.ha-head-left { display: flex; flex-direction: column; gap: 16px; }
.ha-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ha-card {
  display: flex; flex-direction: column;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(244,239,228,0.055);
  transition: transform .2s, border-color .2s;
}
.ha-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.ha-cover { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ha-cover-more {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--cream);
  background: linear-gradient(to top, rgba(14,27,51,0.85), rgba(14,27,51,0));
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.ha-card:hover .ha-cover-more { opacity: 1; transform: translateY(0); }
.ha-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.ha-tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  color: var(--gold);
  padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px;
}
.ha-title { font-size: 18px; font-weight: 700; color: var(--cream); line-height: 1.4; }
.ha-excerpt { font-size: 14px; line-height: 24px; color: var(--muted); }
.ha-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--dim); margin-top: 2px;
}
.ha-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.ha-meta .read { color: var(--gold); }

/* ============================================================
   资质实力
   ============================================================ */
.strength { display: flex; flex-direction: column; gap: 56px; }
.strength > .kicker { margin-bottom: -40px; } /* 与 h2 保持 16 视觉间距 */
.str-stats-row { display: flex; flex-direction: row; gap: 24px; }
.str-stat {
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(244,239,228,0.055);
}
.str-num { font-family: var(--font-num); font-size: 48px; color: var(--gold); line-height: 1; }
.str-label { font-size: 14px; color: var(--muted); }

.str-bottom { display: flex; flex-direction: row; gap: 24px; }
.cert-col {
  flex: 1;
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(244,239,228,0.055);
}
.col-title { font-size: 20px; font-weight: 700; color: var(--cream); }
.cert-item { font-size: 15px; line-height: 26px; color: var(--muted); }
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 6px;
}
.cert-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  background: rgba(244,239,228,0.03);
  color: var(--dim);
  text-align: center;
  transition: border-color .25s, color .25s;
}
.cert-slot:hover { border-color: var(--gold); color: var(--gold); }
.cert-slot-label { font-size: 13px; line-height: 1.6; opacity: .85; }
.cert-slot .cert-image { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.cert-hint { font-size: 12px; color: var(--dim); opacity: .8; margin-top: 2px; }
/* ============================================================
   服务流程（独立模块）
   ============================================================ */
.process { background: linear-gradient(135deg, #23426F 0%, #142A45 100%); display: flex; flex-direction: column; gap: 48px; }
.process .section-head { margin-bottom: 0; }
.process-flow { display: flex; flex-direction: row; align-items: stretch; }
.step-card {
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(244,239,228,0.05);
  transition: transform .2s, border-color .2s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.step-num { font-family: var(--font-num); font-size: 46px; line-height: 1; color: var(--gold); }
.step-card-title { font-size: 20px; font-weight: 700; color: var(--cream); }
.step-card-desc { font-size: 14px; line-height: 24px; color: var(--muted); }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 48px; color: var(--gold); font-size: 28px; font-weight: 700;
}
@media (max-width: 1024px) {
  .process-flow { flex-wrap: wrap; gap: 16px; }
  .step-card { flex: 1 1 calc(50% - 8px); }
  .step-arrow { display: none; }
}
@media (max-width: 768px) {
  .process-flow { flex-direction: column; }
  .step-card { flex: 1 1 100%; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; }
.faq > .kicker { margin-bottom: 8px; }
.faq > .section-h2 { margin-bottom: 40px; }
.faq .faq-list { display: flex; flex-direction: column; }
.faq .faq-item {
  padding: 26px 0;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.faq .faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 17px; font-weight: 600; color: var(--cream);
  text-decoration: none;
  transition: color .2s;
}
.faq .faq-q:hover { color: var(--gold); }
.faq .faq-q-text { flex: 1; }
.faq .faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; margin-left: 16px; transition: transform .25s; }
.faq .faq-q:hover .faq-icon { transform: translateX(5px); }
.faq .faq-a { font-size: 14px; line-height: 24px; color: var(--muted); margin-top: 8px; }
.faq .faq-more { margin-top: 36px; }
.faq .faq-more-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--gold);
  text-decoration: none; transition: gap .2s, color .2s;
}
.faq .faq-more-link:hover { gap: 14px; color: var(--cream); }

/* ============================================================
   底部 CTA
   ============================================================ */
.faq + .cta {
  background: var(--nav);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 110px 80px;
  text-align: center;
}
.faq + .cta .cta-h2 { font-size: 40px; font-weight: 700; color: var(--cream); }
.faq + .cta .cta-sub { font-size: 16px; color: var(--muted); }
.faq + .cta .cta-btn-row { display: flex; flex-direction: row; align-items: center; gap: 28px; padding-top: 14px; }
.faq + .cta .cta-btn {
  background: var(--gold);
  color: var(--gold-deep);
  padding: 18px 42px;
  border-radius: 8px;
  font-size: 17px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(232,148,58,0.24);
}
.faq + .cta .cta-phone { font-size: 16px; font-weight: 500; color: var(--cream); }

/* ============================================================
   页脚
   ============================================================ */
.site-footer { width: 100%; background: var(--footer); padding: 72px 0 36px; display: flex; flex-direction: column; gap: 56px; }
.footer-top { display: flex; flex-direction: row; gap: 80px; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 80px; }
.ft-col { display: flex; flex-direction: column; gap: 14px; }
.ft-col-brand { flex: 1.4; gap: 18px; }
.ft-logo-row { display: flex; align-items: center; gap: 12px; }
.ft-logo-image { display: block; width: 236px; height: auto; }
.ft-logo-mark {
  width: 30px; height: 30px;
  background: var(--gold); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--footer); font-size: 16px; font-weight: 700;
}
.ft-logo-text { font-size: 18px; font-weight: 700; color: var(--cream); }
.ft-desc { font-size: 13px; line-height: 22px; color: var(--muted); }
.ft-col-title { font-size: 14px; font-weight: 600; color: var(--gold); }
.ft-link { font-size: 13px; color: var(--muted); }
a.ft-link:hover { color: var(--cream); }

.footer-bottom {
  display: flex; flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 28px 80px 0;
  border-top: 1px solid var(--border);
}
.ft-copy, .ft-legal { font-size: 12px; color: var(--dim); }

.footer-partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  width: 100%;
  max-width: var(--maxw);
  margin: -40px auto 0;
  padding: 16px 80px 0;
  border-top: 1px solid var(--border);
}
.footer-partners h2 {
  flex: 0 0 auto;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--cream);
}
.footer-partners h2::after { content: '：'; }
.footer-partners .xoxo,
.footer-partners .blogroll {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-partners li { list-style: none; }
.footer-partners a {
  color: #8a94a6;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-partners a:hover { color: #fff; }

/* ============================================================
   响应式 — 移动端单列堆叠
   ============================================================ */
@media (max-width: 1024px) {
  .header-inner { padding: 16px 40px; }
  .hero-inner { flex-direction: column; align-items: stretch; gap: 48px; }
  .hero-right { width: 100%; height: 420px; }
  .carousel-arrow.prev { right: auto; left: 14px; }
  .carousel-arrow.next { right: 14px; }
  .carousel-dots { right: auto; left: 50%; transform: translateX(-50%); }
  .hero-h1 { font-size: 52px; line-height: 64px; }
  .card-row, .str-stats-row, .str-bottom, .process-row { flex-wrap: wrap; }
  .pain-card, .biz-card, .case-card, .str-stat { flex: 1 1 calc(50% - 12px); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-col { flex: 1 1 100%; }
  .footer-top { flex-wrap: wrap; gap: 40px; padding: 0 40px; }
  .footer-bottom { padding-left: 40px; padding-right: 40px; }
  .footer-partners { padding-left: 40px; padding-right: 40px; }
  .ft-col { flex: 1 1 40%; }
}

@media (max-width: 768px) {
  .header-inner { padding: 14px 24px; }
  .site-logo-image { width: 170px; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--nav);
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 10px 0; width: 100%; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero-carousel,
  .hero-track,
  .hero-inner { width: 100%; max-width: 100%; min-width: 0; }
  .hero-slide { flex: 0 0 100%; width: 100%; min-width: 100%; max-width: 100%; }
  .hero-inner { padding: 56px 24px 48px; overflow: hidden; }
  .hero-left { width: 100%; max-width: calc(100vw - 48px); overflow: hidden; }
  .hero-h1 { font-size: 40px; line-height: 1.25; overflow-wrap: anywhere; }
  .hero-sub { font-size: 18px; }
  .hero-desc { overflow-wrap: anywhere; }
  .hero-right { width: 100%; max-width: calc(100vw - 48px); height: 320px; }
  .cta-row { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 100%; text-align: center; }
  .carousel-arrow { top: auto; bottom: 237px; }

  .pain, .biz, .cases, .strength, .faq, .process, .home-articles { padding: 56px 24px; }
  .section-head { margin-bottom: 36px; }
  .section-h2 { font-size: 30px; }
  .cases-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ha-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ha-grid { grid-template-columns: 1fr; }

  .pain-card, .biz-card, .case-card, .str-stat { flex: 1 1 100%; }
  .biz-grid { grid-template-columns: 1fr; }
  .trust-row { flex-wrap: wrap; gap: 24px 32px; }
  .stat { flex: 1 1 40%; }

  .str-num { font-size: 40px; }
  .process-row { flex-wrap: wrap; gap: 20px; }
  .step { flex: 1 1 45%; }

  .faq + .cta { padding: 64px 24px; }
  .faq + .cta .cta-h2 { font-size: 28px; }
  .faq + .cta .cta-btn-row { flex-direction: column; gap: 16px; }

  .site-footer { padding: 48px 0 28px; gap: 40px; }
  .ft-logo-image { width: 210px; }
  .footer-top { gap: 32px; padding: 0 24px 56px; }
  .ft-col { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; padding-left: 24px; padding-right: 24px; }
  .footer-partners { padding-left: 24px; padding-right: 24px; }
  .footer-partners { margin-top: -24px; }
}

