/* ===== CSS Variables ===== */
:root {
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --green: #2d8f4e;
  --green-hover: #257a42;
  --green-light: #e8f5ec;
  --green-pale: #f0faf3;
  --text: #1a2e4a;
  --text-muted: #5a6b7d;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
  --shadow-sm: 0 2px 12px rgba(30, 58, 95, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --header-h: 72px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.btn--outline {
  background: var(--white);
  color: var(--green);
  border-color: var(--green);
}

.btn--outline:hover {
  background: var(--green-light);
}

.btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

.btn--block-mobile {
  width: 100%;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__line {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.logo__line--accent {
  color: var(--green);
}

.logo--light .logo__line {
  color: var(--white);
}

.logo--light .logo__line--accent {
  color: var(--green);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  z-index: 99;
}

.nav.is-open {
  transform: translateX(0);
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__links a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav__link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.5rem 0;
}

.nav__link-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* ===== Hero ===== */
.hero {
  padding: 1.75rem 0 0;
  overflow: hidden;
}

.hero__container {
  display: flex;
  flex-direction: column;
}

.hero__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.hero__header,
.hero__content {
  width: 100%;
  max-width: none;
}

.hero__image-wrap--mobile {
  width: 100%;
}

.hero__image-wrap--mobile .hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__image-wrap--desktop {
  display: none;
}

.hero__title {
  font-size: clamp(1.5rem, 5.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0;
}

.hero__accent {
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 0.875rem;
  background: var(--green);
  border-radius: 2px;
}

.hero__desc {
  font-size: clamp(0.875rem, 2.8vw, 0.9375rem);
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 0;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* ===== Features ===== */
.features {
  padding: 1.75rem 0 2.5rem;
}

.features__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f1f5f9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.125rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.feature:last-child {
  border-bottom: none;
}

.feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.feature__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Section Headers ===== */
.section-header {
  margin-bottom: 2rem;
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

/* ===== Services ===== */
.services {
  padding: 3rem 0 4rem;
  background: #f8fafc;
}

.services__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.services__headline {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.services__lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.services__benefits {
  margin-bottom: 2rem;
}

.services__benefits-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.services__benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.benefit-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.services__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pillar__summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.pillar__summary::-webkit-details-marker {
  display: none;
}

.pillar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.pillar__icon svg {
  width: 20px;
  height: 20px;
}

.pillar--finance .pillar__icon { background: #1e5a8a; }
.pillar--procurement .pillar__icon { background: #3b7ea8; }
.pillar--comms .pillar__icon { background: #6b4c9a; }
.pillar--ops .pillar__icon { background: #b8860b; }

.pillar__title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.pillar__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.pillar[open] .pillar__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.pillar__list {
  list-style: none;
  padding: 0 1.125rem 1.125rem 1.125rem;
  margin: 0;
  border-top: 1px solid var(--border);
}

.pillar__list li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.pillar__list li:last-child {
  border-bottom: none;
}

.pillar__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.services__coverage {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

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

.coverage-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.875rem;
}

.coverage-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coverage-card__list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.coverage-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.services__setup {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.services__setup-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.services__setup-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.services__setup-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.services__setup-list li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.4rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.services__advantage {
  text-align: center;
}

.services__advantage-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.services__advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.advantage-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  box-shadow: var(--shadow-sm);
}

.advantage-item__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.625rem;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-item__icon svg {
  width: 20px;
  height: 20px;
}

.advantage-item__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.services__closing {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.services__closing-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Communities ===== */
.communities {
  padding: 3rem 0;
  background: #f4f7f9;
  position: relative;
  overflow: hidden;
}

.communities::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 98,27 98,73 50,98 2,73 2,27' fill='none' stroke='%23d1dbe4' stroke-width='1.5' opacity='0.5'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}

.communities::after {
  content: '';
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  width: 90px;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 98,27 98,73 50,98 2,73 2,27' fill='none' stroke='%23d1dbe4' stroke-width='1.5' opacity='0.35'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}

.communities .container {
  position: relative;
  z-index: 1;
}

.communities__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.communities__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.communities__label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--green);
}

.communities__label-text {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
}

.communities__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  font-size: clamp(1.375rem, 5vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.communities__title-top,
.communities__title-mobile {
  display: block;
}

.communities__title-mobile {
  color: var(--green);
}

.communities__title-desktop {
  display: none;
}

.communities__title-underline {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.75rem auto 1rem;
  background: var(--green);
  border-radius: 2px;
}

.communities__subtitle {
  display: block;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.community-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.community-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: var(--white);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 6px 24px rgba(30, 58, 95, 0.08);
  padding: 0 0.625rem 1rem;
}

.community-card__hex {
  width: calc(100% - 0.5rem);
  max-width: none;
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  margin: 0 auto -18px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 5px var(--card-color, var(--green)));
}

.community-card__hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-color, var(--green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 10px rgba(30, 58, 95, 0.15);
}

.community-card__icon svg {
  width: 16px;
  height: 16px;
}

.community-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  padding: 0 0.125rem;
}

.community-card__desc {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.375rem;
  padding: 0 0.125rem;
}

.community-card__accent {
  display: block;
  width: 24px;
  height: 3px;
  margin-top: auto;
  padding-top: 0.625rem;
  background: var(--card-color, var(--green));
  border-radius: 2px;
}

.community-card--green { --card-color: #2d8f4e; }
.community-card--teal { --card-color: #0d9488; }
.community-card--blue { --card-color: #2563eb; }
.community-card--purple { --card-color: #7c3aed; }
.community-card--sky { --card-color: #1d4ed8; }

.community-card--preset .community-card__inner {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.community-card__preset-image {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-light) 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.cta__bg-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta__title {
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.cta__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 480px;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 320px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.footer__brand {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer__col--links {
  display: none;
}

.footer__col--contact {
  padding-top: 1.75rem;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__contact li {
  margin-bottom: 0;
}

.footer__contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  transition: opacity var(--transition);
}

.footer__contact-card:hover {
  opacity: 0.9;
}

.footer__contact-card--static {
  cursor: default;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer__contact-icon svg {
  width: 22px;
  height: 22px;
}

.footer__contact-icon--phone {
  background: #2563eb;
}

.footer__contact-icon--whatsapp {
  background: #25d366;
}

.footer__contact-icon--email {
  background: #3b82f6;
}

.footer__contact-icon--location {
  background: #2563eb;
}

.footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.footer__contact-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.footer__contact-sublabel {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 0 2rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  display: none;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--white);
}

/* ===== Tablet (≥ 640px) ===== */
@media (min-width: 640px) {
  .btn--block-mobile {
    width: auto;
  }

  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .features {
    padding: 2.5rem 0 3rem;
  }

  .features__grid {
    flex-direction: row;
    gap: 1.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .feature {
    flex: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 0;
    border-bottom: none;
  }

  .feature__icon {
    border-radius: 50%;
    width: 48px;
    height: 48px;
  }

  .feature__desc {
    font-size: 0.875rem;
  }

  .services__benefits-grid {
    flex-direction: row;
    gap: 1rem;
  }

  .benefit-card {
    flex: 1;
  }

  .services__coverage {
    flex-direction: row;
  }

  .coverage-card {
    flex: 1;
  }

  .services__advantage-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .cta__buttons {
    max-width: 280px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ===== Desktop (≥ 1024px) ===== */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    overflow: visible;
    gap: 2rem;
    background: transparent;
  }

  .nav__links {
    flex-direction: row;
    gap: 2rem;
  }

  .nav__links a {
    padding: 0;
    font-size: 0.9375rem;
    border-bottom: none;
    transition: color var(--transition);
  }

  .nav__links a:hover {
    color: var(--green);
  }

  .nav__actions {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

  .nav__link-icon {
    padding: 0;
    font-size: 0.875rem;
  }

  .hero {
    padding: 4rem 0 0;
  }

  .hero__container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero__body {
    flex: 1 1 50%;
    min-width: 0;
    gap: 1.5rem;
  }

  .hero__image-wrap--mobile {
    display: none;
  }

  .hero__header,
  .hero__content {
    max-width: none;
  }

  .hero__desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
  }

  .hero__image-wrap--desktop {
    display: block;
    flex: 1 1 45%;
    position: static;
    width: auto;
    height: auto;
    min-height: auto;
    max-width: none;
    pointer-events: auto;
  }

  .hero__image--desktop {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero__buttons {
    margin-top: 0;
  }

  .features {
    padding: 3rem 0 4rem;
  }

  .services {
    padding: 5rem 0;
  }

  .services__intro {
    margin-bottom: 2.5rem;
  }

  .services__lead {
    font-size: 1.0625rem;
  }

  .services__benefits {
    margin-bottom: 2.5rem;
  }

  .services__pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    align-items: start;
  }

  .pillar {
    height: 100%;
  }

  .pillar[open] .pillar__chevron,
  .pillar__chevron {
    display: none;
  }

  .pillar__summary {
    pointer-events: none;
    cursor: default;
    padding: 1.25rem 1rem 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .pillar__title {
    font-size: 0.9375rem;
  }

  .pillar__list {
    border-top: none;
    padding: 0 1rem 1.25rem;
  }

  .pillar__list li {
    padding-left: 1rem;
    font-size: 0.8125rem;
    text-align: left;
  }

  .services__coverage {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .services__setup {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }

  .services__setup-title {
    font-size: 1.25rem;
  }

  .services__setup-list {
    gap: 0.625rem;
  }

  .services__setup-list li {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .services__advantage-title {
    font-size: 1.5rem;
  }

  .services__advantage-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  .advantage-item__title {
    font-size: 0.8125rem;
  }

  .services__closing {
    font-size: 1.25rem;
  }

  .communities {
    padding: 5rem 0;
  }

  .communities::before {
    top: 2rem;
    left: -2rem;
    right: auto;
    width: 180px;
    height: 180px;
  }

  .communities::after {
    bottom: 1rem;
    left: 3rem;
    width: 120px;
    height: 120px;
  }

  .communities__header {
    margin-bottom: 3rem;
  }

  .communities__label {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .communities__label-line {
    width: 48px;
  }

  .communities__label-text {
    font-size: 0.75rem;
  }

  .communities__title {
    display: block;
    font-size: 2.25rem;
  }

  .communities__title-top,
  .communities__title-mobile {
    display: none;
  }

  .communities__title-desktop {
    display: inline;
  }

  .communities__title-accent {
    color: var(--green);
  }

  .communities__title-underline {
    width: 56px;
    height: 4px;
    margin: 0.875rem auto 1.25rem;
  }

  .communities__subtitle {
    max-width: 640px;
    font-size: 1rem;
    padding: 0;
  }

  .communities__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  .community-card__inner {
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
    padding: 0 0.75rem 1.25rem;
  }

  .community-card--preset .community-card__inner {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .community-card__hex {
    width: calc(100% - 1rem);
    margin: 0 auto -22px;
    filter: drop-shadow(0 0 6px var(--card-color, var(--green)));
  }

  .community-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
  }

  .community-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .community-card__title {
    font-size: 0.8125rem;
    padding: 0 0.25rem;
  }

  .community-card__desc {
    display: none;
  }

  .community-card__accent {
    width: 28px;
    padding-top: 0.875rem;
  }

  .cta {
    padding: 4rem 0;
  }

  .cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta__buttons {
    flex-shrink: 0;
  }

  .footer {
    padding: 3rem 0 0;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__brand {
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer__col--links {
    display: block;
  }

  .footer__col--contact {
    padding-top: 0;
  }

  .footer__contact {
    gap: 0.625rem;
  }

  .footer__contact-card {
    gap: 0.625rem;
  }

  .footer__contact-icon {
    width: 28px;
    height: 28px;
  }

  .footer__contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .footer__contact-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
  }

  .footer__contact-sublabel {
    display: none;
  }

  .footer__bottom {
    margin-top: 0;
    border-top: none;
    padding: 1.5rem 0;
  }

  .footer__legal {
    display: flex;
    gap: 1.5rem;
  }
}

/* ===== Large Desktop (≥ 1200px) ===== */
@media (min-width: 1200px) {
  .community-card__hex {
    max-width: 160px;
  }

  .community-card__title {
    font-size: 0.8125rem;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
