/**
 * Envisio — Inner Pages Shared Styles
 */

/* ── Shared tokens (mirrors home) ── */
.ev-page {
  --royal:       #1B3F7A;
  --navy:        #0D1B3E;
  --blue-mid:    #4A7FD4;
  --gold:        #C9A84C;
  --white:       #FFFFFF;
  --gray-bg:     #F7F9FC;
  --border:      #DDE4F0;
  --border-soft: #E8ECF5;
  --text:        #0D1B3E;
  --muted:       #5A6A8A;
  --font-display:'Plus Jakarta Sans', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --container:   1280px;
  --section-y:   96px;
  --radius:      12px;
}

/* ── Containers & layout ── */
.ev-container {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}
.ev-section        { padding: var(--section-y) 0; }
.ev-section--alt   { background: var(--gray-bg); }

.ev-section-head         { margin-bottom: 48px; }
.ev-section-head--center { text-align: center; }
.ev-section-head--center .ev-section-tag { justify-content: center; }

.ev-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 16px;
}
.ev-section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--royal);
}

.ev-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 16px;
}
.ev-h2 em { font-style: normal; color: var(--royal); }

.ev-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
}

/* ── Buttons ── */
.ev-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 6px;
  background: var(--royal);
  color: var(--white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ev-btn-primary:hover           { background: #163566; transform: translateY(-2px); color: var(--white); }
.ev-btn-primary--full           { width: 100%; }
.ev-btn-primary--gold           { background: var(--gold); }
.ev-btn-primary--gold:hover     { background: #b08c38; }

.ev-btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1.5px solid var(--royal);
  color: var(--royal);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ev-btn-outline:hover       { background: var(--royal); color: var(--white); }
.ev-btn-outline--sm         { font-size: 12px; padding: 8px 16px; }

.ev-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--royal);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.ev-text-link:hover { gap: 10px; color: var(--blue-mid); }

/* ── Page Hero (legacy — still used by privacy-policy / terms-conditions) ── */
.ev-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 56px 0 0;
  /* Pull the hero up behind the transparent sticky header. */
  margin-top: calc(-1 * var(--ev-nav-h, 72px));
}
.ev-page-hero--short { min-height: 100vh; }
@media (min-width: 1024px) {
  .ev-page-hero { padding: 80px 0 0; }
}

.ev-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .ev-page-hero__bg { transform: none !important; }
}
.ev-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,16,36,0.35) 0%, rgba(9,16,36,0.55) 55%, rgba(9,16,36,0.85) 100%);
}
.ev-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 48px;
}
@media (min-width: 1024px) {
  .ev-page-hero__inner { padding: 0 24px 64px; }
}
.ev-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ev-page-hero__breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.ev-page-hero__breadcrumb a:hover { color: var(--white); }

.ev-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  margin: 0;
  max-width: 700px;
  text-wrap: balance;
}
.ev-page-hero__title em { font-style: normal; color: var(--gold); }

.ev-page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 32rem;
  line-height: 1.7;
  margin: 20px 0 28px;
}

/* ══════════════════════════════════════
   Full-bleed Hero (About-style) — shared across inner pages
══════════════════════════════════════ */
.ea-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', 'DM Sans', -apple-system, sans-serif;
  /* Pull hero up behind the transparent sticky header. */
  margin-top: calc(-1 * var(--ev-nav-h, 72px));
}

/* ── Full-bleed background photo ── */
.ea-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.ea-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .ea-hero__bg { transform: none !important; }
}

/* Dark gradient — strong bottom-left, fades top-right */
.ea-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 8, 20, 0.92) 0%,
      rgba(5, 8, 20, 0.60) 40%,
      rgba(15, 25, 60, 0.25) 100%
    ),
    linear-gradient(
      to right,
      rgba(5, 8, 20, 0.70) 0%,
      rgba(5, 8, 20, 0.10) 50%,
      rgba(5, 8, 20, 0.0) 100%
    );
}

/* ── Content container ── */
.ea-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  left: 0; right: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 96px;
}

.ea-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ea-hero__breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.ea-hero__breadcrumb a:hover { color: #fff; }

/* ── Title — large uppercase, bottom-left ── */
.ea-hero__title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff !important;
  margin: 0 0 20px;
  max-width: 680px;
}
.ea-hero__title em {
  font-style: normal;
  color: #ffffff !important;
}

/* ── Subtitle ── */
.ea-hero__sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82) !important;
  margin: 0 0 40px;
  max-width: 380px;
  font-weight: 400;
}
@media (min-width: 769px) {
  .ea-hero__sub { margin-bottom: 0; padding-bottom: 0; }
}
.ea-hero__sub + * { margin-top: 28px; }

/* ── Right-side rail: connecting line + scroll indicator ── */
.ea-hero__side {
  position: absolute;
  right: 4%;
  top: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 148px 0 96px;
}

.ea-hero__side-line {
  flex: 1;
  width: 1px;
  min-height: 40px;
  margin: 28px 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.05));
}

/* ── Scroll indicator (vertical label + arrow button) ── */
.ea-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ea-hero__scroll-lbl {
  writing-mode: vertical-rl;
  font-size: 11px;
  color: rgba(255,255,255,0.75) !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ea-hero__scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.ea-hero__scroll-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.14);
  transform: translateY(2px);
}
.ea-hero__scroll-btn svg {
  color: #fff;
  width: 16px;
  height: 16px;
  animation: eaScrollBounce 1.8s ease-in-out infinite;
}
@keyframes eaScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .ea-hero__scroll-btn svg { animation: none; }
}

@media (max-width: 768px) {
  .ea-hero__inner { padding: 0 24px; padding-bottom: 64px; }
  .ea-hero__title { font-size: clamp(32px, 9vw, 48px); }
  .ea-hero__side { right: 14px; padding: 120px 0 64px; }
  .ea-hero__scroll-lbl { display: none; }
}

/* ── CTA Strip ── */
.ev-cta-strip {
  background: var(--navy);
  padding: 48px 0;
}
/* FAQ page only: swap the plain navy CTA strip for the same themed
   dark-photo treatment as the rest of this page's sections. Scoped to
   .envisio-faq so other pages' CTA strips are unaffected. */
