/*
Theme Name:  Sergio Theme
Theme URI:   https://tenantandlandlord.com
Author:      TenantandLandlord.com
Description: Custom WordPress theme for TenantandLandlord.com, powered by ACF Flexible Content.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: sergio-theme
*/

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

:root {
  --navy:       #0b2540;
  --navy-2:     #163a65;
  --blue:       #1a6fc4;
  --blue-lt:    #3b9eed;
  --amber:      #f59e0b;
  --amber-dk:   #d97706;
  --white:      #ffffff;
  --off:        #f5f7fa;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --r:          14px;
  --sh:         0 8px 32px rgba(0,0,0,.12);
  --sh-lg:      0 24px 64px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ─────────────────────────────────────────────
   PILL LABEL
───────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,111,196,.13);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pill.light {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.pill.amber {
  background: rgba(245,158,11,.18);
  color: #92400e;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 9px;
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,158,11,.38);
}
.btn-amber:hover { background: var(--amber-dk); box-shadow: 0 8px 28px rgba(245,158,11,.5); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.18); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,111,196,.32);
}
.btn-blue:hover { background: #1560ab; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11,37,64,.28);
}
.btn-navy:hover { background: #081d33; }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg { width: 20px; height: 20px; }

.nav-logo-text {
  font-size: .92rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.nav-logo-text span { display: block; font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }

/* ── Dropdown (items con hijos) ── */
.nav-item-dropdown { position: relative; list-style: none; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--white); background: rgba(255,255,255,.1); }

.nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.nav-item-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(11,37,64,.14);
  list-style: none;
  padding: 6px;
  z-index: 200;
}
.nav-item-dropdown.open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  font-size: .87rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 7px;
  transition: background .15s;
}
.nav-dropdown li a:hover { background: rgba(11,37,64,.06); }
.nav-dropdown li a.active { color: var(--blue); background: rgba(26,111,196,.08); }

.nav-cta {
  padding: 10px 22px;
  font-size: .86rem;
}

/* hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; padding: 8px; border: none; background: transparent; border-radius: 8px; transition: background .15s; flex-shrink: 0; }
.nav-hamburger:hover { background: rgba(255,255,255,.1); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.nav-mobile { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); z-index: 99; box-shadow: 0 12px 40px rgba(0,0,0,.35); padding: 8px 0 20px; overflow-y: auto; max-height: calc(100vh - 72px); }
.nav-mobile.open { display: block; }
.nav-mobile-links { list-style: none; padding: 8px 16px 0; margin: 0; }
.nav-mobile-links li a { display: block; padding: 13px 16px; font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.8); text-decoration: none; border-radius: 9px; transition: background .15s, color .15s; }
.nav-mobile-links li a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-mobile-links li a.active { color: var(--amber); background: rgba(245,158,11,.08); }
.nav-mobile-cta { padding: 12px 16px 0; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────
   ① HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: max(100vh, 840px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(11,37,64,.96) 0%, rgba(11,37,64,.75) 50%, rgba(11,37,64,.28) 100%),
    linear-gradient(to bottom, transparent 45%, rgba(11,37,64,.7) 100%);
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(26,111,196,.07) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
  max-width: 660px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-eyebrow span {
  color: var(--amber);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .01em;
  margin-bottom: 26px;
  font-style: italic;
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 42px;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  margin-bottom: 30px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.hero-badge span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: .04em;
}

/* stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}

.hero-stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,.13);
}
.stat-item:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.stat-item:first-child { padding-left: 0; }

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,158,11,.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; stroke: var(--amber); }

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  line-height: 1.35;
}

/* ─────────────────────────────────────────────
   ② VALUE PROPOSITION
───────────────────────────────────────────── */
.value-prop {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-prop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  border-radius: 0 0 4px 4px;
}

.value-prop-inner {
  max-width: 760px;
  margin: 0 auto;
}

.sec-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sec-header p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.pillar-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--off);
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.pillar-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-chip-icon.blue { background: rgba(26,111,196,.12); }
.pillar-chip-icon.amber { background: rgba(245,158,11,.12); }
.pillar-chip-icon.navy { background: rgba(11,37,64,.08); }
.pillar-chip-icon svg { width: 18px; height: 18px; }

.pillar-chip-text {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  text-align: left;
}
.pillar-chip-text span {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1px;
}

/* ─────────────────────────────────────────────
   ③ AUDIENCE SPLIT
───────────────────────────────────────────── */
.audience {
  padding: 96px 0;
  background: var(--off);
}

.audience-header {
  text-align: center;
  margin-bottom: 52px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.aud-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-lg);
}

.aud-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.aud-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.aud-card:hover .aud-card-img img { transform: scale(1.05); }

.aud-card-img-overlay {
  position: absolute;
  inset: 0;
}

.aud-card.landlord .aud-card-img-overlay {
  background: linear-gradient(to bottom, rgba(11,37,64,.55) 0%, rgba(11,37,64,.2) 50%, rgba(11,37,64,.0) 100%);
}
.aud-card.landlord .aud-card-body {
  background: var(--navy);
}

.aud-card.tenant .aud-card-img-overlay {
  background: linear-gradient(to bottom, rgba(26,111,196,.55) 0%, rgba(26,111,196,.2) 50%, rgba(26,111,196,.0) 100%);
}
.aud-card.tenant .aud-card-body {
  background: #12305e;
}

.aud-card-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 14px;
  border-radius: 100px;
  z-index: 2;
}
.aud-card-label span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.aud-card-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aud-card-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.aud-card-body > p {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
  flex: 1;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.landlord .feat-icon { background: rgba(245,158,11,.18); }
.tenant .feat-icon { background: rgba(59,158,237,.2); }
.feat-icon svg { width: 14px; height: 14px; }
.landlord .feat-icon svg { stroke: var(--amber); }
.tenant .feat-icon svg { stroke: var(--blue-lt); }

.feat-text strong {
  display: block;
  font-size: .91rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.feat-text span {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.aud-card .btn { align-self: flex-start; margin-top: auto; }

/* ─────────────────────────────────────────────
   ④ WHY CHOOSE US
───────────────────────────────────────────── */
.why {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.why::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26,111,196,.18) 0%, transparent 70%);
  pointer-events: none;
}

.why-inner { position: relative; z-index: 1; }

.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 0;
}

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

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 36px 32px 38px;
  position: relative;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-4px);
}

