/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #5B2C6F;
  color: #ffffff;
  border-color: #5B2C6F;
}

.btn-primary:hover {
  background: #4a1f56;
  border-color: #4a1f56;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(91, 44, 111, 0.35);
}

.btn-outline {
  background: transparent;
  color: #5B2C6F;
  border-color: #5B2C6F;
}

.btn-outline:hover {
  background: #5B2C6F;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-amber {
  background: #F59E0B;
  color: #1e0b22;
  border-color: #F59E0B;
}

.btn-amber:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Typography ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 12px;
}

.section-tag--light {
  color: #FCD34D;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1e0b22;
  margin-bottom: 20px;
}

.section-title--light {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5a3d6b;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 44, 111, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(91, 44, 111, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #1e0b22;
}

.nav-logo-text {
  color: #5B2C6F;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d2050;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F59E0B;
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
  color: #5B2C6F;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1e0b22;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #1e0b22;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 8px;
}

.mobile-menu-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #f5f0fb;
  padding: 12px 24px;
  transition: color 0.2s ease;
  text-align: center;
}

.mobile-menu-link:hover {
  color: #F59E0B;
}

.mobile-menu-link--cta {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #F59E0B;
  color: #1e0b22;
  border-radius: 8px;
  padding: 16px 32px;
}

.mobile-menu-link--cta:hover {
  background: #d97706;
  color: #1e0b22;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f0fb 0%, #ebe0f5 50%, #d6c4ea 100%);
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(91, 44, 111, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 44, 111, 0.08);
  border: 1px solid rgba(91, 44, 111, 0.15);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5B2C6F;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: #1e0b22;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #4a3058;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Floating Stat Cards ── */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(91, 44, 111, 0.08);
  border: 1px solid rgba(91, 44, 111, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(91, 44, 111, 0.15);
}

.stat-card--amber {
  background: #5B2C6F;
  color: #ffffff;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.stat-card--amber .stat-card-label,
.stat-card--amber .stat-card-number {
  color: #ffffff;
}

.stat-card--amber .stat-card-label {
  color: rgba(255, 255, 255, 0.75);
}

.stat-card--plum {
  background: #1e0b22;
  color: #ffffff;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.stat-card--plum .stat-card-label {
  color: rgba(255, 255, 255, 0.75);
}

.stat-card--light {
  background: #ffffff;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.stat-card--wide {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #F59E0B;
  color: #1e0b22;
}

.stat-card--wide .stat-card-label {
  color: rgba(30, 11, 34, 0.7);
}

.stat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.stat-card--amber .stat-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.stat-card--plum .stat-card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #F59E0B;
}

.stat-card--light .stat-card-icon {
  background: rgba(91, 44, 111, 0.08);
  color: #5B2C6F;
}

.stat-card--wide .stat-card-icon {
  background: rgba(30, 11, 34, 0.12);
  color: #1e0b22;
}

.stat-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e0b22;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b4f75;
  line-height: 1.4;
}

/* ── Hero Image ── */
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 6/7;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── Services ── */
.services {
  background: #ffffff;
}

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

.service-card {
  background: #f5f0fb;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(91, 44, 111, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(91, 44, 111, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5B2C6F, #F59E0B);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(91, 44, 111, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(91, 44, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e0b22;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.95rem;
  color: #5a3d6b;
  line-height: 1.7;
}

/* ── How It Works ── */
.how-it-works {
  background: linear-gradient(180deg, #f5f0fb 0%, #ebe0f5 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 16px);
  right: calc(33.33% - 16px);
  height: 2px;
  background: linear-gradient(90deg, #F59E0B, #5B2C6F, #F59E0B);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #5B2C6F;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e0b22;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: #5a3d6b;
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
}

/* ── About ── */
.about {
  background: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(91, 44, 111, 0.15);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: #F59E0B;
  z-index: -1;
  opacity: 0.3;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1.05rem;
  color: #4a3058;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #3d2050;
  font-weight: 500;
}

.about-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Coverage ── */
.coverage {
  background: #1e0b22;
  padding: 100px 0;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coverage-content {
  max-width: 520px;
}

.coverage-text {
  font-size: 1.05rem;
  color: rgba(245, 240, 251, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.coverage-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 240, 251, 0.85);
  transition: all 0.2s ease;
}

.coverage-tag:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: #FCD34D;
}

.coverage-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/4;
}

.coverage-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.85;
}

.coverage-map-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 11, 34, 0.15);
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce-pin 2s ease-in-out infinite;
}

@keyframes bounce-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.map-pin-label {
  background: #F59E0B;
  color: #1e0b22;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #5B2C6F 0%, #4a1f56 100%);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content {
  max-width: 480px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(245, 240, 251, 0.75);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Contact ── */
.contact {
  background: #f5f0fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  max-width: 480px;
}

.contact-text {
  font-size: 1.05rem;
  color: #4a3058;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(91, 44, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: #3d2050;
  line-height: 1.6;
}

.contact-link {
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #5B2C6F;
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(91, 44, 111, 0.08);
  border: 1px solid rgba(91, 44, 111, 0.06);
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e0b22;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3d2050;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(91, 44, 111, 0.15);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1e0b22;
  background: #f5f0fb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: #9a7aab;
}

.form-input:focus {
  border-color: #5B2C6F;
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1);
  background: #ffffff;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B2C6F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(91, 44, 111, 0.06);
  border: 1px solid rgba(91, 44, 111, 0.12);
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5B2C6F;
}

.form-success.show {
  display: flex;
}

/* ── Footer ── */
.footer {
  background: #1e0b22;
  color: #f5f0fb;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 251, 0.55);
  line-height: 1.75;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 251, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FCD34D;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(245, 240, 251, 0.6);
  line-height: 1.6;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 251, 0.6);
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #FCD34D;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 240, 251, 0.35);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-cards {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4/3;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    max-width: 100%;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coverage-content {
    max-width: 100%;
    text-align: center;
  }

  .coverage-areas {
    justify-content: center;
  }

  .coverage-map {
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 72px;
    min-height: auto;
    padding-bottom: 60px;
  }

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

  .stat-card--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .stat-card--plum {
    grid-column: 1;
    grid-row: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid::before {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card-number {
    font-size: 1.35rem;
  }
}