.envisio-faq .ev-cta-strip {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ev-cta-strip h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 6px;
}
.ev-cta-strip p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  margin: 0;
}
@media (max-width: 640px) {
  .ev-cta-strip__inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */

/* ── Our Story: 2-col image + text ── */
.ev-story {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-story .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-story .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-story .ev-h2 { color: var(--white); }
.ev-story .ev-h2 em { color: var(--gold); }
.ev-story .ev-body { color: rgba(255,255,255,0.65); }
.ev-story__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
@media (max-width: 768px) { .ev-story__wrap { grid-template-columns: 1fr; gap: 40px; } }

.ev-story__img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
@media (max-width: 768px) {
  .ev-story__img { min-height: 320px; aspect-ratio: 4/5; height: auto; }
}
.ev-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.08s linear;
  will-change: transform;
}
.ev-story__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--royal);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(13,27,62,0.28);
}
.ev-story__badge-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; }
.ev-story__badge-lbl { font-size: 11px; opacity: 0.75; margin-top: 4px; letter-spacing: 0.5px; }

/* Commitment highlight box (PropIQ style) */
.ev-story__text .ev-story__commitment {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--royal);
  border-radius: 10px;
  color: var(--white);
}
.ev-story__commitment p:first-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 8px;
}
.ev-story__commitment p:last-child {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  opacity: 0.90;
}

/* ── Stats bar (large numbers, prominent) ── */
.ev-about-stats {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  padding: 64px 0;
}
.ev-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 768px) {
  .ev-about-stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .ev-about-stats__grid { grid-template-columns: 1fr; }
}
.ev-about-stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.ev-about-stat:last-child { border-right: none; }
.ev-about-stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--royal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.ev-about-stat__lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .ev-about-stat { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .ev-about-stat:nth-child(2) { border-right: none; }
}

/* ── MVV (Services dark section style) ── */
.ev-mvv {
  background: linear-gradient(180deg, rgba(13,27,62,0.88) 0%, rgba(13,27,62,0.94) 100%), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat !important;
}
.ev-mvv .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-mvv .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-mvv .ev-h2 { color: var(--white); }
.ev-mvv .ev-h2 em { color: var(--gold); }

/* Service list style — dark cards with dot bullet */
.ev-mvv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 640px) { .ev-mvv__grid { grid-template-columns: 1fr; } }

.ev-mvv-card {
  padding: 32px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: transparent;
  border-radius: 0;
  border-top: none;
  border-left: none;
  transition: background 0.2s ease;
}
.ev-mvv-card:nth-child(even) { border-right: none; }
.ev-mvv-card:hover { background: rgba(255,255,255,0.04); }

/* Dot bullet replacing icon */
.ev-mvv-card__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--royal);
  flex-shrink: 0;
  margin-top: 8px;
}
.ev-mvv-card--mission .ev-mvv-card__icon { background: var(--royal); }
.ev-mvv-card--vision  .ev-mvv-card__icon { background: var(--gold); }
.ev-mvv-card--value   .ev-mvv-card__icon { background: rgba(255,255,255,0.35); }

/* Override icon SVG to show dot */
.ev-mvv-card__icon svg { display: none; }

.ev-mvv-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}
.ev-mvv-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  margin: 0;
}

/* MVV info box at bottom */
.ev-mvv__info-box {
  margin-top: 48px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 28px 32px;
}
.ev-mvv__info-box h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
}
.ev-mvv__info-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

/* ── Timeline ── */
.ev-timeline {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-timeline .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-timeline .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-timeline .ev-h2 { color: var(--white); }
.ev-timeline .ev-h2 em { color: var(--gold); }
.ev-timeline__track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0;
}
.ev-timeline__line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25) 10%, rgba(255,255,255,0.25) 90%, transparent);
  transform: translateX(-50%);
}
.ev-timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 36px);
  margin-bottom: 44px;
  position: relative;
}
.ev-timeline-item--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 36px);
}
.ev-timeline-item__dot {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 16px;
  height: 16px;
  background: var(--royal);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  transform: translateX(-50%);
  z-index: 2;
}
.ev-timeline-item__card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 22px 26px;
  max-width: 340px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ev-timeline-item__card:hover {
  box-shadow: 0 8px 32px rgba(13,27,62,0.10);
  transform: translateY(-2px);
}
.ev-timeline-item__year  { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.ev-timeline-item__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.ev-timeline-item__card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

@media (max-width: 640px) {
  .ev-timeline__line { left: 16px; }
  .ev-timeline-item, .ev-timeline-item--right { padding: 0 0 0 52px; justify-content: flex-start; }
  .ev-timeline-item__dot { left: 16px; }
  .ev-timeline-item__card { max-width: 100%; }
}

/* ── Leadership Team ──
   Shadow-card style: cards are always elevated (soft persistent
   shadow, no border) rather than flat-until-hover, with a deeper
   shadow + lift on hover. Body text is centered under the photo for
   a cleaner "profile card" read. */
.ev-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .ev-team__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ev-team__grid { grid-template-columns: 1fr; } }

