:root {
  --primary: #0B6E4F;
  --primary-dark: #074d39;
  --header-dark: #003f2b;
  --secondary: #F4F7F5;
  --cta: #E63946;
  --cta-dark: #c72633;
  --text: #222222;
  --muted: #5f6b66;
  --border: #dfe8e3;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(11, 110, 79, 0.12);
  --shadow-hover: 0 22px 60px rgba(11, 110, 79, 0.18);
  --radius: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  direction: rtl;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(230, 57, 70, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 64px 0;
  max-width: 100vw;
  overflow-x: hidden;
}

.section-soft {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(11, 110, 79, 0.13) 0, rgba(11, 110, 79, 0) 34%),
    radial-gradient(circle at 88% 92%, rgba(23, 166, 115, 0.14) 0, rgba(23, 166, 115, 0) 32%),
    linear-gradient(180deg, #f7fbf9 0%, #eef6f2 100%);
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 28px 24px;
  z-index: -1;
  border: 1px solid rgba(11, 110, 79, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: var(--header-dark);
  border-bottom: 0;
  border-bottom-left-radius: 54px;
  box-shadow: 0 12px 30px rgba(0, 63, 43, 0.16);
  backdrop-filter: blur(14px);
  max-width: 100vw;
  overflow-x: hidden;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 15px;
}

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

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
}

.header-actions {
  display: none;
}

.btn {
  min-height: 48px;
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #014c35);
  box-shadow: 0 14px 30px rgba(11, 110, 79, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--cta), #ef1d27);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.24);
}

.btn-whatsapp:hover {
  background: var(--cta-dark);
}

.btn-outline {
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.36);
  background: var(--white);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
}

.btn-dark {
  color: var(--white);
  background: var(--primary-dark);
}

.btn-lg {
  width: 100%;
  min-height: 56px;
  font-size: 17px;
  padding: 14px 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding-top: 48px;
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 16% 18%, rgba(11, 110, 79, 0.16) 0, rgba(11, 110, 79, 0) 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fbf9 48%, #eef6f2 100%);
  max-width: 100vw;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px 0 auto;
  height: 260px;
  background: linear-gradient(90deg, rgba(11, 110, 79, 0.08), rgba(11, 110, 79, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -58px;
  width: 110%;
  height: 116px;
  background: var(--white);
  border-top: 22px solid var(--primary);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
  transform-origin: center;
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid > *,
.cards-grid > *,
.split-layout > *,
.cta-actions > *,
.contact-actions > *,
.mobile-sticky-cta > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  text-align: center;
  order: 1;
}

.hero-copy .eyebrow,
.hero-copy .hero-text {
  max-width: 680px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: clamp(34px, 8vw, 70px);
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-shadow: 0 5px 14px rgba(11, 110, 79, 0.12);
}

h1 span {
  display: block;
}

.mobile-label {
  display: none;
}

.hero-subtitle {
  margin-bottom: 16px;
  color: #14221d;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.35;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-text,
.section-heading p,
.intro p,
.seo-section p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

.hero-text {
  color: #222222;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin: 28px 0 20px;
}

.hero-phone {
  width: fit-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #014c35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(11, 110, 79, 0.22);
  font-weight: 800;
}

.hero-phone svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.hero-phone strong {
  color: var(--white);
  font-size: 20px;
  direction: ltr;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #14221d;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 15px;
}

.trust-list svg {
  width: 20px;
  color: var(--primary);
}

.hero-card {
  position: relative;
  order: 2;
  isolation: isolate;
  min-height: clamp(360px, 50vw, 640px);
  overflow: visible;
  border: 10px solid var(--white);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 63, 43, 0.2);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.2), rgba(230, 57, 70, 0.12));
  transform: rotate(-3deg);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 63, 43, 0) 48%, rgba(0, 63, 43, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 63, 43, 0.22), rgba(0, 63, 43, 0) 45%);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 48vw, 620px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 38% center;
  border-radius: 24px;
}

.hero-image-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 63, 43, 0.14);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 900;
}

.hero-image-badge svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.hero-image-badge-top {
  top: 18px;
  right: 18px;
}

.hero-image-badge-side {
  top: 82px;
  left: 18px;
}

.emergency-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(0, 63, 43, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 63, 43, 0.22);
  backdrop-filter: blur(10px);
}

.emergency-card span,
.emergency-card strong {
  display: block;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

#services {
  position: relative;
  padding-top: 72px;
  padding-bottom: 92px;
}

#services .section-heading {
  position: relative;
  max-width: 840px;
  margin-bottom: 42px;
  padding: 0 18px;
}

#services .section-heading::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, var(--primary), #17a673);
  border-radius: 999px;
}

