:root {
  color-scheme: light;
  color: #23352f;
  background: #f7f3eb;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  --sage: #4f6f57;
  --sage-dark: #264033;
  --sage-soft: #eef4ed;
  --cream: #f7f3eb;
  --ivory: #fffdf8;
  --text: #23352f;
  --muted: #445048;
  --shadow: 0 22px 60px rgba(20, 39, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 111, 87, 0.1), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, #f4efe7 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(79, 111, 87, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 111, 87, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38, 64, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: -1.8rem;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-text {
  color: var(--sage-dark);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(38, 64, 51, 0.18);
}

.nav-toggle {
  display: none;
  background: var(--sage-dark);
  border: none;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}
.site-nav.nav-open { display:flex; position: absolute; top: 64px; right: 18px; background: rgba(255,255,255,0.96); padding: 0.8rem 1rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(20,39,31,0.08); flex-direction: column; }
.site-nav.nav-open a { color: var(--sage-dark); }


.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 3.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--sage-dark);
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 680px;
  margin: 1.25rem 0 1.5rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.hero-cta-note {
  margin: 0 0 1.1rem;
  color: var(--sage);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: #fff;
  box-shadow: 0 18px 44px rgba(38, 64, 51, 0.18);
  font-weight: 700;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--sage-dark);
  border-color: rgba(38, 64, 51, 0.16);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-pills span {
  display: inline-flex;
  background: #fefcf8;
  border: 1px solid rgba(38, 64, 51, 0.12);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  color: var(--sage-dark);
  box-shadow: 0 8px 20px rgba(38, 64, 51, 0.05);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: float 6s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 420px;
}

.media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(38, 64, 51, 0.1) 100%);
  z-index: 1;
}

.media-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(38, 64, 51, 0.08);
  box-shadow: 0 16px 40px rgba(38, 64, 51, 0.06);
}

.hero-strip div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-strip strong {
  color: var(--sage-dark);
}

.hero-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4.25rem 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.08;
  color: var(--sage-dark);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
}

