:root {
  --navy: #062d55;
  --navy-2: #041e39;
  --blue: #0d5eaa;
  --blue-bright: #1381d4;
  --orange: #f45b0b;
  --orange-2: #ff7a18;
  --ink: #132235;
  --muted: #627184;
  --line: #dfe7ef;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 35, 64, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 9999;
  background: #fff; color: #000; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6,45,85,.09);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { width: 280px; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 100%; height: 70px; object-fit: cover; object-position: 0 50%; }
.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: 14px; color: #314357; transition: .2s; }
.main-nav a:hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--navy); margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 13px;
  padding: 15px 21px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; fill: currentColor; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 12px 26px rgba(244,91,11,.25); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(244,91,11,.32); }
.btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.07); }
.btn-secondary:hover { background: rgba(255,255,255,.13); }
.btn-light { color: var(--navy); background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.btn-full { width: 100%; }
.header-call { font-size: 14px; padding: 13px 17px; color: #fff; background: var(--navy); white-space: nowrap; }

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow span { width: 28px; height: 3px; border-radius: 20px; background: var(--orange); }
.eyebrow.dark { color: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(17,106,178,.26), transparent 30%),
    linear-gradient(125deg, #031b34 0%, #073a69 58%, #052a50 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -110px -210px auto;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.glow-one { width: 330px; height: 330px; background: rgba(244,91,11,.17); left: -110px; top: 100px; }
.glow-two { width: 300px; height: 300px; background: rgba(29,133,220,.16); right: 15%; bottom: -140px; }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 52px; padding-block: 72px; position: relative; z-index: 2; }
.hero-copy h1 { font-size: clamp(45px, 5vw, 71px); line-height: .99; letter-spacing: -.045em; margin: 0 0 25px; max-width: 720px; }
.hero-copy h1 em { color: #ff7b24; font-style: normal; }
.hero-lead { color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; max-width: 650px; margin: 0; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 31px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; }
.hero-proof div { padding-right: 20px; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 17px; margin-bottom: 4px; }
.hero-proof span { color: rgba(255,255,255,.55); font-size: 12px; }

.hero-media { position: relative; }
.hero-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.18);
  transform: perspective(900px) rotateY(-2deg);
}
.hero-card img { width: 100%; aspect-ratio: 1421 / 540; object-fit: cover; }
.hero-rating {
  position: absolute;
  left: -28px;
  right: 34px;
  bottom: -48px;
  padding: 19px 23px;
  border-radius: 17px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0,0,0,.21);
}
.stars { color: #ff7b18; letter-spacing: .13em; font-size: 15px; }
.hero-rating p { margin: 7px 0 4px; font-size: 15px; font-weight: 800; }
.hero-rating span { color: var(--muted); font-size: 12px; }

.trust-strip { position: relative; z-index: 4; background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 104px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-grid > div { display: flex; align-items: center; gap: 12px; padding: 19px 23px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; padding-right: 0; }
.trust-icon { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #eaf4fc; color: var(--blue); font-weight: 900; flex: 0 0 auto; }
.trust-grid p { margin: 0; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-size: 13px; color: var(--ink); }
.trust-grid small { color: var(--muted); font-size: 11px; margin-top: 4px; }

.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.section-head.centered { text-align: center; display: block; max-width: 760px; margin: 0 auto 42px; }
.section-head h2, .about-copy h2, .tip-copy h2, .faq-grid h2, .contact-copy h2 { margin: 0; font-size: clamp(34px, 4vw, 51px); line-height: 1.06; letter-spacing: -.035em; color: var(--navy-2); }
.section-head > p, .section-head.centered > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }
.section-head.centered > p { margin-top: 17px; }

.services { background: #f7f9fb; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.service-card {
  position: relative;
  padding: 30px;
  border: 1px solid #e1e8ef;
  background: #fff;
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 285px;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,44,73,.09); border-color: #cad9e7; }
.service-card.featured { background: linear-gradient(145deg, #073761, #062845); color: #fff; border-color: transparent; }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: #edf5fb; color: var(--blue); margin-bottom: 28px; }
.service-icon svg { width: 25px; height: 25px; fill: currentColor; }
.flame-icon, .emergency-icon { background: #fff0e7; color: var(--orange); }
.water-icon { color: #1685d2; }
.featured .service-icon { background: rgba(255,255,255,.12); color: #ff7b24; }
.service-card h3 { margin: 0 0 12px; font-size: 21px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card a { position: absolute; bottom: 28px; left: 30px; text-decoration: none; font-weight: 800; font-size: 13px; color: var(--orange); }
.service-card a span { margin-left: 5px; }
.emergency-card { border-color: #ffd9c5; background: #fffaf7; }

.cta-band { color: #fff; background: linear-gradient(120deg, var(--orange), #f3771b); padding: 52px 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -70px; top: -120px; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-band-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; z-index: 2; }
.cta-band h2 { font-size: 39px; margin: 0 0 8px; letter-spacing: -.03em; }
.cta-band p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.82); }
.cta-band .eyebrow span { background: #fff; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 85px; align-items: center; }
.portrait-wrap { position: relative; }
.portrait-card { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); position: relative; }
.portrait-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -90px 80px rgba(2,20,38,.18); pointer-events: none; }
.portrait-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.portrait-badge { position: absolute; right: -32px; bottom: -26px; display: flex; gap: 12px; align-items: center; background: #fff; padding: 18px 21px; border-radius: 16px; box-shadow: 0 20px 55px rgba(12,43,71,.16); }
.badge-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff1e8; color: var(--orange); }
.portrait-badge strong, .portrait-badge small { display: block; }
.portrait-badge strong { font-size: 13px; }
.portrait-badge small { color: var(--muted); font-size: 11px; margin-top: 3px; }
.about-copy .intro { color: #344b62; font-size: 18px; line-height: 1.72; margin: 25px 0 17px; font-weight: 600; }
.about-copy > p:not(.eyebrow):not(.intro) { color: var(--muted); line-height: 1.8; margin: 0; }
.check-list { list-style: none; padding: 0; margin: 27px 0 29px; display: grid; grid-template-columns: repeat(2,1fr); gap: 13px 20px; }
.check-list li { font-size: 14px; font-weight: 700; color: #304357; }
.check-list span { color: var(--orange); margin-right: 8px; }
.about-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.text-link { color: var(--blue); font-size: 14px; font-weight: 800; text-decoration: none; }

.review-section { padding-top: 0; }
.review-card {
  display: grid;
  grid-template-columns: 110px 1fr 250px;
  gap: 30px;
  align-items: center;
  padding: 48px 55px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(125deg, #04233f, #073c6a);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.review-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -100px; border-radius: 50%; border: 45px solid rgba(255,255,255,.04); }
.quote-mark { font-family: Georgia, serif; font-size: 128px; line-height: .7; color: rgba(255,255,255,.12); align-self: start; }
.review-content { position: relative; z-index: 2; }
.review-content blockquote { margin: 12px 0 22px; font-size: 25px; line-height: 1.45; font-weight: 700; max-width: 700px; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); font-size: 12px; font-weight: 900; }
.reviewer strong, .reviewer span { display: block; }
.reviewer strong { font-size: 13px; }
.reviewer span { color: rgba(255,255,255,.55); font-size: 11px; margin-top: 2px; }
.review-side { position: relative; z-index: 2; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.13); }
.review-side p { color: rgba(255,255,255,.72); font-size: 13px; margin: 0 0 14px; }

.tip-section { background: #f6f8fb; }
.tip-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 70px; align-items: center; }
.tip-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; font-size: 16px; margin: 22px 0 30px; }
.tip-list { display: grid; gap: 16px; }
.tip-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.tip-list > div > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #eaf3fb; color: var(--blue); font-size: 11px; font-weight: 900; }
.tip-list p { margin: 1px 0 0; }
.tip-list strong, .tip-list small { display: block; }
.tip-list strong { font-size: 15px; }
.tip-list small { color: var(--muted); line-height: 1.55; margin-top: 4px; }
.tip-image { border-radius: 25px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1deg); }
.tip-image img { width: 100%; }

.areas { background: #fff; }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; max-width: 1020px; margin: 0 auto; }
.area-grid > div { display: flex; align-items: center; gap: 12px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: .2s; }
.area-grid > div:hover { border-color: #bed3e5; box-shadow: 0 10px 28px rgba(6,45,85,.07); transform: translateY(-2px); }
.area-grid span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: #eef6fc; color: var(--blue); font-size: 10px; font-weight: 900; }
.area-grid strong { font-size: 13px; }

.faq-section { background: #f6f8fb; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 85px; align-items: start; }
.faq-intro { color: var(--muted); line-height: 1.75; margin-top: 20px; }
.accordion { border-top: 1px solid #dce5ec; }
.faq-item { border-bottom: 1px solid #dce5ec; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: 0; padding: 22px 0; text-align: left; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-item button b { font-size: 22px; color: var(--orange); font-weight: 500; transition: transform .2s; }
.faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); line-height: 1.7; padding-right: 30px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 22px; }

.contact-section { background: linear-gradient(125deg, #052747, #063964); color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 450px; height: 450px; border-radius: 50%; background: rgba(244,91,11,.12); filter: blur(70px); left: -180px; bottom: -180px; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; align-items: start; position: relative; z-index: 2; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.75; font-size: 16px; }
.contact-phone { display: flex; align-items: center; gap: 14px; margin-top: 29px; text-decoration: none; }
.phone-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--orange); }
.phone-icon svg { width: 23px; fill: #fff; }
.contact-phone small, .contact-phone strong { display: block; }
.contact-phone small { color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.contact-phone strong { font-size: 26px; letter-spacing: -.02em; margin-top: 2px; }
.facebook-link { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: rgba(255,255,255,.74); text-decoration: none; font-size: 13px; font-weight: 700; }
.facebook-link span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 7px; background: #1877f2; color: #fff; font-family: Arial; font-weight: 900; }

.quote-form { color: var(--ink); background: #fff; border-radius: 25px; padding: 32px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.form-head { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-bottom: 23px; }
.form-head span { font-size: 20px; font-weight: 900; }
.form-head small { color: #7a8896; font-size: 10px; }
.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.quote-form label { display: block; margin-bottom: 14px; }
.quote-form label > span { display: block; font-size: 12px; font-weight: 800; color: #344b62; margin-bottom: 7px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d9e2ea; border-radius: 11px; background: #fbfcfd; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #8bb8d9; box-shadow: 0 0 0 3px rgba(26,122,190,.10); }
.form-note { color: #8a97a4; font-size: 10px; line-height: 1.5; text-align: center; margin: 11px 0 0; }

.site-footer { background: #041c33; color: #fff; }
.footer-top { min-height: 125px; display: flex; align-items: center; gap: 36px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand { width: 235px; background: #fff; border-radius: 10px; overflow: hidden; }
.footer-brand img { width: 100%; height: 66px; object-fit: cover; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; margin-left: auto; }
.footer-nav a { color: rgba(255,255,255,.67); text-decoration: none; font-size: 12px; font-weight: 700; }
.footer-nav a:hover { color: #fff; }
.footer-call { text-decoration: none; padding-left: 25px; border-left: 1px solid rgba(255,255,255,.12); }
.footer-call small, .footer-call strong { display: block; }
.footer-call small { color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.footer-call strong { margin-top: 3px; font-size: 17px; }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-bottom p { margin: 0; }
.mobile-call { display: none; }

@media (max-width: 1080px) {
  .brand { width: 235px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 13px; }
  .header-call { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 75px 0 105px; }
  .hero-copy { max-width: 760px; }
  .hero-media { max-width: 780px; width: 100%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .tip-grid, .contact-grid { gap: 55px; }
  .area-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 74px; }
  .brand { width: 225px; }
  .brand img { height: 62px; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute;
    left: 20px; right: 20px; top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(5,36,63,.15);
    border: 1px solid #e4ebf1;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; border-bottom: 1px solid #edf1f4; }
  .main-nav a:last-child { border-bottom: 0; }
  .hero-grid { padding-top: 58px; gap: 42px; }
  .hero-copy h1 { font-size: clamp(42px, 10vw, 62px); }
  .hero-rating { left: 18px; right: 18px; bottom: -48px; }
  .trust-grid > div { padding: 18px 12px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 16px; }
  .about-grid, .tip-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 65px; }
  .portrait-wrap { max-width: 540px; }
  .review-card { grid-template-columns: 70px 1fr; padding: 40px; }
  .review-side { grid-column: 2; border: 0; padding: 0; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { gap: 40px; }
  .contact-grid { gap: 50px; }
  .footer-top { flex-wrap: wrap; padding: 28px 0; }
  .footer-nav { margin-left: 0; order: 3; width: 100%; }
  .footer-call { margin-left: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 66px 0; }
  .brand { width: 205px; }
  .hero-grid { padding: 49px 0 100px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .hero-proof div:last-child { grid-column: 1 / -1; }
  .hero-card { border-radius: 17px; }
  .hero-card img { aspect-ratio: 1.6 / 1; }
  .hero-rating { padding: 15px 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-top: 1px solid var(--line); padding: 15px 0; }
  .trust-grid > div:first-child { border-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .cta-band-grid { display: block; }
  .cta-band .btn { margin-top: 25px; width: 100%; }
  .check-list { grid-template-columns: 1fr; }
  .portrait-badge { right: 12px; bottom: -32px; }
  .review-card { grid-template-columns: 1fr; padding: 30px 24px; }
  .quote-mark { display: none; }
  .review-content blockquote { font-size: 20px; }
  .review-side { grid-column: auto; }
  .tip-grid { gap: 42px; }
  .area-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 19px; }
  .form-head { display: block; }
  .form-head small { display: block; margin-top: 5px; }
  .footer-top { align-items: flex-start; }
  .footer-brand { width: 210px; }
  .footer-call { width: 100%; border-left: 0; padding-left: 0; }
  .footer-bottom { display: block; padding: 19px 0; }
  .footer-bottom p + p { margin-top: 7px; }
  .mobile-call {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 12px 15px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(244,91,11,.35);
    font-size: 12px;
    font-weight: 900;
  }
  .mobile-call svg { width: 17px; fill: #fff; }
}
