:root {
  --navy: #06111f;
  --navy-2: #0b1f3a;
  --blue: #1e63ff;
  --blue-2: #4f8cff;
  --white: #ffffff;
  --ink: #f7f9fd;
  --dark-text: #07111f;
  --muted: #657287;
  --muted-on-dark: #b9c3d2;
  --line: rgba(30, 99, 255, 0.24);
  --panel: rgba(7, 17, 31, 0.84);
  --panel-solid: #0a1626;
  --danger: #ff4d4d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark-text);
  background: #f5f8fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.top-contact-bar {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(30, 99, 255, 0.24);
}

.top-contact-bar span {
  opacity: 0.9;
}

.top-contact-bar a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.16);
}

.top-contact-bar a:hover {
  background: var(--white);
  color: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(3, 9, 18, 0.92);
  backdrop-filter: blur(18px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.top-bar-page .site-header {
  top: 42px;
  background: rgba(3, 9, 18, 0.92);
  backdrop-filter: blur(18px);
}

.top-bar-page .legal-page {
  padding-top: 146px;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(3, 9, 18, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: clamp(178px, 18vw, 238px);
  min-width: 178px;
  padding-top: 18px;
}

.brand-mark {
  position: absolute;
  inset: 0 0 auto;
  height: 42px;
  pointer-events: none;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 0;
  height: 34px;
  border-top: 4px solid var(--blue);
  border-radius: 100% 100% 0 0;
  transform: scaleY(0.72);
  transform-origin: top center;
}

.brand-text {
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 100%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-text strong {
  display: inline-flex;
  justify-content: center;
  gap: 0.52em;
  width: 100%;
  color: var(--white);
  font-size: clamp(0.92rem, 1.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1;
}

.brand-text strong span {
  color: var(--blue);
}

.brand-text em {
  position: relative;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 12px;
  width: 82%;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.52rem, 0.74vw, 0.72rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1.6;
}

.brand-text em::before,
.brand-text em::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  color: var(--blue-2);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 174px clamp(20px, 6vw, 82px) 94px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.74), rgba(2, 7, 14, 0.42) 42%, rgba(2, 7, 14, 0.04)),
    linear-gradient(0deg, rgba(2, 7, 14, 0.46), rgba(2, 7, 14, 0) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.home-hero {
  min-height: auto;
  align-items: start;
  background:
    radial-gradient(circle at 90% 12%, rgba(30, 99, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  color: var(--dark-text);
  padding-top: 126px;
  padding-bottom: 48px;
}

.home-hero .hero-image {
  display: none;
}

.home-hero .hero-scrim {
  display: none;
}

.home-hero .hero-content {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: stretch;
  width: min(1180px, 100%);
  max-width: none;
  margin: 0 auto;
}

.home-hero h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--dark-text);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 0.96;
}

.home-hero .hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
}

.hero-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 24px) 0;
}

.home-hero .eyebrow {
  color: var(--blue);
}

.hero-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-quick-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid rgba(30, 99, 255, 0.18);
  background: var(--white);
  color: var(--blue);
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 10vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-text {
  background: var(--white);
  color: var(--blue);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(2, 7, 14, 0.48);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-whatsapp {
  background: #0f8f57;
  color: var(--white);
}

.hero-emergency-form {
  display: grid;
  gap: 14px;
  max-width: none;
  margin-top: 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.14);
}

.hero-form-heading {
  display: grid;
  gap: 2px;
  color: var(--dark-text);
}

.hero-form-heading strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-form-heading span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

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

.hero-message {
  grid-column: 1 / -1;
}

.hero-emergency-form label {
  display: grid;
  gap: 6px;
  color: var(--dark-text);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-emergency-form input,
.hero-emergency-form select,
.hero-emergency-form textarea,
.hero-emergency-form button {
  min-height: 50px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
}

.hero-emergency-form input,
.hero-emergency-form select,
.hero-emergency-form textarea {
  padding: 0 14px;
  color: var(--dark-text);
  background: #f7faff;
  outline: none;
}

.hero-emergency-form textarea {
  min-height: 82px;
  padding-top: 12px;
  resize: vertical;
}

.hero-emergency-form button {
  padding: 0 18px;
  border-color: transparent;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
}

.urgent-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.urgent-bar div {
  min-height: 104px;
  padding: 26px clamp(20px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.urgent-bar div:last-child {
  border-right: 0;
}

.urgent-bar strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark-text);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.1;
}

.urgent-bar span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(48px, 6vw, 86px) clamp(20px, 6vw, 82px);
}

.section-heading {
  max-width: 920px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.team-copy p,
.contact-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
}

.intro-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(30, 99, 255, 0.1), transparent 30%),
    #f5f8fc;
}

.quick-services {
  background: var(--white);
}

.promise-grid,
.process-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  background: var(--line);
}

.promise-card,
.process-step,
.review-card {
  min-height: 178px;
  padding: 24px;
  background: var(--white);
}

