:root {
  --ink: #10232f;
  --muted: #60717c;
  --line: #d9e8ee;
  --paper: #ffffff;
  --wash: #f2f9fb;
  --deep: #174ea6;
  --blue: #4285f4;
  --teal: #34a853;
  --google-yellow: #fbbc05;
  --google-red: #ea4335;
  --mint: #e6f4ea;
  --sky: #e8f0fe;
  --gold: #fbbc05;
  --danger: #ea4335;
  --urgent: #f59e0b;
  --urgent-dark: #f97316;
  --action-gradient: #1a73e8;
  --urgent-gradient: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --action-shadow: 0 12px 26px rgba(26, 115, 232, 0.2);
  --urgent-shadow: 0 14px 30px rgba(245, 158, 11, 0.25);
  --radius: 8px;
  --shadow: 0 20px 54px rgba(66, 133, 244, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfe;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #1a73e8, #174ea6);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn:last-child {
  border-right: 0;
}

.lang-btn.active {
  color: #fff;
  background: var(--deep);
}

.call-pill,
.urgent-action,
.primary-action,
.secondary-action,
.estimate-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.call-pill {
  padding: 0 14px;
  color: #fff;
  background: var(--urgent-gradient);
  box-shadow: var(--urgent-shadow);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 36px;
  background:
    radial-gradient(circle at 14% 18%, rgba(66, 133, 244, 0.13) 0 12%, transparent 13%),
    radial-gradient(circle at 88% 18%, rgba(251, 188, 5, 0.16) 0 10%, transparent 11%),
    radial-gradient(circle at 82% 82%, rgba(52, 168, 83, 0.13) 0 14%, transparent 15%),
    linear-gradient(115deg, #f8fbff 0%, #ffffff 52%, #f4fbf6 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-section h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(42px, 5.7vw, 68px);
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action {
  padding: 0 22px;
  color: #fff;
  background: var(--action-gradient);
  box-shadow: var(--action-shadow);
}

.urgent-action {
  padding: 0 24px;
  color: #fff;
  background: var(--urgent-gradient);
  box-shadow: var(--urgent-shadow);
}

.hero-actions .urgent-action {
  flex-basis: 100%;
  max-width: 520px;
  font-size: 17px;
}

.secondary-action {
  padding: 0 22px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
}

.ad-service-focus {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.ad-service-focus article {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(66, 133, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(66, 133, 244, 0.08);
}

.ad-service-focus span {
  width: fit-content;
  min-width: 38px;
  padding: 4px 7px;
  color: #fff;
  border-radius: 7px;
  background: var(--action-gradient);
  font-size: 12px;
  font-weight: 900;
}

.ad-service-focus strong {
  font-size: 16px;
  line-height: 1.2;
}

.ad-service-focus p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 34px 0 0;
}

.quick-proof div,
.quick-proof .proof-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
}

.quick-proof .proof-card:hover {
  border-color: rgba(66, 133, 244, 0.42);
  box-shadow: 0 10px 26px rgba(66, 133, 244, 0.13);
}

.quick-proof dt {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 30px;
  font-weight: 800;
}

.google-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dfe8ec;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.google-mark span {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 47%, #fbbc05 0 68%, #ea4335 0 82%, #4285f4 0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quick-proof dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.hero-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.hero-photo-card {
  width: min(100%, 560px);
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.hero-photo-card figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #e8f0fe 0%, #e6f4ea 55%, #fef7e0 100%);
  color: var(--deep);
}

.service-strip span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-weight: 700;
}

.service-strip span:last-child {
  border-right: 0;
}

.section,
.split-section,
.contact-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
}

.section-heading h2,
.split-section h2,
.contact-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  min-height: 330px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(66, 133, 244, 0.08);
}

.service-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: linear-gradient(135deg, #f8fbff, #eef7fb);
}

.service-card h3 {
  margin: 18px 20px 10px;
  font-size: 22px;
}

.service-card p {
  margin: 0 20px 22px;
}

.split-section p,
.contact-copy p,
.site-footer p,
.intro-copy p,
.deep-grid p,
.decision-copy p,
.section-cta p,
.values-grid p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 16px;
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--blue), var(--teal), var(--google-yellow), var(--google-red)) border-box;
  border-color: transparent;
}

.section-cta p {
  max-width: 760px;
  font-weight: 700;
}

.section-cta .primary-action {
  flex: 0 0 auto;
}

.trust-cta {
  grid-column: 1 / -1;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.company-intro {
  background: #fff;
}

.intro-layout,
.deep-grid,
.values-grid,
.faq-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.intro-copy,
.intro-panel,
.deep-grid article,
.values-grid article,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(66, 133, 244, 0.08);
}

.intro-copy {
  display: grid;
  gap: 14px;
  padding: 26px;
  font-size: 18px;
}