.why-num {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-card-icon.blue { background: rgba(26,111,196,.22); }
.why-card-icon.amber { background: rgba(245,158,11,.16); }
.why-card-icon.teal { background: rgba(20,184,166,.16); }
.why-card-icon svg { width: 24px; height: 24px; }
.why-card-icon.blue svg { stroke: var(--blue-lt); }
.why-card-icon.amber svg { stroke: var(--amber); }
.why-card-icon.teal svg { stroke: #2dd4bf; }

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.why-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.why-card-accent {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 20px;
}

/* ─────────────────────────────────────────────
   ⑤ FOOTER CTA STRIP
───────────────────────────────────────────── */
.footer-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2d50 0%, var(--navy-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .07;
}
.footer-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.footer-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.footer-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────────
   ⑥ FOOTER
───────────────────────────────────────────── */
.footer {
  background: #050f1c;
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}
.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-mark svg { width: 18px; height: 18px; }
.footer-logo-text {
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.footer-tagline {
  font-size: .91rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 26px;
}
.footer-tagline em {
  font-style: italic;
  color: rgba(255,255,255,.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.social-btn:hover { background: rgba(255,255,255,.12); }
.social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.55); }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.28);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-content { padding: 130px 0 110px; }

  .hero-stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-item {
    flex: 1 0 50%;
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .stat-item:last-child, .stat-item:nth-child(3) { border-bottom: none; }

  .value-pillars { grid-template-columns: 1fr; }

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

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

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero .wrap { width: 100%; box-sizing: border-box; }

  .hero { justify-content: space-between; }
  .hero h1 { font-size: 2.4rem; }
  .hero-content { padding: 96px 0 28px; }
  .hero-stats { position: relative; bottom: auto; }

  .hero-stats-inner { flex-direction: column; gap: 0; }
  .stat-item { flex: none; width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 12px 0; }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-bottom: none; padding-left: 0; padding-right: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .why-num { font-size: 2.2rem; top: 12px; right: 12px; }

  .aud-card-img { height: 160px; }
  .aud-card-body { padding: 24px 20px 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; }
}

/* ─────────────────────────────────────────────
   EXTENDED DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --teal:       #0d9488;
  --teal-lt:    #2dd4bf;
  --blue-dk:    #12305e;
  --violet:     #7c3aed;
  --violet-lt:  #a78bfa;
  --green:      #16a34a;
  --green-lt:   #4ade80;
}

/* Pill variants */
.pill.teal   { background: rgba(13,148,136,.14); color: #0f766e; }
.pill.violet { background: rgba(124,58,237,.12);  color: #6d28d9; }
.pill.dark   { background: rgba(11,37,64,.08);    color: var(--navy); }

/* ─────────────────────────────────────────────
   TENANT HERO VARIANTS (.hero--blue)
───────────────────────────────────────────── */
.hero--blue .hero-overlay {
  background:
    linear-gradient(115deg, rgba(18,48,94,.98) 0%, rgba(18,48,94,.82) 48%, rgba(26,111,196,.22) 100%),
    linear-gradient(to bottom, transparent 40%, rgba(11,37,64,.8) 100%);
}

/* Proporciones, tipografía y espaciado idénticos al diseño de referencia */
.hero--blue .hero-content { padding: 148px 0 160px; max-width: 700px; }
.hero--blue h1            { font-size: clamp(2.4rem, 5vw, 3.9rem); line-height: 1.05; }
.hero--blue h1 em         { font-style: normal; color: var(--blue-lt); }
.hero--blue .hero-sub     { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.6); }
.hero--blue .hero-desc    { color: rgba(255,255,255,.7); line-height: 1.72; margin-bottom: 40px; max-width: 580px; }

/* Stats strip: fondo navy sólido (no glassmorphism como en homepage) */
.hero--blue .hero-stats {
  background: rgba(18,48,94,.72);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero--blue .stat-icon     { background: rgba(59,158,237,.15); }
.hero--blue .stat-icon svg { stroke: var(--blue-lt); }

/* decorative ring shape */
.hero-shape {
  position: absolute; top: 15%; right: 6%; width: 340px; height: 340px;
  border-radius: 50%; border: 1px solid rgba(59,158,237,.12);
  pointer-events: none;
}
.hero-shape::before {
  content: ''; position: absolute; inset: 28px; border-radius: 50%;
  border: 1px solid rgba(59,158,237,.08);
}

/* SVG wave arc at section bottom */
.hero-arc { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 1; line-height: 0; }
.hero-arc svg { display: block; width: 100%; }

/* quick benefit chips */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 100px; padding: 8px 16px;
}
.hero-chip svg { width: 13px; height: 13px; stroke: var(--amber); flex-shrink: 0; }
.hero-chip span { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); }

/* ─────────────────────────────────────────────
   INTRO SECTION
───────────────────────────────────────────── */
.intro-sec { padding: 88px 0 80px; background: var(--white); position: relative; }
.intro-sec::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  border-radius: 0 0 4px 4px;
}
.intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.intro-inner h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.intro-inner p  { font-size: 1.06rem; color: var(--muted); line-height: 1.72; }

.intro-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.intro-pillar {
  text-align: center; padding: 22px 16px 20px; background: var(--off);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.intro-pillar:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.intro-pillar-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.intro-pillar-icon svg { width: 20px; height: 20px; }
.intro-pillar-icon.blue   { background: rgba(26,111,196,.1);  } .intro-pillar-icon.blue svg   { stroke: var(--blue);     }
.intro-pillar-icon.teal   { background: rgba(13,148,136,.1);  } .intro-pillar-icon.teal svg   { stroke: var(--teal);     }
.intro-pillar-icon.amber  { background: rgba(245,158,11,.12); } .intro-pillar-icon.amber svg  { stroke: var(--amber-dk); }
.intro-pillar-icon.violet { background: rgba(124,58,237,.1);  } .intro-pillar-icon.violet svg { stroke: var(--violet);   }
.intro-pillar h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.intro-pillar p  { font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* ─────────────────────────────────────────────
   SERVICE SECTIONS — alternating split
───────────────────────────────────────────── */
.svc-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.svc-section.bg-white { background: var(--white); }
.svc-section.bg-off   { background: var(--off); }
.svc-section.flip .svc-image { order: 2; }
.svc-section.flip .svc-body  { order: 1; }

.svc-image { position: relative; overflow: hidden; }
.svc-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.svc-section:hover .svc-image img { transform: scale(1.04); }

.svc-image-fade { position: absolute; inset: 0; }
.svc-section:not(.flip) .svc-image-fade { background: linear-gradient(to right, transparent 55%, var(--white) 100%); }
.svc-section.flip       .svc-image-fade { background: linear-gradient(to left,  transparent 55%, var(--off)   100%); }
.svc-section.flip.bg-white .svc-image-fade { background: linear-gradient(to left, transparent 55%, var(--white) 100%); }

.svc-image-num {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: rgba(11,37,64,.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 10px 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 8px;
}
.svc-image-num svg { width: 13px; height: 13px; }

.svc-body { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.svc-section.flip .svc-body { padding: 72px 64px 72px 52px; }

.svc-body h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.12; margin-bottom: 12px; }
.svc-body > p { font-size: .98rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.svc-feature-list { display: flex; flex-direction: column; gap: 18px; }
.svc-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 12px;
  background: transparent; border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.svc-feature:hover { background: var(--off); border-color: var(--border); }
.svc-section.bg-off .svc-feature:hover { background: var(--white); }

.svc-feat-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.svc-feat-icon svg { width: 16px; height: 16px; }

.fi-blue   { background: rgba(26,111,196,.11);  } .fi-blue   svg { stroke: var(--blue);     }
.fi-teal   { background: rgba(13,148,136,.11);  } .fi-teal   svg { stroke: var(--teal);     }
.fi-amber  { background: rgba(245,158,11,.12);  } .fi-amber  svg { stroke: var(--amber-dk); }
.fi-violet { background: rgba(124,58,237,.1);   } .fi-violet svg { stroke: var(--violet);   }

.svc-feat-text strong { display: block; font-size: .91rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.svc-feat-text span   { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ─────────────────────────────────────────────
   OUR ROLE SECTION
───────────────────────────────────────────── */
.our-role { padding: 88px 0; background: var(--navy); position: relative; overflow: hidden; }
.our-role::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.our-role::after {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,158,237,.14) 0%, transparent 70%);
  pointer-events: none;
}
.role-inner { position: relative; z-index: 1; }
.role-header { text-align: center; margin-bottom: 56px; }
.role-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.role-header p  { font-size: 1rem; color: rgba(255,255,255,.58); max-width: 640px; margin: 0 auto; line-height: 1.68; }

.role-not-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px; padding: 12px 20px; margin-bottom: 28px;
  font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.5;
}
.role-not-label strong { color: #fca5a5; }

.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.role-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 32px 28px 34px; position: relative; overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s;
}
.role-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); transform: translateY(-4px); }
.role-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 18px 18px 0 0; }
.role-card.tenants   .role-card-accent { background: var(--blue-lt); }
.role-card.landlords .role-card-accent { background: var(--amber); }
.role-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.role-card.tenants   .role-card-icon { background: rgba(59,158,237,.18); }
.role-card.landlords .role-card-icon { background: rgba(245,158,11,.16); }
.role-card-icon svg { width: 22px; height: 22px; }
.role-card.tenants   .role-card-icon svg { stroke: var(--blue-lt); }
.role-card.landlords .role-card-icon svg { stroke: var(--amber); }
.role-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.role-card p  { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.65; }

.role-bridge {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 24px 32px;
  display: flex; align-items: center; gap: 20px;
}
.role-bridge-icon { flex-shrink: 0; }
.role-bridge-icon svg { width: 20px; height: 20px; stroke: var(--amber); }
.role-bridge p { font-size: .93rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.role-bridge p strong { color: rgba(255,255,255,.88); }

/* ─────────────────────────────────────────────
   CONSULTATION SESSIONS
───────────────────────────────────────────── */
.consult { padding: 88px 0; background: var(--off); position: relative; }
.consult::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  border-radius: 0 0 4px 4px;
}
.consult-header { text-align: center; margin-bottom: 56px; }
.consult-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.consult-header p  { font-size: 1.02rem; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.68; }

.consult-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.consult-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.consult-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.consult-card.featured { border-color: var(--blue); }
.consult-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 18px; right: -24px;
  background: var(--blue); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 32px; transform: rotate(45deg); transform-origin: center;
}