.icon,
.service-icon,
.process-step span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 99, 255, 0.48);
  border-radius: var(--radius);
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 950;
}

.promise-card p,
.process-step p,
.review-card p,
.service-card p {
  color: var(--muted);
}

.service-card a:hover {
  color: var(--blue-2);
}

.split-section,
.team-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: var(--white);
}

.split-image,
.team-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image img,
.team-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--blue-2);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 44px;
  height: 2px;
  margin-left: 12px;
  background: currentColor;
}

.services-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  padding: 1px;
  background: var(--line);
}

.service-card {
  min-height: 184px;
  padding: 22px;
  background: var(--white);
}

.team-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(30, 99, 255, 0.08)),
    #f5f8fc;
}

.team-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.team-checks span,
.area-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--dark-text);
  font-weight: 850;
}

.process-section {
  background: #eef4ff;
}

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

.review-section {
  background: #f5f8fc;
}

.review-card p {
  font-size: 1.08rem;
}

.review-card span {
  color: var(--blue-2);
  font-weight: 900;
}

.areas-section {
  background:
    linear-gradient(180deg, rgba(30, 99, 255, 0.09), transparent 42%),
    var(--white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-section {
  background:
    linear-gradient(90deg, #f5f8fc, #ffffff),
    var(--white);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: inline-flex;
  width: fit-content;
  color: var(--dark-text);
  font-size: 1.22rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dark-text);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--dark-text);
  background: #f7faff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 32px;
  padding: 62px clamp(20px, 6vw, 82px) 36px;
  border-top: 1px solid var(--line);
  background: #02070f;
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-actions {
  position: fixed;
  z-index: 70;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(3, 9, 20, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.mobile-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

.mobile-actions a:nth-child(2) {
  background: var(--white);
  color: var(--blue);
}

.mobile-actions a:nth-child(3) {
  background: #0f8f57;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.92), rgba(3, 9, 20, 0.7)),
    url("assets/response-hero-day.png") center / cover;
}

.legal-page {
  padding-top: 104px;
  background:
    radial-gradient(circle at 16% 0%, rgba(30, 99, 255, 0.14), transparent 28%),
    #f5f8fc;
}

.service-page .hero {
  min-height: 74svh;
}

.service-page .hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 8vw, 7.2rem);
}

.service-detail {
  background: #f5f8fc;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-weight: 760;
}

.detail-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-panel p {
  color: var(--muted);
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--dark-text);
  font-weight: 850;
}

.service-nav a:hover {
  border-color: var(--blue);
  color: var(--blue-2);
}

.legal-page h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.success-page-simple {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-page-simple .legal-content {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
}

.success-page-simple h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
}

.success-page-simple p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-intro {
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-top: 36px;
}

.legal-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-block h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-block p {
  margin-bottom: 10px;
  color: var(--muted);
}

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

.legal-block strong {
  color: var(--dark-text);
}

.legal-footer {
  display: block;
}

.success-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 9, 20, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.success-panel h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

.success-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 1080px) {
  .services-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: 172px;
    min-width: 172px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 9, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92svh;
    padding: 154px 20px 92px;
  }

  .home-hero {
    padding: 118px 20px 42px;
  }

  .home-hero .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    padding: 0;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(2, 7, 14, 0.96), rgba(2, 7, 14, 0.78)),
      linear-gradient(0deg, rgba(2, 7, 14, 0.86), rgba(2, 7, 14, 0.22));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .button {
    width: 100%;
  }

  .hero-form-grid {
    grid-template-columns: 1fr;
  }

  .urgent-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .urgent-bar div {
    min-height: 96px;
  }

  .section {
    padding: 66px 20px;
  }

  .promise-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .team-section,
  .contact-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .team-section .team-image {
    order: 2;
  }

  .services-panel {
    grid-template-columns: 1fr;
  }

  .service-card,
  .promise-card,
  .process-step,
  .review-card {
    min-height: auto;
  }

  .team-checks {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 560px) {
  .top-contact-bar {
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .top-contact-bar span {
    display: none;
  }

  .top-contact-bar a {
    min-height: 32px;
    padding: 0 9px;
  }

  .site-header {
    top: 48px;
    min-height: 76px;
    padding: 10px 16px;
  }

  body:not(.top-bar-page) .site-header {
    top: 0;
  }

  .brand {
    width: 196px;
    min-width: 196px;
    padding-top: 14px;
  }

  .brand-mark {
    height: 32px;
  }

  .brand-mark::before {
    height: 26px;
    border-top-width: 3px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .brand-text em {
    width: 84%;
    font-size: 0.6rem;
  }

  .top-bar-page .legal-page {
    padding-top: 148px;
  }

  .hero {
    padding-top: 118px;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .urgent-bar {
    grid-template-columns: 1fr;
  }

  .urgent-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .urgent-bar div:last-child {
    border-bottom: 0;
  }

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

  .services-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 142px;
    padding: 16px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .split-image img,
  .team-image img {
    min-height: 300px;
  }
}
