:root {
  --cream: #faf6ef;
  --cream-dark: #f0e9dc;
  --sage: #7a9e7e;
  --sage-light: #a8c5ac;
  --sage-dark: #4e7a52;
  --orange: #d9703c;
  --orange-light: #f2a97a;
  --orange-pale: #fdebd9;
  --brown: #4a3728;
  --brown-mid: #7a5c46;
  --text: #2e2416;
  --text-muted: #7a6a58;
  --card-bg: #ffffff;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 4px 32px rgba(74, 55, 40, 0.08);
  --shadow-hover: 0 12px 48px rgba(74, 55, 40, 0.15);
  --transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── MAX-WIDTH CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTION DIVIDER STRIP ── */
.section-strip {
  background: var(--cream-dark);
  border-top: 1.5px solid rgba(122, 94, 70, 0.09);
  border-bottom: 1.5px solid rgba(122, 94, 70, 0.09);
  padding: 11px 0;
  text-align: center;
}

.section-strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.section-strip-inner::before,
.section-strip-inner::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(122, 94, 70, 0.25);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(122, 94, 70, 0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--brown);
  text-decoration: none;
}

.nav-logo-paw {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--brown);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  transition:
    background 0.2s,
    transform 0.2s;
}

.nav-cta:hover {
  background: var(--orange) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 5%;
  top: -15%;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 126, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(217, 112, 60, 0.25);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Lora", serif;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--brown);
  margin-bottom: 16px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.93rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(217, 112, 60, 0.35);
}

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(74, 55, 40, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown-mid);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--orange);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1;
}
.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideLeft 0.9s 0.2s ease both;
}

.hero-img-wrap {
  width: 390px;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.hero-card-float.top {
  top: 22px;
  left: -26px;
}
.hero-card-float.bottom {
  bottom: 28px;
  right: -26px;
  animation-delay: -2s;
}

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

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.float-icon.green {
  background: #e8f5e9;
}
.float-icon.orange {
  background: var(--orange-pale);
}

.float-text {
  display: flex;
  flex-direction: column;
}
.float-text strong {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brown);
}
.float-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── SECTION WRAPPERS ── */
.section-wrap {
  padding: 68px 0;
}
.section-wrap-sm {
  padding: 18px 0 68px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}

.section-title {
  font-family: "Lora", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 11px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── SERVICES ── */
.services-bg {
  background: var(--cream-dark);
  border-radius: 36px;
  padding: 44px 40px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 26px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid rgba(122, 94, 70, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card.featured {
  background: var(--brown);
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(217, 112, 60, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.service-card.featured::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 70%
  );
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon.sage {
  background: #e3ede4;
  color: var(--sage-dark);
}
.service-icon.orange {
  background: var(--orange-pale);
  color: var(--orange);
}
.service-icon.white {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.service-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 3px;
}
.service-card.featured .service-label {
  color: rgba(255, 255, 255, 0.5);
}

.service-name {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
}
.service-card.featured .service-name {
  color: white;
}

.service-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.62);
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1.5px solid rgba(122, 94, 70, 0.07);
}

.service-card.featured .service-footer {
  border-color: rgba(255, 255, 255, 0.1);
}

.price {
  display: flex;
  flex-direction: column;
}
.price-from {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}
.price-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brown);
}
.service-card.featured .price-from {
  color: rgba(255, 255, 255, 0.45);
}
.service-card.featured .price-num {
  color: white;
}

.service-tag {
  background: rgba(122, 158, 126, 0.12);
  color: var(--sage-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 100px;
}
.service-card.featured .service-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* ── AREAS ── */
.areas-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.areas-map {
  background: linear-gradient(135deg, #e8f0e9 0%, #d5e8d8 100%);
  border-radius: var(--radius-xl);
  height: 330px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.area-pins {
  position: absolute;
  inset: 0;
}

.area-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pin-dot {
  width: 13px;
  height: 13px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(217, 112, 60, 0.4);
  position: relative;
  animation: pinPop 2s ease-in-out infinite;
}

.pin-dot::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(217, 112, 60, 0.2);
  border-radius: 50%;
  top: -7px;
  left: -7px;
  animation: pingRing 2s ease-in-out infinite;
}

@keyframes pingRing {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes pinPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.pin-label {
  background: white;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--brown);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(74, 55, 40, 0.12);
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1.5px solid rgba(122, 94, 70, 0.1);
  border-radius: 100px;
  padding: 8px 15px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brown);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: default;
}

.area-chip:hover {
  background: var(--orange-pale);
  border-color: rgba(217, 112, 60, 0.3);
  color: var(--orange);
  transform: translateY(-2px);
}
.area-chip i {
  width: 14px;
  height: 14px;
}
/* ── TRUST ── */
.trust-section {
  background: var(--brown);
  border-radius: 36px;
  padding: 28px 40px 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 24px;
}

.trust-item {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background 0.25s;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
}

.trust-title {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}
.trust-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.trust-header .section-tag {
  color: var(--orange-light);
}
.trust-header .section-title {
  color: white;
}
.trust-header .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* ── TESTIMONIAL ── */
.testimonial-strip {
  background: var(--orange);
  border-radius: 36px;
  padding: 28px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.quote-mark {
  font-family: "Lora", serif;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 0.8;
  margin-bottom: 8px;
}

.quote-text {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: white;
  line-height: 1.6;
  max-width: 500px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info strong {
  display: block;
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}
.author-info span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  font-weight: 600;
}
/* ── REVIEWS ROW ── */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.review-card {
  background: var(--orange);
  border-radius: 28px;
  padding: 20px 22px 18px; /* tighter top padding */
  display: flex;
  flex-direction: column;
  gap: 10px; /* less gap so content hugs the top */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(217, 112, 60, 0.2);
}

.review-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto; /* pushes photo+author to bottom naturally */
}

.review-dog-img {
  width: 110px; /* was 72px */
  height: 124px; /* was 80px — keeps the same portrait ratio */
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .reviews-row {
    grid-template-columns: 1fr;
  }
  .review-card--featured {
    margin-top: 0;
  }
}

.quote-mark {
  font-family: "Lora", serif;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 0.8;
  margin-bottom: 8px;
}

.quote-text {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: white;
  line-height: 1.6;
  max-width: 500px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info strong {
  display: block;
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}
.author-info span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ── CTA ── */
.cta-section {
  padding: 72px 0 88px;
  text-align: center;
}

.cta-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px 52px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-hover);
  border: 1.5px solid rgba(122, 94, 70, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 126, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: -55px;
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle,
    rgba(217, 112, 60, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-emoji {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.cta-title {
  font-family: "Lora", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 11px;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 100px;
  border: 2px solid rgba(74, 55, 40, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--cream);
  border-color: var(--brown);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--brown);
  border-radius: 32px 32px 0 0;
  margin: 0 12px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--orange-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .container,
  .nav-inner,
  .hero-inner,
  .footer-inner {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 36px 0 32px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .section-wrap {
    padding: 48px 0;
  }
  .services-bg,
  .trust-section {
    border-radius: 22px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .areas-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-strip {
    grid-template-columns: 1fr;
    padding: 30px 22px;
    border-radius: 22px;
  }
  .cta-box {
    padding: 40px 22px;
  }
  footer {
    margin: 0;
    border-radius: 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