.consult-card-header { padding: 32px 28px 24px; }
.consult-duration {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px; margin-bottom: 18px;
}
.consult-duration svg { width: 14px; height: 14px; stroke: var(--muted); }
.consult-duration span { font-size: .8rem; font-weight: 700; color: var(--navy); }
.consult-card.featured .consult-duration { background: rgba(26,111,196,.08); border-color: rgba(26,111,196,.2); }
.consult-card.featured .consult-duration svg { stroke: var(--blue); }
.consult-card.featured .consult-duration span { color: var(--blue); }
.consult-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 8px; }
.consult-card-header p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

.consult-divider { height: 1px; background: var(--border); margin: 0 28px; }

.consult-card-body { padding: 22px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.consult-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.consult-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .87rem; color: var(--text); line-height: 1.5; }
.consult-check {
  width: 18px; height: 18px; border-radius: 5px; background: rgba(26,111,196,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.consult-check svg { width: 10px; height: 10px; stroke: var(--blue); }
.consult-cta { display: block; margin-top: 24px; text-align: center; }

.consult-note {
  margin-top: 40px; padding: 24px 32px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  display: flex; align-items: flex-start; gap: 16px;
}
.consult-note-icon { width: 40px; height: 40px; background: rgba(26,111,196,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.consult-note-icon svg { width: 18px; height: 18px; stroke: var(--blue); }
.consult-note p { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.consult-note p strong { color: var(--navy); }

/* ─────────────────────────────────────────────
   TENANT PAGE CTA
───────────────────────────────────────────── */
.tenant-cta {
  padding: 88px 0; text-align: center;
  background: linear-gradient(135deg, var(--blue-dk) 0%, #1c4a84 100%);
  position: relative; overflow: hidden;
}
.tenant-cta::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .06;
}
.tenant-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.tenant-cta h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.1; }
.tenant-cta p  { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 36px; }

/* ─────────────────────────────────────────────
   RESPONSIVE — additions
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .intro-pillars { grid-template-columns: repeat(2, 1fr); }
  .svc-section { grid-template-columns: 1fr; min-height: auto; }
  .svc-section .svc-image { height: 280px; order: 1 !important; }
  .svc-section .svc-body  { order: 2 !important; padding: 48px 28px 56px !important; }
  .svc-image-fade { background: linear-gradient(to bottom, transparent 55%, var(--white) 100%) !important; }
  .svc-section.bg-off .svc-image-fade { background: linear-gradient(to bottom, transparent 55%, var(--off) 100%) !important; }
  .role-grid    { grid-template-columns: 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .hero-shape   { opacity: .2; }
}
@media (max-width: 640px) {
  .intro-pillars { grid-template-columns: 1fr; gap: 12px; }
  .svc-image { height: 220px !important; }
  .role-bridge { flex-direction: column; gap: 10px; }
  /* Hero blue: layout móvil corregido */
  .hero--blue { min-height: auto; justify-content: flex-start; }
  .hero--blue h1 { font-size: 1.7rem; overflow-wrap: break-word; word-break: break-word; }
  .hero--blue .hero-content { padding: 88px 0 36px; }
  .hero--blue .wrap { width: 100%; box-sizing: border-box; padding: 0 20px; }
  .hero--blue .hero-stats { position: relative; bottom: auto; }
  /* Chips más compactos en móvil */
  .hero-chips { gap: 6px; }
  .hero-chip { padding: 6px 12px; max-width: 100%; }
  .hero-chip span { font-size: .75rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  /* Botones centrados full-width en móvil */
  .hero .btn-group { gap: 10px; }
  .hero .btn-group .btn { width: 100%; justify-content: center; }
}


/* ==========================================================================
   LANDLORD RESOURCES — New Components
   ========================================================================== */

/* --- Hero Experience Badge --- */
.hero-exp-badge { display: inline-flex; align-items: center; gap: 16px; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.28); border-radius: 14px; padding: 16px 22px; max-width: 460px; margin-bottom: 36px; }
.hero-exp-num { font-size: 2.4rem; font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -.04em; flex-shrink: 0; }
.hero-exp-text { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.5; }
.hero-exp-text strong { display: block; font-size: .92rem; color: rgba(255,255,255,.9); margin-bottom: 2px; }

/* --- Intro Amber Variant --- */
.intro-sec--amber::before { background: linear-gradient(90deg, var(--amber), var(--amber-dk)); }

/* --- Service Pillars --- */
.svc-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.svc-pillar { background: var(--off); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 20px 26px; text-align: center; position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s, border-color .22s; }
.svc-pillar:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--r) var(--r) 0 0; }
.svc-pillar.p1::before { background: var(--amber); }
.svc-pillar.p2::before { background: var(--blue); }
.svc-pillar.p3::before { background: var(--teal); }
.svc-pillar.p4::before { background: var(--green); }
.svc-pillar-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.svc-pillar-icon svg { width: 24px; height: 24px; }
.svc-pillar.p1 .svc-pillar-icon { background: rgba(245,158,11,.12); }
.svc-pillar.p1 .svc-pillar-icon svg { stroke: var(--amber-dk); }
.svc-pillar.p2 .svc-pillar-icon { background: rgba(26,111,196,.1); }
.svc-pillar.p2 .svc-pillar-icon svg { stroke: var(--blue); }
.svc-pillar.p3 .svc-pillar-icon { background: rgba(13,148,136,.1); }
.svc-pillar.p3 .svc-pillar-icon svg { stroke: var(--teal); }
.svc-pillar.p4 .svc-pillar-icon { background: rgba(22,163,74,.1); }
.svc-pillar.p4 .svc-pillar-icon svg { stroke: var(--green); }
.svc-pillar h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; letter-spacing: -.01em; }
.svc-pillar p  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* --- Core Services --- */
.core-services { padding: 80px 0; background: var(--off); }
.core-header { text-align: center; margin-bottom: 52px; }
.core-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.core-header p  { font-size: 1.02rem; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }
.core-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.core-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px 32px; position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s, border-color .22s; }
.core-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.core-num { position: absolute; top: 20px; right: 18px; font-size: 3.6rem; font-weight: 900; color: rgba(11,37,64,.04); line-height: 1; letter-spacing: -.04em; user-select: none; }
.core-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.core-icon svg { width: 22px; height: 22px; }
.core-card:nth-child(1) .core-icon { background: rgba(245,158,11,.1); }
.core-card:nth-child(1) .core-icon svg { stroke: var(--amber-dk); }
.core-card:nth-child(2) .core-icon { background: rgba(26,111,196,.1); }
.core-card:nth-child(2) .core-icon svg { stroke: var(--blue); }
.core-card:nth-child(3) .core-icon { background: rgba(13,148,136,.1); }
.core-card:nth-child(3) .core-icon svg { stroke: var(--teal); }
.core-card:nth-child(4) .core-icon { background: rgba(22,163,74,.1); }
.core-card:nth-child(4) .core-icon svg { stroke: var(--green); }
.core-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; margin-bottom: 8px; }
.core-card p  { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* --- What You'll Learn --- */
.learn { padding: 88px 0; background: var(--white); }
.learn-header { text-align: center; margin-bottom: 56px; }
.learn-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.learn-header p  { font-size: 1.02rem; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.learn-card.full-width { grid-column: span 2; }
.learn-card { background: var(--off); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: transform .22s, box-shadow .22s, border-color .22s; }
.learn-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.learn-card-header { padding: 28px 28px 0; display: flex; align-items: flex-start; gap: 16px; }
.learn-card-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.learn-card-icon svg { width: 22px; height: 22px; }
.learn-card:nth-child(1) .learn-card-icon { background: rgba(26,111,196,.1); }
.learn-card:nth-child(1) .learn-card-icon svg { stroke: var(--blue); }
.learn-card:nth-child(2) .learn-card-icon { background: rgba(13,148,136,.1); }
.learn-card:nth-child(2) .learn-card-icon svg { stroke: var(--teal); }
.learn-card:nth-child(3) .learn-card-icon { background: rgba(245,158,11,.12); }
.learn-card:nth-child(3) .learn-card-icon svg { stroke: var(--amber-dk); }
.learn-card:nth-child(4) .learn-card-icon { background: rgba(22,163,74,.1); }
.learn-card:nth-child(4) .learn-card-icon svg { stroke: var(--green); }
.learn-card.full-width .learn-card-icon { background: rgba(11,37,64,.07); }
.learn-card.full-width .learn-card-icon svg { stroke: var(--navy); }
.learn-card-title h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; margin-bottom: 4px; }
.learn-card-title p  { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.learn-items { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 28px 28px; }
.learn-card.full-width .learn-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.learn-item { display: flex; align-items: flex-start; gap: 9px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px; flex: 1 0 auto; min-width: 0; }
.learn-item-dot { width: 20px; height: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.learn-item-dot svg { width: 10px; height: 10px; }
.learn-card:nth-child(1) .learn-item-dot { background: rgba(26,111,196,.1); }
.learn-card:nth-child(1) .learn-item-dot svg { stroke: var(--blue); }
.learn-card:nth-child(2) .learn-item-dot { background: rgba(13,148,136,.1); }
.learn-card:nth-child(2) .learn-item-dot svg { stroke: var(--teal); }
.learn-card:nth-child(3) .learn-item-dot { background: rgba(245,158,11,.12); }
.learn-card:nth-child(3) .learn-item-dot svg { stroke: var(--amber-dk); }
.learn-card:nth-child(4) .learn-item-dot { background: rgba(22,163,74,.1); }
.learn-card:nth-child(4) .learn-item-dot svg { stroke: var(--green); }
.learn-card.full-width .learn-item-dot { background: rgba(11,37,64,.07); }
.learn-card.full-width .learn-item-dot svg { stroke: var(--navy); }
.learn-item-text { font-size: .82rem; color: var(--text); line-height: 1.45; }
.learn-item-text strong { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 1px; }

/* --- Vendor Vetting --- */
.vendors { padding: 88px 0; background: var(--navy); position: relative; overflow: hidden; }
.vendors::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.vendors::after  { content: ''; position: absolute; bottom: -30%; right: -5%; width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(245,158,11,.1) 0%, transparent 70%); pointer-events: none; }
.vendors-inner { position: relative; z-index: 1; }
.vendors-header { text-align: center; margin-bottom: 56px; }
.vendors-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.vendors-header p  { font-size: 1.02rem; color: rgba(255,255,255,.58); max-width: 600px; margin: 0 auto; line-height: 1.65; }
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 44px; }
.vendor-chip { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 16px 18px; transition: background .2s, border-color .2s, transform .2s; cursor: default; }
.vendor-chip:hover { background: rgba(255,255,255,.09); border-color: rgba(245,158,11,.3); transform: translateY(-2px); }
.vendor-chip-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,158,11,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vendor-chip-icon svg { width: 18px; height: 18px; stroke: var(--amber); }
.vendor-chip-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.vendor-chip-text span   { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.3; }
.vendors-note { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 28px 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vendors-note-item { display: flex; align-items: flex-start; gap: 12px; }
.vendors-note-item svg { width: 18px; height: 18px; stroke: var(--amber); flex-shrink: 0; margin-top: 2px; }
.vendors-note-item p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.vendors-note-item p strong { color: rgba(255,255,255,.88); }

/* --- How We Deliver Value --- */
.deliver { padding: 88px 0; background: var(--off); }
.deliver-header { text-align: center; margin-bottom: 52px; }
.deliver-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; }
.deliver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.deliver-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 34px 28px 36px; position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s, border-color .22s; }
.deliver-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.deliver-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 18px 18px 0 0; }
.deliver-card:nth-child(1)::before { background: var(--amber); }
.deliver-card:nth-child(2)::before { background: var(--blue); }
.deliver-card:nth-child(3)::before { background: var(--teal); }
.deliver-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.deliver-icon svg { width: 24px; height: 24px; }
.deliver-card:nth-child(1) .deliver-icon { background: rgba(245,158,11,.1); }
.deliver-card:nth-child(1) .deliver-icon svg { stroke: var(--amber-dk); }
.deliver-card:nth-child(2) .deliver-icon { background: rgba(26,111,196,.1); }
.deliver-card:nth-child(2) .deliver-icon svg { stroke: var(--blue); }
.deliver-card:nth-child(3) .deliver-icon { background: rgba(13,148,136,.1); }
.deliver-card:nth-child(3) .deliver-icon svg { stroke: var(--teal); }
.deliver-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; margin-bottom: 10px; }
.deliver-card p  { font-size: .91rem; color: var(--muted); line-height: 1.65; }
.deliver-accent  { display: block; width: 28px; height: 3px; border-radius: 2px; margin-top: 18px; }
.deliver-card:nth-child(1) .deliver-accent { background: var(--amber); }
.deliver-card:nth-child(2) .deliver-accent { background: var(--blue); }
.deliver-card:nth-child(3) .deliver-accent { background: var(--teal); }

