@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #0C4A6E;
  --primary-light: #0EA5E9;
  --secondary: #64748B;
  --accent: #F97316;
  --accent-hover: #EA580C;
  --bg: #F0F9FF;
  --bg-white: #FFFFFF;
  --text: #1E293B;
  --text-light: #64748B;
  --border: #E2E8F0;
  --success: #22C55E;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }

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

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar a { color: white; font-weight: 600; }
.top-bar a:hover { color: var(--accent); }

/* Header */
.site-header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 44px; width: auto; }

.logo-text h1 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-actions { display: flex; align-items: center; gap: 1.5rem; }

.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.phone-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.phone-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Navigation */
.main-nav { display: none; }
.main-nav ul { display: flex; list-style: none; gap: 2rem; }

.main-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 0.875rem 0; font-weight: 500; color: var(--text); }
.mobile-nav a:hover { color: var(--primary); }

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #075985 100%);
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-content h1 span { color: var(--accent); }

.hero-content p {
  font-size: 1.125rem;
  opacity: 0.92;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}

.badge svg { width: 16px; height: 16px; color: var(--accent); }

/* Hero Form */
.hero-form {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.hero-form h3 { font-size: 1.125rem; color: var(--primary); margin-bottom: 0.25rem; }
.hero-form p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.25rem; }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-secondary { background: var(--primary); color: white; }
.btn-secondary:hover { background: #075985; transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Section Styles */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg); }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); font-size: 1.0625rem; }

/* Services Grid */
.services-grid { display: grid; gap: 1.5rem; }

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-img img { width: 100%; height: 100%; object-fit: cover; }

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 74, 110, 0.6), transparent);
}

.service-card-icon {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.service-card-icon svg { width: 24px; height: 24px; color: var(--primary); }

.service-card-content { padding: 1.5rem; }
.service-card-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card-content p { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.2s ease;
}

.link-arrow:hover { gap: 0.625rem; color: var(--accent); }
.link-arrow svg { width: 16px; height: 16px; }

/* Features / Why Choose Us */
.features-grid { display: grid; gap: 2rem; }

.feature-item { display: flex; gap: 1rem; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 24px; height: 24px; color: white; }

.feature-content h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.feature-content p { font-size: 0.9375rem; color: var(--text-light); }

/* Stats */
.stats-grid { display: grid; gap: 1.5rem; text-align: center; }

.stat-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.9375rem; color: var(--text-light); margin-top: 0.5rem; }

/* Testimonials */
.testimonials-grid { display: grid; gap: 1.5rem; }

.testimonial-card {
  background: white;
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.stars svg { width: 18px; height: 18px; color: #F59E0B; fill: #F59E0B; }

.testimonial-card p { font-size: 0.9375rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
}

.testimonial-author-info h4 { font-size: 0.9375rem; color: var(--text); }
.testimonial-author-info span { font-size: 0.8125rem; color: var(--text-light); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #075985 100%);
  color: white;
  padding: 3rem 0;
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.cta-banner h2 { color: white; font-size: 1.5rem; }
.cta-banner p { opacity: 0.9; max-width: 600px; }

/* Trust Badges Bar */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.trust-item svg { width: 32px; height: 32px; color: var(--primary); }

/* Emergency Bar */
.emergency-bar {
  background: linear-gradient(90deg, #DC2626 0%, #B91C1C 100%);
  color: white;
  padding: 0.875rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
}

.emergency-bar a { color: white; text-decoration: underline; text-underline-offset: 2px; }
.emergency-bar a:hover { color: #FECACA; }

/* Content Pages */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #075985 100%);
  color: white;
  padding: 3rem 0;
}

.page-header h1 { color: white; font-size: 2rem; }
.page-header p { opacity: 0.9; margin-top: 0.5rem; }

.breadcrumbs { font-size: 0.875rem; opacity: 0.8; margin-bottom: 0.75rem; }
.breadcrumbs a:hover { text-decoration: underline; }

.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.content-block h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.content-block p { margin-bottom: 1rem; color: var(--text); }
.content-block ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.content-block li { margin-bottom: 0.5rem; }
.content-block strong { color: var(--primary); }

/* Service Detail */
.service-detail-grid { display: grid; gap: 2rem; }

.service-detail-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg);
}

.sidebar-list { list-style: none; }
.sidebar-list li { border-bottom: 1px solid var(--border); }

.sidebar-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
}

.sidebar-list a:hover { color: var(--primary); padding-left: 0.5rem; }
.sidebar-list a.active { color: var(--primary); font-weight: 600; }

/* Area List */
.area-grid { display: grid; gap: 0.75rem; }

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

.area-item svg { width: 18px; height: 18px; color: var(--primary); }

/* Reviews Page */
.review-summary {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  margin-bottom: 2rem;
}

.review-big-stars { display: flex; justify-content: center; gap: 0.5rem; margin: 1rem 0; }
.review-big-stars svg { width: 36px; height: 36px; color: #F59E0B; fill: #F59E0B; }

.review-score {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

/* Contact Page */
.contact-grid { display: grid; gap: 2rem; }

.contact-info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.contact-info-text h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.contact-info-text p, .contact-info-text a { font-size: 0.9375rem; color: var(--text-light); }
.contact-info-text a:hover { color: var(--primary); }

/* Footer */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.5rem;
}

.footer-col h4 { color: white; font-size: 1.0625rem; margin-bottom: 1rem; }
.footer-col p { font-size: 0.9375rem; opacity: 0.85; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9375rem; opacity: 0.85; transition: opacity 0.2s ease; }
.footer-col a:hover { opacity: 1; color: var(--accent); }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-phone:hover { background: var(--accent-hover); }
.footer-phone svg { width: 18px; height: 18px; }

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

/* Sticky Bottom CTA (mobile) */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 999;
  border-top: 1px solid var(--border);
}

.sticky-cta .btn { flex: 1; padding: 0.75rem; font-size: 0.875rem; }

/* Financing Badge */
.financing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--success);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.financing-badge svg { width: 18px; height: 18px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.4s ease forwards; }
.animate-pulse-slow { animation: pulse 3s ease-in-out infinite; }

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (min-width: 640px) {
  .hero-content h1 { font-size: 2.75rem; }
  .section-header h2 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; padding: 5rem 1.5rem; }
  .hero-form { justify-self: end; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-banner h2 { font-size: 1.75rem; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr 320px; }
  .page-header h1 { font-size: 2.5rem; }
  .main-nav { display: block; }
  .menu-toggle { display: none; }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.25rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 1023px) {
  body { padding-bottom: 72px; }
}