.ev-team-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ev-team-card:hover {
  box-shadow: 0 22px 48px rgba(13, 27, 62, 0.16);
  transform: translateY(-6px);
}
.ev-team-card__img {
  position: relative;
  overflow: hidden;
}
.ev-team-card__photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.ev-team-card:hover .ev-team-card__photo { transform: scale(1.04); }
.ev-team-card__placeholder {
  width: 100%;
  height: 260px;
  background: var(--royal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-display);
}
.ev-team-card__body  { padding: 22px 20px 26px; text-align: center; }
.ev-team-card__name  { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ev-team-card__role  {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.ev-team-card__bio   { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Offices ── */
.ev-offices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 640px) { .ev-offices__grid { grid-template-columns: 1fr; } }

.ev-office-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ev-office-card__map iframe { width: 100%; height: 240px; border: none; display: block; }
.ev-office-card__body { padding: 22px 26px; }
.ev-office-card__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.ev-office-card__body p { font-size: 14px; color: var(--muted); margin: 0 0 12px; }

/* ══════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════ */

/* — Reveal variants (visible by default; JS adds .ev-proj-js to enable animation) — */
.ev-proj-page .ev-proj-animate {
  opacity: 1;
  transform: none;
}
.ev-proj-page.ev-proj-js .ev-proj-animate {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.ev-proj-page.ev-proj-js .ev-proj-animate--left  { transform: translateX(-36px); }
.ev-proj-page.ev-proj-js .ev-proj-animate--right { transform: translateX(36px); }
.ev-proj-page.ev-proj-js .ev-proj-animate--up    { transform: translateY(32px); }
.ev-proj-page.ev-proj-js .ev-proj-animate.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="70"]  { transition-delay: 70ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="80"]  { transition-delay: 80ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="90"]  { transition-delay: 90ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="100"] { transition-delay: 100ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="150"] { transition-delay: 150ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="180"] { transition-delay: 180ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="200"] { transition-delay: 200ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="230"] { transition-delay: 230ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="260"] { transition-delay: 260ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="280"] { transition-delay: 280ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="350"] { transition-delay: 350ms; }
.ev-proj-page.ev-proj-js .ev-proj-animate[data-delay="400"] { transition-delay: 400ms; }

/* Never hide content via global .ev-reveal on this page */
.ev-proj-page .ev-reveal,
.ev-proj-page .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .ev-proj-page.ev-proj-js .ev-proj-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ev-proj-app__visual { transform: none !important; }
}

.ev-btn-outline--lg {
  padding: 13px 28px;
  font-size: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.ev-btn-outline--lg:hover {
  background: var(--gray-bg);
  transform: translateY(-2px);
  color: var(--text);
  border-color: var(--border);
}
.ev-btn-primary--icon {
  gap: 8px;
}

/* — Hero filter bar — */
.ev-proj-filter {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 70%;
  margin-top: 32px;
  background: rgba(13, 20, 45, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  .ev-proj-filter {
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
  }
}
.ev-proj-filter__field {
  flex: 1;
  min-width: 0;
  padding: 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ev-proj-filter__field:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.ev-proj-filter__field:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.ev-proj-filter__field label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ev-proj-filter__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ev-proj-filter__select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 2px 26px 2px 0;
  cursor: pointer;
  /* Tells the browser to render the native dropdown popup (and its
     built-in hover/selection highlight) in a dark UI instead of the
     default white/bright-blue combo, so it matches the dark glass
     filter bar instead of looking like a stock browser control. */
  color-scheme: dark;
}
.ev-proj-filter__select-wrap select:focus {
  outline: none;
}
.ev-proj-filter__select-wrap select option {
  color: var(--white);
  background: var(--navy);
  padding: 10px 12px;
}
.ev-proj-filter__select-wrap select option:checked,
.ev-proj-filter__select-wrap select option:hover {
  background: var(--royal);
  color: var(--white);
}
.ev-proj-filter__chevron {
  position: absolute;
  right: 0;
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
}
.ev-proj-filter__field:hover .ev-proj-filter__chevron,
.ev-proj-filter__field:focus-within .ev-proj-filter__chevron {
  color: var(--white);
}
.ev-proj-filter__field:focus-within .ev-proj-filter__chevron {
  transform: rotate(180deg);
}
.ev-proj-filter__divider {
  width: 1px;
  align-self: stretch;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ev-proj-filter__divider {
    width: auto;
    height: 1px;
    margin: 4px 0;
  }
}
.ev-proj-filter__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  align-self: center;
  margin-left: 8px;
  border: none;
  border-radius: 10px;
  background: var(--royal);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ev-proj-filter__submit:hover {
  background: #163566;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .ev-proj-filter__submit {
    width: 100%;
    margin: 8px 0 0;
  }
}

/* — Empty filtered state — */
.ev-proj-empty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--gray-bg);
  border: 1px solid var(--border-soft);
}
.ev-proj-empty p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* — Stats bar — */
.ev-proj-stats {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .ev-proj-stats { padding: 64px 0; }
}
.ev-proj-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .ev-proj-stats__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .ev-proj-stats__grid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
}
.ev-proj-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 26px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ev-proj-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13, 27, 62, 0.09);
  border-color: var(--border);
}
.ev-proj-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--royal) 10%, var(--white));
  color: var(--royal);
}
.ev-proj-stat__icon svg { width: 22px; height: 22px; }
.ev-proj-stat__value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}
.ev-proj-stat__label {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 14rem;
}

/* — Discover — */
.ev-proj-discover {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(13,27,62,0.88) 0%, rgba(13,27,62,0.94) 100%), url('https://images.unsplash.com/photo-1560184897-ae75f418493e?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
@media (min-width: 1024px) {
  .ev-proj-discover { padding: 96px 0; }
}
.ev-proj-discover__grid {
  display: grid;
  align-items: center;
  gap: 48px;
}
@media (min-width: 1024px) {
  .ev-proj-discover__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.ev-proj-discover__img {
  order: 2;
  overflow: hidden;
  will-change: transform;
}
@media (min-width: 1024px) {
  .ev-proj-discover__img { order: 1; }
}
.ev-proj-discover__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.08s linear;
  will-change: transform;
}
.ev-proj-discover__text { order: 1; }
@media (min-width: 1024px) {
  .ev-proj-discover__text { order: 2; }
}
.ev-proj-discover__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}
.ev-proj-discover__body {
  margin: 20px 0 0;
  max-width: 28rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.ev-proj-discover__body strong { color: var(--white); font-weight: 600; }
.ev-proj-discover__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 32px;
}
.ev-proj-discover__feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.ev-proj-discover__feat-icon {
  display: flex;
  color: var(--gold);
}
.ev-proj-discover__feat-icon svg {
  width: 20px;
  height: 20px;
}
.ev-proj-discover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* — Browse by property type — */
.ev-proj-types {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1554995207-c18c203602cb?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  padding: 64px 0;
}
.ev-proj-types .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-proj-types .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-proj-types .ev-h2 { color: var(--white); }
.ev-proj-types .ev-h2 em { color: var(--gold); }
@media (min-width: 1024px) {
  .ev-proj-types { padding: 80px 0; }
}
/* Flexbox + centered wrap instead of a fixed-column grid: with only 2-3
   real property-type taxonomy terms, a rigid 5-column grid left-aligns
   the cards and leaves obvious empty column gaps. Centering makes any
   count (2, 3, 5...) look intentional. */