/* --- Landlord CTA --- */
.landlord-cta { padding: 88px 0; text-align: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1c3d6e 100%); position: relative; overflow: hidden; }
.landlord-cta::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=50&auto=format&fit=crop') center / cover; opacity: .06; }
.landlord-cta::after  { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(245,158,11,.15) 0%, transparent 70%); pointer-events: none; }
.landlord-cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.landlord-cta h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.1; }
.landlord-cta p  { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 36px; }
.cta-tagline { display: inline-block; background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.28); border-radius: 12px; padding: 14px 28px; margin-bottom: 34px; }
.cta-tagline p { font-size: 1rem; font-weight: 700; color: var(--amber); font-style: italic; line-height: 1.5; }

/* --- Responsive Landlord Resources --- */
@media (max-width: 1060px) {
  .svc-pillars { grid-template-columns: repeat(2, 1fr); }
  .core-grid   { grid-template-columns: repeat(2, 1fr); }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .svc-pillars { grid-template-columns: repeat(2, 1fr); }
  .core-grid   { grid-template-columns: 1fr 1fr; }
  .learn-grid  { grid-template-columns: 1fr; }
  .learn-card.full-width { grid-column: span 1; }
  .learn-card.full-width .learn-items { display: flex; flex-direction: column; }
  .learn-items { flex-direction: column; }
  .learn-item  { flex: none; width: 100%; min-width: 0; }
  .learn-item-text { overflow-wrap: break-word; word-break: break-word; min-width: 0; }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-note { grid-template-columns: 1fr; gap: 18px; }
  .deliver-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-pillars  { grid-template-columns: 1fr; }
  .core-grid    { grid-template-columns: 1fr; }
  .vendor-grid  { grid-template-columns: 1fr; }
  .deliver-grid { grid-template-columns: 1fr; }
  .learn-card-header { padding: 20px 20px 0; }
  .learn-items { padding: 16px 20px 20px; gap: 8px; }
  .learn-item  { padding: 10px 12px; }
  .learn-item-text { font-size: .8rem; }
  .hero-exp-badge { flex-direction: column; gap: 10px; padding: 16px 18px; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════ */

/* --- Hero legal strip (services-specific) --- */
.hero-legal-strip {
  display: flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 12px; padding: 14px 22px;
  max-width: 560px; margin-bottom: 36px;
  flex-wrap: wrap; gap: 14px;
}
.hero-legal-item { display: flex; align-items: center; gap: 8px; }
.hero-legal-item svg { width: 14px; height: 14px; stroke: var(--amber); flex-shrink: 0; }
.hero-legal-item span { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.72); }
.hero-legal-sep { width: 1px; height: 18px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* --- RTA Intro --- */
.rta-intro { padding: 88px 0 80px; background: var(--white); text-align: center; position: relative; }
.rta-intro::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--amber)); border-radius: 0 0 4px 4px; }
.rta-intro-inner { max-width: 780px; margin: 0 auto; }
.rta-intro h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.rta-intro p  { font-size: 1.06rem; color: var(--muted); line-height: 1.72; }

