/* ============================================================
   EcoAbit — Brand Stylesheet
   Colors from logo: #012B20 (dark forest green), #CCFF00 (lime)
   ============================================================ */

:root {
  --dark:       #012B20;
  --dark-mid:   #024030;
  --dark-light: #035040;
  --lime:       #CCFF00;
  --lime-dark:  #A8D400;
  --lime-pale:  #EEFFAA;
  --white:      #FFFFFF;
  --off-white:  #F6F9F4;
  --grey-100:   #F2F4F0;
  --grey-200:   #E2E6DE;
  --grey-400:   #9AAA96;
  --grey-600:   #4A5A46;
  --text:       #1A2E18;
  --text-mid:   #3A4E38;

  --eco-green:  #1A9E2E;
  --eco-amber:  #E8961A;
  --eco-red:    #D93A2A;

  --reg-orange: #E85D20;
  --reg-blue:   #1A5FD9;
  --reg-teal:   #0D8A7A;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(1,43,32,0.10);
  --shadow:     0 4px 20px rgba(1,43,32,0.14);
  --shadow-lg:  0 8px 40px rgba(1,43,32,0.18);

  --nav-h: 76px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--grey { background: var(--off-white); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--dark);
  margin-bottom: 16px;
}
.section--dark .tag { background: rgba(204,255,0,0.18); color: var(--lime); }

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; }
p { line-height: 1.7; }

.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-mid); }
.section--dark .lead { color: rgba(255,255,255,0.72); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}
.btn-primary { background: var(--dark); color: var(--white); }
.btn-primary:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn-dark { background: var(--dark); color: var(--lime); }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: var(--lime); }

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 68px;
  background: rgba(30, 32, 30, 0.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0 12px 0 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 7px 14px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); font-weight: 700; }

.nav__ctas { display: flex; align-items: center; flex-shrink: 0; }

/* Lime green outlined pill Contact Us button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  border: 1.5px solid var(--lime);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(204,255,0,0.15);
}
.btn-contact:hover {
  background: rgba(204,255,0,0.12);
  box-shadow: 0 0 20px rgba(204,255,0,0.3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px; left: 10px; right: 10px;
  bottom: auto;
  border-radius: 14px;
  background: rgba(1,22,14,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  padding: 8px 8px 10px;
  gap: 1px;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 9px 12px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
  text-decoration: none;
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--lime); background: rgba(204,255,0,0.06); }
.nav__mobile .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile .btn { justify-content: center; font-size: 0.85rem; height: 38px; }

/* ── Hero ── */
.hero {
  background-image: url('../images/hero-section.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 160px;
}
.hero::before { display: none; }
.hero::after  { display: none; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,255,0,0.1);
  border: 1px solid rgba(204,255,0,0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero .container { width: 100%; }
.hero__inner { max-width: 760px; }

.hero__heading {
  font-family: 'Archivo Black', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255,255,255,0.96);
  max-width: 560px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  margin-bottom: 0;
}
/* Hero CTA buttons — inline below text */
.hero__ctas {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ── Animated sliding-circle CTA button ── */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 52px;
  /* fixed padding — no transition on padding so text never jumps */
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 24px;
  padding-right: 56px;   /* keeps space for the icon at rest */
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Text label — slides right on hover via margin */
.btn-cta__text {
  position: relative;
  z-index: 2;
  display: block;
  transition: transform 0.5s ease;
}
.btn-cta:hover .btn-cta__text {
  transform: translateX(30px);
}

/* Sliding circle — absolutely positioned, no translateY conflict */
.btn-cta__icon {
  position: absolute;
  right: 4px;
  top: 4px;          /* (52px height − 44px circle) / 2 = 4px */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  /* only transform — no translateY interference */
  transform: rotate(0deg);
  transition: right 0.5s ease, transform 0.5s ease;
}

/* On hover: circle slides to the left edge, rotates 45° */
.btn-cta:hover .btn-cta__icon {
  right: calc(100% - 48px);   /* 44px circle + 4px gap from left */
  transform: rotate(45deg);
}

/* Grass green tenant button */
.btn-cta--green {
  background: #16A34A;
  box-shadow: 0 4px 24px rgba(22,163,74,0.45), 0 1px 3px rgba(0,0,0,0.15);
}
.btn-cta--green:hover {
  box-shadow: 0 8px 32px rgba(22,163,74,0.6), 0 2px 6px rgba(0,0,0,0.2);
}
.btn-cta--green .btn-cta__icon {
  background: rgba(0,0,0,0.18);
}

/* Glassmorphism landlord button */
.btn-cta--glass {
  background: rgba(40,42,40,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-cta--glass:hover {
  background: rgba(40,42,40,0.72);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-cta--glass .btn-cta__icon {
  background: #16A34A;
  box-shadow: 0 2px 12px rgba(22,163,74,0.4);
}

/* Hero wave */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero__wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* ── Credibility Bar ── */
.credibility {
  background: var(--off-white);
  border-top: none;
  border-bottom: 1px solid var(--grey-200);
  padding: 0;
}
.credibility__inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.credibility__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  padding: 18px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  flex: 1;
  justify-content: center;
  min-width: 180px;
}
.credibility__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--grey-200);
}
.credibility__icon { font-size: 1.3rem; flex-shrink: 0; }

/* ── How It Works ── */
.section-header { margin-bottom: 12px; }
.section-header + .lead { margin-bottom: 0; }

/* ══════════════════════════════════════
   ABOUT STRIP — Cards + Vision split
══════════════════════════════════════ */

/* ══════════════════════════════════════
   FLIPPING CARDS
══════════════════════════════════════ */
.flip-section {
  background: #f9fafb;
  padding: 32px 0 88px;
}
.flip-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #012B20;
  text-align: center;
  margin: 0 0 48px;
}

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

/* Perspective wrapper */
.flip-card {
  perspective: 1000px;
  height: 380px;
}

/* The rotating inner */
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border-radius: 14px;
}
.flip-card:hover .flip-card__inner {
  transform: rotateY(180deg);
}

