/* TianShu fusion layer: shared brand system for the full multi-page site. */
:root {
  --bg-white: #ffffff;
  --bg-light: #f2f5f7;
  --bg-lighter: #f8fafb;
  --bg-dark: #07111f;
  --brand: #1167ef;
  --brand-dark: #07111f;
  --brand-light: #23c7e8;
  --accent-cyan: #23c7e8;
  --accent-gold: #ff6a3d;
  --accent-green: #8abf23;
  --accent-red: #d64a3a;
  --text-title: #07111f;
  --text-body: #586678;
  --text-muted: #7d8997;
  --border: #d9e0e6;
  --border-light: #e9eef2;
  --shadow-sm: 0 2px 8px rgba(7, 17, 31, .04);
  --shadow-md: 0 12px 36px rgba(7, 17, 31, .08);
  --shadow-lg: 0 24px 70px rgba(7, 17, 31, .12);
  --shadow-brand: 0 12px 34px rgba(17, 103, 239, .18);
  --font-sans: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 8px;
  --radius-xl: 8px;
}

*, *::before, *::after { letter-spacing: 0 !important; }
body { font-family: var(--font-sans); color: var(--text-body); background: var(--bg-white); }
[hidden] { display: none !important; }
::selection { color: var(--bg-dark); background: #b8f23c; }
.container { max-width: 1240px; padding-inline: 30px; }
.preloader, .cursor-glow, .hero-decor, .page-hero-decor .blob, .pulse-dot { display: none !important; }

/* Navigation */
.nav {
  height: 72px;
  padding: 0;
  color: #fff;
  background: rgba(7, 17, 31, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}
.nav.scrolled { background: rgba(255, 255, 255, .96); border-bottom-color: var(--border); box-shadow: 0 8px 30px rgba(7,17,31,.07); }
.nav-inner { height: 72px; }
.nav-logo { position: relative; min-width: 128px; padding-left: 43px; color: inherit; font-size: 0; }
.nav-logo img { display: none; }
.nav-logo::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../tianshu-logo.png") center -13px / 70px 70px no-repeat;
}
.nav-logo::after { content: "天枢 GEO"; font-size: 19px; font-weight: 850; }
.nav-links { gap: 0; }
.nav-links a { padding: 8px 10px; border-radius: 3px; color: rgba(255,255,255,.7); font-size: 13px; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { bottom: -13px; width: 100%; height: 1px; background: var(--accent-cyan); border-radius: 0; }
.nav.scrolled .nav-logo, .nav.scrolled .nav-links a { color: var(--text-title); }
.nav.scrolled .nav-links a { opacity: .7; }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { opacity: 1; background: var(--bg-light); }
.nav.scrolled .nav-toggle svg { stroke: var(--text-title); }
.nav-toggle svg { stroke: #fff; }
.nav-cta { gap: 8px; }

/* Buttons */
.btn { min-height: 44px; padding: 0 20px; border-radius: 3px; font-size: 14px; }
.btn::after { display: none; }
.btn-primary { color: #07111f; background: #b8f23c !important; box-shadow: 0 12px 34px rgba(184,242,60,.13); }
.btn-primary:hover { color: #07111f; background: #c9ff55 !important; box-shadow: 0 14px 36px rgba(184,242,60,.2); }
.btn-outline { color: var(--brand); background: transparent; border: 1px solid var(--brand); }
.btn-ghost { color: inherit; border: 1px solid rgba(255,255,255,.28); }
.nav.scrolled .btn-ghost { color: var(--text-title); border-color: var(--border); }
.btn-lg { min-height: 50px; padding: 0 25px; font-size: 15px; }
.btn-white { color: var(--text-title); background: #fff; }
.btn-white-outline { border-color: rgba(255,255,255,.42); }

/* Site-wide status note for content that still needs business verification. */
.demo-banner {
  position: absolute;
  z-index: 20;
  top: 72px;
  left: 0;
  right: 0;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: #4e5b69;
  background: #f0f4d8;
  border-bottom: 1px solid #dce5ac;
  font-size: 11px;
  text-align: center;
}
.demo-banner i { width: 6px; height: 6px; border-radius: 50%; background: #7aa50f; }
.demo-toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  color: #dce5ed;
  background: #0b1828;
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
  font-size: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.demo-toast.show { opacity: 1; transform: translateY(0); }

/* Shared sections */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-light); }
.section-head { max-width: 760px; margin-bottom: 58px; }
.section-eyebrow { padding: 0; color: var(--brand); background: transparent; border-radius: 0; font-size: 11px; }
.section-title { margin-bottom: 18px; color: var(--text-title); font-size: 42px; line-height: 1.2; }
.section-desc { font-size: 16px; }
.grad-flow { color: var(--brand) !important; background: none !important; -webkit-text-fill-color: initial !important; animation: none !important; }
.section-dark .grad-flow, .cta-sec .grad-flow, .hero-v4 .grad-flow, .hero .grad-flow { color: var(--accent-cyan) !important; }
[class*="card"], [class*="Card"] { border-radius: 6px !important; }
.feat-card, .testi-card, .adv-card, .pain-card, .service-card, .addon-card, .value-card, .team-card {
  border-color: var(--border) !important;
  box-shadow: none !important;
}
.feat-card:hover, .testi-card:hover, .adv-card:hover, .pain-card:hover, .service-card:hover, .addon-card:hover, .value-card:hover, .team-card:hover {
  border-color: #9caaba !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px) !important;
}
.feat-icon, .adv-icon, .pain-icon, .value-icon, .cqc-icon, .contact-card-icon { border-radius: 4px !important; }
.tag-cloud-item, .hero-product-tag, .iqn-item { border-radius: 2px !important; }

/* Homepage hero */
.hero {
  position: relative;
  min-height: 760px;
  height: min(860px, 92svh);
  padding-top: 72px;
  color: #fff;
  background: #07111f !important;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 72px auto 0 50%; width: 1px; background: rgba(255,255,255,.06); }
.fusion-stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grid { opacity: .18; background-size: 52px 52px; }
.hero-inner { position: relative; z-index: 2; grid-template-columns: .88fr 1.12fr; gap: 66px; }
.hero-left { padding-right: 0; }
.hero-badge { padding: 0; color: var(--accent-cyan); background: transparent; border: 0; border-radius: 0; font-size: 11px; }
.hero-badge-dot { width: 22px; height: 1px; border-radius: 0; background: var(--accent-cyan); box-shadow: none; }
.hero h1 { color: #fff; font-size: 64px; line-height: 1.05; }
.hero-left > p { max-width: 560px; color: #c7d0da; font-size: 17px; line-height: 1.8; }
.hero-actions { gap: 20px; }
.hero .btn-outline { color: #d8e1e8; border-color: rgba(255,255,255,.35); background: transparent; }
.hero .btn-outline:hover { color: #fff; border-color: #fff; }
.hero-stats { border-top-color: rgba(255,255,255,.13); }
.hs-num { color: #fff; font-size: 30px; }
.hs-label { color: #8190a2; }
.fusion-trust { display: flex; align-items: center; gap: 13px; margin: -18px 0 28px; }
.fusion-avatars { display: flex; padding-left: 7px; }
.fusion-avatars span { display: grid; width: 27px; height: 27px; margin-left: -7px; place-items: center; border: 2px solid #07111f; border-radius: 50%; color: #07111f; background: var(--accent-cyan); font-size: 8px; font-weight: 800; }
.fusion-avatars span:nth-child(2) { background: #b8f23c; }.fusion-avatars span:nth-child(3) { color: #fff; background: #ff6a3d; }.fusion-avatars span:nth-child(4) { color: #fff; background: #1167ef; }.fusion-avatars span:last-child { width: 36px; color: #fff; background: #17283c; }
.fusion-trust > div:last-child b, .fusion-trust > div:last-child small { display: block; }
.fusion-trust > div:last-child b { color: #ffb14a; font-size: 10px; }.fusion-trust > div:last-child b em { color: #d8e1e8; font-style: normal; }.fusion-trust > div:last-child small { color: #718094; font-size: 9px; }
.hero-right { position: relative; }
.fusion-live-label { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: #7f8ea1; font: 700 10px/1 var(--font-mono); }
.fusion-live-label i { width: 6px; height: 6px; border-radius: 50%; background: #b8f23c; box-shadow: 0 0 0 5px rgba(184,242,60,.1); }
.fusion-live-label span { margin-left: auto; color: #526378; font-size: 8px; }
.fusion-dashboard { padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: rgba(9,23,39,.92); box-shadow: 0 42px 100px rgba(0,0,0,.32); backdrop-filter: blur(12px); }
.fd-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.fd-top b, .fd-top span { display: flex; align-items: center; gap: 8px; }
.fd-top b i { width: 8px; height: 8px; transform: rotate(45deg); background: var(--accent-cyan); box-shadow: 0 0 12px rgba(35,199,232,.65); }
.fd-top span { color: #8291a3; }
.fd-top span i { width: 6px; height: 6px; border-radius: 50%; background: #b8f23c; animation: fusionPulse 1.8s ease infinite; }
@keyframes fusionPulse { 50% { box-shadow: 0 0 0 7px rgba(184,242,60,.12); } }
.fd-summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 16px; }
.fd-summary > div:first-child > small { display: block; color: #8291a3; font-size: 11px; }
.fd-summary strong { display: block; color: #fff; font-size: 43px; line-height: 1.1; }
.fd-summary strong em { color: #718094; font-size: 12px; font-style: normal; font-weight: 500; }
.fd-summary > div:first-child > span { color: #b8f23c; font-size: 10px; }
.fd-ring { display: grid; width: 82px; height: 82px; place-content: center; border: 6px solid rgba(255,255,255,.08); border-top-color: var(--accent-cyan); border-right-color: var(--accent-cyan); border-radius: 50% !important; text-align: center; transform: rotate(10deg); }
.fd-ring b, .fd-ring small { transform: rotate(-10deg); }
.fd-ring b { color: #fff; font-size: 20px; line-height: 1; }.fd-ring small { margin-top: 4px; color: #788799; font-size: 8px; }
.fd-chart { padding: 14px 13px 5px; border: 1px solid rgba(255,255,255,.09); border-radius: 4px; background: #0a1727; }
.fd-chart-head { display: flex; justify-content: space-between; color: #7f8ea0; font-size: 9px; }
.fd-chart-head b { display: flex; align-items: center; gap: 6px; color: #aab6c4; font-weight: 500; }
.fd-chart-head i { width: 13px; height: 2px; background: var(--accent-cyan); }
.fd-chart svg { display: block; width: 100%; margin-top: 8px; }
.fd-grid path { stroke: rgba(255,255,255,.06); stroke-width: 1; }.fd-area { fill: url(#fusionChartFill); }.fd-line { fill: none; stroke: var(--accent-cyan); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 650; stroke-dashoffset: 650; animation: fusionDraw 2s .5s ease forwards; }
@keyframes fusionDraw { to { stroke-dashoffset: 0; } }
.fd-points circle { fill: #0a1727; stroke: var(--accent-cyan); stroke-width: 2; }
.fd-bottom { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9px; margin-top: 9px; }
.fd-bottom > div { min-height: 65px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 4px; background: #0a1727; }
.fd-bottom small { display: block; color: #7f8ea0; font-size: 8px; }.fd-bottom > div > b { display: block; color: #fff; font-size: 16px; }
.fd-bottom > div > span { display: block; height: 3px; margin-top: 5px; background: rgba(255,255,255,.08); }.fd-bottom > div > span i { display: block; width: 68%; height: 100%; background: #ff6a3d; }
.fd-bottom .fd-hit { display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center; }
.fd-hit > i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: #07111f; background: #b8f23c; font-style: normal; }
.fd-hit p { margin: 0; color: #788799; font-size: 8px; line-height: 1.4; }.fd-hit p b { color: #dce5ed; font-size: 9px; }.fd-hit time { color: #56667a; font-size: 8px; }
.fusion-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 4px; color: #cbd5de; background: rgba(14,29,47,.96); box-shadow: 0 18px 42px rgba(0,0,0,.26); font-size: 9px; animation: fusionFloat 4s ease-in-out infinite; }
.fusion-chip b { display: grid; min-width: 29px; height: 21px; padding-inline: 5px; place-items: center; border-radius: 2px; color: #07111f; background: var(--accent-cyan); font-size: 7px; }
.chip-a { right: -26px; top: 115px; }.chip-b { left: -28px; bottom: 24px; animation-delay: 1s; }.chip-b b { color: #fff; background: #ff6a3d; }
@keyframes fusionFloat { 50% { transform: translateY(-7px); } }
.scroll-indicator { bottom: 18px; color: #536477; }

/* Product decision route added from the first concept. */
.fusion-route-section { padding: 120px 0; color: #fff; background: #07111f; }
.fusion-route-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.fusion-route-head span { color: var(--accent-cyan); font: 700 10px/1 var(--font-mono); }
.fusion-route-head h2 { margin: 18px 0 0; color: #fff; font-size: 52px; line-height: 1.14; }
.fusion-route-head p { margin: 0 0 6px; color: #93a1b2; }
.fusion-route { border: 1px solid rgba(255,255,255,.14); border-radius: 6px; overflow: hidden; }
.fr-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid rgba(255,255,255,.14); }
.fr-tabs button { position: relative; min-height: 66px; padding: 0 17px; color: #758598; text-align: left; }
.fr-tabs button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: #b8f23c; transition: right .3s ease; }
.fr-tabs button.active { color: #fff; }.fr-tabs button.active::after { right: 0; }
.fr-tabs button span { margin-right: 10px; color: var(--accent-cyan); font: 700 9px/1 var(--font-mono); }
.fr-content { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 470px; }
.fr-copy { padding: 55px 48px; border-right: 1px solid rgba(255,255,255,.14); }
.fr-copy > span { color: var(--accent-cyan); font: 700 10px/1 var(--font-mono); }
.fr-copy h3 { margin: 20px 0 16px; color: #fff; font-size: 32px; line-height: 1.3; }
.fr-copy p { color: #93a1b2; }
.fr-copy ul { margin-top: 30px; }
.fr-copy li { padding: 10px 0 10px 22px; border-top: 1px solid rgba(255,255,255,.1); color: #c5cfd8; font-size: 12px; }
.fr-copy li::before { content: "↗"; margin-left: -22px; margin-right: 10px; color: #b8f23c; }
.fr-map { position: relative; min-height: 470px; overflow: hidden; }
.fr-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 44px 44px; }
.fr-ring { position: absolute; left: 50%; top: 50%; aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(35,199,232,.25); border-radius: 50%; }
.ring-1 { width: 140px; }.ring-2 { width: 280px; border-style: dashed; animation: fusionSpin 30s linear infinite; }.ring-3 { width: 430px; border-color: rgba(255,255,255,.08); }
@keyframes fusionSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.fr-core { position: absolute; z-index: 2; display: grid; width: 82px; height: 82px; left: 50%; top: 50%; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(35,199,232,.7); border-radius: 50%; color: #07111f; background: #b8f23c; font-weight: 850; box-shadow: 0 0 45px rgba(35,199,232,.14); }
.fr-point { position: absolute; z-index: 2; padding: 5px 9px; border: 1px solid rgba(255,255,255,.18); color: #aab7c4; background: #0d1d30; font-size: 9px; transition: all .35s ease; }
.fr-point::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--accent-cyan); }
.point-1 { left: 18%; top: 25%; }.point-2 { right: 14%; top: 32%; }.point-3 { left: 18%; bottom: 21%; }.point-4 { right: 17%; bottom: 17%; border-color: #b8f23c; color: #b8f23c; }
.fr-readout { position: absolute; right: 18px; bottom: 16px; padding-left: 11px; border-left: 2px solid #ff6a3d; }
.fr-readout small, .fr-readout b { display: block; }.fr-readout small { color: #68788b; font-size: 7px; }.fr-readout b { color: #fff; font: 700 10px/1.6 var(--font-mono); }
.fr-map[data-state="build"] .point-2, .fr-map[data-state="occupy"] .point-3, .fr-map[data-state="measure"] .point-4 { transform: scale(1.15); color: #07111f; background: #b8f23c; border-color: #b8f23c; }

/* Inner page heroes */
.hero-v4, .page-hero {
  min-height: 650px;
  padding-top: 130px;
  padding-bottom: 70px;
  color: #fff;
  background: #07111f !important;
}
.hero-product::before, .hero-solution::before, .hero-industry::before,
.hero-cases::before, .hero-about::before, .hero-contact::before,
.hero-pricing::before { background: none !important; }
.hero-pricing { min-height: 500px; }
.hero-v4 h1, .page-hero h1 { color: #fff !important; font-size: 52px; line-height: 1.14; }
.hero-v4 .hero-sub, .hero-v4 p, .page-hero p { color: #aab6c3; }
.page-hero-breadcrumb, .page-hero-breadcrumb a { color: var(--accent-cyan) !important; }
.browser-mockup, .hero-about-photo img, .case-hero-visual, .page-hero-img { border-radius: 6px !important; }
.hero-product-tag, .iqn-item { color: #d2dce5; border-color: rgba(255,255,255,.2) !important; background: rgba(255,255,255,.06) !important; }
.billing-toggle { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.bt-option { color: #9cabb9; }.bt-option.active { color: #07111f; background: #b8f23c; }
.hsi-icon, .icg-card, .contact-quick-cards .cqc-card { border-color: rgba(255,255,255,.14) !important; background: rgba(255,255,255,.05) !important; }
.hero-about-badge { border-radius: 6px !important; }

/* Data, pricing, CTA and footer */
.data-showcase-section, .cta-sec { background: #07111f !important; }
.liquid-bg { color: #fff; background: #0b1a2b !important; border-radius: 6px !important; }
.liquid-bg::before, .liquid-bg::after { display: none !important; }
.data-showcase-section h2, .cta-sec h2 { color: #fff; }
.ds-card { background: #0c1b2d !important; border-color: rgba(255,255,255,.12) !important; }
.ds-card-value { color: #fff; }
.pricing-section { background: #f2f5f7; }
.price-card-v4 { border-color: #cfd8e0 !important; box-shadow: none !important; }
.price-card-v4.featured { border-color: var(--brand) !important; box-shadow: 0 18px 52px rgba(17,103,239,.12) !important; }
.pc4-badge { color: #07111f; background: #b8f23c !important; }
.pricing-note { border-radius: 4px !important; }
.cta-sec { border-top: 1px solid rgba(255,255,255,.08); }
.cta-sec h2 { font-size: 40px; }
.cta-contact { color: #7f8ea0; }
.footer { background: #050c15; }
.footer-logo-wrap { position: relative; min-height: 42px; padding-left: 46px; }
.footer-logo-wrap img { display: none; }
.footer-logo-wrap::before { content: ""; position: absolute; left: 0; top: 0; width: 38px; height: 38px; background: url("../tianshu-logo.png") center -14px / 74px 74px no-repeat; }
.footer-logo-wrap::after { content: "天枢 GEO"; color: #fff; font-size: 20px; font-weight: 850; line-height: 38px; }
.footer-bottom { border-top-color: rgba(255,255,255,.09); }
.back-top { border-radius: 3px !important; color: #07111f; background: #b8f23c !important; }

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .mobile-menu { top: 72px; border-radius: 0; }
  .hero { height: auto; min-height: 920px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 125px 0 90px; }
  .hero-left { max-width: 720px; }
  .hero-right { max-width: 700px; width: 100%; justify-self: center; }
  .fusion-route-head { grid-template-columns: 1fr; gap: 25px; }
  .fr-content { grid-template-columns: 1fr; }
  .fr-copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 760px) {
  .container { padding-inline: 18px; }
  .nav, .nav-inner { height: 64px; }
  .mobile-menu { top: 64px; }
  .demo-banner { top: 64px; min-height: 44px; padding-inline: 15px; font-size: 10px; }
  .demo-toast { right: 12px; bottom: 12px; left: 12px; max-width: none; }
  .section { padding: 82px 0; }
  .section-title { font-size: 34px; }
  .section-head { margin-bottom: 42px; }
  .hero { height: auto; min-height: 0; padding-top: 64px; }
  .hero::before { top: 64px; }
  .hero-inner { gap: 25px; padding: 120px 0 30px; }
  .hero h1 { font-size: 45px; }
  .hero-left > p { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { display: none; }
  .fusion-trust { margin-bottom: 16px; }
  .fusion-dashboard { padding: 13px; }
  .fd-summary { padding: 14px 0 10px; }
  .fd-summary strong { font-size: 34px; }
  .fd-ring { width: 65px; height: 65px; border-width: 5px; }
  .fd-chart { padding: 10px 9px 2px; }
  .fd-bottom { grid-template-columns: 1fr; }
  .fd-bottom > div:first-child { display: none; }
  .fusion-chip { display: none; }
  .scroll-indicator { display: none; }
  .fusion-route-section { padding: 85px 0; }
  .fusion-route-head h2 { font-size: 38px; }
  .fr-tabs { grid-template-columns: repeat(2,1fr); }
  .fr-tabs button { min-height: 58px; padding-inline: 10px; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .fr-copy { padding: 35px 24px; }
  .fr-copy h3 { font-size: 27px; }
  .fr-map { min-height: 370px; }
  .ring-3 { width: 330px; }.ring-2 { width: 230px; }
  .hero-v4, .page-hero { min-height: 560px; padding: 125px 0 55px; }
  .hero-pricing { min-height: 430px; }
  .hero-v4 h1, .page-hero h1 { font-size: 40px; }
  .cta-sec h2 { font-size: 34px; }
  .footer-grid { gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
