/* ==========================================================================
   Business Spotlight — Hoja de estilos principal
   Basado en el Manual de Identidad (Pensilvania)
   ========================================================================== */

:root {
  --navy: #0A1D2D;
  --navy-soft: #13293b;
  --sage: #4F8474;
  --sage-light: #7BA595;
  --bone: #F5F5F3;
  --white: #FFFFFF;
  --ink: #1E2A2F;
  --border: #E2E4E1;
  --shadow: 0 10px 30px rgba(10, 29, 45, 0.10);
  --shadow-soft: 0 4px 14px rgba(10, 29, 45, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--bone);
}

.section--navy {
  background: var(--navy);
  color: var(--bone);
}
.section--navy h1, .section--navy h2, .section--navy h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 12px;
}

.section--navy .eyebrow { color: var(--sage-light); }

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: #4b5a5f; font-size: 17px; }
.section--navy .section-head p { color: #cfd9dc; }

.rule {
  width: 64px;
  height: 3px;
  background: var(--sage);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-head.align-left { text-align: left; margin-left: 0; }
.section-head.align-left .rule { margin: 14px 0 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: #436f61; }

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(245,245,243,0.55);
  color: var(--bone);
}
.btn--outline-light:hover { background: var(--bone); color: var(--navy); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebc59; }

.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 29, 45, 0.97);
  backdrop-filter: blur(6px);
  color: var(--bone);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: 1360px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }
.brand-word {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}
.brand-word span {
  display: block;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--sage-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.nav-links a {
  color: #dfe6e4;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--sage-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(245,245,243,0.4);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.lang-toggle button {
  background: transparent;
  color: #cfd9dc;
  border: none;
  padding: 7px 12px;
  cursor: pointer;
  font-family: var(--serif);
  letter-spacing: 0.04em;
}
.lang-toggle button.active {
  background: var(--sage);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .nav-toggle { display: block; order: 3; }
  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(245,245,243,0.15);
    margin-top: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-actions { order: 2; margin-left: auto; }
  .nav { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--bone);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(79,132,116,0.35), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.14;
  word-wrap: break-word;
}
.hero h1 .hl,
.hero h1 em { color: var(--sage-light); font-style: normal; font-weight: 700; }
.hero p.lead {
  font-size: 17.5px;
  color: #cfd9dc;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- Hero visual (editorial photo composition) ---------- */
.hero-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 14% 16% 16% 8%;
}
.hero-main-photo {
  position: relative;
  border-radius: 36px 36px 36px 8px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0,0,0,0.4);
  aspect-ratio: 5/6;
}
.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-accent-photo {
  position: absolute;
  width: 44%;
  background: var(--bone);
  padding: 7px 7px 20px;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.42);
  z-index: 2;
}
.hero-accent-photo .accent-inner {
  aspect-ratio: 4/3.1;
  border-radius: 4px;
  overflow: hidden;
}
.hero-accent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-accent-photo.accent-1 {
  top: 0;
  left: 0;
  transform: rotate(-7deg);
}
.hero-accent-photo.accent-2 {
  bottom: 0;
  right: 0;
  transform: rotate(6deg);
}

/* Four-photo hero variant: adds a wider "whole group" accent along the bottom-left */
.hero-visual--4 { max-width: 520px; }
.hero-visual--4 .hero-accent-photo.accent-1,
.hero-visual--4 .hero-accent-photo.accent-2 {
  width: 38%;
  z-index: 4;
}
.hero-visual--4 .hero-accent-photo.accent-3 {
  width: 56%;
  bottom: 0;
  left: -6%;
  transform: rotate(-4deg);
  z-index: 3;
}
.hero-visual--4 .hero-accent-photo.accent-3 .accent-inner {
  aspect-ratio: 3/2.05;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-visual { order: -1; max-width: 340px; padding: 13% 14% 14% 7%; margin-bottom: 8px; }
  .hero-visual--4 { max-width: 380px; padding-bottom: 20%; }
}
@media (max-width: 480px) {
  .hero-visual { max-width: 280px; padding: 12% 12% 12% 6%; }
  .hero-accent-photo { padding: 5px 5px 15px; }
  .hero-visual--4 { max-width: 300px; }
  .hero-visual--4 .hero-accent-photo.accent-3 { left: -3%; width: 58%; }
}

