@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: hsl(214, 80%, 28%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-10: hsla(214, 80%, 28%, 0.1);
  --primary-15: hsla(214, 80%, 28%, 0.15);

  --secondary: hsl(150, 40%, 45%);
  --secondary-foreground: hsl(0, 0%, 100%);

  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 25%, 15%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);

  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(215, 15%, 45%);

  --border: hsl(214, 20%, 88%);
  --accent: hsl(0, 75%, 50%);

  --section-alt: hsl(210, 25%, 96%);
  --green-soft: hsl(150, 35%, 94%);
  --blue-soft: hsl(214, 40%, 95%);
  --hero-overlay: hsl(214, 80%, 12%);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.icon { display: inline-flex; flex-shrink: 0; }
.icon svg { width: 1em; height: 1em; }
.icon-sm svg { width: 1rem; height: 1rem; }
.icon-md svg { width: 1.25rem; height: 1.25rem; }
.icon-lg svg { width: 1.5rem; height: 1.5rem; }
.icon-xl svg { width: 1.75rem; height: 1.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}
.btn-secondary:hover { opacity: 0.9; }

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { opacity: 0.9; }

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
}
.btn-outline-white:hover { background-color: rgba(255,255,255,0.1); }


/* navbar */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
  transition: color 0.3s;
}
.navbar.scrolled .navbar-brand { color: var(--primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  transition: color 0.3s;
  padding: 0;
}
.nav-link:hover { color: var(--secondary); }
.navbar.scrolled .nav-link { color: var(--foreground); }
.navbar.scrolled .nav-link:hover { color: var(--secondary); }

.btn-nav-cta { font-weight: 600; font-size: 0.875rem; }
.btn-nav-cta svg { width: 1rem; height: 1rem; }

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: var(--primary-foreground);
  transition: color 0.3s;
}
.navbar.scrolled .mobile-toggle { color: var(--foreground); }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-toggle .icon-close { display: none; }
.mobile-toggle.open .icon-menu { display: none; }
.mobile-toggle.open .icon-close { display: block; }

.mobile-menu {
  display: none;
  background: var(--card);
  box-shadow: var(--shadow-xl);
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease-out;
}
.mobile-menu.open { display: block; }

.mobile-menu-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-link {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  text-align: left;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--primary); }

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.btn-mobile-cta svg { width: 1rem; height: 1rem; }


/* hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(214, 80%, 12%, 0.85) 0%,
    hsla(214, 80%, 28%, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hero-title {
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


/* shared section styles */

.section { padding: 5rem 0; }
.section-alt { background-color: var(--section-alt); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}


/* about */

.about-intro {
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.about-intro h2 {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-intro p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px hsla(214, 80%, 28%, 0.15);
}

.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon-circle-blue { background: var(--blue-soft); }
.icon-circle-blue svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }

.feature-card p { color: var(--foreground); font-weight: 500; }


/* services */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: default;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px hsla(214, 80%, 28%, 0.15);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}
.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  transition: color 0.3s ease;
}
.service-card:hover .service-icon { background: var(--secondary); }
.service-card:hover .service-icon svg { color: var(--secondary-foreground); }

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}


/* why choose us */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-circle-primary {
  background: var(--primary-10);
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle-primary svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

.benefit-item h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.benefit-item p { color: var(--muted-foreground); font-size: 0.875rem; }


/* reviews */

.reviews-wrapper { max-width: 42rem; margin: 0 auto; }

.review-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.review-stars svg { width: 1.25rem; height: 1.25rem; fill: var(--accent); color: var(--accent); }

.review-text {
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

.review-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.review-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  background: transparent;
}
.review-arrow:hover { background: var(--muted); }
.review-arrow svg { width: 1.25rem; height: 1.25rem; color: var(--muted-foreground); }

.review-dots { display: flex; align-items: center; gap: 0.5rem; }

.review-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--border);
  transition: background 0.3s;
  padding: 0;
}
.review-dot.active { background: var(--primary); }


/* gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsla(215, 25%, 15%, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}
.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0.5rem;
}
.lightbox-close:hover { opacity: 0.7; }
.lightbox-close svg { width: 2rem; height: 2rem; }

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 0.75rem;
  object-fit: contain;
}


/* service area */

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.area-map {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.area-map iframe { width: 100%; height: 100%; border: 0; }

.area-list-wrapper h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
}
.area-item svg { width: 1.25rem; height: 1.25rem; color: var(--secondary); flex-shrink: 0; }
.area-item span { font-weight: 500; color: var(--foreground); }

.area-note {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}


/* contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px hsla(214, 80%, 28%, 0.15);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 9999px;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

.contact-card .label { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-card .value { font-weight: 600; color: var(--foreground); }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hours-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hours-header svg { width: 1.5rem; height: 1.5rem; color: var(--secondary); }
.hours-header h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.hours-row .day { color: var(--muted-foreground); }
.hours-row .time { font-weight: 500; color: var(--foreground); }

.btn-contact-cta {
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem;
  border-radius: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: var(--shadow-lg);
  border: none;
}
.btn-contact-cta:hover { opacity: 0.9; }

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsla(215, 25%, 15%, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}
.contact-modal.open { display: flex; }

.contact-modal-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border);
  animation: fadeInUp 0.4s ease-out;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.25rem;
}
.modal-close:hover { color: var(--foreground); }
.modal-close svg { width: 1.5rem; height: 1.5rem; }

.contact-modal-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.3s;
}
.modal-link:hover { background: var(--muted); }
.modal-link svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.modal-link .label { font-size: 0.75rem; color: var(--muted-foreground); }
.modal-link .value { font-weight: 600; color: var(--foreground); }

.modal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.5rem 0;
}

.modal-hours .label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
}

.modal-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
}
.modal-hours-row .day { color: var(--muted-foreground); }
.modal-hours-row .time { font-weight: 500; color: var(--foreground); }


/* footer */

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: left;
  transition: color 0.3s;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.footer-link:hover { color: var(--primary-foreground); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-contact-link:hover { color: var(--primary-foreground); }
.footer-contact-link svg { width: 1rem; height: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}


/* animations */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }

.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* responsive */

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
  .hero-buttons { flex-direction: row; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .navbar-inner { height: 5rem; }
  .section { padding: 7rem 0; }
  .section-title { font-size: 2.25rem; }
  .about-intro h2 { font-size: 2.25rem; }
  .hero-title { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .review-card { padding: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
  .hero-title { font-size: 4.5rem; }
  .about-features { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