/* --- Rights Section --- */
.rights-section { padding: 0 0 72px; background: var(--white); }
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.rights-card { border-radius: 20px; overflow: hidden; box-shadow: var(--sh-lg); display: flex; flex-direction: column; }
.rights-card-img { height: 180px; overflow: hidden; position: relative; flex-shrink: 0; }
.rights-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.rights-card:hover .rights-card-img img { transform: scale(1.05); }
.rights-card-img-overlay { position: absolute; inset: 0; }
.tenant-card  .rights-card-img-overlay { background: linear-gradient(to bottom, rgba(26,111,196,.5) 0%, rgba(11,37,64,.1) 100%); }
.landlord-card .rights-card-img-overlay { background: linear-gradient(to bottom, rgba(11,37,64,.55) 0%, rgba(11,37,64,.1) 100%); }
.rights-card-label { position: absolute; bottom: 16px; left: 20px; z-index: 2; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22); padding: 6px 14px; border-radius: 100px; }
.rights-card-label span { font-size: .74rem; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; }
.rights-card-label svg { width: 13px; height: 13px; flex-shrink: 0; }
.rights-card-body { flex: 1; display: flex; flex-direction: column; }
.tenant-card   .rights-card-body { background: #12305e; }
.landlord-card .rights-card-body { background: var(--navy); }
.rights-card-body-inner { padding: 28px 30px 32px; flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rights-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.rights-col-title svg { width: 13px; height: 13px; }
.tenant-card  .rights-col .rights-col-title.r    { color: var(--blue-lt); }
.tenant-card  .rights-col .rights-col-title.r svg { stroke: var(--blue-lt); }
.tenant-card  .rights-col .rights-col-title.resp  { color: rgba(255,255,255,.5); }
.tenant-card  .rights-col .rights-col-title.resp svg { stroke: rgba(255,255,255,.5); }
.landlord-card .rights-col .rights-col-title.r    { color: var(--amber); }
.landlord-card .rights-col .rights-col-title.r svg { stroke: var(--amber); }
.landlord-card .rights-col .rights-col-title.resp  { color: rgba(255,255,255,.5); }
.landlord-card .rights-col .rights-col-title.resp svg { stroke: rgba(255,255,255,.5); }
.rights-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rights-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.rights-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.tenant-card  .rights-col:first-child .rights-list li::before { background: var(--blue-lt); }
.tenant-card  .rights-col:last-child  .rights-list li::before { background: rgba(255,255,255,.3); }
.landlord-card .rights-col:first-child .rights-list li::before { background: var(--amber); }
.landlord-card .rights-col:last-child  .rights-list li::before { background: rgba(255,255,255,.3); }
.rights-card-body-inner .rights-col:first-child { padding-right: 20px; border-right: 1px solid rgba(255,255,255,.09); }

/* --- RTA Provisions (3-6) --- */
.rta-sections { padding: 80px 0; background: var(--off); }
.rta-sections-header { text-align: center; margin-bottom: 52px; }
.rta-sections-header h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; }
.rta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rta-card { background: var(--white); border-radius: 18px; border: 1px solid var(--border); padding: 36px 32px; position: relative; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.rta-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.rta-card-num { position: absolute; top: 18px; right: 22px; font-size: 4rem; font-weight: 900; line-height: 1; color: rgba(11,37,64,.04); letter-spacing: -.04em; user-select: none; }
.rta-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 18px 18px 0 0; }
.rta-card.sec-blue::before  { background: var(--blue); }
.rta-card.sec-teal::before  { background: var(--teal); }
.rta-card.sec-amber::before { background: var(--amber); }
.rta-card.sec-red::before   { background: #ef4444; }
.rta-card-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.rta-card.sec-blue  .rta-card-icon { background: rgba(26,111,196,.1); }
.rta-card.sec-teal  .rta-card-icon { background: rgba(13,148,136,.1); }
.rta-card.sec-amber .rta-card-icon { background: rgba(245,158,11,.1); }
.rta-card.sec-red   .rta-card-icon { background: rgba(239,68,68,.1); }
.rta-card.sec-blue  .rta-card-icon svg { stroke: var(--blue); }
.rta-card.sec-teal  .rta-card-icon svg { stroke: var(--teal); }
.rta-card.sec-amber .rta-card-icon svg { stroke: var(--amber-dk); }
.rta-card.sec-red   .rta-card-icon svg { stroke: #ef4444; }
.rta-card-icon svg { width: 24px; height: 24px; }
.rta-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy); letter-spacing: -.015em; margin-bottom: 12px; }
.rta-card > p { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.rta-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.rta-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--text); line-height: 1.5; }
.rta-bullet-dot { width: 18px; height: 18px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.rta-card.sec-blue  .rta-bullet-dot { background: rgba(26,111,196,.1); }
.rta-card.sec-teal  .rta-bullet-dot { background: rgba(13,148,136,.1); }
.rta-card.sec-amber .rta-bullet-dot { background: rgba(245,158,11,.1); }
.rta-card.sec-red   .rta-bullet-dot { background: rgba(239,68,68,.1); }
.rta-bullet-dot svg { width: 10px; height: 10px; }
.rta-card.sec-blue  .rta-bullet-dot svg { stroke: var(--blue); }
.rta-card.sec-teal  .rta-bullet-dot svg { stroke: var(--teal); }
.rta-card.sec-amber .rta-bullet-dot svg { stroke: var(--amber-dk); }
.rta-card.sec-red   .rta-bullet-dot svg { stroke: #ef4444; }

/* --- Closing Statement --- */
.rta-closing { padding: 0 0 80px; background: var(--off); }
.rta-closing-inner { background: var(--navy); border-radius: 22px; padding: 52px 60px; position: relative; overflow: hidden; }
.rta-closing-inner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; }
.rta-closing-inner::after  { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(245,158,11,.12) 0%, transparent 65%); pointer-events: none; }
.rta-closing-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.rta-closing-quote { font-size: 1.08rem; font-weight: 500; font-style: italic; color: rgba(255,255,255,.82); line-height: 1.72; border-left: 3px solid var(--amber); padding-left: 24px; }
.rta-closing-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* --- Provinces --- */
.provinces { padding: 88px 0; background: var(--white); }
.provinces-header { text-align: center; margin-bottom: 56px; }
.provinces-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.provinces-header p  { font-size: 1.02rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.canada-strip { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 52px; }
.canada-strip-line { flex: 1; max-width: 200px; height: 1px; background: var(--border); }
.canada-maple { width: 42px; height: 42px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.canada-maple svg { width: 22px; height: 22px; fill: #dc2626; }
.canada-strip-text { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.province-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.province-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; display: flex; flex-direction: column; text-decoration: none; }
.province-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--blue); }
.province-flag { height: 100px; overflow: hidden; position: relative; background: var(--off); flex-shrink: 0; }
.province-flag img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.province-card:hover .province-flag img { transform: scale(1.06); }
.province-flag::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.18) 100%); }
.province-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.province-name { font-size: .95rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; line-height: 1.2; }
.province-act  { font-size: .79rem; color: var(--muted); line-height: 1.4; flex: 1; }
.province-link { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 600; color: var(--blue); margin-top: 4px; transition: gap .15s ease; }
.province-card:hover .province-link { gap: 8px; }
.province-link svg { width: 12px; height: 12px; stroke: var(--blue); flex-shrink: 0; }