.intro-panel {
  padding: 24px;
  background: linear-gradient(135deg, #f6fcfe 0%, #effbf8 100%);
}

.intro-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.intro-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-deep-dive,
.values-section {
  background: var(--wash);
}

.deep-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deep-grid article,
.values-grid article {
  padding: 24px;
}

.deep-grid h3,
.values-grid h3 {
  margin: 0 0 12px;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1264px;
  margin: 0 auto;
}

.decision-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.decision-copy p:last-child {
  margin-top: 18px;
  font-size: 18px;
}

.decision-list {
  display: grid;
  gap: 12px;
}

.decision-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.decision-list strong,
.decision-list span {
  display: block;
}

.decision-list span {
  margin-top: 5px;
  color: var(--muted);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin-top: 12px;
}

.muted {
  background: var(--wash);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 32px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(251, 188, 5, 0.18) 0 9%, transparent 10%),
    linear-gradient(135deg, #e8f0fe 0%, #e6f4ea 100%);
  justify-content: center;
}

.split-section > * {
  max-width: 1120px;
}

.split-section .eyebrow {
  color: var(--teal);
}

.split-section p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  margin-top: 4px;
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 18px auto 0;
}

.area-grid span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(66, 133, 244, 0.06);
  font-weight: 800;
}

.service-map {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 45% 50%, rgba(26, 115, 232, 0.16) 0 3%, transparent 4%),
    radial-gradient(circle at 45% 50%, rgba(66, 133, 244, 0.14) 0 19%, transparent 20%),
    radial-gradient(circle at 45% 50%, rgba(52, 168, 83, 0.12) 0 34%, transparent 35%),
    linear-gradient(145deg, #eef5ff 0%, #ffffff 48%, #f3fbf5 100%);
  box-shadow: 0 12px 32px rgba(66, 133, 244, 0.08);
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 50%;
  z-index: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-panel::before {
  width: 240px;
  height: 240px;
  border: 2px dashed rgba(66, 133, 244, 0.28);
}

.map-panel::after {
  width: 390px;
  height: 300px;
  border: 2px solid rgba(52, 168, 83, 0.18);
}

.map-water,
.map-region,
.map-pin {
  position: absolute;
  z-index: 2;
}

.map-water {
  color: rgba(23, 78, 166, 0.34);
  font-size: 13px;
  font-weight: 800;
}

.water-east {
  right: 8%;
  top: 18%;
}

.water-south {
  right: 15%;
  bottom: 12%;
}

.map-region {
  color: rgba(23, 78, 166, 0.22);
  font-size: 26px;
  font-weight: 900;
}

.region-ny {
  left: 24%;
  top: 18%;
}

.region-nj {
  left: 10%;
  bottom: 24%;
}

.region-ct {
  right: 14%;
  top: 12%;
}

.region-li {
  right: 12%;
  bottom: 28%;
  font-size: 16px;
}

.map-ring {
  position: absolute;
  left: 45%;
  top: 50%;
  z-index: 1;
  border: 2px solid rgba(66, 133, 244, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 190px;
  height: 130px;
}

.ring-two {
  width: 360px;
  height: 235px;
  border-color: rgba(52, 168, 83, 0.22);
}

.map-route {
  position: absolute;
  left: 45%;
  top: 52%;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.95), rgba(52, 168, 83, 0.58), transparent);
  transform-origin: left center;
  box-shadow: 0 0 16px rgba(66, 133, 244, 0.24);
}

.map-route::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(52, 168, 83, 0.14);
}

.route-queens {
  width: 112px;
  transform: rotate(6deg);
}

.route-brooklyn {
  width: 118px;
  transform: rotate(112deg);
}

.route-manhattan {
  width: 104px;
  transform: rotate(205deg);
}

.route-westchester {
  width: 154px;
  transform: rotate(252deg);
}

.route-nj {
  width: 230px;
  transform: rotate(168deg);
}

.route-ct {
  width: 270px;
  transform: rotate(318deg);
}

.map-pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--deep);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(66, 133, 244, 0.11);
  font-size: 13px;
  font-weight: 800;
  z-index: 3;
}

.map-pin span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: var(--teal);
}

.pin-home {
  left: 41%;
  top: 46%;
  color: #fff;
  border-color: transparent;
  background: var(--action-gradient);
  box-shadow: 0 0 0 10px rgba(66, 133, 244, 0.14), 0 12px 28px rgba(66, 133, 244, 0.2);
}

.pin-home span {
  background: #fff;
}

.pin-queens {
  left: 55%;
  top: 52%;
}

.pin-brooklyn {
  left: 43%;
  top: 61%;
}

.pin-manhattan {
  left: 37%;
  top: 42%;
}

.pin-westchester {
  left: 38%;
  top: 22%;
}

.pin-nj {
  left: 13%;
  top: 55%;
}

.pin-ct {
  right: 12%;
  top: 24%;
}

.pin-li45 {
  right: 8%;
  bottom: 36%;
}

.map-priority {
  color: #fff;
  border-color: rgba(26, 115, 232, 0.28);
  background: #1a73e8;
  box-shadow: 0 0 0 8px rgba(26, 115, 232, 0.12), 0 12px 28px rgba(26, 115, 232, 0.18);
}

.map-priority span {
  background: #fff;
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(66, 133, 244, 0.06);
}

.map-copy strong {
  color: var(--ink);
  font-size: 24px;
}

.map-copy p {
  margin: 0;
  color: var(--muted);
}

