:root {
  --green: #12804c;
  --green-deep: #184d35;
  --green-dark: #133e2c;
  --green-soft: #e8f5ed;
  --lime: #d8ff7a;
  --red: #ff4f45;
  --gold: #ffbf47;
  --white: #ffffff;
  --canvas: #f7fbf8;
  --mist: #eef5f1;
  --soft: #f3f8f4;
  --ink: #122019;
  --muted: #486052;
  --line: #d9e7dd;
  --shadow: 0 24px 60px rgba(10, 29, 18, 0.1);
  --shadow-strong: 0 28px 70px rgba(10, 29, 18, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(18, 128, 76, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 79, 69, 0.08), transparent 18%),
    linear-gradient(180deg, #fbfdfb, var(--canvas));
}

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

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

main {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 248, 242, 0.95);
  border-bottom: 1px solid rgba(217, 231, 221, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(10, 29, 18, 0.08);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 10px 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: min(250px, 22vw);
  height: auto;
  border-radius: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.nav a {
  color: var(--white);
  background: linear-gradient(180deg, #21563d, #184d35);
  box-shadow: 0 18px 34px rgba(24, 77, 53, 0.2);
}

.nav a:hover,
.nav a:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: linear-gradient(180deg, #296748, #1d553a);
  box-shadow: 0 20px 38px rgba(24, 77, 53, 0.24);
}

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

.button {
  min-height: 48px;
  padding: 0 20px;
}

.button-primary,
.quote-button {
  color: var(--white);
  background: linear-gradient(135deg, #ff6a43, #ff354a);
  box-shadow: 0 18px 34px rgba(255, 53, 74, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible,
.quote-button:hover,
.quote-button:focus-visible {
  background: linear-gradient(135deg, #ff764d, #ff4255);
  box-shadow: 0 20px 36px rgba(255, 53, 74, 0.28);
}

.button-secondary,
.button-outline {
  color: #112012;
  background: linear-gradient(135deg, #d8ff7a, #b6ef55);
  box-shadow: 0 16px 30px rgba(182, 239, 85, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  background: linear-gradient(135deg, #e1ff8f, #c5f16f);
}

.button-call,
.call-button {
  color: var(--white);
  background: linear-gradient(135deg, #1fb35f, #14904a);
  box-shadow: 0 18px 34px rgba(20, 144, 74, 0.24);
}

.button-call:hover,
.button-call:focus-visible,
.call-button:hover,
.call-button:focus-visible {
  background: linear-gradient(135deg, #24bf67, #169b50);
}

.mobile-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(18, 128, 76, 0.08);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-deep);
}

.hero-banner,
.page-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner {
  padding: 92px 0 80px;
  background: linear-gradient(rgba(7, 35, 21, 0.8), rgba(7, 35, 21, 0.76));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-banner::before,
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 107, 62, 0.24), rgba(12, 107, 62, 0) 44%),
    linear-gradient(320deg, rgba(255, 100, 72, 0.16), rgba(255, 255, 255, 0) 32%);
}

.hero-banner .container,
.page-banner .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d0ff83;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  text-wrap: balance;
}

.hero-copy,
.hero-copy .hero-text {
  color: var(--white);
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  line-height: 0.96;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

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

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(216, 255, 122, 0.18);
  color: #f7ffca;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.check-item::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(216, 255, 122, 1), rgba(167, 242, 79, 1));
  box-shadow: 0 10px 18px rgba(167, 242, 79, 0.24);
  clip-path: polygon(14% 52%, 0 66%, 39% 100%, 100% 26%, 86% 12%, 37% 72%);
}

.check-item span {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-card,
.panel-card,
.service-card,
.detail-card,
.feature-card,
.blog-card,
.review-card,
.gallery-tile,
.contact-panel,
.contact-form,
.content-card,
.faq-card,
.stats-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 232, 222, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1.05;
}

.hero-card p {
  color: var(--muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-metrics div,
.stats-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--soft);
  border: 1px solid var(--line);
}

.hero-metrics strong,
.service-id,
.stats-card strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.hero-metrics span,
.stats-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 50px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(12, 107, 62, 0.05), rgba(255, 255, 255, 0));
}

.section-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro.narrow {
  max-width: 560px;
}

.section-intro h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.section-intro p:last-child,
.service-card p,
.detail-card p,
.feature-card p,
.blog-body p,
.review-card p,
.gallery-copy p,
.contact-panel p,
.form-note,
.site-footer p,
.content-card p,
.faq-card p,
.page-banner p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid,
.detail-grid,
.feature-grid,
.blog-grid,
.review-grid,
.gallery-grid,
.audience-grid,
.content-grid,
.related-grid,
.faq-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

.service-grid,
.detail-grid,
.feature-grid,
.blog-grid,
.review-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.detail-card,
.feature-card,
.blog-card,
.review-card,
.gallery-tile {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.detail-card:hover,
.feature-card:hover,
.blog-card:hover,
.review-card:hover,
.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(12, 107, 62, 0.18);
}

.service-card img,
.detail-card img,
.blog-card img,
.gallery-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-body,
.detail-card .card-body,
.feature-card,
.blog-body,
.review-card,
.gallery-copy,
.content-card,
.faq-card {
  padding: 24px;
}

.service-card h3,
.detail-card h2,
.feature-card h3,
.blog-body h2,
.review-card h3,
.content-card h2,
.faq-card h3 {
  font-size: 1.4rem;
}

.service-card p,
.detail-card p,
.feature-card p,
.blog-body p {
  margin: 12px 0 0;
}

.service-id {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.88rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--green);
  font-weight: 800;
}

.card-link::after {
  content: ">";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.audience-band {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background:
    linear-gradient(135deg, rgba(12, 107, 62, 0.08), rgba(12, 107, 62, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 241, 0.94));
  border-top: 1px solid rgba(12, 107, 62, 0.08);
  border-bottom: 1px solid rgba(12, 107, 62, 0.08);
}

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

.audience-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(12, 107, 62, 0.1);
  box-shadow: 0 18px 34px rgba(10, 29, 18, 0.06);
}

.audience-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  color: var(--green-deep);
  font-size: 1.08rem;
}

.audience-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  gap: 28px;
}

.slider-shell {
  overflow: hidden;
  padding: 8px 0;
}

.slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: slideLoop 26s linear infinite;
}

.slider-track img {
  width: 320px;
  height: 230px;
  flex-shrink: 0;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.1);
}