#services .section-heading h2 {
  color: #0b2018;
}

#services .section-heading p:last-child {
  max-width: 680px;
  margin-inline: auto;
}

.service-grid {
  gap: 20px;
}

.align-start {
  margin-inline: 0;
  text-align: start;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.card {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card {
  position: relative;
  padding: 0 0 24px;
  overflow: hidden;
  border-color: rgba(11, 110, 79, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 63, 43, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 110, 79, 0.25);
  box-shadow: var(--shadow-hover);
}

.service-card > svg,
.feature-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--primary);
  background: #e8f4ef;
  padding: 9px;
  border-radius: 14px;
}

.service-thumb {
  position: relative;
  aspect-ratio: 720 / 430;
  overflow: hidden;
  background: #dce9e3;
}

.service-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 63, 43, 0) 44%, rgba(0, 63, 43, 0.3) 100%),
    linear-gradient(90deg, rgba(0, 63, 43, 0.16), rgba(0, 63, 43, 0) 44%);
  pointer-events: none;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card:hover .service-thumb img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

.service-card > svg {
  display: grid;
  position: relative;
  z-index: 2;
  margin: -26px auto 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #17a673);
  border: 5px solid var(--white);
  box-shadow: 0 14px 26px rgba(11, 110, 79, 0.18);
  box-sizing: content-box;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
  padding-inline: 22px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #0b2018;
}

.feature-card {
  padding: 22px;
}

.service-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-card > svg {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.cta-band {
  padding: 36px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #0d8a61);
}

.cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 6vw, 34px);
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.areas-grid span {
  padding: 10px 14px;
  color: var(--primary-dark);
  background: #eaf5f0;
  border: 1px solid #d7eadf;
  border-radius: 999px;
  font-weight: 800;
}

.checklist-card h3 {
  margin-bottom: 18px;
}

.checklist-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.checklist-card svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.04);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: var(--text);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: start;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform 180ms ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  padding-top: 32px;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 77, 57, 0.96), rgba(11, 110, 79, 0.94)),
    var(--primary);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-card .eyebrow,
.contact-card p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-card h2 {
  color: var(--white);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 48px 0 96px;
  color: rgba(255, 255, 255, 0.82);
  background: #082e23;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: auto;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  max-width: none;
  overflow: hidden;
  direction: rtl;
}

.desktop-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 58;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 48px;
  color: var(--white);
  background: linear-gradient(90deg, #003f2b, #0B6E4F);
  box-shadow: 0 -12px 28px rgba(0, 63, 43, 0.18);
}

.desktop-contact-bar a,
.desktop-contact-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-weight: 900;
}

.mobile-sticky-cta a {
  min-height: 54px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.sticky-call {
  background: var(--cta);
}

.sticky-whatsapp {
  background: #128C7E;
}

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

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

@media (max-width: 899px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .brand {
    max-width: 100%;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    z-index: 49;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--primary-dark);
  }

  .site-nav a:hover {
    background: var(--secondary);
  }
}

@media (max-width: 559px) {
  .container {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .hero-copy,
  .hero-text,
  .hero-actions,
  .trust-list {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-card {
    max-width: 100%;
  }

  h1 {
    width: 100%;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.35;
    text-align: center;
  }

  h1 span {
    display: block;
  }

  .hero-text {
    max-width: 330px;
    margin-inline: auto;
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 210px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 82px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-card {
    min-height: 330px;
    border-width: 7px;
    border-radius: 24px;
  }

  .hero-card img {
    min-height: 316px;
    aspect-ratio: 4 / 5;
    border-radius: 17px;
    object-position: 33% center;
  }

  .hero-card::before {
    inset: 12px;
    border-radius: 22px;
  }

  .hero-card::after {
    border-radius: 17px;
  }

  .hero-image-badge {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-image-badge-top {
    top: 12px;
    right: 12px;
  }

  .hero-image-badge-side {
    top: 60px;
    left: 12px;
  }

  .emergency-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .btn-lg {
    font-size: 16px;
  }
}

@media (min-width: 560px) {
  .hero-actions,
  .cta-actions,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 768px) {
  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    text-align: start;
  }

  .hero-copy .eyebrow,
  .hero-copy .hero-text {
    margin-inline: 0;
  }

  .hero-phone {
    margin-inline: 0;
  }

  .cta-inner,
  .contact-card,
  .footer-bottom {
    grid-template-columns: 1.4fr auto;
  }

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

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  body {
    padding-bottom: 48px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions {
    display: block;
  }

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

  .hero-actions .btn-lg {
    width: auto;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .desktop-contact-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 64px;
  }
}

@media (min-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 58px;
  }

  .hero-card {
    min-height: 610px;
  }

  .service-card h3 {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
