/* === 长虹钣金 A Force — Homepage Styles === */
:root {
  --ink:       #1C1C1E;
  --ink-soft:  #2A2A2D;
  --blue:      #2563EB;
  --blue-hover:#1D4ED8;
  --paper:     #FFFFFF;
  --mist:      #F5F5F7;
  --line:      rgba(0,0,0,0.08);
  --muted:     #6B7280;
  --star:      #F59E0B;
  --footer-bg: #0F0F11;
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,.06), 0 24px 48px rgba(0,0,0,.10);
  --radius-card:  18px;
  --radius-tcard: 16px;
  --radius-media: 20px;
  --radius-pill:  999px;
}

/* Reset for our page */
.af-page * { box-sizing: border-box; }
.af-page { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
.af-page a { color: inherit; text-decoration: none; }
/* Prevent Astra wrappers from adding side offsets */
body.home { overflow-x: hidden; }
body.home #page, body.home #content,
body.home .ast-container-layout,
body.home .entry-content,
body.home .ast-separate-container {
  max-width: 100% !important; width: 100% !important;
  padding: 0 !important; margin: 0 !important;
}
.af-page img { display: block; max-width: 100%; }
.af-page button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Override Astra body defaults on front page */
body.home .site-header,
body.home .ast-primary-header-bar { display: none !important; }
body.home .site-content { padding-top: 0 !important; }
body.home .hentry { margin: 0 !important; }
body.home .ast-container { max-width: none !important; padding: 0 !important; }
body.home main { padding-top: 0 !important; }
body.home .entry-content { margin: 0 !important; padding: 0 !important; }
body.home footer.site-footer { display: none !important; }

/* === Shared typography === */
.af-page {
  font-family: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  font-feature-settings: "kern","liga","ss01";
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: all .2s ease;
  white-space: nowrap; min-width: 140px;
  cursor: pointer; border: none;
  font-family: inherit;
}
.btn--sm { height: 36px; padding: 0 20px; font-size: 13px; min-width: 0; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; transform: translateY(-1px); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.85); color: var(--ink);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; }
.btn--outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }

/* === Fixed Header === */
.af-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.af-header.is-solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.af-header__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: 0.02em;
  text-decoration: none; color: inherit; white-space: nowrap;
}
.af-header__logo-mark {
  width: 28px; height: 28px;
  background: var(--blue); border-radius: 7px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.af-header__logo-mark svg { display: block; }
.af-header__nav {
  display: flex; gap: 36px;
  font-size: 14px; font-weight: 500;
  list-style: none; margin: 0; padding: 0;
}
.af-header__nav a { opacity: .9; transition: opacity .15s ease; }
.af-header__nav a:hover { opacity: 1; }
.af-header__cta { display: flex; align-items: center; gap: 12px; }
.af-header__lang {
  font-size: 13px; font-weight: 500; opacity: .75;
  padding: 6px 10px; border-radius: 6px; cursor: pointer;
  transition: background .15s ease; background: none; border: none;
  color: inherit; font-family: inherit;
}
.af-header__lang:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.af-header.is-solid .af-header__lang:hover { background: rgba(0,0,0,0.06); }

/* === Hero === */
.af-hero {
  position: relative; height: 100vh; min-height: 720px;
  width: 100%; overflow: hidden; color: #fff;
}
.af-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.af-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.0) 55%, rgba(0,0,0,0.55) 100%);
}
.af-hero__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 18vh; text-align: center;
}
.af-hero__eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  opacity: .85; margin-bottom: 18px;
}
.af-hero__title {
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.02;
  margin: 0; text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.af-hero__sub {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55; opacity: .92;
  max-width: 640px;
}
.af-hero__ctas {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 14px; z-index: 3; flex-wrap: wrap; justify-content: center;
}
.af-hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: .6; display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.af-hero__chevron {
  width: 14px; height: 14px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: af-bob 2s ease-in-out infinite;
}
@keyframes af-bob {
  0%,100% { transform: rotate(45deg) translate(0,0); opacity: .5; }
  50%      { transform: rotate(45deg) translate(3px,3px); opacity: 1; }
}

/* === Section base === */
.af-section { padding: 120px 40px; }
.af-section--mist { background: var(--mist); }
.af-section--dark { background: var(--ink); color: #fff; }

.af-container { max-width: 1280px; margin: 0 auto; }
.af-container--narrow { max-width: 980px; }

.af-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.af-section--dark .af-eyebrow { color: #6B9BFF; }

.af-section-title {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.08;
  margin: 0 0 20px;
}
.af-section-lead {
  font-size: 18px; line-height: 1.6;
  color: var(--muted); max-width: 640px; margin: 0;
}
.af-section--dark .af-section-lead { color: rgba(255,255,255,0.7); }

/* === Services === */
.af-services__head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 56px;
}
.af-services__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.af-card {
  background: #fff; border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.af-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.af-card__media {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.af-card__num {
  position: absolute; top: 18px; left: 22px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
}
.af-card__body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; flex: 1;
}
.af-card__title { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 6px; }
.af-card__sub { font-size: 13px; font-weight: 500; color: var(--blue); margin: 0 0 14px; letter-spacing: 0.02em; }
.af-card__desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; flex: 1; }
.af-card__link {
  font-size: 14px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease;
}
.af-card__link:hover { gap: 10px; }