/* Shared face styles */
.flip-card__face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  background: #ffffff;
}

/* Front face */
.flip-card__front {
  display: flex;
  flex-direction: column;
  transform: rotateY(0deg);
}
.flip-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.flip-card__front-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flip-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #09090b;
  margin: 0;
}
.flip-card__desc {
  font-size: 0.84rem;
  color: #71717a;
  line-height: 1.6;
  margin: 0;
}

/* Back face */
.flip-card__back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
  transform: rotateY(180deg);
  background: #012B20;
}
.flip-card__back-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0 0 24px;
}
.flip-card__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 100px;
  background: #CCFF00;
  color: #012B20;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.flip-card__back-btn:hover {
  background: #d4ff1a;
  transform: translateY(-2px);
}

/* JS-toggled flip for touch devices */
.flip-card.flipped .flip-card__inner { transform: rotateY(180deg); }

/* Responsive */
@media (max-width: 1024px) {
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .flip-grid { grid-template-columns: 1fr; width: 100%; }
  .flip-card { height: 380px; }
  .flip-card__img { height: 190px; }
}

.abt-section {
  background: #f0f9f0;
  padding-top: 0;
  padding-bottom: 80px;
}

/* ── Top cards bar ── */
.abt-cards-wrap {
  background: #012B20;
  width: 100%;
  padding: 0 40px;
}
.abt-cards-wrap--standalone {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}
.abt-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── Privacy feature cards (image hidden, revealed on hover) ── */
.priv-card {
  background: #012B20;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: background 0.3s ease;
}
.priv-card:hover { background: #013d2a; }
.priv-card__img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.priv-card:hover .priv-card__img-wrap { opacity: 1; }
.priv-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.priv-card__body {
  position: relative;
  z-index: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* dark overlay on hover so text stays readable over image */
  transition: background 0.4s ease;
}
.priv-card:hover .priv-card__body {
  background: rgba(1, 26, 16, 0.72);
}
.priv-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}
.priv-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .priv-card__body { padding: 28px 24px; }
}
.abt-card {
  background: #012B20;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.22s ease;
}
.abt-card:hover { background: #024030; }
.abt-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(204,255,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.abt-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}
.abt-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Bottom split ── */
.abt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
}

/* Image column */
.abt-split__img-col {
  position: relative;
}
.abt-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #CCFF00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(204,255,0,0.35);
}
.abt-badge__num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #012B20;
  line-height: 1;
}
.abt-badge__label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #012B20;
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}
.abt-split__img {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(1,43,32,0.16);
}

/* Text column */
.abt-eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #012B20;
  margin-bottom: 14px;
}
.abt-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f1f0e;
  line-height: 1.18;
  margin-bottom: 18px;
}
.abt-body {
  font-size: 0.975rem;
  color: #5a6b58;
  line-height: 1.72;
  margin-bottom: 32px;
}

/* Vision / Mission pillars */
.abt-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.abt-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.abt-pillar__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #E8F5E3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.abt-pillar__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1f0e;
  margin-bottom: 4px;
}
.abt-pillar__text {
  font-size: 0.865rem;
  color: #5a6b58;
  line-height: 1.6;
}

/* CTA button */
.abt-cta {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 100px;
  background: #CCFF00;
  color: #012B20;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.abt-cta:hover {
  background: #b8e600;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .abt-split {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }
  .abt-split__img-col { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .abt-cards { grid-template-columns: 1fr; gap: 0; }
  .abt-cards-wrap { padding: 0; }
  .abt-card { padding: 28px 24px; }
  .abt-split { padding-top: 48px; }
}

/* ══════════════════════════════════════
   HOW IT WORKS — Horizontal Timeline
══════════════════════════════════════ */
.hiw-section {
  position: relative;
  /* Warm grass-green gradient base */
  background: linear-gradient(175deg, #E8F5E3 0%, #F2FAF0 45%, #ffffff 100%);
  padding: 48px 0 64px;
  overflow: hidden;
}

/* Background photo — visible at a gentle opacity so content stays legible */
.hiw-bg {
  display: block;
  position: absolute;
  inset: 0;
  background: url('../images/Howitworks.png.png') center center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above background */
.hiw-section .container { position: relative; z-index: 1; }

/* Decorative radial glows */
.hiw-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hiw-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Header */
.hiw-header { text-align: center; margin-bottom: 40px; }
.hiw-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #012B20;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hiw-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #2D5A3D;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Four-column horizontal grid ── */
.hiw-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

/* Individual step column */
.hiw-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

/* STEP label + number */
.hiw-col__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.hiw-col__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #16A34A;
}
.hiw-col__num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #012B20;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Node row — horizontal connector line + dot */
.hiw-node-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 0 16px;
}
/* Horizontal connecting line */
.hiw-node-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #86EFAC, #16A34A, #86EFAC);
  transform: translateY(-50%);
  z-index: 0;
}
/* First column: line starts from centre */
.hiw-col:first-child .hiw-node-row::before { left: 50%; }
/* Last column: line ends at centre */
.hiw-col:last-child  .hiw-node-row::before { right: 50%; }

/* The dot */
.hiw-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #16A34A;
  border: 3px solid #E8F5E3;
  box-shadow: 0 0 0 2px #16A34A, 0 2px 10px rgba(22,163,74,0.45);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hiw-col:hover .hiw-node {
  transform: scale(1.25);
  box-shadow: 0 0 0 3px #16A34A, 0 4px 18px rgba(22,163,74,0.55);
}