.about-card {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: white;
  border-radius: 1.6rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-highlight {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-button,
.contact-hero-button {
  margin-top: 0.25rem;
}

.about-stats div {
  background: rgba(255, 255, 255, 0.11);
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.about-stats span {
  font-size: 0.95rem;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(38, 64, 51, 0.08);
  border-radius: 1.35rem;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(38, 64, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(38, 64, 51, 0.12);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  color: var(--sage-dark);
}

.service-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  color: var(--sage-dark);
  font-weight: 700;
}

.inline-cta::after {
  content: '→';
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.inline-cta:hover::after {
  transform: translateX(3px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-grid figure {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(38, 64, 51, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(38, 64, 51, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(38, 64, 51, 0.12);
}

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

.gallery-grid figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 8, 0.65);
  z-index: 60;
  padding: 2rem;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(10, 20, 12, 0.6);
}

.lightbox-caption {
  margin-top: 0.9rem;
  color: #eef4ed;
  font-weight: 600;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.lightbox-close { top: 18px; right: 22px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .trust-strip-inner,
  .showcase-inner,
  .trust-inner,
  .contact-info-panel .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip-inner,
  .showcase-inner,
  .trust-inner,
  .contact-info-panel .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .lightbox-img { max-width: 96vw; max-height: 70vh; }
}

.contact-info {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.contact-info strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sage-dark);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(38, 64, 51, 0.08);
  box-shadow: 0 16px 40px rgba(38, 64, 51, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(38, 64, 51, 0.12);
  border-radius: 0.95rem;
  background: #fffefb;
}

.contact-form button {
  width: fit-content;
}

.form-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: #f7fbf7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
/* fallback animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal.in-view { animation: fadeUp 0.8s ease both; }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .service-grid,
  .gallery-grid,
  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .hero-grid,
  .split-grid,
  .service-grid,
  .hero-strip,
  .about-stats,
  .footer-inner,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .button {
    width: 100%;
  }
}

/* Additional polish for premium look */
.hero-media {
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(.2,.9,.2,1), box-shadow 0.4s ease;
}
.hero-media:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 36px 90px rgba(20, 39, 31, 0.18);
}
.hero-media img { filter: saturate(1.05) contrast(1.02); }

.hero-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
  color: var(--sage-dark);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(38,64,51,0.08);
}

.header-phone { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.header-phone:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(38,64,51,0.18); }

.gallery-grid figure img { transition: transform 0.45s cubic-bezier(.2,.9,.2,1), filter 0.3s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); filter: saturate(1.08) contrast(1.02); }

.gallery-grid figure:first-child { transform-origin: center; }

/* slightly larger gallery images on wide screens */
@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
  .gallery-grid figure:nth-child(1) img { height: 280px; }
  .gallery-grid figure:nth-child(2) img { height: 260px; }
}

/* subtle focus ring for keyboard users */
figure[tabindex] { outline: none; }
figure[tabindex]:focus { box-shadow: 0 28px 60px rgba(38,64,51,0.12); transform: translateY(-6px); }

/* Premium hero and layout updates */
.hero { position: relative; min-height: 80vh; display: grid; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: contrast(0.9) saturate(0.95) brightness(0.55); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,8,0.5), rgba(10,12,8,0.68)); z-index:1; backdrop-filter: blur(2px); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: center; padding: 6rem 0; }
.hero-copy { color: #fff; max-width: 760px; }
.hero-copy .eyebrow { color: #bfe6c9; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.hero-copy h1 { font-size: clamp(2.4rem, 4.2vw, 4.8rem); line-height: 1; margin: 0 0 1rem; letter-spacing: -0.02em; color: #fffdf8; text-shadow: 0 4px 24px rgba(0,0,0,0.5); }
/* .hero-copy .lead (not just .lead) — needs to out-specificity the
   legacy ".hero-copy p" rule above (class+type beats a lone class,
   regardless of which one comes later in the file), which was silently
   keeping this text in the dark --muted color meant for light
   backgrounds instead of white. */
.hero-copy .lead {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  background: rgba(8,10,7,0.55);
  backdrop-filter: blur(4px);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  display: inline-block;
}
.hero-actions { display:flex; gap:1rem; margin-bottom:1rem; }
.button.large { padding: 1.25rem 1.8rem; font-size: 1.05rem; border-radius: 12px; }
.button.button-secondary { background: rgba(255,255,255,0.12); color: #fff; border:1px solid rgba(255,255,255,0.08); }
.hero-features { display:flex; gap:1rem; flex-wrap: wrap; list-style:none; padding:0; margin:1rem 0 0; color: rgba(255,255,255,0.85); }
.hero-features span { background: rgba(255,255,255,0.08); padding:0.65rem 0.95rem; border-radius:999px; font-weight:600; }
.button-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: #fff;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 14px 34px rgba(38, 64, 51, 0.16);
}

.trust-strip {
  padding: 1.5rem 0 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 1.9fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(38, 64, 51, 0.08);
  border-radius: 1.35rem;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 24px 60px rgba(20, 39, 31, 0.06);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 111, 87, 0.12), rgba(79, 111, 87, 0.06));
  color: var(--sage-dark);
  padding: 0.95rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.showcase {
  padding-top: 0;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.trust-list div {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(38, 64, 51, 0.08);
  box-shadow: 0 16px 40px rgba(20, 39, 31, 0.06);
}

.testimonial-card {
  background: linear-gradient(180deg, #274936, #6aa874);
  color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.testimonial-author {
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-stats div {
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 0;
}

.testimonial-stats strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.hero-divider { height: 32px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.06)); margin-top:1.5rem; border-radius: 12px; }

/* Why grid */
.why-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; margin-top:1.5rem; }
.why-card { background: rgba(255,255,255,0.98); padding:1.2rem; border-radius:12px; box-shadow: 0 18px 48px rgba(20,39,31,0.06); text-align:center; }
.why-icon { margin-bottom:0.6rem; }

/* process */
.process-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; margin-top:1.25rem; }
.process-step { background: linear-gradient(180deg,#fff,#fbfbfb); border-radius:12px; padding:1.2rem; text-align:center; box-shadow: 0 16px 40px rgba(20,39,31,0.06); }
.step-num { background: linear-gradient(135deg,#274936,#6aa874); color:#fff; width:44px; height:44px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:0.8rem; }

/* before-after */
.ba-wrap { display:grid; grid-template-columns: 1fr 1fr; gap:1rem; align-items:stretch; }
.ba-left img, .ba-right img { width:100%; height:420px; object-fit:cover; border-radius:12px; box-shadow:0 18px 48px rgba(20,39,31,0.06); }

/* faq */
.faq-list details { background:#fff; padding:1rem; border-radius:10px; margin-bottom:0.75rem; box-shadow:0 12px 30px rgba(20,39,31,0.04); }
.faq-list summary { cursor:pointer; font-weight:700; }

/* contact panel */
.contact-section { gap:2rem; }
.contact-info-panel .contact-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap:0.75rem; margin:1rem 0; }
.contact-info-panel .card { background:rgba(255,255,255,0.98); padding:0.9rem; border-radius:10px; box-shadow:0 12px 30px rgba(20,39,31,0.05); min-width:0; }
.contact-info-panel .card p, .contact-info-panel .card a { overflow-wrap: anywhere; }

.cta-prefooter { margin-top:2rem; display:flex; justify-content:center; }
.cta-card { background:linear-gradient(90deg, #274936, #6aa874); color:#fff; padding:1.6rem; border-radius:14px; box-shadow:0 28px 80px rgba(20,39,31,0.18); text-align:center; }

/* floating call */
.floating-call { position: fixed; right: 18px; bottom: 18px; background: linear-gradient(135deg,#ffb74d,#ff8a00); color:#0b0b0b; padding:12px 14px; border-radius:999px; box-shadow:0 18px 44px rgba(0,0,0,0.2); z-index:999; display:none; text-decoration:none; font-weight:700; }
@media (max-width: 760px) { .floating-call { display:inline-flex; align-items:center; } .hero-inner { grid-template-columns: 1fr; padding:4rem 0; } .process-grid { grid-template-columns: 1fr; } .why-grid { grid-template-columns: 1fr; } .ba-wrap { grid-template-columns: 1fr; } }

/* small tweaks for hero contrast on mobile */
@media (max-width: 560px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content .lead { font-size: 1rem; }
}

/* Mobile layout fixes — these selectors have unconditional base rules
   declared later in this file (.trust-strip-inner, .showcase-inner,
   .trust-inner, .contact-info-panel .contact-cards) which, at equal
   specificity, silently beat the earlier responsive media queries near
   the top of the file regardless of viewport. Re-asserted here, last in
   source order, so mobile actually collapses to one column. */
@media (max-width: 760px) {
  .trust-strip-inner,
  .showcase-inner,
  .trust-inner {
    grid-template-columns: 1fr !important;
  }

  .contact-info-panel .contact-cards {
    grid-template-columns: 1fr !important;
  }

  .testimonial-stats {
    grid-template-columns: 1fr !important;
  }
}

