/* =============================================
   SERGO Appliance Repair — Area Page Design
   Unique layout · Different from Homepage & Service Pages
   Colors: Blue #2B6CB0 · Orange #E88B2E
   ============================================= */

/* --- Area Hero — Split diagonal design --- */
.area-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0C2340 55%, var(--primary) 100%);
}
.area-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, transparent 0%, rgba(232, 139, 46, 0.12) 40%, rgba(232, 139, 46, 0.06) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.area-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232, 139, 46, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(43, 108, 176, 0.1) 0%, transparent 50%);
  z-index: 1;
}
.area-hero__dots {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  border-radius: 50%;
  z-index: 1;
}
.area-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px clamp(20px, 4vw, 56px) 60px;
  width: 100%;
}
.area-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 139, 46, 0.15);
  border: 1px solid rgba(232, 139, 46, 0.3);
  color: var(--accent-light);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.area-hero__badge::before {
  content: '📍';
  font-size: 14px;
}
.area-hero__content h1 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
  max-width: 680px;
}
.area-hero__content h1 .area-highlight {
  color: var(--accent-light);
  position: relative;
}
.area-hero__sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 30px;
}
.area-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.area-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: all 0.3s var(--ease);
}
.area-hero__cta:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 8px 24px rgba(232, 139, 46, 0.4);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}
.area-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease);
}
.area-hero__phone:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}


/* --- Area Breadcrumb --- */
.area-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.area-breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
}
.area-breadcrumb__inner a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.area-breadcrumb__inner a:hover { color: var(--accent); }
.area-breadcrumb__sep {
  color: var(--gray-300);
  font-size: 11px;
}
.area-breadcrumb__current {
  color: var(--gray-600);
  font-weight: 500;
}


/* --- Area Section Wrapper --- */
.area-section {
  padding: clamp(48px, 7vw, 80px) 0;
}
.area-section--gray {
  background: var(--gray-50);
}
.area-section--blue {
  background: linear-gradient(180deg, #0C2340 0%, var(--primary-dark) 100%);
}
.area-section .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}


/* --- Area Section Headers — Centered with orange underline --- */
.area-section__header {
  text-align: center;
  margin-bottom: 44px;
}
.area-section__header h2 {
  font-size: clamp(23px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.area-section__header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 4px;
  margin: 14px auto 0;
}
.area-section__header p {
  color: var(--gray-500);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.area-section--blue .area-section__header h2 {
  color: var(--white);
}
.area-section--blue .area-section__header p {
  color: rgba(255, 255, 255, 0.65);
}


/* --- Intro Section --- */
.area-intro {
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 5vw, 56px);
}
.area-intro .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.area-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-intro__text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 18px;
  line-height: 1.3;
}
.area-intro__text h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 4px;
  margin-top: 14px;
}
.area-intro__text p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.area-intro__text p a {
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid rgba(43, 108, 176, 0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.area-intro__text p a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.area-intro__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}
.area-intro__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  pointer-events: none;
}
.area-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}


/* --- Local Area Card — Blue card with wiki link --- */
.area-local-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0C2340 100%);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.area-local-card::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 139, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.area-local-card h2 {
  color: var(--white);
  font-size: clamp(21px, 2.8vw, 26px);
  margin-bottom: 16px;
  position: relative;
}
.area-local-card h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 4px;
  margin-top: 12px;
}
.area-local-card p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  position: relative;
}

/* --- City map --- */
.area-map {
  padding: 0 0 clamp(48px, 7vw, 80px);
}
.area-map .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.area-map__frame {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.area-local-card a {
  color: var(--accent-light);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 139, 46, 0.3);
  transition: all 0.2s;
}
.area-local-card a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.area-local-card .wiki-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s;
}
.area-local-card .wiki-link:hover {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: none;
}
.area-local-card .wiki-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}


/* --- Service Accordion Panels --- */
.area-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.area-svc-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.area-svc-panel:hover {
  border-color: rgba(43, 108, 176, 0.25);
  box-shadow: var(--shadow-sm);
}
.area-svc-panel__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: background 0.2s;
}
.area-svc-panel__header:hover {
  background: var(--gray-50);
}
.area-svc-panel__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(43, 108, 176, 0.08), rgba(232, 139, 46, 0.08));
  border: 1px solid rgba(43, 108, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.area-svc-panel__title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
}
.area-svc-panel__arrow {
  width: 24px;
  height: 24px;
  color: var(--gray-400);
  transition: transform 0.3s var(--ease);
}
.area-svc-panel.open .area-svc-panel__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}
.area-svc-panel__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.area-svc-panel.open .area-svc-panel__body {
  max-height: 500px;
}
.area-svc-panel__content {
  padding: 0 24px 24px;
  padding-left: 82px;
}
.area-svc-panel__content p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}
.area-svc-panel__content p a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 108, 176, 0.2);
  transition: all 0.2s;
}
.area-svc-panel__content p a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* --- Full Bleed Image --- */
.area-image-break {
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.area-image-break__wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.area-image-break__wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}