.ev-proj-types__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.ev-proj-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 200px;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 480px) {
  .ev-proj-type-card { width: calc(50% - 10px); padding: 28px 16px; }
}
.ev-proj-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}
.ev-proj-type-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(27, 63, 122, 0.08);
  color: var(--royal);
  transition: background 0.25s ease, color 0.25s ease;
}
.ev-proj-type-card:hover .ev-proj-type-card__icon {
  background: var(--gold);
  color: var(--navy);
}
.ev-proj-type-card__icon svg { width: 28px; height: 28px; }
.ev-proj-type-card__name {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
}
.ev-proj-type-card__count {
  font-size: 12.5px;
  color: var(--muted);
}

/* — Listing section — */
.ev-proj-listing {
  padding-top: 64px;
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-proj-listing .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-proj-listing .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-proj-listing .ev-h2 { color: var(--white); }
.ev-proj-listing .ev-h2 em { color: var(--gold); }

.ev-filter-bar { background: var(--white); border-bottom: 1px solid var(--border-soft); padding: 18px 0; position: sticky; top: 0; z-index: 50; }
.ev-filter-bar__inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ev-filter-form { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ev-filter-group { display: flex; flex-direction: column; gap: 4px; }
.ev-filter-group label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.ev-filter-group select {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--white);
  cursor: pointer;
  min-width: 140px;
}
.ev-filter-reset {
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 2px;
}

.ev-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .ev-proj-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ev-proj-grid { grid-template-columns: 1fr; } }

.ev-proj-card {
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.ev-proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0,0,0,0.32);
  border-color: rgba(201,168,76,0.4);
}

.ev-proj-card__img { position: relative; height: 240px; overflow: hidden; }
.ev-proj-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 16, 36, 0.55) 0%, rgba(9, 16, 36, 0) 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ev-proj-card:hover .ev-proj-card__img::after { opacity: 1; }
.ev-proj-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ev-proj-card:hover .ev-proj-card__img img { transform: scale(1.08); }

.ev-proj-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.12);
}
.ev-proj-card__badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.ev-proj-card__badge.eh-badge--ongoing   { background: rgba(220, 252, 231, 0.92); color: #15803d; }
.ev-proj-card__badge.eh-badge--completed { background: rgba(219, 234, 254, 0.92); color: #1d4ed8; }
.ev-proj-card__badge.eh-badge--upcoming  { background: rgba(254, 249, 195, 0.92); color: #a16207; }

.ev-proj-card__body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ev-proj-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.2s ease;
}
.ev-proj-card:hover .ev-proj-card__name { color: var(--gold); }
.ev-proj-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex: 1;
}
.ev-proj-card__meta svg { flex-shrink: 0; color: var(--gold); opacity: 0.8; }

.ev-proj-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.ev-proj-card__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}
.ev-proj-card:hover .ev-proj-card__link { color: var(--gold); }
.ev-proj-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ev-proj-card:hover .ev-proj-card__arrow {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   LANDOWNERS PAGE
══════════════════════════════════════ */

/* Themed dark-photo section backgrounds (same gradient formula as
   .ev-proj-types / .ev-story / .ev-ceo elsewhere): cards inside stay
   white/light — only the section backdrop + heading/tag go dark. */
.ev-lp-benefits {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-lp-benefits .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-lp-benefits .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-lp-benefits .ev-h2 { color: var(--white); }
.ev-lp-benefits .ev-h2 em { color: var(--gold); }

.ev-lp-process {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-lp-process .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-lp-process .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-lp-process .ev-h2 { color: var(--white); }
.ev-lp-process .ev-h2 em { color: var(--gold); }

.ev-lp-testimonials {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-lp-testimonials .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-lp-testimonials .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-lp-testimonials .ev-h2 { color: var(--white); }
.ev-lp-testimonials .ev-h2 em { color: var(--gold); }

.ev-lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .ev-lp-benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ev-lp-benefits__grid { grid-template-columns: 1fr; } }

.ev-lp-benefit-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease;
}
.ev-lp-benefit-card:hover { box-shadow: 0 8px 28px rgba(13,27,62,0.08); }
.ev-lp-benefit-card__icon { color: var(--royal); margin-bottom: 14px; }
.ev-lp-benefit-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); margin: 0 0 8px; }
.ev-lp-benefit-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Steps */
.ev-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 900px) { .ev-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ev-steps { grid-template-columns: 1fr; } }

.ev-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border-soft);
  position: relative;
}
.ev-step:last-child { border-right: none; }
/* .ev-lp-process has a dark photo background now — these steps aren't
   wrapped in a white card like the benefit/testimonial cards, so their
   text needs its own light-on-dark colors here or it'd be unreadable. */
.ev-lp-process .ev-step { border-right-color: rgba(255,255,255,0.18); }
.ev-lp-process .ev-step__num { color: rgba(255,255,255,0.25); }
.ev-lp-process .ev-step__title { color: var(--white); }
.ev-lp-process .ev-step p { color: rgba(255,255,255,0.7); }
.ev-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.ev-step__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.ev-step p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Testimonials grid */
.ev-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .ev-testi-grid { grid-template-columns: 1fr; } }

.ev-testi-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.ev-testi-card__stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.ev-testi-card blockquote { font-size: 15px; color: var(--text); line-height: 1.7; margin: 0 0 20px; font-style: italic; }
.ev-testi-card__author { display: flex; align-items: center; gap: 12px; }
.ev-testi-card__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.ev-testi-card__name { font-weight: 600; font-size: 14px; color: var(--text); }
.ev-testi-card__role { font-size: 12px; color: var(--muted); }

/* Accordion */
.ev-faq {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-faq .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-faq .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-faq .ev-h2 { color: var(--white); }
.ev-faq .ev-h2 em { color: var(--gold); }
.ev-faq__wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .ev-faq__wrap { grid-template-columns: 1fr; } }

.ev-faq__media {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.ev-faq__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.08s linear;
  will-change: transform;
}
@media (max-width: 768px) {
  .ev-faq__media { position: static; aspect-ratio: 16 / 9; }
}