@keyframes slideLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  width: 100%;
  padding: 0 24px;
  border-radius: 999px;
  background: #283029;
  color: var(--white);
  box-shadow: var(--shadow);
}

.review-banner .stars {
  letter-spacing: 0.12em;
  color: var(--gold);
  font-size: 1.5rem;
}

.review-banner strong {
  color: #82ff47;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.review-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-badge {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 107, 62, 1), rgba(46, 153, 91, 1));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 14px 24px rgba(12, 107, 62, 0.2);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.review-card p {
  margin: 0;
}

.contact-band,
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.contact-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(216, 255, 122, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 90, 59, 0.12), transparent 20%),
    linear-gradient(135deg, #2e6b4b, #4c946e);
  box-shadow: var(--shadow-strong);
}

.contact-band .section-intro,
.contact-band .section-intro p,
.contact-band .section-intro h2 {
  color: var(--white);
}

.contact-band .section-intro p:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 242, 0.98));
}

.contact-panel h2 {
  font-size: 2rem;
}

.contact-panel a {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  font-weight: 800;
  color: var(--green);
  transition: color 0.22s ease, transform 0.22s ease;
  overflow-wrap: anywhere;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--red);
  transform: translateX(3px);
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.98);
}

.field,
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 60px;
  padding: 14px 16px;
  border: 1px solid #cadbcf;
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6a7d71;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(18, 128, 76, 0.56);
  box-shadow: 0 0 0 4px rgba(18, 128, 76, 0.12);
}

.field textarea,
.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.field-error {
  min-height: 18px;
  margin: -2px 0 0;
  color: #c81d16;
  font-size: 0.82rem;
  font-weight: 700;
}

.is-invalid input,
.is-invalid select,
.is-invalid textarea {
  border-color: rgba(217, 30, 24, 0.52);
  box-shadow: 0 0 0 4px rgba(217, 30, 24, 0.1);
}

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

.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #f5faf6;
  border: 1px solid #d7e6db;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.checkbox-chip input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--green);
}

.full-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-note {
  margin: 0;
  font-size: 0.96rem;
}

.page-banner {
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: 88px 0 68px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 77, 53, 0.9), rgba(18, 77, 53, 0.88));
}

.page-banner .container {
  max-width: 980px;
}

.page-banner .eyebrow {
  display: inline-block;
}

.page-banner h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.04;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.page-banner p:last-child {
  max-width: 56ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.services-banner {
  background-image:
    linear-gradient(135deg, rgba(24, 77, 53, 0.68), rgba(24, 77, 53, 0.56)),
    url("assets/premium_photo-1682126101027-3000da138c97.avif");
  background-position: center center;
}

.gallery-banner {
  background-image:
    linear-gradient(135deg, rgba(24, 77, 53, 0.68), rgba(24, 77, 53, 0.56)),
    url("assets/Rodents-Control-Services-1024x683.jpg");
  background-position: center center;
}

.blog-banner {
  background-image:
    linear-gradient(135deg, rgba(24, 77, 53, 0.68), rgba(24, 77, 53, 0.56)),
    url("assets/Cockroaches.jpg");
  background-position: center center;
}

.contact-banner {
  background-image:
    linear-gradient(135deg, rgba(24, 77, 53, 0.68), rgba(24, 77, 53, 0.56)),
    url("assets/spider-pest-control.png");
  background-position: center center;
}

.page-content-banner {
  background-image: url("assets/premium_photo-1682126101027-3000da138c97.avif");
}

.content-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
}

.content-card h2,
.faq-card h3 {
  margin-bottom: 14px;
}

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

.bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #34b06a);
  box-shadow: 0 8px 16px rgba(12, 107, 62, 0.2);
}

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

.related-grid .feature-card {
  height: 100%;
}