/* Description text */
.hiw-col__text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  color: #012B20;
  max-width: 220px;
  margin: 0 auto 20px;
}

/* Illustration card */
.hiw-col__illus {
  width: 100%;
  max-width: 100px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #BBF7D0;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(22,163,74,0.12),
    0 1px 4px rgba(0,0,0,0.05);
  aspect-ratio: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hiw-col:hover .hiw-col__illus {
  transform: translateY(-5px);
  box-shadow:
    0 14px 36px rgba(22,163,74,0.20),
    0 2px 8px rgba(0,0,0,0.06);
}
.hiw-col__illus svg {
  width: 100%;
  height: 100%;
}
.hiw-col__illus-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hiw-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .hiw-col:first-child .hiw-node-row::before { left: 0; }
  .hiw-col:last-child  .hiw-node-row::before { right: 0; }
  .hiw-col:nth-child(2) .hiw-node-row::before { right: 50%; }
  .hiw-col:nth-child(3) .hiw-node-row::before { left: 50%; }
  .hiw-col:nth-child(3) .hiw-node-row::before,
  .hiw-col:nth-child(4) .hiw-node-row::before { display: none; }
  .hiw-col:nth-child(3) .hiw-node-row,
  .hiw-col:nth-child(4) .hiw-node-row { padding-top: 0; }
}
@media (max-width: 520px) {
  .hiw-horizontal { grid-template-columns: 1fr; gap: 40px 0; }
  .hiw-col__illus { max-width: 140px; }
  .hiw-node-row::before { display: none; }
  .hiw-title { font-size: 1.6rem; }
}


/* ══════════════════════════════════════
   MEASURABLE IMPACT — Split Section
══════════════════════════════════════ */
/* ══════════════════════════════════════
   MEASURABLE IMPACT — Onboarding card
══════════════════════════════════════ */
.ob-section {
  position: relative;
  padding: 72px 0;
  background: #011a10;
}
.ob-section__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.ob-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,26,16,0.45) 0%, rgba(1,43,32,0.30) 100%);
  z-index: 1;
}
.ob-section__inner {
  position: relative;
  z-index: 2;
}

/* Card */
.ob-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left */
.ob-card__title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #012B20;
  line-height: 1.2;
  margin: 0 0 10px;
}
.ob-card__desc {
  font-size: 0.92rem;
  color: #4b6358;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Checklist */
.ob-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.ob-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a2e20;
  line-height: 1.45;
}
.ob-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #16A34A;
  margin-top: 1px;
}

/* Right — video thumbnail */
.ob-card__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ob-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}
.ob-video-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.ob-video-thumb:hover .ob-video-thumb__img { transform: scale(1.04); }
.ob-video-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease;
}
.ob-video-thumb:hover .ob-video-thumb__overlay { background: rgba(0,0,0,0.25); }
.ob-video-thumb__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(22,163,74,0.22);
  transition: transform 0.22s ease;
}
.ob-video-thumb:hover .ob-video-thumb__play { transform: scale(1.1); }
.ob-video-thumb__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* Video modal */
.ob-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ob-modal.open { opacity: 1; pointer-events: auto; }
.ob-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}
.ob-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.ob-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.ob-modal__close:hover { background: rgba(255,255,255,0.28); }
.ob-modal__video { aspect-ratio: 16 / 9; width: 100%; }
.ob-modal__video iframe { width: 100%; height: 100%; border: none; display: block; }
.ob-modal__placeholder {
  width: 100%;
  height: 100%;
  background: #012B20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 760px) {
  .ob-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 28px;
  }
  .ob-checklist { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ob-section { padding: 48px 0; }
}

/* ══════════════════════════════════════
   STATS — Dotted Grid Section
══════════════════════════════════════ */
.dotgrid-section {
  position: relative;
  background: #ffffff;
  padding: 52px 0 0;
  overflow: hidden;
}

/* Content wrapper */
.dotgrid-inner {
  position: relative;
  z-index: 1;
}

/* Header */
.dotgrid-header {
  text-align: center;
  margin-bottom: 64px;
}
.dotgrid-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CCFF00;
  background: rgba(204,255,0,0.1);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 20px;
}
.dotgrid-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.dotgrid-sub {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* Stats row */
.dotgrid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(204,255,0,0.08);
  border: 1px solid rgba(204,255,0,0.12);
  border-radius: 20px;
  overflow: hidden;
}
.dotgrid-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  background: rgba(1,43,32,0.55);
  transition: background 0.25s ease;
}
.dotgrid-stat:hover {
  background: rgba(1,43,32,0.85);
}
.dotgrid-stat__num {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #CCFF00;
  line-height: 1;
  letter-spacing: -0.02em;
}
.dotgrid-stat__plus {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 700;
}
.dotgrid-stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  text-align: center;
  line-height: 1.4;
  max-width: 140px;
}

/* Responsive */
@media (max-width: 768px) {
  .dotgrid-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .dotgrid-stats { grid-template-columns: 1fr; }
  .dotgrid-stat { padding: 36px 24px; }
}

/* ── Service Cards (inside dotgrid section) ── */
/* ── Expandable Cards ── */
.ec-section-header {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}
.ec-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a9e2e;
  background: rgba(26,158,46,0.1);
  border-radius: 100px;
  padding: 4px 14px;
  margin: 0 0 18px;
}
.ec-section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: #012B20;
  line-height: 1.25;
  margin: 0 0 16px;
}
.ec-section-sub {
  font-size: 1rem;
  color: #4b6358;
  line-height: 1.65;
  margin: 0;
}