.map-copy .primary-action {
  width: fit-content;
}

.gallery-section {
  background: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky);
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-grid figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.knowledge-preview {
  background: #fbfdfe;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.knowledge-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(66, 133, 244, 0.06);
}

.knowledge-card:hover {
  border-color: rgba(66, 133, 244, 0.42);
  transform: translateY(-2px);
}

.knowledge-card span {
  color: var(--teal);
  font-weight: 800;
}

.knowledge-card h3 {
  margin: 0;
  font-size: 21px;
}

.knowledge-card p {
  margin: 0;
  color: var(--muted);
}

.subpage-main {
  background: #fbfdfe;
}

.article-hero {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 22%, rgba(66, 133, 244, 0.12) 0 12%, transparent 13%),
    radial-gradient(circle at 88% 18%, rgba(251, 188, 5, 0.13) 0 10%, transparent 11%),
    linear-gradient(115deg, #f8fbff 0%, #ffffff 52%, #f4fbf6 100%);
}

.article-hero-inner,
.article-layout {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.article-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.04;
}

.article-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 310px;
  gap: 34px;
  justify-content: center;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.article-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.article-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-block h2,
.article-block h3 {
  margin: 0 0 12px;
}

.article-block p,
.article-block li {
  color: var(--muted);
}

.article-block p {
  margin: 0 0 12px;
}

.article-block p:last-child {
  margin-bottom: 0;
}

.article-block ul,
.article-block ol {
  margin: 0;
  padding-left: 20px;
}

.article-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(66, 133, 244, 0.08);
}

.article-aside h2 {
  margin: 0;
  font-size: 22px;
}

.article-aside p {
  margin: 0;
  color: var(--muted);
}

.article-aside a {
  min-height: 42px;
}

.related-guides {
  display: grid;
  gap: 10px;
}

.related-guides a {
  color: #0d5f71;
  font-weight: 800;
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
  max-width: 1264px;
  margin: 0 auto;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff 0%, #f3fbf5 100%);
  box-shadow: 0 14px 38px rgba(66, 133, 244, 0.08);
}

.estimate-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.estimate-form .wide {
  grid-column: 1 / -1;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #bdc8ce;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form button {
  grid-column: 1 / -1;
  border: 0;
  color: #fff;
  background: var(--action-gradient);
  cursor: pointer;
  font-size: 16px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(90deg, var(--deep), #1a73e8 58%, #188038);
}

.site-footer p {
  margin-top: 6px;
  color: #b6c8cf;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
  width: min(220px, calc(100vw - 36px));
}

.floating-call {
  display: grid;
  gap: 2px;
  min-width: 152px;
  padding: 11px 14px;
  color: #fff;
  list-style: none;
  text-decoration: none;
  border-radius: 8px;
  background: var(--urgent-gradient);
  box-shadow: var(--urgent-shadow);
  cursor: pointer;
}

.floating-contact span {
  font-size: 12px;
  opacity: 0.9;
}

.floating-contact strong {
  font-size: 15px;
}

.floating-contact-panel {
  display: none;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid rgba(66, 133, 244, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(66, 133, 244, 0.18);
}

.floating-contact:hover .floating-contact-panel,
.floating-contact:focus-within .floating-contact-panel {
  display: grid;
}

.floating-contact-panel a {
  display: block;
  padding: 11px 12px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbff;
  font-weight: 800;
}

.floating-contact-panel a:hover {
  color: #fff;
  border-color: transparent;
  background: var(--blue);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split-section,
  .contact-section,
  .intro-layout,
  .decision-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .service-grid,
  .photo-grid,
  .knowledge-grid,
  .ad-service-focus,
  .deep-grid,
  .values-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .service-strip,
  .area-grid,
  .service-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px 12px;
  }

  .brand,
  .header-actions {
    width: 100%;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 13px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .call-pill {
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .language-switch {
    width: max-content;
  }

  .lang-btn {
    min-width: 38px;
  }

  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 22px;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 15px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero {
    padding: 34px 18px 28px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .primary-action {
    display: none;
  }

  .hero-actions .urgent-action {
    max-width: none;
    min-height: 52px;
    padding: 0 14px;
    font-size: 16px;
  }

  .quick-proof,
  .ad-service-focus,
  .service-grid,
  .service-strip,
  .area-grid,
  .service-map,
  .knowledge-grid,
  .deep-grid,
  .values-grid,
  .faq-grid,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .estimate-form .wide,
  .estimate-form button {
    grid-column: auto;
  }

  .hero-actions a,
  .contact-buttons a,
  .section-cta a {
    width: 100%;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .map-panel {
    min-height: 300px;
  }

  .map-copy .primary-action {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
  }

  .equipment-scene {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 132px;
  }

  .floating-contact {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: min(240px, calc(100vw - 24px));
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body:not(.has-scrolled) .floating-contact {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }

  .floating-call {
    grid-template-columns: minmax(0, 1fr);
    min-height: 52px;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.76);
    background: var(--urgent-gradient);
    box-shadow: var(--urgent-shadow);
  }

  .floating-contact span {
    font-size: 11px;
  }

  .floating-contact strong {
    font-size: 14px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}