/* --- Why Choose — Icon + text blocks --- */
.area-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.area-why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.area-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43, 108, 176, 0.2);
}
.area-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-soft), rgba(232, 139, 46, 0.06));
  border: 1px solid rgba(43, 108, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.area-why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.area-why-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


/* --- Common Challenges — Cards --- */
.area-challenges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.area-challenge-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.area-challenge-card:hover {
  border-color: rgba(232, 139, 46, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.area-challenge-card__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 139, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.area-challenge-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
  margin-top: 0;
}
.area-challenge-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}


/* --- Process Timeline — Horizontal --- */
.area-process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.area-process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--accent-light), var(--primary-light), var(--gray-200));
  z-index: 0;
}
.area-process-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.area-process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(43, 108, 176, 0.25);
}
.area-process-step:nth-child(2) .area-process-step__num,
.area-process-step:nth-child(3) .area-process-step__num {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 4px 16px var(--accent-glow);
}
.area-process-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.area-process-step p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
  max-width: 220px;
  margin: 0 auto;
}


/* --- Area FAQ — Card style --- */
.area-faq__list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.area-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.area-faq-item.open {
  border-color: rgba(232, 139, 46, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.area-faq__q {
  width: 100%;
  padding: 20px 52px 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  position: relative;
  transition: color 0.2s;
  line-height: 1.5;
}
.area-faq__q:hover {
  color: var(--accent-light);
}
.area-faq__q::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 139, 46, 0.15);
  transition: all 0.3s var(--ease);
}
.area-faq__q::before {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-light);
  z-index: 1;
  transition: transform 0.3s var(--ease);
}
.area-faq-item.open .area-faq__q::before {
  transform: translateY(-50%) rotate(45deg);
}
.area-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.area-faq-item.open .area-faq__a {
  max-height: 350px;
}
.area-faq__a-inner {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.75;
}


/* --- Nearby Areas — Pill links --- */
.area-nearby {
  padding: clamp(32px, 5vw, 56px) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.area-nearby .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.area-nearby__header {
  text-align: center;
  margin-bottom: 28px;
}
.area-nearby__header h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.area-nearby__header p {
  color: var(--gray-500);
  font-size: 14px;
}
.area-nearby__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-nearby__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.area-nearby__pill::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s;
}
.area-nearby__pill:hover {
  background: var(--primary-lighter);
  border-color: rgba(43, 108, 176, 0.2);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}
.area-nearby__pill:hover::before {
  transform: translateX(3px);
}


/* --- Bottom CTA — Blue gradient bar --- */
.area-cta-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.area-cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 139, 46, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}
.area-cta-bar .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  position: relative;
  z-index: 1;
}
.area-cta-bar h2 {
  color: var(--white);
  font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 12px;
}
.area-cta-bar h2::after {
  display: none;
}
.area-cta-bar p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.area-cta-bar .btn--white {
  background: var(--white);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.area-cta-bar .btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  color: var(--accent-hover);
  text-decoration: none;
}
.area-cta-bar__phone {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.area-cta-bar__phone a {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: none;
  border-bottom: none;
}
.area-cta-bar__phone a:hover {
  text-decoration: underline;
  color: var(--accent-light);
}


/* --- Area page body content styling --- */
.area-section p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.area-section p:last-child {
  margin-bottom: 0;
}
.area-section p a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 108, 176, 0.2);
  transition: all 0.2s;
}
.area-section p a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* --- Schema / Service list inside area --- */
.area-section h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}
.area-section h3:first-child {
  margin-top: 0;
}


/* =============================================
   AREA PAGE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .area-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .area-process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .area-process__timeline::before {
    display: none;
  }
  .area-hero__dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .area-hero {
    min-height: auto;
  }
  .area-hero__content {
    padding: 80px 20px 48px;
  }
  .area-hero::after {
    display: none;
  }
  .area-hero__actions {
    flex-direction: column;
  }
  .area-hero__cta,
  .area-hero__phone {
    width: 100%;
    justify-content: center;
  }
  .area-services__grid {
    grid-template-columns: 1fr;
  }
  .area-svc-panel__content {
    padding-left: 24px;
  }
  .area-process__timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .area-why__grid {
    grid-template-columns: 1fr;
  }
  .area-challenges__grid {
    grid-template-columns: 1fr;
  }
  .area-image-break__wrap img {
    height: 220px;
  }
  .area-local-card {
    padding: 28px 22px;
  }
  .area-map__frame {
    height: 300px;
  }
  .area-faq__q {
    font-size: 14.5px;
    padding: 18px 48px 18px 20px;
  }
}

@media (max-width: 480px) {
  .area-hero__content h1 {
    font-size: 26px;
  }
  .area-nearby__pills {
    gap: 8px;
  }
  .area-nearby__pill {
    font-size: 13px;
    padding: 8px 16px;
  }
}