/* --- Services CTA --- */
.services-cta { padding: 88px 0; text-align: center; background: linear-gradient(135deg, #0d2d50 0%, var(--navy-2) 100%); position: relative; overflow: hidden; }
.services-cta::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=50&auto=format&fit=crop') center / cover; opacity: .06; }
.services-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.services-cta h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.1; }
.services-cta p  { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 36px; }

/* --- Services Responsive --- */
@media (max-width: 960px) {
  .rights-grid          { grid-template-columns: 1fr; }
  .rta-grid             { grid-template-columns: 1fr; }
  .rta-closing-content  { grid-template-columns: 1fr; gap: 24px; }
  .rta-closing-actions  { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .province-grid        { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero-legal-strip     { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-legal-sep       { display: none; }
  .rights-card-body-inner { grid-template-columns: 1fr; }
  .rights-card-body-inner .rights-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.09); padding-right: 0; padding-bottom: 20px; }
  .province-grid        { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .province-flag        { height: 72px; }
  .province-body        { padding: 10px 12px 12px; gap: 4px; }
  .province-name        { font-size: .82rem; }
  .rta-closing-inner    { padding: 32px 20px; }
  .rta-closing-content  { gap: 16px; }
  .rta-closing-actions  { flex-direction: column; }
}

/* ═══════════════════════════════════════════════
   VENDORS PAGE
   ═══════════════════════════════════════════════ */

/* --- Pill aliases (BEM modifiers → existing util classes) --- */
.pill--amber  { background: rgba(245,158,11,.18); color: #92400e; }
.pill--light  { background: rgba(255,255,255,.16); color: #fff; }
.pill--green  { background: rgba(22,163,74,.14); color: #15803d; }

/* --- btn-group center --- */
.btn-group--center { justify-content: center; }

/* --- btn-green --- */
.btn-green { background: #16a34a; color: #fff; }
.btn-green:hover { background: #15803d; }

/* ───────────────────────────────────────────────
   VND SERVICES
─────────────────────────────────────────────── */
.vnd-services { padding: 96px 0 80px; background: var(--white); }
.vnd-services-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.vnd-services-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.vnd-services-header p  { font-size: 1.02rem; color: var(--muted); line-height: 1.65; }

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

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: var(--blue);
  opacity: 0;
  transition: opacity .22s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--blue); }
.svc-card:hover::before { opacity: 1; }

/* Accent colors by position */
.svc-card:nth-child(1)::before, .svc-card:nth-child(4)::before, .svc-card:nth-child(7)::before { background: var(--blue); }
.svc-card:nth-child(2)::before, .svc-card:nth-child(5)::before, .svc-card:nth-child(8)::before { background: var(--navy); }
.svc-card:nth-child(3)::before, .svc-card:nth-child(6)::before, .svc-card:nth-child(9)::before { background: var(--amber); }

.svc-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(26,111,196,.08); border-radius: 12px; margin-bottom: 4px; }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; }
.svc-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.svc-card p  { font-size: .88rem; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-card-tag { display: inline-flex; align-items: center; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue); background: rgba(26,111,196,.08); border-radius: 100px; padding: 3px 10px; width: fit-content; margin-top: auto; }

.services-goal { text-align: center; margin-top: 52px; padding: 24px 32px; background: rgba(26,111,196,.05); border: 1px solid rgba(26,111,196,.12); border-radius: 14px; max-width: 720px; margin-left: auto; margin-right: auto; }
.services-goal p { font-size: .95rem; color: var(--navy); line-height: 1.65; font-style: italic; }

/* ───────────────────────────────────────────────
   VND WHY JOIN
─────────────────────────────────────────────── */
.vnd-why-join { padding: 96px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); position: relative; overflow: hidden; }
.vnd-why-join::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(26,111,196,.18) 0%, transparent 65%); pointer-events: none; }

.why-header { text-align: center; max-width: 640px; margin: 0 auto 56px; position: relative; }
.why-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.why-header p  { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.65; }

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

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.why-card-num { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.07); line-height: 1; letter-spacing: -.05em; position: absolute; top: 16px; right: 20px; }
.why-card-icon { width: 52px; height: 52px; background: rgba(26,111,196,.22); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-card-icon svg { width: 28px; height: 28px; stroke: var(--blue-lt); fill: none; }
.why-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -.01em; }
.why-card p  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.65; }
.why-card-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--amber)); opacity: 0; transition: opacity .22s ease; }
.why-card:hover .why-card-accent { opacity: 1; }