.ec-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ec-card {
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 12px;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.ec-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.ec-card__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
}
.ec-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.ec-card:hover .ec-card__img {
  transform: scale(1.04);
}

.ec-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px 4px;
  gap: 10px;
}
.ec-card__meta { flex: 1; min-width: 0; }
.ec-card__category {
  font-size: 0.78rem;
  font-weight: 500;
  color: #71717a;
  margin: 0 0 3px;
}
.ec-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #09090b;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* + / × button */
.ec-card__plus {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3f3f46;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}
.ec-card__plus:hover {
  background: #f4f4f5;
  border-color: rgba(0,0,0,0.22);
  color: #09090b;
}

/* ── Modal overlay ── */
.ec-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ec-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.ec-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Modal card */
.ec-modal__card {
  position: relative;
  z-index: 1;
  background: #fafafa;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 850px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: translateY(32px);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.14);
}
.ec-modal__card::-webkit-scrollbar { display: none; }
.ec-modal.open .ec-modal__card {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .ec-modal {
    align-items: center;
    padding: 0 24px;
  }
  .ec-modal__card {
    border-radius: 24px;
    max-height: 90vh;
    margin-top: 64px;
  }
}

/* Modal image */
.ec-modal__img-wrap { position: relative; }
.ec-modal__img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.ec-modal__img-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, #fafafa, transparent);
  pointer-events: none;
}

/* Modal header */
.ec-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 32px 8px;
  gap: 16px;
}
.ec-modal__category {
  font-size: 1rem;
  color: #71717a;
  margin: 0 0 4px;
}
.ec-modal__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #09090b;
  margin: 0;
  line-height: 1.15;
}

/* Close button — reuses ec-card__plus, rotated */
.ec-modal__close {
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  margin-top: 4px;
}

/* Modal body content */
.ec-modal__body {
  padding: 8px 32px 56px;
  color: #52525b;
  font-size: 1rem;
  line-height: 1.7;
}
.ec-modal__body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #09090b;
  margin: 24px 0 8px;
}
.ec-modal__body p { margin: 0 0 12px; }
.ec-modal__date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a9e2e;
  background: rgba(26,158,46,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  margin: 0 0 16px !important;
}
.ec-modal__link a {
  color: #1a9e2e;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,158,46,0.3);
  transition: border-color 0.2s;
}
.ec-modal__link a:hover { border-color: #1a9e2e; }

/* Responsive */
@media (max-width: 1024px) {
  .ec-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ec-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .ec-modal__header { padding: 20px 20px 8px; }
  .ec-modal__body { padding: 8px 20px 48px; }
}

/* ══════════════════════════════════════
   MANAGEMENT SECTION
══════════════════════════════════════ */
.mgmt-section {
  background: #F2F2F2;
  padding: 40px 0 48px;
}
.mgmt-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.mgmt-header {
  text-align: center;
  margin-bottom: 32px;
}
.mgmt-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a800;
  background: rgba(200,168,0,0.12);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.mgmt-heading {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f1f0e;
  line-height: 1.15;
  margin-bottom: 16px;
}
.mgmt-subtext {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: #6b7c6a;
  line-height: 1.7;
}

/* Three-column grid */
.mgmt-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

/* Centre image */
.mgmt-img-wrap {
  width: 340px;
  flex-shrink: 0;
}
.mgmt-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Feature columns */
.mgmt-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mgmt-features--left { align-items: flex-end; text-align: right; }
.mgmt-features--right { align-items: flex-start; text-align: left; }

.mgmt-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 300px;
}
.mgmt-features--left .mgmt-feat { flex-direction: row-reverse; }
.mgmt-features--right .mgmt-feat { flex-direction: row; }

.mgmt-feat__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #012B20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mgmt-feat__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1f0e;
  margin-bottom: 6px;
}
.mgmt-feat__desc {
  font-size: 0.875rem;
  color: #6b7c6a;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 960px) {
  .mgmt-cols {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .mgmt-features--left,
  .mgmt-features--right {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 560px;
  }
  .mgmt-features--left .mgmt-feat { flex-direction: row; }
  .mgmt-img-wrap { width: 100%; max-width: 480px; }
}
@media (max-width: 520px) {
  .mgmt-section { padding: 60px 0 72px; }
  .mgmt-inner { padding: 0 20px; }
}

/* ══════════════════════════════════════
   BUILT FOR PROPERTY OWNERS — Carousel
══════════════════════════════════════ */
.po-section {
  background: #f4f6f4;
  padding: 80px 40px;
}

.po-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

/* Slide stack */
.po-slides {
  position: relative;
  height: 600px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1,43,32,0.28);
}

.po-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #012B20;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  overflow: hidden;
}
.po-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Left: image */
.po-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: #024030;
}
.po-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Right: text body */
.po-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 32px 48px 32px 40px;
  overflow-y: auto;
}

.po-card__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CCFF00;
}
.po-card__heading {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.po-card__text {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 440px;
}
.po-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.po-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.po-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCFF00;
}
.po-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 48px;
  padding: 0 28px;
  border-radius: 100px;
  background: #CCFF00;
  color: #012B20;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.po-card__cta:hover {
  background: #b8e600;
  transform: translateY(-2px);
}