.ev-accordion { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; }
.ev-accordion-item { border-bottom: 1px solid var(--border-soft); background: var(--white); }
.ev-accordion-item:last-child { border-bottom: none; }
.ev-accordion-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.ev-accordion-item__q-text { flex: 1; }
.ev-accordion-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  position: relative;
  transition: border-color 0.25s ease;
}
.ev-accordion-item__icon::before,
.ev-accordion-item__icon::after {
  content: '';
  position: absolute;
  background: var(--royal);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.ev-accordion-item__icon::before { width: 10px; height: 1.5px; }
.ev-accordion-item__icon::after  { width: 1.5px; height: 10px; }
.ev-accordion-item.is-open .ev-accordion-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

/* Smooth expand/collapse (was an instant display:none/block toggle).
   max-height is capped generously above any realistic answer length —
   the easing curve is what reads as "smooth", the exact cap doesn't
   need to match content height precisely. */
.ev-accordion-item__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.ev-accordion-item__a p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.ev-accordion-item.is-open .ev-accordion-item__a {
  max-height: 400px;
  padding: 0 24px 18px;
}

/* Polished card variant (Landowners FAQ): each question becomes its own
   separated, shadowed card with a topic icon, instead of one bordered
   list box with divider lines between items. */
.ev-accordion--cards {
  gap: 14px;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.ev-accordion--cards .ev-accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.ev-accordion--cards .ev-accordion-item:hover {
  box-shadow: 0 10px 28px rgba(13, 27, 62, 0.07);
}
.ev-accordion--cards .ev-accordion-item.is-open {
  border-color: var(--royal);
  box-shadow: 0 14px 34px rgba(13, 27, 62, 0.1);
}
.ev-accordion--cards .ev-accordion-item.is-open .ev-accordion-item__icon {
  border-color: var(--royal);
}
.ev-accordion-item__topic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(27, 63, 122, 0.08);
  color: var(--royal);
}
.ev-accordion-item__topic-icon svg { width: 20px; height: 20px; }

/* LP Form */
.ev-lp-form__wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .ev-lp-form__wrap { grid-template-columns: 1fr; } }

.ev-lp-checklist { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.ev-lp-checklist li { font-size: 14px; color: var(--muted); padding-left: 22px; position: relative; }
.ev-lp-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--royal); font-weight: 700; }

/* ══════════════════════════════════════
   CONCERNS PAGE
══════════════════════════════════════ */
.ev-concerns-listing {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-concerns-listing .ev-text-link { color: var(--gold); }
.ev-concerns-listing .ev-text-link:hover { color: var(--white); }
.ev-concern-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ev-concern-block:last-child { border-bottom: none; }
.ev-concern-block--reverse { direction: rtl; }
.ev-concern-block--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .ev-concern-block, .ev-concern-block--reverse { grid-template-columns: 1fr; direction: ltr; }
}

.ev-concern-block__img { overflow: hidden; border-radius: var(--radius); }
.ev-concern-block__img img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  transform: scale(1);
  transition: transform 0.08s linear;
  will-change: transform;
}
.ev-concern-block__icon-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.ev-concern-block__tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.ev-concern-block__text h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); margin: 0 0 14px; }
.ev-concern-block__text p  { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0 0 16px; }
.ev-concern-block__services { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.ev-concern-block__services li { font-size: 14px; color: rgba(255,255,255,0.65); padding-left: 22px; position: relative; }
.ev-concern-block__services li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* ══════════════════════════════════════
   CAREER PAGE
══════════════════════════════════════ */
.ev-career-culture {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-career-culture .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-career-culture .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-career-culture .ev-h2 { color: var(--white); }
.ev-career-culture .ev-h2 em { color: var(--gold); }
.ev-career-culture .ev-body { color: rgba(255,255,255,0.65); }
.ev-career-culture__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .ev-career-culture__wrap { grid-template-columns: 1fr; } }

.ev-career-perks { display: flex; flex-direction: column; gap: 20px; }
.ev-career-perk { display: flex; gap: 16px; align-items: flex-start; }
.ev-career-perk__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ev-career-perk__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.ev-career-perk p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; }

.ev-jobs {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-jobs .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-jobs .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-jobs .ev-h2 { color: var(--white); }
.ev-jobs .ev-h2 em { color: var(--gold); }
.ev-jobs__list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; }
.ev-job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s ease;
}
.ev-job-item:last-child { border-bottom: none; }
.ev-job-item:hover { background: var(--gray-bg); }
.ev-job-item__title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.ev-job-item__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.ev-job-item__type { background: var(--gray-bg); padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--royal); }

.ev-career-form {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-career-form .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-career-form .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-career-form .ev-h2 { color: var(--white); }
.ev-career-form .ev-h2 em { color: var(--gold); }
.ev-career-form .ev-body { color: rgba(255,255,255,0.65); }
.ev-career-form .ev-form__group label { color: var(--white); }
.ev-career-form__wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .ev-career-form__wrap { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   CSR PAGE
══════════════════════════════════════ */
.ev-impact-strip {
  background: linear-gradient(180deg, rgba(13,27,62,0.82) 0%, rgba(13,27,62,0.88) 100%), url('https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  padding: 40px 0;
}
.ev-impact-strip__inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.ev-impact-stat { text-align: center; }
.ev-impact-stat__num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.ev-impact-stat__lbl { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 1px; margin-top: 6px; text-transform: uppercase; }

.ev-csr-listing {
  background: linear-gradient(180deg, rgba(13,27,62,0.86) 0%, rgba(13,27,62,0.93) 100%), url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-csr-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ev-csr-block:last-child { border-bottom: none; }
.ev-csr-block--reverse { direction: rtl; }
.ev-csr-block--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .ev-csr-block, .ev-csr-block--reverse { grid-template-columns: 1fr; direction: ltr; }
}
.ev-csr-block__img { overflow: hidden; border-radius: var(--radius); }
.ev-csr-block__img img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  transform: scale(1);
  transition: transform 0.08s linear;
  will-change: transform;
}
.ev-csr-block__cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.ev-csr-block__stat { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.ev-csr-block__text h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin: 0 0 10px; }
.ev-csr-block__text p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════
   PRESS PAGE
══════════════════════════════════════ */
.ev-media-kit-strip { background: var(--gray-bg); border-bottom: 1px solid var(--border-soft); padding: 14px 0; }
.ev-media-kit-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }

.ev-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .ev-press-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ev-press-grid { grid-template-columns: 1fr; } }