/* ───────────────────────────────────────────────
   VND APPLY
─────────────────────────────────────────────── */
.vnd-apply { padding: 96px 0; background: var(--off); }
.apply-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start; }

.apply-image-wrap { position: sticky; top: 24px; border-radius: 24px; overflow: hidden; box-shadow: var(--sh-lg); }
.apply-image { height: 520px; background-size: cover; background-position: center; position: relative; }
.apply-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,37,64,.1) 0%, rgba(11,37,64,.55) 100%); }
.apply-badge { position: absolute; bottom: 28px; left: 28px; background: var(--white); border-radius: 16px; padding: 14px 20px; box-shadow: 0 8px 24px rgba(0,0,0,.18); display: flex; flex-direction: column; gap: 2px; min-width: 160px; }
.apply-badge-num { font-size: 2rem; font-weight: 900; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.apply-badge-label { font-size: .78rem; font-weight: 600; color: var(--muted); line-height: 1.3; }

.apply-body { padding-top: 8px; }
.apply-body h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.apply-desc { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }

/* Form */
.apply-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; gap: 16px; }
.form-row--2 > .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group label span { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,111,196,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.apply-alt-email { margin-top: 24px; font-size: .88rem; color: var(--muted); }
.apply-alt-email a { color: var(--blue); font-weight: 600; text-decoration: none; }
.apply-alt-email a:hover { text-decoration: underline; }

/* ───────────────────────────────────────────────
   VND FEATURED
─────────────────────────────────────────────── */
.vnd-featured { padding: 96px 0; background: var(--white); }
.featured-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.featured-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.featured-header p  { font-size: 1.02rem; color: var(--muted); line-height: 1.65; }

.featured-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }

