/* ==========================================================================
   Area Page — Modern, Minimal & Clean (#9E0C17 on White)
   ========================================================================== */

.area-page {
  background: #ffffff;
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   1. Hero Section
   -------------------------------------------------------------------------- */
.area-hero {
  padding: clamp(48px, 6vw, 76px) 0 clamp(40px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.area-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.area-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
}

.area-hero__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px 6px 10px;
  border-radius: 9999px;
  background: #fff5f5;
  border: 1px solid #fee2e2;
}

.area-hero__sparkle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #9E0C17;
}

.area-hero__sparkle svg {
  width: 15px;
  height: 15px;
}

.area-hero__eyebrow {
  color: #9E0C17;
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-hero__title {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.area-hero__title-accent {
  color: #9E0C17;
}

.area-hero__desc {
  margin: 0 0 28px;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}

.area-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Button styles */
.area-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 0 22px;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.area-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.area-btn__icon svg {
  width: 18px;
  height: 18px;
}

.area-btn__arrow {
  font-size: 16px;
  transition: transform 180ms ease;
}

.area-btn:hover .area-btn__arrow {
  transform: translateX(3px);
}

.area-btn--primary {
  background: #9E0C17;
  color: #ffffff;
  border: 1.5px solid #9E0C17;
}

.area-btn--primary:hover {
  background: #800a12;
  border-color: #800a12;
  transform: translateY(-2px);
}

.area-btn--secondary {
  background: #ffffff;
  color: #9E0C17;
  border: 1.5px solid #9E0C17;
}

.area-btn--secondary:hover {
  background: #fff5f5;
  transform: translateY(-2px);
}

.area-hero__visual {
  width: 100%;
}

.area-hero__image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e8e8e8;
  background: #ffffff;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.06);
}

.area-hero__image-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* --------------------------------------------------------------------------
   Shared Section Intro
   -------------------------------------------------------------------------- */
.area-section-intro {
  max-width: 760px;
  margin: 0 auto clamp(36px, 4vw, 48px);
  text-align: center;
}

.area-section-eyebrow {
  margin: 0 0 12px;
  color: #9E0C17;
  font-size: 13.5px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-section-title {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.area-section-lead {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   2. 4 Distribution Pillars
   -------------------------------------------------------------------------- */
.area-pillars {
  padding: clamp(56px, 6vw, 80px) 0;
  background: #fafafa;
  border-bottom: 1px solid #f1f5f9;
}

.area-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.area-pillar-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #ffffff;
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.02);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.area-pillar-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.05);
}

.area-pillar-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff5f5;
  border: 1px solid #fee2e2;
  color: #9E0C17;
  margin-bottom: 18px;
}

.area-pillar-card__icon svg {
  width: 24px;
  height: 24px;
}

.area-pillar-card__title {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.area-pillar-card__desc {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   3. Sumut Priority Areas (6 Card Grid)
   -------------------------------------------------------------------------- */
.area-local {
  padding: clamp(56px, 6vw, 88px) 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.area-local__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.area-local-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e8e8e8;
  border-radius: 22px;
  background: #ffffff;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 4px 18px rgb(15 23 42 / 0.03);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.area-local-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgb(15 23 42 / 0.06);
}

.area-local-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.area-local-card__num {
  font-size: 20px;
  font-weight: 850;
  color: #9E0C17;
  letter-spacing: -0.03em;
}

.area-local-card__badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 6px;
  background: #fff5f5;
  border: 1px solid #fee2e2;
  color: #9E0C17;
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.area-local-card__title {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.area-local-card__desc {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.area-local-card__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding: 16px 0 0;
  border-top: 1px solid #f1f5f9;
  list-style: none;
}

.area-local-card__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.35;
}

.area-local-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #9E0C17;
  flex-shrink: 0;
}

.area-local-card__check svg {
  width: 15px;
  height: 15px;
}

/* --------------------------------------------------------------------------
   4. National Distribution Zones (4 Zones)
   -------------------------------------------------------------------------- */
.area-zones {
  padding: clamp(56px, 6vw, 84px) 0;
  background: #fafafa;
  border-bottom: 1px solid #f1f5f9;
}

.area-zones__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.area-zone-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #ffffff;
  padding: 26px 24px;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.02);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.area-zone-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.05);
}

.area-zone-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.area-zone-card__badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.area-zone-card__estimate {
  font-size: 12.5px;
  font-weight: 750;
  color: #9E0C17;
}

.area-zone-card__title {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 17.5px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.area-zone-card__coverage {
  margin: 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. City Pages Index List (Optional)
   -------------------------------------------------------------------------- */
.area-cities {
  padding: clamp(56px, 6vw, 84px) 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.area-cities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.area-city-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: all 160ms ease;
}

.area-city-link:hover {
  background: #ffffff;
  border-color: #9E0C17;
  color: #9E0C17;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgb(158 12 23 / 0.06);
}

.area-city-link__arrow {
  color: #9E0C17;
  transition: transform 160ms ease;
}

.area-city-link:hover .area-city-link__arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .area-hero__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .area-hero__content {
    max-width: 100%;
  }
  .area-pillars__grid,
  .area-local__grid,
  .area-zones__grid,
  .area-cities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .area-hero {
    padding: 36px 0 40px;
  }
  .area-hero__title {
    font-size: 26px;
  }
  .area-hero__desc {
    font-size: 14.5px;
    margin-bottom: 22px;
  }
  .area-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .area-btn {
    width: 100%;
  }
  .area-pillars__grid,
  .area-local__grid,
  .area-zones__grid,
  .area-cities__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .area-pillar-card,
  .area-local-card,
  .area-zone-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-btn,
  .area-btn__arrow,
  .area-pillar-card,
  .area-local-card,
  .area-zone-card,
  .area-city-link,
  .area-city-link__arrow {
    transition: none !important;
  }
}