/* Dot navigation */
.po-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.po-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(1,43,32,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.po-dot.active {
  background: #012B20;
  transform: scale(1.3);
}
.po-dot:hover:not(.active) {
  background: rgba(1,43,32,0.45);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .po-slide { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .po-section { padding: 48px 20px; }
  .po-slides { height: 640px; }
  .po-slide { grid-template-columns: 1fr; }
  .po-card__img-wrap { height: 220px; flex-shrink: 0; }
  .po-card__body { padding: 32px 24px; }
}

/* ── Regulatory Window ── */
.reg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.reg-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.reg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.reg-card--orange { background: rgba(232,93,32,0.10); }
.reg-card--orange::before { background: var(--reg-orange); }
.reg-card--blue { background: rgba(26,95,217,0.10); }
.reg-card--blue::before { background: var(--reg-blue); }
.reg-card--teal { background: rgba(13,138,122,0.10); }
.reg-card--teal::before { background: var(--reg-teal); }

.reg-card__date {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.reg-card--orange .reg-card__date { color: #F0A070; }
.reg-card--blue .reg-card__date { color: #7AAAF0; }
.reg-card--teal .reg-card__date { color: #5ACCBA; }

.reg-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.08rem; }
.reg-card p { font-size: 0.875rem; color: rgba(255,255,255,0.68); line-height: 1.68; }
.reg-card__penalty {
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ── Eco Score Bands ── */
.ecoscore__bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.band-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.band-card--green { background: #E8F8EA; border: 2px solid #1A9E2E; }
.band-card--amber { background: #FEF4E5; border: 2px solid #E8961A; }
.band-card--red   { background: #FDECEA; border: 2px solid #D93A2A; }

.band-card__score {
  font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 4px;
}
.band-card--green .band-card__score { color: var(--eco-green); }
.band-card--amber .band-card__score { color: var(--eco-amber); }
.band-card--red   .band-card__score { color: var(--eco-red);   }

.band-card__label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.band-card--green .band-card__label { color: var(--eco-green); }
.band-card--amber .band-card__label { color: var(--eco-amber); }
.band-card--red   .band-card__label { color: var(--eco-red);   }

.band-card__action {
  font-size: 0.78rem; font-weight: 600; margin-bottom: 10px;
  padding: 4px 10px; border-radius: 100px; display: inline-block;
}
.band-card--green .band-card__action { background: #C8F0CE; color: var(--eco-green); }
.band-card--amber .band-card__action { background: #FDE8C0; color: var(--eco-amber); }
.band-card--red   .band-card__action { background: #F8D5D0; color: var(--eco-red);   }

.band-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.55; }

.starter-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FEF4E5;
  border: 1.5px solid #E8961A;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text);
  margin: 8px 0 24px;
  line-height: 1.5;
}
.starter-badge strong { color: var(--eco-amber); }
.starter-badge__icon { font-size: 1.5rem; flex-shrink: 0; }

.portable-callout {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 24px 0;
}
.portable-callout__icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.portable-callout h4 { color: var(--lime); margin-bottom: 6px; }
.portable-callout p { font-size: 0.9rem; opacity: 0.78; line-height: 1.6; }

.property-search {
  background: var(--grey-100);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 28px 0;
}
.property-search h4 { margin-bottom: 6px; }
.property-search p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 18px; }
.search-row { display: flex; gap: 12px; flex-wrap: wrap; }
.search-row input {
  flex: 1;
  min-width: 140px;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color var(--transition);
  color: var(--text);
}
.search-row input:focus { outline: none; border-color: var(--dark); }
.search-row input::placeholder { color: var(--grey-400); }

.app-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.app-badge:hover { background: var(--dark-mid); transform: translateY(-1px); }
.app-badge__icon { font-size: 1.5rem; }
.app-badge__text small { display: block; font-size: 0.68rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1px; }
.app-badge__text strong { font-size: 0.95rem; }

/* ── Two-col audience layout ── */
.audience-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Feature list ── */
.feature-list { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(204,255,0,0.12);
}
.section--dark .feature-item__icon { background: rgba(204,255,0,0.1); }
.feature-item__body h4 { margin-bottom: 4px; }
.feature-item__body p { font-size: 0.875rem; opacity: 0.68; line-height: 1.6; }

/* ── Pricing card ── */
.pricing-card {
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  margin: 28px 0;
}
.pricing-card__price { font-size: 2.8rem; font-weight: 800; line-height: 1; }
.pricing-card__price sub { font-size: 0.95rem; vertical-align: middle; font-weight: 600; }
.pricing-card__desc { font-size: 0.9rem; margin: 8px 0 22px; opacity: 0.7; }
.pricing-card__features { display: flex; flex-direction: column; gap: 9px; }
.pricing-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500;
}
.pricing-card__features li::before {
  content: '✓';
  font-weight: 800;
  flex-shrink: 0;
  color: var(--dark);
}

/* ── Contract / pilot note ── */
.contract-note {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--lime);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  opacity: 0.82;
  line-height: 1.6;
  margin: 16px 0;
}

/* ── HA subsection ── */
.ha-callout {
  background: rgba(204,255,0,0.07);
  border: 1px solid rgba(204,255,0,0.18);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 28px;
}
.ha-callout h4 { color: var(--lime); margin-bottom: 8px; }
.ha-callout p { font-size: 0.875rem; opacity: 0.78; line-height: 1.65; }

/* ── Consent callout ── */
.consent-callout {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 0.875rem;
  opacity: 0.82;
  line-height: 1.65;
}

/* ── Data section ── */
.heatmap-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-light);
  aspect-ratio: 16/9;
  position: relative;
  border: 1px solid rgba(204,255,0,0.15);
}
.heatmap-mock {
  width: 100%;
  height: 100%;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
}
.hm-cell { border-radius: 3px; }
.heatmap-label {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.72);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.heatmap-title {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.heatmap-legend {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.heatmap-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.heatmap-legend__swatch { width: 14px; height: 14px; border-radius: 3px; }

/* ── Partners ── */
.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--grey-200);
  transition: all var(--transition);
}
.partner-card:hover { border-color: var(--lime-dark); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-card__icon { font-size: 2rem; margin-bottom: 16px; }
.partner-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.partner-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.68; }
.partner-card__names { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.partner-card__names span {
  background: var(--grey-100);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--text-mid);
}

.partners__cta {
  margin-top: 40px;
  padding: 40px 44px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.partners__cta-text h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.partners__cta-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
/* ── Contact — "Let's connect" ── */
.contact-section {
  background: #ffffff;
  padding: 56px 0;
}
.contact-section .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 72px;
  align-items: stretch;
}

/* Left: heading block */
.contact-intro {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}
.contact-intro__heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #012B20;
  line-height: 1.15;
  margin: 0 0 12px;
}
.contact-intro__body {
  font-size: 0.95rem;
  color: #4b6358;
  line-height: 1.6;
  margin: 0 0 20px;
}
.contact-intro__img {
  width: 100%;
  flex: 1;
  min-height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Right: method list */
.contact-methods {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-method {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0 20px 28px;
  border-left: 2px solid #e4ede9;
}
.contact-method + .contact-method {
  border-top: 1px solid #f0f5f2;
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #c8ddd4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
  color: #012B20;
}
.contact-method__icon svg {
  width: 22px;
  height: 22px;
}
.contact-method__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #012B20;
  margin: 0;
}
.contact-method__desc {
  font-size: 0.93rem;
  color: #5a7465;
  margin: 0;
  line-height: 1.55;
}
.contact-method__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1A9E2E;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.contact-method__link:hover {
  gap: 10px;
  text-decoration: underline;
}
.contact-method__link svg {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════ */
.pricing-section {
  background: #f8fdf8;
  padding: 80px 0 96px;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #012B20;
  margin: 0 0 14px;
}
.pricing-sub {
  font-size: 1.05rem;
  color: #4b6358;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* Toggle */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pricing-toggle__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #012B20;
}
.pricing-toggle__btn {
  position: relative;
  width: 48px;
  height: 26px;
  background: #012B20;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pricing-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #CCFF00;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.pricing-toggle__btn.active .pricing-toggle__knob {
  transform: translateX(22px);
}
.pricing-toggle__save {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16A34A;
  background: rgba(22,163,74,0.1);
  border-radius: 100px;
  padding: 2px 10px;
}

/* Cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Card */
.pricing-card {
  background: #ffffff;
  border: 1.5px solid rgba(1,43,32,0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(1,43,32,0.12);
  transform: translateY(-4px);
}
.pricing-card--featured {
  background: #012B20;
  border-color: #012B20;
  position: relative;
}
.pricing-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #012B20;
  background: #CCFF00;
  padding: 4px 14px;
  text-align: center;
}
.pricing-card__top {
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.pricing-card--featured .pricing-card__top {
  border-bottom-color: rgba(255,255,255,0.1);
}
.pricing-card__tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16A34A;
  margin: 0;
}
.pricing-card--featured .pricing-card__tier { color: #CCFF00; }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-card__amount {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #012B20;
  transition: opacity 0.2s;
}
.pricing-card--featured .pricing-card__amount { color: #ffffff; }
.pricing-card__amount--custom {
  font-size: 2rem;
}
.pricing-card__period {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
}
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,0.6); }
.pricing-card__desc {
  font-size: 0.875rem;
  color: #4b6358;
  line-height: 1.6;
  margin: 0;
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.65); }

/* CTA */
.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 10px;
  background: #012B20;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pricing-card__cta:hover { background: #024030; transform: translateY(-1px); }
.pricing-card__cta--light {
  background: #CCFF00;
  color: #012B20;
}
.pricing-card__cta--light:hover { background: #b8e600; }
.pricing-card__billing {
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
  margin: 0;
}
.pricing-card--featured .pricing-card__billing { color: rgba(255,255,255,0.4); }

/* Features */
.pricing-card__features {
  padding: 20px 28px 28px;
}
.pricing-card__includes {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7280;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card--featured .pricing-card__includes { color: rgba(255,255,255,0.5); }
.pricing-card__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  font-size: 0.9rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.82); }
.pricing-card__features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%2316A34A' stroke-width='1.2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2316A34A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23CCFF00' stroke-width='1.2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23CCFF00' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .pricing-section { padding: 56px 0 72px; }
  .pricing-card__top { padding: 22px 20px 16px; }
  .pricing-card__features { padding: 16px 20px 24px; }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section .container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-intro {
    flex: none;
    max-width: 100%;
  }
  .contact-method {
    padding-left: 16px;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-section .container {
    padding: 0 20px;
  }
  .contact-intro__img {
    flex: none;
    height: 200px;
  }
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
  border-top: 1px solid rgba(204,255,0,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer__brand__logo { display: flex; align-items: center; margin-bottom: 0; margin-top: -120px; }
.footer__brand__logo img { height: 240px; width: auto; object-fit: contain; }
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  margin-top: -60px;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Social list */
.footer__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__social-list a:hover { color: var(--lime); }
.footer__social-list svg { flex-shrink: 0; }

/* Link columns */
.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; list-style: none; padding: 0; margin: 0; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--lime); }

/* Newsletter column */
.footer__newsletter h5 { color: rgba(255,255,255,0.38); }
.footer__newsletter-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 18px;
}
.footer__subscribe-form { width: 100%; }
.footer__subscribe-wrap {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}
.footer__subscribe-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.875rem;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.footer__subscribe-input::placeholder { color: rgba(255,255,255,0.3); }
.footer__subscribe-input:focus { background: rgba(255,255,255,0.1); }
.footer__subscribe-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  background: var(--lime);
  color: var(--dark);
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s;
  white-space: nowrap;
}
.footer__subscribe-btn:hover { background: #c8e800; transform: translateY(-1px); }
.footer__subscribe-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.footer__subscribe-feedback {
  margin-top: 10px;
  font-size: 0.82rem;
  min-height: 18px;
  color: var(--lime);
}
.footer__subscribe-feedback.error { color: #f87171; }

/* Bottom bar */
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}
.footer__bottom a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color var(--transition); }
.footer__bottom a:hover { color: var(--lime); }
.footer__bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--dark);
  border-top: 2px solid rgba(204,255,0,0.4);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 700px; }