.ev-press-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s ease; }
.ev-press-card:hover { box-shadow: 0 8px 28px rgba(13,27,62,0.08); }
.ev-press-card__img { display: block; height: 200px; overflow: hidden; }
.ev-press-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ev-press-card:hover .ev-press-card__img img { transform: scale(1.04); }
.ev-press-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ev-press-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ev-press-card__cat { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--gray-bg); color: var(--royal); padding: 3px 8px; border-radius: 3px; }
.ev-press-card__meta time { font-size: 12px; color: var(--muted); }
.ev-press-card__body h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); margin: 0; line-height: 1.35; flex: 1; }
.ev-press-card__body h3 a { color: inherit; text-decoration: none; }
.ev-press-card__body h3 a:hover { color: var(--royal); }
.ev-press-card__body p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.ev-contact-main__wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .ev-contact-main__wrap { grid-template-columns: 1fr; } }

.ev-contact-form-wrap .ev-h2 { margin-bottom: 6px; }
.ev-contact-info { background: var(--gray-bg); border-radius: var(--radius); padding: 36px 32px; }
.ev-contact-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); margin: 0 0 24px; }
.ev-contact-info__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.ev-contact-info__icon { color: var(--royal); flex-shrink: 0; margin-top: 2px; }
.ev-contact-info__label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ev-contact-info__item p, .ev-contact-info__item a { font-size: 14px; color: var(--text); margin: 0; text-decoration: none; }
.ev-contact-info__item a:hover { color: var(--royal); }
.ev-contact-info__actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   SHARED FORMS
══════════════════════════════════════ */
.ev-form { display: flex; flex-direction: column; gap: 16px; }
.ev-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .ev-form__row { grid-template-columns: 1fr; } }
.ev-form__group { display: flex; flex-direction: column; gap: 6px; }
.ev-form__group label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.3px; color: var(--text); }
/* ══════════════════════════════════════
   SINGLE PROJECT PAGE
══════════════════════════════════════ */
.ev-single-proj-page {
    background: var(--navy);
}

/* ── Hero ── */
.ev-single-proj-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: calc(-1 * var(--ev-nav-h, 72px));
}

.ev-single-proj-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}
.ev-single-proj-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Three-layer gradient: dark bottom, dark left, blue tint top */
.ev-single-proj-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(5, 8, 20, 0.95) 0%,
            rgba(5, 8, 20, 0.65) 40%,
            rgba(10, 20, 55, 0.25) 100%),
        linear-gradient(to right,
            rgba(5, 8, 20, 0.60) 0%,
            rgba(5, 8, 20, 0.0) 55%);
}

@media (prefers-reduced-motion: reduce) {
    .ev-single-proj-hero__bg { transform: none !important; }
}

/* Content — stacked bottom-left */
.ev-single-proj-hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 72px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Breadcrumb */
.ev-single-proj-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.ev-single-proj-breadcrumb a {
    color: rgba(255,255,255,0.50);
    text-decoration: none;
    transition: color 0.2s;
}
.ev-single-proj-breadcrumb a:hover { color: #fff; }
.ev-single-proj-breadcrumb span:last-child { color: rgba(255,255,255,0.75); }

/* Badges row */
.ev-single-proj-hero__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ev-single-proj-status {
    display: inline-block;
    background: #f59e0b;
    color: #0f172a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
}

.ev-single-proj-rajuk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.80);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px 5px 10px;
    border-radius: 999px;
}
.ev-single-proj-rajuk svg { color: #f59e0b; }

/* Title */
.ev-single-proj-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 0 0 20px;
    max-width: 800px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .ev-single-proj-title { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1px; }
}

/* Location */
.ev-single-proj-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.70);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 8px 18px 8px 12px;
    border-radius: 999px;
    width: fit-content;
}
.ev-single-proj-location svg { color: #f59e0b; flex-shrink: 0; }

/* Right-side scroll hint dot */
.ev-single-proj-hero__scroll-hint {
    position: absolute;
    right: 32px;
    bottom: 72px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ev-single-proj-hero__scroll-hint span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    writing-mode: vertical-rl;
}
.ev-single-proj-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@media (max-width: 768px) {
    .ev-single-proj-hero__scroll-hint { display: none; }
    .ev-single-proj-hero__inner { padding-bottom: 52px; }
}

/* Gallery strip */
.ev-single-proj-gallery-strip {
    padding: 24px 0 0;
    background: var(--navy);
}
.ev-single-proj-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
@media (max-width: 640px) {
    .ev-single-proj-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ev-single-proj-gallery-thumb {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.ev-single-proj-gallery-thumb.is-active {
    border-color: var(--gold);
}

.ev-single-proj-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Details bar + CTA now live in their own section below the hero /
   gallery strip, instead of being crammed inside the hero itself */
/* At a Glance: image/video on one side, spec list + Address callout +
   CTA/Share on the other — replaces the old flat "details bar". */
.ev-single-proj-glance {
    padding: 32px 0 60px;
    background: var(--navy);
}
.ev-single-proj-glance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .ev-single-proj-glance-grid { grid-template-columns: 1fr; }
}
.ev-single-proj-glance-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ev-single-proj-glance-media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.14);
}
.ev-single-proj-glance-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
}
.ev-single-proj-glance-video iframe,
.ev-single-proj-glance-video video,
.ev-single-proj-glance-video embed,
.ev-single-proj-glance-video object {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ev-single-proj-glance-info {
    display: flex;
    flex-direction: column;
}
.ev-single-proj-glance-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
}
@media (max-width: 480px) {
    .ev-single-proj-glance-list { grid-template-columns: 1fr; }
}
.ev-single-proj-glance-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ev-single-proj-glance-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.ev-single-proj-glance-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}
.ev-single-proj-glance-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
}
.ev-single-proj-glance-address .ev-single-proj-glance-label { color: var(--gold); }
.ev-single-proj-glance-address .ev-single-proj-glance-value { font-size: 16px; }

.ev-single-proj-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.ev-single-proj-social span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.ev-single-proj-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
}

.ev-single-proj-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* CTA Button(s) */
.ev-single-proj-cta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ev-single-proj-cta .ev-btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.ev-single-proj-cta .ev-btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Description Section */
.ev-single-proj-description {
    padding: 60px 0;
    background: transparent;
}