/* === About === */
.af-about {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 80px; align-items: center;
}
.af-about__media {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--radius-media); overflow: hidden;
}
.af-stats {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 32px 40px; margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.af-stat__num {
  font-size: 44px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
}
.af-stat__unit { font-size: 22px; font-weight: 600; opacity: .6; margin-left: 2px; }
.af-stat__label { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* === Testimonials === */
.af-t-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.af-t-card {
  background: #fff; border-radius: var(--radius-tcard);
  padding: 36px 32px; border: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: 280px;
}
.af-t-stars { color: var(--star); font-size: 13px; letter-spacing: 1px; margin-bottom: 18px; }
.af-t-quote {
  font-size: 17px; line-height: 1.6; color: var(--ink);
  margin: 0 0 28px; flex: 1; letter-spacing: -0.005em;
}
.af-t-quote::before {
  content: "\201C"; color: var(--blue); font-size: 28px;
  line-height: 0; vertical-align: -10px; margin-right: 4px;
}
.af-t-author { display: flex; align-items: center; gap: 12px; }
.af-t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mist); color: var(--ink);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.af-t-name { font-size: 14px; font-weight: 600; }
.af-t-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* === CTA Banner === */
.af-cta-banner {
  position: relative; height: 520px; overflow: hidden;
  color: #fff; display: flex; align-items: center;
  justify-content: center; text-align: center;
}
.af-cta-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.af-cta-banner__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
}
.af-cta-banner__content { position: relative; z-index: 2; padding: 0 24px; }
.af-cta-banner__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.02em; margin: 0 0 18px;
}
.af-cta-banner__sub {
  font-size: 17px; opacity: .85; max-width: 560px;
  margin: 0 auto 36px; line-height: 1.55;
}
.af-cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === Footer === */
.af-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 80px 40px 40px;
  font-size: 14px;
}
.af-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px; max-width: 1280px; margin: 0 auto;
}
.af-footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; color: #fff;
  margin-bottom: 18px; text-decoration: none;
}
.af-footer__tagline {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.55); max-width: 280px;
}
.af-footer h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.af-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.af-footer ul a:hover { color: #fff; }
.af-footer__hours li {
  display: flex; justify-content: space-between; gap: 16px;
}
.af-footer__day { color: rgba(255,255,255,0.55); }
.af-footer__bottom {
  max-width: 1280px; margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* === Language hidden state === */
[data-lang="en"] .af-cn { display: none !important; }
[data-lang="zh"] .af-en { display: none !important; }

/* === Responsive (960px) === */
@media (max-width: 960px) {
  .af-header { padding: 0 20px; }
  .af-header__nav { display: none; }
  .af-section { padding: 80px 24px; }
  .af-services__grid { grid-template-columns: 1fr; }
  .af-services__head { flex-direction: column; align-items: flex-start; }
  .af-about { grid-template-columns: 1fr; gap: 40px; }
  .af-t-grid { grid-template-columns: 1fr; }
  .af-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .af-hero__title { font-size: 44px !important; }
  .af-footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .af-footer__grid { grid-template-columns: 1fr; }
  .af-hero__ctas { flex-direction: column; align-items: center; }
}

/* === Hero dark fallback (image loading) === */
.af-hero { background-color: #1a1a1e; }
.af-hero__content,
.af-hero__content * { color: #fff !important; }
.af-hero__title { color: #fff !important; text-shadow: 0 2px 24px rgba(0,0,0,0.5) !important; }
.af-hero__eyebrow { color: rgba(255,255,255,0.85) !important; }
.af-hero__sub { color: rgba(255,255,255,0.92) !important; }

/* Hide TranslatePress floating switcher everywhere on front page */
.trp-floating-switcher,
.trp-switcher-position-top,
.trp-language-switcher.trp-floating-switcher,
.trp-ls-dropdown.trp-floating-switcher { display: none !important; }

/* === Diminished Value section responsive === */
@media (max-width: 960px) {
  #diminished-value .af-container > div { grid-template-columns: 1fr !important; gap: 48px !important; }
  #diminished-value .af-container > div > div:last-child { grid-template-columns: 1fr 1fr; }
}

/* === Inner pages === */
.af-inner-page { padding-top: 64px; } /* offset fixed header */
.af-inner-hero {
  background: var(--ink); color: #fff;
  padding: 80px 40px 72px;
}
.af-inner-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.06;
  margin: 0 0 18px;
}
.af-inner-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.7); max-width: 640px; margin: 0;
}
.af-inner-hero .af-eyebrow { color: #6B9BFF; margin-bottom: 14px; }

/* Contact page */
.af-contact-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-bottom: 64px;
}
.af-contact-card {
  background: var(--mist); border-radius: 16px;
  padding: 28px 24px; text-align: center;
}
.af-contact-icon { font-size: 28px; margin-bottom: 12px; }
.af-contact-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 8px;
}
.af-contact-value {
  font-size: 15px; font-weight: 500; color: var(--ink);
  word-break: break-word;
}
a.af-contact-value:hover { color: var(--blue); }

.af-locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.af-location { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; }
.af-location__name { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 8px; }
.af-location__addr { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }
.af-location__map {
  height: 240px; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.af-promo-bar {
  background: var(--mist); border-radius: 14px;
  padding: 20px 28px; font-size: 15px; line-height: 1.6; color: var(--ink);
}

/* Services page */
.af-services-full { display: grid; grid-template-columns: 1fr; gap: 40px; }
.af-service-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: center; padding: 40px 0;
  border-top: 1px solid var(--line);
}
.af-service-row:first-child { border-top: none; padding-top: 0; }
.af-service-row--reverse { direction: rtl; }
.af-service-row--reverse > * { direction: ltr; }
.af-service-num { font-size: 80px; font-weight: 700; color: var(--mist); line-height: 1; margin-bottom: 8px; }
.af-service-title { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.af-service-sub { font-size: 14px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; margin: 0 0 18px; }
.af-service-desc { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 16px; }
.af-service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.af-service-tag {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  background: var(--mist); border-radius: 999px; color: var(--ink);
}
.af-service-media {
  aspect-ratio: 16/10; border-radius: 18px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-soft);
}

/* === Inner page Astra overrides === */
/* Suppress Astra default header/footer — our header.php/footer.php replace them */
body:not(.home) .site-header,
body:not(.home) .ast-primary-header-bar,
body:not(.home) footer.site-footer { display: none !important; }
body:not(.home) .site-content { padding-top: 0 !important; }
body:not(.home) .ast-container { max-width: none !important; padding: 0 !important; }
body:not(.home) main,
body:not(.home) .hentry,
body:not(.home) .entry-content { padding: 0 !important; margin: 0 !important; }
body:not(.home) #page,
body:not(.home) #content,
body:not(.home) .ast-separate-container { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }

/* Solid header variant for inner pages */
.af-header--solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.af-header--solid .af-header__logo { color: var(--ink); }
.af-header--solid .af-header__logo-mark svg path { stroke: #fff; }
.af-nav--active { font-weight: 700; color: var(--blue) !important; }

/* About page */
.af-about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.af-about__media { aspect-ratio: 4/5; border-radius: 20px; background-size: cover; background-position: center; box-shadow: var(--shadow-soft); }
.af-about__stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px 40px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.af-stat__num { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.af-stat__unit { font-size: 22px; font-weight: 600; opacity: 0.5; margin-left: 2px; }
.af-stat__label { font-size: 14px; color: var(--muted); margin-top: 8px; }
.af-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.af-value-card { background: var(--mist); border-radius: 16px; padding: 32px 28px; }
.af-value-icon { font-size: 32px; margin-bottom: 16px; }
.af-value-title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
.af-value-desc { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* Labor rates page */
.af-container--narrow { max-width: 860px; margin: 0 auto; }
.af-rates-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-soft); overflow: hidden; margin-bottom: 56px; }
.af-rates-table { width: 100%; border-collapse: collapse; }
.af-rates-table thead tr { background: var(--ink); color: #fff; }
.af-rates-table th { padding: 16px 24px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.af-rates-table td { padding: 16px 24px; font-size: 15px; border-bottom: 1px solid var(--line); }
.af-rates-table tbody tr:last-child td { border-bottom: none; }
.af-rates-table tbody tr:hover td { background: var(--mist); }
.af-rates-price { font-size: 18px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.af-rates-divider td { border-top: 2px solid var(--line); }
.af-rates-note { font-size: 14px; line-height: 1.7; color: var(--muted); padding: 20px 24px; border-top: 1px solid var(--line); margin: 0; }
.af-rates-insurance { background: var(--mist); border-radius: 20px; padding: 48px 40px; }

/* Success case page */
.af-case-video-wrap { max-width: 800px; margin: 0 auto; }
.af-case-video { position: relative; padding-bottom: 56.25%; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.af-case-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.af-case-video-cap { text-align: center; font-size: 14px; color: var(--muted); margin-top: 16px; }
.af-cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.af-case-placeholder { grid-column: 1/-1; background: var(--mist); border-radius: 16px; padding: 80px 40px; text-align: center; }
.af-case-placeholder__icon { font-size: 48px; margin-bottom: 16px; }
.af-case-placeholder p { font-size: 16px; color: var(--muted); margin: 4px 0; }
.af-section--mist { background: var(--mist); }

@media (max-width: 960px) {
  .af-inner-hero { padding: 60px 24px; }
  .af-contact-grid { grid-template-columns: 1fr 1fr; }
  .af-locations-grid { grid-template-columns: 1fr; }
  .af-location { grid-template-columns: 1fr; }
  .af-service-row { grid-template-columns: 1fr; gap: 24px; }
  .af-service-row--reverse { direction: ltr; }
  .af-service-num { font-size: 48px; }
  .af-about { grid-template-columns: 1fr; gap: 40px; }
  .af-values-grid { grid-template-columns: 1fr; }
  .af-cases-grid { grid-template-columns: 1fr; }
  .af-rates-table th, .af-rates-table td { padding: 12px 16px; font-size: 14px; }
  .af-header__nav { display: none; }
}