/* Profile card mockup */
.profile-card { background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 28px; box-shadow: var(--sh-lg); position: sticky; top: 24px; }
.profile-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.profile-avatar { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: .95rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-size: .98rem; font-weight: 700; color: var(--navy); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-location { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--muted); margin-top: 3px; }
.profile-location svg { flex-shrink: 0; stroke: var(--muted); }
.profile-badge { background: rgba(22,163,74,.12); color: #15803d; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; flex-shrink: 0; }
.profile-category { font-size: .82rem; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.profile-rating { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.profile-stars { color: var(--amber); font-size: 1rem; letter-spacing: 1px; }
.profile-rating-num { font-size: .9rem; font-weight: 700; color: var(--navy); }
.profile-reviews { font-size: .78rem; color: var(--muted); }
.profile-bio { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.profile-tag { font-size: .72rem; font-weight: 600; color: var(--navy); background: var(--off); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.profile-stat { background: var(--white); padding: 12px; text-align: center; }
.profile-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.profile-stat-label { font-size: .7rem; color: var(--muted); margin-top: 2px; }
.profile-card-footer { display: flex; gap: 12px; flex-wrap: wrap; }
.profile-verified, .profile-compliant { display: flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; }
.profile-verified { color: var(--blue); }
.profile-verified svg { stroke: var(--blue); }
.profile-compliant { color: #15803d; }
.profile-compliant svg { stroke: #15803d; }

/* Featured info panel */
.featured-info { }
.featured-info h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 12px; }
.featured-info > p { font-size: .97rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.featured-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.feat-check { display: flex; align-items: flex-start; gap: 14px; }
.feat-check svg { flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; stroke: var(--blue); background: rgba(26,111,196,.1); border-radius: 50%; padding: 3px; }
.feat-check div { display: flex; flex-direction: column; gap: 2px; }
.feat-check strong { font-size: .96rem; font-weight: 700; color: var(--navy); }
.feat-check span { font-size: .86rem; color: var(--muted); line-height: 1.5; }
.featured-note { display: flex; align-items: flex-start; gap: 10px; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25); border-radius: 12px; padding: 14px 18px; font-size: .86rem; color: #92400e; line-height: 1.55; margin-bottom: 24px; }
.featured-note svg { flex-shrink: 0; margin-top: 1px; stroke: #d97706; }

/* ───────────────────────────────────────────────
   VENDOR CTA
─────────────────────────────────────────────── */
.vendor-cta { padding: 100px 0; text-align: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); position: relative; overflow: hidden; }
.vendor-cta::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=40&auto=format&fit=crop') center / cover; opacity: .05; pointer-events: none; }
.vendor-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 20px; }
.vendor-cta-inner h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.vendor-cta-inner p  { font-size: 1.02rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 36px; }

/* ───────────────────────────────────────────────
   VENDORS RESPONSIVE
─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .apply-grid      { grid-template-columns: 1fr; gap: 40px; }
  .apply-image-wrap { position: relative; }
  .apply-image     { height: 320px; }
  .featured-layout { grid-template-columns: 1fr; gap: 40px; }
  .profile-card    { position: static; }
}
@media (max-width: 900px) {
  .svc-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
  .svc-grid        { grid-template-columns: 1fr; }
  .form-row--2     { flex-direction: column; }
  .profile-stats   { grid-template-columns: repeat(3, 1fr); }
  .vnd-services,
  .vnd-why-join,
  .vnd-apply,
  .vnd-featured,
  .vendor-cta      { padding: 64px 0; }
  /* Hero arc oculto en móvil para evitar solapamiento visual */
  .hero--blue .hero-arc { display: none; }
  /* Fix: profile-card y featured-info desbordan el grid track porque
     white-space:nowrap en .profile-name y .btn amplían el min-content.
     min-width:0 permite que el track los contenga correctamente. */
  .featured-layout > * { min-width: 0; }
  .featured-info .btn  { width: 100%; justify-content: center; }
}

/* ═══ ABOUT — HERO BADGE ═══ */
.abt-mission-badge { display: inline-flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 14px; padding: 18px 22px; max-width: 480px; margin-bottom: 36px; }
.abt-mission-badge-icon { width: 36px; height: 36px; background: rgba(245,158,11,.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.abt-mission-badge-icon svg { width: 16px; height: 16px; stroke: var(--amber); }
.abt-mission-badge p { font-size: .88rem; color: rgba(255,255,255,.72); font-style: italic; line-height: 1.55; }
.abt-mission-badge p strong { color: rgba(255,255,255,.92); font-style: normal; }

/* ═══ ABOUT — MISSION SECTION ═══ */
.abt-mission { padding: 88px 0; background: var(--white); position: relative; }
.abt-mission::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--amber)); border-radius: 0 0 4px 4px; }
.abt-mission-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 22px; align-items: start; }
.abt-mission-intro h2 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.abt-mission-intro p { font-size: 1.05rem; color: var(--muted); line-height: 1.72; }
.abt-mission-intro p + p { margin-top: 16px; }
.mv-card { border-radius: 18px; padding: 32px 28px 34px; position: relative; overflow: hidden; }
.mv-card.mission-card { background: var(--navy); }
.mv-card.vision-card { background: linear-gradient(135deg, #163a65 0%, #1c4a84 100%); }
.mv-card::before { content: '"'; position: absolute; top: -14px; right: 20px; font-size: 9rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,.04); font-family: Georgia,serif; pointer-events: none; }
.mv-card-label { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.mv-card-label-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mission-card .mv-card-label-dot { background: var(--amber); }
.vision-card .mv-card-label-dot { background: #3b9eed; }
.mv-card-label span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mission-card .mv-card-label span { color: var(--amber); }
.vision-card .mv-card-label span { color: #3b9eed; }
.mv-card blockquote { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.88); line-height: 1.65; font-style: italic; border: none; padding: 0; }

/* ═══ ABOUT — EXPERIENCE ═══ */
.abt-experience { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: var(--off); }
.abt-exp-image { position: relative; overflow: hidden; }
.abt-exp-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.abt-exp-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--off) 100%); }
.exp-stat-bubble { position: absolute; bottom: 44px; left: 36px; z-index: 2; background: rgba(11,37,64,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 22px 26px; }
.exp-stat-bubble-num { font-size: 3rem; font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -.04em; }
.exp-stat-bubble-label { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.65); margin-top: 4px; line-height: 1.35; }
.abt-exp-content { padding: 72px 64px 72px 52px; display: flex; flex-direction: column; justify-content: center; }
.abt-exp-content h2 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.12; margin-bottom: 20px; }
.abt-exp-content p { font-size: 1rem; color: var(--muted); line-height: 1.72; margin-bottom: 14px; }
.abt-exp-content p:last-of-type { margin-bottom: 0; }

/* ═══ ABOUT — UNIFIED ═══ */
.abt-unified { padding: 96px 0; background: var(--white); }
.abt-unified-header { text-align: center; margin-bottom: 56px; }
.abt-unified-header h2 { font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.abt-unified-header p { font-size: 1.06rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.bridge-grid { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; align-items: center; }
.bridge-divider { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 4px; }
.bridge-divider-line { flex: 1; width: 2px; background: var(--border); min-height: 60px; }
.bridge-divider-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--off); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bridge-divider-icon svg { width: 18px; height: 18px; stroke: var(--muted); }
.bridge-card { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.18); }
.bridge-card-img { height: 200px; overflow: hidden; position: relative; }
.bridge-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bridge-card:hover .bridge-card-img img { transform: scale(1.05); }
.bridge-card-body { padding: 30px 28px 32px; }
.bridge-card.for-tenants .bridge-card-body { background: #12305e; }
.bridge-card.for-landlords .bridge-card-body { background: var(--navy); }
.bridge-card-role { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.for-tenants .bridge-card-role { color: #3b9eed; }
.for-landlords .bridge-card-role { color: var(--amber); }
.bridge-card-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.2; }
.bridge-card-body p { font-size: .93rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* ═══ ABOUT — VALUES / MISSION & VISION ═══ */
.abt-values { padding: 96px 0; background: var(--off); }
.abt-val-inner { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; margin-bottom: 56px; }
.abt-val-content h2 { font-size: clamp(1.9rem,3.2vw,2.7rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; }
.abt-val-subtext { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.abt-statement { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; margin-bottom: 16px; position: relative; overflow: hidden; }
.abt-statement::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-radius: 14px 0 0 14px; }
.abt-statement--mission::before { background: var(--blue); }
.abt-statement--vision::before  { background: var(--teal,#0d9488); }
.abt-statement-label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.abt-statement--mission .abt-statement-label { color: var(--blue); }
.abt-statement--vision  .abt-statement-label { color: var(--teal,#0d9488); }
.abt-statement p { font-size: .97rem; color: var(--navy); line-height: 1.65; font-style: italic; margin: 0; }
.abt-val-image-wrap { width: 100%; aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: var(--white); }
.abt-val-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.abt-val-image-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: .85rem; }
.abt-val-image-placeholder svg { width: 64px; height: 64px; }
.abt-val-footer-desc { text-align: center; font-size: 1rem; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.7; }

/* ═══ ABOUT — DIFFERENTIATORS ═══ */
.abt-diff { padding: 96px 0; background: var(--navy); position: relative; overflow: hidden; }
.abt-diff::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.abt-diff::after  { content: ''; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(245,158,11,.1) 0%, transparent 70%); pointer-events: none; }
.abt-diff-inner { position: relative; z-index: 1; }
.abt-diff-header { text-align: center; margin-bottom: 56px; }
.abt-diff-header h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; line-height: 1.1; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 36px 30px 38px; transition: background .25s, border-color .25s, transform .25s; position: relative; overflow: hidden; }
.diff-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); transform: translateY(-4px); }
.diff-card-num { position: absolute; top: 28px; right: 24px; font-size: 3.8rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,.04); letter-spacing: -.04em; user-select: none; }
.diff-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(245,158,11,.14); margin-bottom: 20px; }
.diff-icon svg { width: 22px; height: 22px; stroke: var(--amber); }
.diff-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; margin-bottom: 10px; }
.diff-card p  { font-size: .91rem; color: rgba(255,255,255,.52); line-height: 1.65; }
.diff-card-accent { display: block; width: 28px; height: 3px; background: var(--amber); border-radius: 2px; margin-top: 18px; }

/* ═══ ABOUT — CTA ═══ */
.about-cta { padding: 88px 0; text-align: center; background: linear-gradient(135deg, #0d2d50 0%, #163a65 100%); position: relative; overflow: hidden; }
.about-cta::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=60') center / cover; opacity: .06; }
.about-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.about-cta h2 { font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.1; }
.about-cta > .wrap > .about-cta-inner > p { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 28px; }
.cta-quote { display: inline-block; background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.28); border-radius: 12px; padding: 16px 28px; margin-bottom: 36px; }
.cta-quote p { font-size: 1.05rem; font-weight: 700; font-style: italic; color: var(--amber); line-height: 1.5; }

/* ═══ ABOUT — RESPONSIVE ═══ */
@media (max-width: 1060px) {
  .abt-val-inner { grid-template-columns: 1fr 240px; gap: 40px; }
}
@media (max-width: 960px) {
  .abt-mission-grid { grid-template-columns: 1fr; }
  .abt-experience { grid-template-columns: 1fr; }
  .abt-exp-image { height: 320px; }
  .abt-exp-image::after { background: linear-gradient(to bottom, transparent 55%, var(--off) 100%); }
  .abt-exp-content { padding: 48px 28px 60px; }
  .bridge-grid { grid-template-columns: 1fr; gap: 24px; }
  .bridge-divider { flex-direction: row; padding: 4px 0; }
  .bridge-divider-line { flex: 1; width: auto; height: 2px; min-height: auto; }
  .diff-grid { grid-template-columns: 1fr; }
  .abt-val-inner { grid-template-columns: 1fr; gap: 40px; }
  .abt-val-image-wrap { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .diff-card { padding: 28px 20px 30px; }
}