.ev-single-proj-section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
}

.ev-single-proj-content {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
    max-width: 800px;
}

.ev-single-proj-content p {
    margin: 0 0 16px;
}

/* Amenities Section */
.ev-single-proj-amenities {
    padding: 0 0 60px;
}
.ev-single-proj-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 28px;
}
@media (max-width: 768px) {
    .ev-single-proj-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ev-single-proj-amenities-grid { grid-template-columns: 1fr; }
}
.ev-single-proj-amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.8);
}
.ev-single-proj-amenity svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* Location / Map Section */
.ev-single-proj-map-section {
    padding: 0 0 60px;
}
.ev-single-proj-map {
    aspect-ratio: 21/9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
}
.ev-single-proj-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 640px) {
    .ev-single-proj-map { aspect-ratio: 4/3; }
}

/* Apartments Section */
.ev-single-proj-apartments {
    padding: 60px 0;
}

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

@media (max-width: 900px) {
    .ev-single-proj-apartments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .ev-single-proj-apartments-grid {
        grid-template-columns: 1fr;
    }
}

.ev-single-proj-apartment-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-single-proj-apartment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 27, 62, 0.1);
}

.ev-single-proj-apartment-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ev-single-proj-apartment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ev-single-proj-apartment-card:hover .ev-single-proj-apartment-img img {
    transform: scale(1.05);
}

.ev-single-proj-apartment-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
}

.ev-single-proj-apartment-badge--sold {
    background: #fee2e2;
    color: #991b1b;
}

.ev-single-proj-apartment-body {
    padding: 16px 20px 20px;
}

.ev-single-proj-apartment-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}

.ev-single-proj-apartment-meta {
    font-size: 13px;
    color: var(--muted);
}

/* Our Developments Section */
.ev-single-proj-developments {
    padding: 60px 0;
    background: transparent;
}

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

@media (max-width: 900px) {
    .ev-single-proj-developments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .ev-single-proj-developments-grid {
        grid-template-columns: 1fr;
    }
}

.ev-single-proj-development-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-single-proj-development-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 27, 62, 0.1);
}

.ev-single-proj-development-img {
    height: 180px;
    overflow: hidden;
}

.ev-single-proj-development-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ev-single-proj-development-card:hover .ev-single-proj-development-img img {
    transform: scale(1.05);
}

.ev-single-proj-development-body {
    padding: 16px 20px 20px;
}

.ev-single-proj-development-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
}

.ev-single-proj-development-location {
    font-size: 13px;
    color: var(--muted);
}

/* Contact CTA Section */
.ev-single-proj-contact {
    background: var(--royal);
    padding: 48px 0;
}

.ev-single-proj-contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ev-single-proj-contact-text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px;
}

.ev-single-proj-contact-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.ev-single-proj-contact .ev-btn-primary {
    background: var(--white);
    color: var(--royal);
}

.ev-single-proj-contact .ev-btn-primary:hover {
    background: var(--gold);
    color: var(--navy);
}

.ev-form__group input,
.ev-form__group select,
.ev-form__group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  background: var(--white);
  transition: border-color 0.2s ease;
  width: 100%;
}
.ev-form__group input:focus,
.ev-form__group select:focus,
.ev-form__group textarea:focus { outline: none; border-color: var(--royal); }
.ev-form__group input[type="file"] { padding: 8px 14px; cursor: pointer; }

/* ══════════════════════════════════════════════════════
   ABOUT — Scroll-Driven Sticky Section
══════════════════════════════════════════════════════ */
.ev-about-scroll {
  position: relative;
  background: #fafaf9;
}
.ev-about-scroll__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .ev-about-scroll__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
}

/* ── LEFT: sticky panel ── */
.ev-about-scroll__left {
  position: relative;
  display: none;
}
@media (min-width: 900px) {
  .ev-about-scroll__left {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    padding: 48px 40px 48px 24px;
  }
}