.gallery-tile {
  display: grid;
  background: rgba(255, 255, 255, 0.96);
}

.gallery-copy h3 {
  font-size: 1.2rem;
}

.site-footer {
  margin-top: 22px;
  padding: 44px 0 0;
  background: linear-gradient(180deg, rgba(231, 243, 235, 0.98), rgba(242, 248, 244, 0.98));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 22px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: flex;
  margin: 8px 0;
  color: var(--muted);
}

.site-footer a {
  align-items: center;
  transition: color 0.22s ease, transform 0.22s ease;
  overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green-deep);
  transform: translateX(3px);
  outline: none;
}

.footer-logo {
  width: 235px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 0;
  color: var(--white);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.18);
  filter: saturate(1.08);
  outline: none;
}

.social-pill svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.instagram {
  background: linear-gradient(135deg, #8e43cf, #f05f63, #f7bf5b);
}

.facebook {
  background: linear-gradient(135deg, #2b7df5, #1e67e6);
}

.whatsapp {
  background: linear-gradient(135deg, #27d367, #1ebc59);
}

.contact-panel .social-pill {
  width: 74px;
  height: 74px;
}

.footer-bottom {
  margin-top: 34px;
  padding: 22px 0;
  background:
    linear-gradient(135deg, rgba(16, 22, 17, 0.96), rgba(24, 42, 30, 0.96)),
    linear-gradient(135deg, rgba(12, 107, 62, 0.2), rgba(255, 255, 255, 0));
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  justify-content: center;
  color: inherit;
}

.thank-you-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(216, 255, 122, 0.2), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 90, 59, 0.16), transparent 22%),
    linear-gradient(180deg, #edf6ef, #ffffff);
}

.thank-you-card {
  width: min(760px, 100%);
  padding: 36px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.thank-you-card img {
  width: min(150px, 100%);
  margin: 0 auto 20px;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(12, 107, 62, 0.18);
}

.thank-you-card h1 {
  margin-bottom: 14px;
}

.thank-you-card p:last-of-type {
  max-width: 44ch;
  margin-inline: auto;
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .contact-band,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .detail-grid,
  .feature-grid,
  .blog-grid,
  .review-grid,
  .gallery-grid,
  .audience-grid,
  .stats-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    gap: 10px;
  }

  .nav a,
  .button {
    min-height: 48px;
    padding: 0 18px;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    gap: 12px;
    min-height: 82px;
  }

  .brand img {
    width: min(220px, 32vw);
  }

  .nav a,
  .button {
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
  }

  .mobile-toggle {
    display: inline-block;
    order: 3;
    margin-left: auto;
  }

  .header-actions {
    order: 2;
    display: flex;
    width: auto;
    margin-left: auto;
  }

  .header-actions .button {
    min-width: 0;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .nav {
    order: 4;
    width: 100%;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(248, 252, 249, 0.99);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .hero-copy h1,
  .page-banner h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 18px, 100%);
  }

  .nav-wrap {
    min-height: 74px;
    padding: 10px 0;
    gap: 10px;
  }

  .brand img {
    width: min(180px, 48vw);
  }

  .header-actions {
    width: 100%;
    order: 4;
    justify-content: stretch;
    gap: 10px;
  }

  .header-actions .button {
    flex: 1 1 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .mobile-toggle {
    order: 3;
    margin-left: 0;
  }

  .nav {
    top: calc(100% + 64px);
  }

  .hero-banner,
  .page-banner,
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .page-banner {
    min-height: 300px;
    text-align: center;
  }

  .hero-copy h1,
  .page-banner h1 {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }

  .hero-checklist,
  .checkbox-grid,
  .service-grid,
  .detail-grid,
  .feature-grid,
  .blog-grid,
  .review-grid,
  .gallery-grid,
  .audience-grid,
  .stats-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-cta .button {
    width: 100%;
  }

  .contact-panel,
  .contact-form,
  .hero-card,
  .service-body,
  .detail-card .card-body,
  .feature-card,
  .blog-body,
  .review-card,
  .gallery-copy,
  .content-card,
  .faq-card {
    padding: 20px;
  }

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

  .slider-track img {
    width: 260px;
    height: 190px;
  }

  .footer-logo {
    width: 190px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 14px, 100%);
  }

  .brand img {
    width: min(156px, 44vw);
  }

  .mobile-toggle {
    width: 46px;
    height: 46px;
  }

  .header-actions .button {
    min-height: 46px;
    font-size: 0.8rem;
  }

  .hero-banner,
  .page-banner,
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy h1,
  .page-banner h1 {
    font-size: clamp(1.95rem, 10.4vw, 3rem);
  }

  .hero-card h2,
  .section-intro h2,
  .detail-card h2,
  .content-card h2 {
    font-size: 1.6rem;
  }

  .service-card img,
  .detail-card img,
  .blog-card img,
  .gallery-tile img {
    height: 220px;
  }

  .slider-track img {
    width: 220px;
    height: 164px;
  }

  .social-pill,
  .contact-panel .social-pill {
    width: 58px;
    height: 58px;
  }

  .social-pill svg {
    width: 24px;
    height: 24px;
  }
}