/* ---------- Hero social-proof stats ---------- */
.hero-stats {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px 48px;
  border-top: 1px solid rgba(245,245,243,0.14);
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat .icon {
  font-size: 26px;
  flex-shrink: 0;
}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 13px;
  color: #b9c6c9;
  display: block;
  margin-top: 3px;
}
.hero-stat--phrase {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15.5px;
  color: #cfd9dc;
  max-width: 240px;
}
.hero-stat--link {
  text-decoration: none;
  padding: 6px 16px 6px 4px;
  border-radius: 999px;
  border: 1.5px solid rgba(245,245,243,0.3);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.hero-stat--link:hover { border-color: var(--sage-light); background: rgba(123,165,149,0.1); }
.hero-stat--link .lbl-strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
@media (max-width: 640px) {
  .hero-stats { gap: 24px 32px; padding-bottom: 44px; }
}
.hero-media {
  position: relative;
  min-height: 460px;
}
.hero-media .circle-frame {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid rgba(245,245,243,0.14);
  background: var(--navy-soft);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media .c1 { width: 64%; aspect-ratio: 1/1; top: 2%; right: 0; z-index: 2; }
.hero-media .c2 { width: 40%; aspect-ratio: 1/1; bottom: 2%; left: 2%; z-index: 3; }
.hero-media .c3 { width: 32%; aspect-ratio: 1/1; top: 0; left: 20%; z-index: 1; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-media { order: -1; min-height: 340px; margin-bottom: 24px; }
}
@media (max-width: 480px) {
  .hero-media { min-height: 280px; }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(245,245,243,0.16);
  max-width: 620px;
}
.hero-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #b9c6c9;
  position: relative;
  white-space: nowrap;
}
.hero-trust span strong { color: var(--sage-light); font-weight: 700; }
.hero-trust .icon { font-size: 15px; }
.hero-trust .dot { color: rgba(245,245,243,0.4); font-weight: 700; margin-left: 7px; }

/* ---------- Circle gallery (photo circles, brand style) ---------- */
.circle-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 20px;
}
.circle-gallery--large { grid-template-columns: repeat(4, 1fr); }
.circle-gallery figure {
  margin: 0;
  text-align: center;
}
.circle-gallery .circle-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 5px solid var(--white);
  outline: 1px solid var(--border);
}
.circle-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.circle-gallery figure:hover img { transform: scale(1.06); }
.circle-gallery figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: #4b5a5f;
  font-style: italic;
}
@media (max-width: 760px) {
  .circle-gallery, .circle-gallery--large { grid-template-columns: repeat(3, 1fr); gap: 26px 14px; }
}
@media (max-width: 480px) {
  .circle-gallery, .circle-gallery--large { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
}

.founders-photo {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}
.founders-photo .circle-frame {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  outline: 1px solid var(--border);
  margin-bottom: 18px;
}
.founders-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Cards ---------- */

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

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: #4b5a5f; font-size: 15px; margin-bottom: 0; }

/* Goals list (numbered) */
.goal {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,245,243,0.14);
}
.goal:last-child { border-bottom: none; }
.goal-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.goal h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.goal p { color: #b9c6c9; font-size: 14.5px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ---------- Event / list items ---------- */
.event-card {
  display: flex;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  align-items: center;
}
.event-date {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-date .day { font-size: 26px; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage-light); margin-top: 4px; }
.event-body { flex: 1; min-width: 0; }
.event-body h3 { margin-bottom: 6px; font-size: 19px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #5c6b70; margin-bottom: 8px; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-actions { flex-shrink: 0; }

.gcal-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.gcal-embed iframe { display: block; width: 100%; height: 500px; border: 0; }

@media (max-width: 640px) {
  .event-card { flex-direction: column; align-items: flex-start; }
  .event-actions { width: 100%; }
  .event-actions .btn { width: 100%; justify-content: center; }
}

.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(79,132,116,0.14);
  color: var(--sage);
}

/* ---------- Directory band (homepage) ---------- */
.directory-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.directory-band-copy p { margin-top: 10px; color: #4b5a5f; font-size: 16px; max-width: 480px; }
.directory-band-visual {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.directory-stat-badge {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.directory-stat-badge strong {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}
.directory-stat-badge span { font-size: 14px; color: #5c6b70; }
.directory-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.directory-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--navy);
  font-weight: 700;
}
.directory-cat .icon { font-size: 15px; }
@media (max-width: 860px) {
  .directory-band { grid-template-columns: 1fr; }
  .directory-band-copy p { max-width: 100%; }
}
@media (max-width: 480px) {
  .directory-cats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Event recap card (eventos.html) ---------- */
.event-recap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.event-recap-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.event-recap-head h3 { margin: 0; font-size: 22px; }
.event-recap-date { font-size: 13.5px; color: #5c6b70; }
.event-recap-desc { color: #4b5a5f; max-width: 760px; margin-bottom: 0; }
.event-recap-sub { margin-top: 40px; }
.event-recap-sub h4 {
  font-size: 15.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}
.event-recap-video {
  background: var(--bone);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  color: #5c6b70;
  font-size: 14px;
}
.event-recap-sponsors {
  background: var(--bone);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-size: 14px;
  color: #5c6b70;
  margin: 0;
}
.event-recap-sponsors a { color: var(--sage); font-weight: 700; text-decoration: underline; margin-left: 6px; }
@media (max-width: 640px) {
  .event-recap { padding: 26px 20px; }
}

/* ---------- Featured event card (homepage) ---------- */
.event-feature-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.event-feature-card .efc-media {
  position: relative;
  min-height: 220px;
}
.event-feature-card .efc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-feature-card .efc-media .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--sage-light);
}
.event-feature-card .efc-body {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-feature-card .efc-body h3 { font-size: 21px; margin-bottom: 14px; }
.efc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 20px;
}
.efc-meta div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
}
.efc-meta .icon { font-size: 15px; flex-shrink: 0; }
.efc-meta .lbl { font-weight: 700; color: var(--navy); }
.efc-meta .val { color: #4b5a5f; }
@media (max-width: 760px) {
  .event-feature-card { grid-template-columns: 1fr; }
  .event-feature-card .efc-media { min-height: 200px; }
  .efc-meta { grid-template-columns: 1fr; }
}

/* ---------- How it works (flow) ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.flow-step {
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.flow-step .flow-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}
.flow-step .flow-num {
  position: absolute;
  top: -4px;
  right: calc(50% - 34px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.flow-step h4 { font-size: 16px; margin-bottom: 6px; }
.flow-step p { font-size: 13.5px; color: #4b5a5f; margin: 0; }
.flow-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 24px;
  right: -6px;
  font-size: 22px;
  color: var(--sage-light);
}
@media (max-width: 860px) {
  .flow { grid-template-columns: 1fr; gap: 34px; max-width: 340px; margin: 0 auto; }
  .flow-step:not(:last-child)::after {
    content: "\2193";
    top: auto;
    bottom: -28px;
    right: 0;
    left: 0;
    text-align: center;
  }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 22px;
  flex: 1;
}
.testimonial-quote::before {
  content: "\201C";
  display: block;
  font-size: 42px;
  line-height: 0.6;
  color: var(--sage-light);
  font-style: normal;
  margin-bottom: 10px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-person h4 { font-size: 14.5px; margin: 0; }
.testimonial-person span { font-size: 12.5px; color: #5c6b70; }

/* ---------- Sponsors CTA band ---------- */
.cta-band.cta-band--navy {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
}
.cta-band--navy .eyebrow { color: var(--sage-light); margin-bottom: 8px; }
.cta-band--navy .btn--outline-light:hover { background: var(--bone); color: var(--navy); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat .num { font-size: 38px; font-weight: 700; color: var(--sage-light); }
.stat .label { font-size: 13.5px; color: #b9c6c9; text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bone);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-note {
  font-size: 13px;
  color: #6a7a7f;
  margin-top: 10px;
}
.form-success {
  display: none;
  background: rgba(79,132,116,0.12);
  border: 1px solid var(--sage);
  color: #2c4a40;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 14.5px;
}
.form-success.show { display: block; }

/* ---------- Directory ---------- */
.biz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.biz-card .biz-top {
  background: var(--navy);
  color: var(--white);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.biz-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.biz-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.biz-top h3 { color: var(--white); font-size: 16px; margin: 0; }
.biz-top .cat { font-size: 12px; color: var(--sage-light); }
.biz-card .biz-body { padding: 18px 22px 22px; }
.biz-card .biz-body p { font-size: 14.5px; color: #4b5a5f; }
.biz-card .biz-body a.btn { margin-top: 6px; }

.directory-register-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 0 0 28px;
  text-align: center;
}
.directory-register-cta p { margin: 0; font-size: 14.5px; color: var(--navy); font-weight: 600; }

.directory-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: -8px 0 40px;
}
.directory-jump-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-right: 4px;
}
.directory-jump a {
  font-size: 13px;
  color: var(--navy);
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.directory-jump a:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

.directory-cat-block { margin-bottom: 52px; scroll-margin-top: 90px; }
.directory-cat-block:last-child { margin-bottom: 0; }
.directory-cat-head {
  background: var(--navy);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.biz-card .biz-body .biz-contact { font-size: 13px; color: var(--sage); margin: -2px 0 10px; font-style: italic; }
.biz-meta { font-size: 13.5px; color: #4b5a5f; margin: 4px 0; }
.biz-meta strong { color: var(--navy); font-weight: 700; }
.biz-meta a { color: inherit; text-decoration: none; }
.biz-meta a:hover { text-decoration: underline; }
.biz-promo {
  display: inline-block;
  margin-top: 12px;
  background: var(--sage);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}
.directory-disclaimer {
  font-size: 12.5px;
  color: #6a7a7f;
  text-align: center;
  max-width: 720px;
  margin: 8px auto 0;
}
.biz-badge-new {
  display: inline-block;
  background: var(--sage-light);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.biz-top h3 { display: inline; }

/* ---------- Sponsor tiers ---------- */
.tier-card {
  border-radius: var(--radius);
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.tier-card.featured {
  background: var(--navy);
  color: var(--bone);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.tier-card.featured h3 { color: var(--white); }
.tier-card.featured .tier-price { color: var(--sage-light); }
.tier-card h3 { font-size: 20px; }
.tier-price { font-size: 15px; color: var(--sage); font-weight: 700; margin-bottom: 14px; }
.tier-card ul { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.tier-card li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
}
.tier-card.featured li { border-bottom-color: rgba(245,245,243,0.15); }
.tier-card li:last-child { border-bottom: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--sage), #3c6a5c);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; font-size: 26px; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #b9c6c9;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand img { height: 42px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: #9fb0b4; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: #b9c6c9;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--sage-light); }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(245,245,243,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.social-row a:hover { background: var(--sage); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(245,245,243,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7c8d92;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float--hidden { opacity: 0; transform: scale(0.75); pointer-events: none; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--bone);
  padding: 62px 0 56px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--sage-light); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.page-hero p { color: #cfd9dc; max-width: 620px; margin: 12px auto 0; }

.breadcrumb-note {
  font-size: 13px;
  color: #9fb0b4;
}

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.italic { font-style: italic; color: var(--sage); }