/* Watermark */
.ev-about-scroll__watermark {
  position: absolute;
  bottom: 32px;
  left: -16px;
  font-family: Georgia, serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(13, 27, 62, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Panel — stacked slides, one visible at a time */
.ev-about-scroll__panel {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ev-about-scroll__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.ev-about-scroll__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Image */
.ev-about-scroll__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}
.ev-about-scroll__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ev-about-scroll__slide.is-active .ev-about-scroll__img-wrap img {
  transform: scale(1.02);
}

/* Copy */
.ev-about-scroll__copy { display: flex; flex-direction: column; gap: 14px; }
.ev-about-scroll__heading {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: #111;
  margin: 0;
  line-height: 1.2;
}
.ev-about-scroll__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}
.ev-about-scroll__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}
.ev-about-scroll__btn:hover { color: var(--royal, #0d1b3e); border-color: var(--royal, #0d1b3e); }

/* ── RIGHT: scrollable cards ── */
.ev-about-scroll__right {
  padding: 80px 0 80px 0;
}
@media (min-width: 900px) {
  .ev-about-scroll__right { padding: 80px 24px 80px 40px; border-left: 1px solid #e8e6e1; }
}

.ev-about-scroll__section-label {
  font-family: var(--font-display, sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 40px;
}

/* Cards list */
.ev-about-scroll__cards {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ev-about-scroll__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e6e1;
  cursor: pointer;
  transition: background 0.2s ease;
  outline: none;
}
.ev-about-scroll__cards li:first-child { border-top: 1px solid #e8e6e1; }

/* Left accent line */
.ev-about-scroll__card-accent {
  position: absolute;
  left: -24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--royal, #0d1b3e);
  transform: scaleY(0);
  transition: transform 0.35s ease;
  transform-origin: top;
}
@media (min-width: 900px) {
  .ev-about-scroll__card-accent { left: -40px; }
}
.ev-about-scroll__card.is-active .ev-about-scroll__card-accent { transform: scaleY(1); }

/* Thumbnail */
.ev-about-scroll__card-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.ev-about-scroll__card.is-active .ev-about-scroll__card-thumb { filter: grayscale(0); }

/* Info */
.ev-about-scroll__card-info { flex: 1; min-width: 0; }
.ev-about-scroll__card-cat {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.ev-about-scroll__card.is-active .ev-about-scroll__card-cat { color: var(--royal, #0d1b3e); }
.ev-about-scroll__card-date {
  font-family: var(--font-display, sans-serif);
  font-size: 11px;
  letter-spacing: 1px;
  color: #aaa;
  text-transform: uppercase;
}

/* Arrow */
.ev-about-scroll__card-arrow {
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.ev-about-scroll__card:hover .ev-about-scroll__card-arrow,
.ev-about-scroll__card.is-active .ev-about-scroll__card-arrow {
  color: var(--royal, #0d1b3e);
  transform: translateX(4px);
}

/* ── Progress dots ── */
.ev-about-scroll__dots {
  display: none;
}
@media (min-width: 900px) {
  .ev-about-scroll__dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
  }
}
.ev-about-scroll__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ev-about-scroll__dot.is-active {
  background: var(--royal, #0d1b3e);
  transform: scale(1.5);
}

/* Mobile: left panel shown above cards */
@media (max-width: 899px) {
  .ev-about-scroll__left { display: block; padding: 40px 0 0; }
  .ev-about-scroll__panel { position: relative; height: auto; }
  .ev-about-scroll__slide { position: relative; inset: auto; opacity: 0; height: 0; overflow: hidden; transition: none; }
  .ev-about-scroll__slide.is-active { opacity: 1; height: auto; overflow: visible; }
  .ev-about-scroll__watermark { display: none; }
}

/* ── About page global layout constraint ── */
.envisio-about .ev-ceo {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* ══════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════ */

/* Themed dark-photo section backgrounds — same gradient formula used
   across the site (.ev-ceo / .ev-proj-types / Landowners sections).
   Stat items have no white card wrapper, so they get their own
   light-on-dark color overrides here; the tab pills and topic cards
   already have their own white backgrounds and need no changes. */
.ev-faq-stats {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  border-bottom: none;
}
.ev-faq-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ev-faq-stat { text-align: center; padding: 32px 16px; border-right: 1px solid rgba(255,255,255,0.18); }
.ev-faq-stat:last-child { border-right: none; }
.ev-faq-stat__value { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--white); line-height: 1; }
.ev-faq-stat__label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 640px) {
  .ev-faq-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ev-faq-stat:nth-child(2) { border-right: none; }
  .ev-faq-stat:nth-child(1), .ev-faq-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.18); }
}

.ev-faq-browse {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-faq-browse .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-faq-browse .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-faq-browse .ev-h2 { color: var(--white); }
.ev-faq-browse .ev-h2 em { color: var(--gold); }

.ev-faq-services {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.ev-faq-services .ev-section-tag { color: rgba(255,255,255,0.45); }
.ev-faq-services .ev-section-tag::before { background: rgba(255,255,255,0.28); }
.ev-faq-services .ev-h2 { color: var(--white); }
.ev-faq-services .ev-h2 em { color: var(--gold); }

.ev-faq-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.ev-faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ev-faq-tab:hover { border-color: var(--royal); color: var(--royal); }
.ev-faq-tab.is-active { background: var(--royal); border-color: var(--royal); color: var(--white); }

.ev-faq-group { display: none; max-width: 860px; margin: 0 auto; }
.ev-faq-group.is-active { display: block; }

.ev-faq-topics { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 900px) { .ev-faq-topics { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .ev-faq-topics { grid-template-columns: repeat(2, 1fr); } }
.ev-faq-topic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 22px 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
}
.ev-faq-topic:hover { border-color: var(--royal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,27,62,0.08); }
.ev-faq-topic__icon { color: var(--royal); }
.ev-faq-topic__label { font-size: 13px; font-weight: 700; color: var(--text); }

/* ══════════════════════════════════════
   LEGAL / POLICY PAGES (Privacy, Terms, Refund)
══════════════════════════════════════ */

/* Themed dark-photo CTA strip (same treatment as the FAQ page) —
   scoped per page so the plain navy .ev-cta-strip elsewhere is
   unaffected. The hero on these pages already has its own photo
   background, and the legal text itself stays plain/light for
   readability — only the closing CTA strip gets the photo treatment. */
.envisio-privacy-policy .ev-cta-strip {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.envisio-terms .ev-cta-strip {
  background: linear-gradient(180deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.92) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}

.ev-legal-content {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  color: var(--text, #0D1B3E);
  font-size: 16px;
  line-height: 1.8;
}
.ev-legal-content h1,
.ev-legal-content h2,
.ev-legal-content h3,
.ev-legal-content h4 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-weight: 700;
  color: var(--text, #0D1B3E);
  line-height: 1.3;
  margin: 2rem 0 0.9rem;
}
.ev-legal-content h1:first-child,
.ev-legal-content h2:first-child { margin-top: 0; }
.ev-legal-content h1 { font-size: clamp(22px, 3vw, 28px); }
.ev-legal-content h2 { font-size: clamp(19px, 2.4vw, 23px); border-top: 1px solid var(--border-soft, #E8ECF5); padding-top: 1.75rem; }
.ev-legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.ev-legal-content h3 { font-size: 17px; }
.ev-legal-content p { margin: 0 0 1rem; color: var(--muted, #5A6A8A); }
.ev-legal-content ul, .ev-legal-content ol { margin: 0 0 1rem; padding-left: 1.4rem; color: var(--muted, #5A6A8A); }
.ev-legal-content li { margin: 0.35rem 0; }
.ev-legal-content a { color: var(--royal, #1B3F7A); text-decoration: underline; }
.ev-legal-content strong { font-weight: 700; color: var(--text, #0D1B3E); }
.ev-legal-content blockquote {
  margin: 1.25rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 3px solid var(--royal, #1B3F7A);
  color: var(--muted, #5A6A8A);
  font-style: italic;
}
.ev-legal-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 14px; }
.ev-legal-content th, .ev-legal-content td { border: 1px solid var(--border-soft, #E8ECF5); padding: 0.6rem 0.85rem; text-align: left; }
.ev-legal-content th { background: var(--gray-bg, #F7F9FC); font-family: var(--font-display); font-weight: 700; }

.ev-legal-updated {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  font-size: 13px;
  color: var(--muted, #5A6A8A);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft, #E8ECF5);
}


