:root {
  --navy: #081f46;
  --navy-2: #0d2e63;
  --blue: #1769d2;
  --blue-dark: #0f54b4;
  --red: #d92532;
  --red-dark: #b81926;
  --ink: #10213f;
  --muted: #5d6b82;
  --line: #dce3ed;
  --soft: #f3f6fa;
  --white: #fff;
  --shadow: 0 24px 60px rgba(6, 25, 57, .14);
  --shadow-sm: 0 12px 34px rgba(6, 25, 57, .10);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.04; }
h1 { font-size: clamp(3.1rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.7rem); }
h3 { font-size: 1.4rem; }
p { color: var(--muted); font-size: 1.02rem; }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #a9c9fb; }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading.split > p { max-width: 430px; margin: 0 0 5px; }
.section-heading.centered { text-align: center; }
.section-heading.centered h2 { margin-inline: auto; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
}
.text-link svg { width: 18px; transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(4px); }
.light-link { color: #fff; }

.btn {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(217, 37, 50, .28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { color: #fff; background: var(--navy); }
.btn-secondary:hover { background: var(--navy-2); }
.btn-white { color: var(--navy); background: #fff; }
.btn-white:hover { box-shadow: var(--shadow-sm); }
.btn-ghost { color: var(--ink); background: rgba(255,255,255,.78); border-color: rgba(8,31,70,.15); backdrop-filter: blur(12px); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: .84rem; }
.btn-block { width: 100%; }

.topbar { position: relative; z-index: 60; background: var(--navy); color: #fff; font-size: .73rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; gap: 26px; }
.topbar-inner span { opacity: .78; }
.topbar-inner a { margin-left: auto; font-weight: 800; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,35,81,.09);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(5,22,51,.08); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: 34px; }
.brand { flex: 0 0 158px; }
.brand img { height: 55px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav > a, .nav-dropdown > button { border: 0; background: transparent; padding: 28px 0; font-size: .88rem; font-weight: 750; cursor: pointer; }
.desktop-nav > a:hover, .nav-dropdown > button:hover { color: var(--blue); }
.nav-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 670px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .22s ease;
}
.nav-dropdown:hover .mega-menu, .nav-dropdown:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu small { display: block; margin-bottom: 10px; color: #7a879a; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.mega-menu a { display: block; padding: 7px 0; font-size: .9rem; font-weight: 700; }
.mega-menu a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { display: flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 800; }
.phone-link svg { color: var(--red); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; }
.mobile-menu { position: fixed; inset: 0; z-index: 90; visibility: hidden; background: rgba(2,13,34,.62); opacity: 0; transition: .25s ease; }
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu-panel { width: min(430px, 90vw); height: 100%; margin-left: auto; padding: 24px; display: flex; flex-direction: column; background: #fff; transform: translateX(100%); transition: .28s ease; overflow: auto; }
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.mobile-menu-head img { width: 150px; height: 54px; object-fit: contain; }
.mobile-menu-head button { border: 0; background: transparent; font-size: 1.5rem; }
.mobile-menu nav { display: grid; padding: 22px 0; }
.mobile-menu nav a { padding: 11px 0; border-bottom: 1px solid #edf1f6; font-weight: 750; }

.hero { position: relative; min-height: calc(100vh - 118px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,247,251,.98) 0%, rgba(244,247,251,.94) 43%, rgba(244,247,251,.35) 67%, rgba(8,31,70,.18) 100%); }
.hero-grid { position: relative; z-index: 2; min-height: calc(100vh - 118px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .7fr); align-items: center; gap: 70px; padding-top: 78px; padding-bottom: 90px; }
.hero-copy h1 { max-width: 800px; margin-bottom: 28px; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 680px; margin-bottom: 34px; color: #465874; font-size: 1.16rem; }
.hero-kicker { display: flex; gap: 10px; margin-bottom: 24px; }
.hero-kicker span { padding: 8px 11px; border: 1px solid rgba(8,31,70,.12); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--navy); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { margin-top: 48px; display: flex; gap: 35px; }
.hero-proof div { padding-right: 35px; border-right: 1px solid rgba(8,31,70,.18); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 1.18rem; }
.hero-proof span { color: var(--muted); font-size: .78rem; }
.hero-form-wrap { align-self: center; }
.hero-scroll { position: absolute; left: 30px; bottom: 24px; z-index: 3; display: flex; gap: 9px; color: #4c5b70; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.inspection-form { padding: 28px; border-radius: 24px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
.inspection-form.compact { padding: 24px; }
.form-head { margin-bottom: 20px; }
.form-head span, .form-head strong { display: block; }
.form-head span { margin-bottom: 5px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-head strong { font-size: 1.35rem; letter-spacing: -.025em; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.form-grid label { display: grid; gap: 6px; }
.form-grid label > span { color: #3d4c62; font-size: .74rem; font-weight: 750; }
.form-grid .span-2 { grid-column: span 2; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  border: 1px solid #d9e0e9;
  border-radius: 10px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,105,210,.1); }
.inspection-form .btn { margin-top: 16px; }
.form-note { margin: 10px 0 0; text-align: center; font-size: .68rem; }
.form-status { min-height: 18px; margin-top: 6px; color: var(--blue); font-size: .78rem; text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; }

.trust-loop { overflow: hidden; background: var(--red); color: #fff; }
.marquee { overflow: hidden; padding: 17px 0; }
.marquee-content { width: max-content; display: flex; align-items: center; gap: 24px; animation: marquee 32s linear infinite; }
.marquee-content span { font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.marquee-content i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.65); }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-section { padding-bottom: 90px; }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.intro-copy p { font-size: 1.12rem; }
.services-section { background: var(--soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid #e0e6ef; border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); }
.service-card-media { aspect-ratio: 1.45; overflow: hidden; }
.service-card-media img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-card-body { padding: 24px; }
.service-card-body > span { color: var(--blue); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.service-card-body h3 { margin: 10px 0 11px; }
.service-card-body p { min-height: 76px; margin-bottom: 18px; font-size: .9rem; }
.card-link { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 15px; color: var(--navy); font-size: .83rem; font-weight: 800; }
.card-link svg { width: 18px; }

.projects-showcase { padding-bottom: 80px; overflow: hidden; background: var(--navy); color: #fff; }
.projects-showcase .section-heading h2 { color: #fff; }
.project-loop { overflow: hidden; }
.project-track { width: max-content; display: flex; gap: 20px; animation: projectLoop 48s linear infinite; }
.project-track:hover { animation-play-state: paused; }
.project-track figure { width: 390px; margin: 0; position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 1.2; }
.project-track img { height: 100%; object-fit: cover; }
.project-track figcaption { position: absolute; inset: auto 14px 14px 14px; padding: 12px 14px; border-radius: 10px; background: rgba(6,24,54,.78); backdrop-filter: blur(12px); font-size: .82rem; font-weight: 750; }
@keyframes projectLoop { to { transform: translateX(-49.7%); } }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { padding: 28px; border-top: 3px solid var(--blue); background: var(--soft); border-radius: 0 0 18px 18px; }
.process-grid article > span { display: block; margin-bottom: 40px; color: var(--blue); font-size: .77rem; font-weight: 900; }
.process-grid h3 { margin-bottom: 12px; }
.process-grid p { margin: 0; font-size: .9rem; }

.choice-section { background: #edf3fa; }
.choice-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 78px; align-items: center; }
.choice-media { position: relative; }
.choice-media img { aspect-ratio: .95; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.choice-stat { position: absolute; right: -26px; bottom: 34px; width: 175px; padding: 20px; border-radius: 16px; background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.choice-stat strong, .choice-stat span { display: block; }
.choice-stat strong { font-size: 1.35rem; }
.choice-stat span { font-size: .78rem; opacity: .86; }
.choice-copy h2 { margin-bottom: 24px; }
.choice-copy > p { margin-bottom: 30px; font-size: 1.05rem; }
.choice-cards { display: grid; gap: 12px; margin-bottom: 26px; }
.choice-cards > div { padding: 18px; border: 1px solid #d6e0ed; border-radius: 14px; background: rgba(255,255,255,.7); }
.choice-cards strong, .choice-cards span { display: block; }
.choice-cards strong { margin-bottom: 4px; }
.choice-cards span { color: var(--muted); font-size: .88rem; }

.credentials-grid { display: grid; grid-template-columns: .65fr 1.1fr; gap: 70px; align-items: center; }
.credential-badge { min-height: 360px; display: grid; place-items: center; border-radius: 28px; background: var(--soft); }
.credential-badge img { width: min(340px, 80%); }
.credentials-copy h2 { margin-bottom: 24px; }
.credentials-copy > p { max-width: 680px; }
.credential-list { display: grid; gap: 11px; margin-top: 24px; }
.credential-list span { display: flex; align-items: center; gap: 10px; font-weight: 750; }
.credential-list svg { width: 20px; color: var(--blue); }

.reviews-section { background: var(--soft); overflow: hidden; }
.review-controls { display: flex; gap: 8px; }
.review-controls button { width: 48px; height: 48px; border: 1px solid #d3dce8; border-radius: 50%; background: #fff; font-size: 1.1rem; cursor: pointer; }
.reviews-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review-card { min-height: 330px; padding: 32px; border: 1px solid #dce3ed; border-radius: 20px; display: flex; flex-direction: column; background: #fff; opacity: .7; transform: scale(.98); transition: .28s ease; }
.review-card.is-active { opacity: 1; transform: scale(1); box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 4px; color: #f0ad19; }
.stars svg { width: 18px; fill: currentColor; stroke: currentColor; }
.review-card blockquote { margin: 34px 0 auto; font-size: 1.35rem; font-weight: 700; letter-spacing: -.025em; line-height: 1.35; }
.review-card div:last-child { display: grid; margin-top: 28px; }
.review-card div:last-child span { color: var(--muted); font-size: .8rem; }
.review-footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 28px; color: var(--muted); font-size: .78rem; }

.area-preview { background: #fff; }
.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.area-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.area-cloud span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--soft); font-size: .8rem; font-weight: 750; }

.faq-section { border-top: 1px solid #e8edf3; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.1fr; gap: 90px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { font-size: clamp(2.1rem, 3.6vw, 3.7rem); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 22px 0; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button i { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--soft); font-style: normal; transition: .2s ease; }
.faq-item.is-open button i { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { overflow: hidden; margin: 0; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 22px; }

.cta-band { padding: 70px 0; background: var(--blue); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 700px; margin-bottom: 15px; color: #fff; font-size: clamp(2.1rem, 4vw, 4.2rem); }
.cta-band p { max-width: 700px; margin: 0; color: rgba(255,255,255,.76); }
.cta-band-actions { flex: 0 0 auto; display: grid; justify-items: center; gap: 14px; }
.site-footer { padding: 72px 0 25px; background: #06162f; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); gap: 55px; }
.footer-grid h3 { margin-bottom: 16px; font-size: .95rem; letter-spacing: 0; }
.footer-grid a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); font-size: .84rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: rgba(255,255,255,.58); font-size: .84rem; }
.footer-brand img { width: 180px; height: 70px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { max-width: 320px; }
.footer-brand > a { font-weight: 800; color: #fff; }
.footer-bottom { margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: rgba(255,255,255,.46); font-size: .72rem; }

.floating-actions { position: fixed; right: 18px; bottom: 22px; z-index: 50; display: grid; gap: 8px; }
.floating-actions a { min-width: 130px; padding: 11px 14px; border-radius: 999px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; background: var(--navy); box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 800; }
.floating-actions a:last-child { background: var(--red); }
.mobile-bottom-bar { display: none; }

.inner-hero { padding: 90px 0; overflow: hidden; background: linear-gradient(135deg, #061a3b 0%, #0c3474 100%); color: #fff; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 70px; align-items: center; }
.inner-hero h1 { margin-bottom: 28px; font-size: clamp(3.4rem, 6.8vw, 6.8rem); color: #fff; }
.inner-hero p { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.inner-hero-media { position: relative; }
.inner-hero-media img { aspect-ratio: 1.05; object-fit: cover; border-radius: 26px; box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.media-tag { position: absolute; left: -22px; bottom: 24px; padding: 13px 17px; border-radius: 12px; background: #fff; color: var(--navy); font-size: .78rem; font-weight: 800; box-shadow: var(--shadow-sm); }
.detail-grid { display: grid; grid-template-columns: 1fr 370px; gap: 70px; align-items: start; }
.content-block { padding: 36px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 50px 1fr; gap: 26px; }
.content-block:first-child { padding-top: 0; }
.content-block > span { color: var(--blue); font-size: .78rem; font-weight: 900; }
.content-block h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.content-block p { max-width: 780px; font-size: 1.06rem; }
.detail-card { position: sticky; top: 130px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--soft); }
.detail-card ul { margin: 10px 0 24px; padding: 0; list-style: none; display: grid; gap: 12px; }
.detail-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; font-weight: 700; }
.detail-card li svg { flex: 0 0 18px; margin-top: 2px; color: var(--blue); }
.detail-phone { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .84rem; font-weight: 800; }
.image-story { background: var(--soft); }
.image-story-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.image-story-grid img { aspect-ratio: 1.25; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-sm); }
.image-story-grid h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
.related-section .compact-grid .service-card:nth-child(n+4) { display: none; }

.about-story-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; }
.story-copy p { font-size: 1.08rem; }
.values-section { background: var(--soft); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.values-grid article { padding: 32px; border-radius: 20px; background: #fff; }
.values-grid article > span { display: block; margin-bottom: 45px; color: var(--blue); font-weight: 900; }
.values-grid p { margin: 0; }
.mosaic { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 260px 260px; gap: 16px; }
.mosaic img { height: 100%; object-fit: cover; border-radius: 16px; }
.mosaic img:first-child { grid-row: span 2; }
.mosaic img:last-child { grid-column: span 2; }

.area-list-section { background: var(--soft); }
.state-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.state-grid article { padding: 30px; border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(6,25,57,.05); }
.state-head { display: flex; gap: 16px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.state-head > span { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--navy); color: #fff; font-weight: 900; }
.state-head h3, .state-head p { margin: 0; }
.state-head p { font-size: .8rem; }
.state-grid ul { margin: 22px 0 0; padding: 0; list-style: none; columns: 2; column-gap: 24px; }
.state-grid li { break-inside: avoid; padding: 7px 0; color: #4d5d74; font-size: .84rem; }
.warehouse-section { background: #fff; }
.warehouse-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 80px; align-items: center; }
.map-card { min-height: 360px; padding: 40px; border-radius: 26px; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 20% 20%, #1b5eaa, transparent 35%), linear-gradient(135deg, #061a3b, #0e3d82); color: #fff; box-shadow: var(--shadow); }
.map-card span { color: #b7d2f6; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.map-card strong { margin-top: 8px; font-size: 2rem; }
.map-card small { opacity: .72; }

.financing-card { padding: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.financing-card > span { color: #a8c7f1; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.financing-card > strong { display: block; margin: 12px 0; font-size: 3.4rem; letter-spacing: -.04em; }
.financing-card p { color: rgba(255,255,255,.72); }
.financing-card div { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: .86rem; font-weight: 750; }
.financing-card i { width: 8px; height: 8px; border-radius: 50%; background: #62a7ff; }
.finance-details { background: var(--soft); }
.finance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.finance-grid article { padding: 30px; border-radius: 20px; background: #fff; }
.finance-grid article > span { color: var(--blue); font-size: .75rem; font-weight: 900; }
.finance-grid h3 { margin-top: 36px; }
.finance-note { margin-top: 22px; padding: 20px; border: 1px solid #d8e0ea; border-radius: 14px; display: flex; gap: 12px; background: #fff; font-size: .84rem; }
.number-list { margin: 0 0 28px; padding: 0; display: grid; gap: 12px; list-style: none; }
.number-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.number-list li span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--blue); font-size: .75rem; }

.review-wall-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.review-wall-grid article { min-height: 350px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; background: #fff; }
.review-wall-grid article.featured { background: var(--navy); color: #fff; transform: translateY(-14px); box-shadow: var(--shadow); }
.review-wall-grid blockquote { margin: 30px 0 auto; font-size: 1.22rem; font-weight: 700; line-height: 1.45; }
.review-wall-grid footer { display: grid; margin-top: 28px; }
.review-wall-grid footer span { color: var(--muted); font-size: .78rem; }
.review-wall-grid .featured footer span { color: rgba(255,255,255,.58); }

.contact-hero { padding: 90px 0 110px; background: linear-gradient(135deg, #061a3b, #0e3d82); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 70px; align-items: start; }
.contact-copy { padding-top: 30px; }
.contact-copy h1 { color: #fff; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.contact-copy > p { max-width: 560px; color: rgba(255,255,255,.68); font-size: 1.1rem; }
.contact-methods { margin-top: 42px; display: grid; gap: 14px; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 14px; }
.contact-methods > a > svg, .mail-icon, .pin-icon { width: 42px; height: 42px; border-radius: 12px; padding: 10px; display: grid; place-items: center; background: rgba(255,255,255,.1); }
.mail-icon, .pin-icon { padding: 0; font-weight: 900; }
.contact-methods span, .contact-methods strong { display: block; }
.contact-methods div > span { color: rgba(255,255,255,.6); font-size: .72rem; }
.contact-methods strong { font-size: .92rem; }
.contact-form-wrap .inspection-form { box-shadow: 0 35px 90px rgba(0,0,0,.24); }
.detail-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.detail-cards article { padding: 30px; border: 1px solid var(--line); border-radius: 20px; }
.detail-cards article > span { color: var(--blue); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.detail-cards h2 { margin: 24px 0 5px; font-size: 1.3rem; }
.detail-cards p { font-size: .9rem; }

.project-grid { columns: 3; column-gap: 18px; }
.project-card { position: relative; margin: 0 0 18px; break-inside: avoid; overflow: hidden; border-radius: 18px; background: var(--soft); }
.project-card img { min-height: 260px; object-fit: cover; }
.project-card figcaption { position: absolute; inset: auto 12px 12px 12px; padding: 13px 14px; border-radius: 12px; background: rgba(6,22,47,.82); color: #fff; backdrop-filter: blur(12px); }
.project-card figcaption span, .project-card figcaption strong { display: block; }
.project-card figcaption span { color: #a9c9fb; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.project-card figcaption strong { margin-top: 3px; font-size: .86rem; }

.simple-hero { padding: 120px 0; background: linear-gradient(135deg, #061a3b, #0e3d82); color: #fff; text-align: center; }
.simple-hero h1 { max-width: 950px; margin: 0 auto 24px; color: #fff; }
.simple-hero p { max-width: 690px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.centered-content { text-align: center; }
.centered-actions { justify-content: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 360px; gap: 35px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 7vw, 5.8rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 32px, 760px); }
  .section { padding: 82px 0; }
  .topbar-inner span:nth-child(2), .topbar-inner span:nth-child(3) { display: none; }
  .phone-link span, .header-actions .btn { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 70px; }
  .hero-bg img { object-position: 68% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(244,247,251,.98) 0%, rgba(244,247,251,.92) 60%, rgba(244,247,251,.72) 100%); }
  .hero-copy { max-width: 720px; }
  .hero-form-wrap { max-width: 620px; }
  .hero-scroll { display: none; }
  .intro-grid, .choice-grid, .credentials-grid, .area-grid, .faq-layout, .inner-hero-grid, .detail-grid, .image-story-grid, .about-story-grid, .warehouse-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-heading.split { align-items: start; flex-direction: column; gap: 18px; }
  .choice-stat { right: 18px; }
  .review-card { min-height: 300px; }
  .reviews-track { display: flex; overflow: hidden; }
  .review-card { flex: 0 0 75%; }
  .faq-intro, .detail-card { position: static; }
  .detail-card { max-width: 520px; }
  .inner-hero-media { max-width: 680px; }
  .inner-hero-media img { aspect-ratio: 1.25; }
  .media-tag { left: 16px; }
  .state-grid, .review-wall-grid, .detail-cards { grid-template-columns: 1fr; }
  .review-wall-grid article.featured { transform: none; }
  .finance-grid, .values-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 240px 240px; }
  .mosaic img:first-child { grid-row: span 2; }
  .mosaic img:last-child { grid-column: span 2; }
  .project-grid { columns: 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .cta-band-actions { justify-items: start; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 26px); --header-h: 70px; }
  body { padding-bottom: 62px; }
  .section { padding: 68px 0; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .topbar-inner { gap: 10px; justify-content: space-between; }
  .topbar-inner a { margin-left: 0; }
  .brand { flex-basis: 132px; }
  .brand img { height: 46px; }
  .header-actions { gap: 8px; }
  .hero-grid { padding-top: 54px; padding-bottom: 70px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-kicker { flex-wrap: wrap; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 0; justify-content: space-between; }
  .hero-proof div { padding-right: 12px; border: 0; }
  .hero-proof strong { font-size: 1rem; }
  .hero-proof span { font-size: .67rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .inspection-form { padding: 20px; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card-body p { min-height: 0; }
  .project-track figure { width: 300px; }
  .choice-media img { aspect-ratio: 1; }
  .choice-stat { right: 12px; bottom: 12px; width: 150px; }
  .credential-badge { min-height: 260px; }
  .reviews-track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .review-card { flex-basis: 88%; scroll-snap-align: start; }
  .review-controls { display: none; }
  .review-footer { align-items: flex-start; flex-direction: column; }
  .area-cloud span { font-size: .72rem; padding: 9px 11px; }
  .inner-hero { padding: 65px 0; }
  .inner-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .inner-hero p { font-size: 1rem; }
  .inner-hero .hero-actions .btn { width: 100%; }
  .content-block { grid-template-columns: 34px 1fr; gap: 15px; }
  .state-grid ul { columns: 1; }
  .finance-note { flex-direction: column; }
  .mosaic { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 250px); }
  .mosaic img:first-child, .mosaic img:last-child { grid-row: auto; grid-column: auto; }
  .contact-hero { padding: 65px 0; }
  .contact-copy h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .project-grid { columns: 1; }
  .simple-hero { padding: 85px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-actions { display: none; }
  .mobile-bottom-bar { position: fixed; inset: auto 0 0; z-index: 80; height: 62px; display: grid; grid-template-columns: .8fr 1.2fr; background: #fff; box-shadow: 0 -10px 30px rgba(5,22,51,.14); }
  .mobile-bottom-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; font-weight: 850; }
  .mobile-bottom-bar a:last-child { background: var(--red); color: #fff; }
  .cta-band { padding: 58px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