.cookie-banner__text a { color: var(--lime); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Reveal animations ── */
/* ── Scroll reveal — base ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Directional variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── Scroll progress bar ── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, #CCFF00, #16A34A);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-top: 1.5px solid var(--grey-200); }
  .step:nth-child(4) { border-right: none; border-top: 1.5px solid var(--grey-200); }
  .audience-cols { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__ctas { display: none; }
  .nav__burger { display: flex; }
  .steps__grid { grid-template-columns: 1fr; border-radius: var(--radius); }
  .step { border-right: none; border-top: 1.5px solid var(--grey-200); }
  .step:first-child { border-top: none; }
  .reg__grid { grid-template-columns: 1fr; }
  .ecoscore__bands { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .credibility__item { flex: none; width: 100%; justify-content: flex-start; }
  .credibility__item::after { display: none; }
  .partners__cta { flex-direction: column; align-items: flex-start; padding: 28px; }
  .hero { padding: 120px 0 64px; min-height: auto; }
  .nav { width: calc(100% - 32px); top: 12px; }
  .btn-cta { min-width: 180px; }
}

@media (max-width: 520px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .btn-cta { min-width: unset; width: 100%; font-size: 0.875rem; justify-content: center; }
  .hero__heading { font-size: 1.6rem; }
  .hero__sub { font-size: 0.95rem; }
  .search-row { flex-direction: column; }
  .app-badges { flex-direction: column; }
  .cookie-banner { padding: 16px; }
  .cookie-banner__btns { width: 100%; flex-direction: column; }
  .cookie-banner__btns .btn { justify-content: center; }
}

/* ══════════════════════════════════════
   MOBILE & TABLET COMPATIBILITY FIXES
══════════════════════════════════════ */

/* Prevent any section from causing horizontal scroll */
body { overflow-x: hidden; }

/* ── Carousel: fix fixed column on tablet ── */
@media (max-width: 900px) {
  .po-slide { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .po-slide { grid-template-columns: 1fr; }
  .po-slides { height: auto; min-height: 560px; }
  .po-card__img-wrap { height: 200px; flex-shrink: 0; }
  .po-card__body { padding: 24px 20px; gap: 10px; overflow-y: auto; max-height: 360px; }
  .po-card__heading { font-size: 1.4rem; }
  .po-card__text { font-size: 0.875rem; }
}
@media (max-width: 380px) {
  .po-card__body { padding: 20px 16px; }
}

/* ── Footer logo: reset large negative margin on mobile ── */
@media (max-width: 768px) {
  .footer__brand__logo { margin-top: -60px; }
  .footer__brand__logo img { height: 160px; }
  .footer__brand p { margin-top: -20px; }
}
@media (max-width: 480px) {
  .footer__brand__logo { margin-top: -40px; }
  .footer__brand__logo img { height: 130px; }
  .footer__brand p { margin-top: -10px; }
}

/* ── Expandable card modal: reduce image height on phones ── */
@media (max-width: 480px) {
  .ec-modal__img { height: 200px; }
  .ec-modal__card { max-height: 92vh; }
}

/* ── Privacy cards: stack on mobile, hide image so text is readable ── */
@media (max-width: 640px) {
  .abt-cards { grid-template-columns: 1fr; }
  .priv-card__img-wrap { display: none; }
  .priv-card:hover .priv-card__body { background: none; }
  .priv-card__body { padding: 28px 24px; }
}

/* ── Compliance cards: 2 cols on tablet, 1 on phone ── */
@media (max-width: 640px) {
  .ec-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ── How It Works: tighten on small phones ── */
@media (max-width: 380px) {
  .hiw-col__illus { max-width: 100px; }
  .hiw-col__text { font-size: 0.875rem; }
}

/* ── About section badge ── */
@media (max-width: 480px) {
  .abt-badge { font-size: 0.75rem; padding: 8px 12px; }
  .abt-badge__num { font-size: 1.4rem; }
}

/* ── Onboarding card: full single column on small phones ── */
@media (max-width: 380px) {
  .ob-card { padding: 20px 16px; }
  .ob-card__title { font-size: 1.2rem; }
}

/* ── Section headers: tighten padding on phones ── */
@media (max-width: 480px) {
  .ec-section-header { padding: 0 4px; }
  .dotgrid-section { padding: 40px 0 0; }
  .abt-section { padding-bottom: 48px; }
  .flip-section { padding: 28px 0 48px; }
  .ob-section { padding: 40px 0; }
  .mgmt-section { padding: 40px 0 48px; }
}

/* ── Management image: fluid on mobile ── */
@media (max-width: 960px) {
  .mgmt-img-wrap { width: 100%; max-width: 480px; }
  .mgmt-img { width: 100%; height: auto; }
}

/* ── Contact section image ── */
@media (max-width: 480px) {
  .contact-intro__img { height: 160px; object-fit: cover; }
}

/* ── Footer bottom: stack on phone ── */
@media (max-width: 480px) {
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { justify-content: center; }
}

/* ── General container padding on small phones ── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .nav { width: calc(100% - 24px); }
}

/* ── Mobile nav: extra compact on tiny phones ── */
@media (max-width: 360px) {
  .nav__mobile { top: 58px; left: 8px; right: 8px; padding: 6px 6px 8px; }
  .nav__mobile a { font-size: 0.8rem; padding: 8px 10px; }
  .nav__mobile .btn { font-size: 0.8rem; height: 34px; }
}

/* ── Flip cards: responsive handled in flip section block ── */

/* ══════════════════════════════════════
   LANDLORD AUTH MODAL — two-panel design
══════════════════════════════════════ */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.auth-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

/* Card: two-column layout */
.auth-modal__card {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  opacity: 0;
}
.auth-modal.open .auth-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.auth-modal__close:hover { background: rgba(255,255,255,0.35); }

/* ── Left brand panel ── */
.auth-brand {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #012B20 0%, #024a36 60%, #016934 100%);
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.auth-brand__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
}
.auth-brand__tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 32px;
}
.auth-brand__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.auth-brand__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

/* ── Right form panel ── */
.auth-forms-wrap {
  flex: 1;
  background: #ffffff;
  padding: 40px 36px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Toggle switch pill */
.auth-switch {
  position: relative;
  display: flex;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
}
.auth-switch__pill {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
  transition: transform 0.25s cubic-bezier(0.34,1.2,0.64,1);
}
.auth-switch.login-active .auth-switch__pill {
  transform: translateX(100%);
}
.auth-switch__btn {
  flex: 1;
  height: 38px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 9px;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.auth-switch__btn.active { color: #012B20; }

/* Form panels */
.auth-panel--hidden { display: none; }
.auth-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
}

/* Fields */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.auth-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auth-field input {
  height: 44px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.9rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa;
}
.auth-field input:focus {
  border-color: #012B20;
  box-shadow: 0 0 0 3px rgba(1,43,32,0.1);
  background: #fff;
}
.auth-forgot {
  font-size: 0.78rem;
  color: #16A34A;
  text-decoration: none;
  font-weight: 500;
}
.auth-forgot:hover { text-decoration: underline; }

/* Submit */
.auth-submit {
  width: 100%;
  height: 46px;
  background: #012B20;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}
.auth-submit:hover { background: #024030; transform: translateY(-1px); }
.auth-submit:active { transform: translateY(0); }

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: #9ca3af;
  font-size: 0.78rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* Google */
.auth-google {
  width: 100%;
  height: 44px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.auth-google:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Terms */
.auth-terms {
  font-size: 0.73rem;
  color: #9ca3af;
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.6;
}
.auth-terms a { color: #16A34A; text-decoration: none; }
.auth-terms a:hover { text-decoration: underline; }

/* Mobile: stack vertically */
@media (max-width: 620px) {
  .auth-modal__card {
    flex-direction: column;
    max-width: 440px;
    max-height: 95vh;
  }
  .auth-brand {
    width: 100%;
    padding: 28px 24px 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .auth-brand__logo { height: 32px; margin-bottom: 0; }
  .auth-brand__tagline { font-size: 0.95rem; margin: 0; }
  .auth-brand__perks { display: none; }
  .auth-forms-wrap { padding: 24px 20px 20px; }
  .auth-modal__close { color: #fff; }
}

/* ══════════════════════════════════════
   COMING SOON OVERLAY
══════════════════════════════════════ */
.cs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cs-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cs-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 10, 0.84);
  backdrop-filter: blur(8px);
}

/* Card */
.cs-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(145deg, rgba(1,30,18,0.97) 0%, rgba(2,50,28,0.97) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 52px 48px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset;
  text-align: center;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s ease;
  opacity: 0;
  overflow: hidden;
}
.cs-overlay.open .cs-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Decorative glow */
.cs-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(22,163,74,0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* Close */
.cs-card__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cs-card__close:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Heading */
.cs-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Description */
.cs-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* Progress bar */
.cs-progress {
  margin-bottom: 28px;
}
.cs-progress__track {
  position: relative;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.cs-progress__fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 25%;
  background: linear-gradient(90deg, #014d26 0%, #16a34a 60%, #4ade80 100%);
  border-radius: 50px;
  animation: cs-progress-in 1.2s cubic-bezier(0.34,1.2,0.64,1) both;
}
@keyframes cs-progress-in {
  from { width: 0%; }
  to   { width: 25%; }
}
.cs-progress__label {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  z-index: 1;
}

/* Email form */
.cs-form {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.cs-form__input {
  flex: 1;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cs-form__input::placeholder { color: rgba(255,255,255,0.4); }
.cs-form__input:focus {
  border-color: #16a34a;
  background: rgba(255,255,255,0.15);
}
.cs-form__btn {
  height: 46px;
  padding: 0 22px;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.cs-form__btn:hover { background: #15803d; transform: translateY(-1px); }
.cs-form__btn:active { transform: translateY(0); }
.cs-form__success {
  font-size: 0.82rem;
  color: #4ade80;
  min-height: 20px;
  margin: 4px 0 20px;
}

/* Social proof */
.cs-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cs-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.15s, opacity 0.2s;
}
.cs-social__btn:hover { transform: translateY(-2px); opacity: 0.9; }
.cs-social__btn--li  { background: #0a66c2; color: #fff; }
.cs-social__btn--fb  { background: #1877f2; color: #fff; }
.cs-social__btn--wa  { background: #25d366; color: #fff; }
.cs-social__btn--ig  { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); color: #fff; }
.cs-social__btn--tt  { background: #010101; color: #fff; border-color: rgba(255,255,255,0.2); }

/* Mobile */
@media (max-width: 520px) {
  .cs-card { padding: 44px 20px 28px; }
  .cs-form { flex-direction: column; gap: 10px; }
  .cs-form__input {
    width: 100%;
    height: 52px;
    font-size: 1rem;
    padding: 0 18px;
  }
  .cs-form__btn {
    width: 100%;
    height: 52px;
    font-size: 1rem;
  }
  .cs-social { flex-wrap: wrap; gap: 8px; }
}
