/* ============================================================
   style.css — Zeogly Corporate Website
   ============================================================ */

/* === Variables === */
:root {
  --navy:      #1d3657;
  --white:     #ffffff;
  --blue:      #1a73e8;
  --light-bg:  #f8f9fa;
  --text-dark: #212529;
  --text-muted:#6c757d;
  --border:    #dee2e6;
  --max-w:     1120px;
  --nav-h:     64px;
  --radius:    8px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { max-width: 72ch; }

/* === Layout === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--navy { background: var(--navy); }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.nav__links a.nav__cta {
  background: var(--blue);
  color: var(--white);
  margin-left: 0.5rem;
}
.nav__links a.nav__cta:hover { background: #1558c0; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}
.nav__mobile a:hover,
.nav__mobile a.active { background: rgba(255,255,255,0.12); color: var(--white); }
.nav__mobile a.nav__cta {
  background: var(--blue);
  color: var(--white);
  margin-top: 0.5rem;
  text-align: center;
}

/* === Hero === */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 4rem;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 60ch;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline:hover { border-color: var(--white); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--lg { padding: 0.9rem 2.25rem; font-size: 1rem; }

/* === Cards === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card__icon svg { width: 24px; height: 24px; color: var(--white); }
.card__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card__body { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }
.card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

/* === Stats bar === */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stats-bar__col { padding: 2.5rem 3rem; }
.stats-bar__col--light { background: var(--light-bg); }
.stats-bar__col--navy { background: var(--navy); }
.stats-bar__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.stats-bar__col--light .stats-bar__label { color: var(--text-muted); }
.stats-bar__col--navy .stats-bar__label { color: #93c5fd; }
.stats-bar__number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stats-bar__col--light .stats-bar__number { color: var(--navy); }
.stats-bar__col--navy .stats-bar__number { color: var(--white); }
.stats-bar__desc { font-size: 0.9375rem; line-height: 1.65; }
.stats-bar__col--light .stats-bar__desc { color: var(--text-muted); }
.stats-bar__col--navy .stats-bar__desc { color: rgba(255,255,255,0.8); }
.stats-bar__source { font-size: 0.725rem; color: var(--text-muted); margin-top: 1.5rem; }

/* === Steps (How It Works) === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.step__text { color: var(--text-muted); line-height: 1.7; font-size: 0.9375rem; }

/* === Features (alternating rows) === */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--flip .feature__text { order: 2; }
.feature-row--flip .feature__visual { order: 1; }
.feature__icon-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature__icon svg { width: 24px; height: 24px; color: var(--white); }
.feature__title { font-size: 1.5rem; }
.feature__desc { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin: 0.75rem 0 1.5rem; }
.feature__points { display: flex; flex-direction: column; gap: 0.75rem; }
.feature__point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.feature__check {
  width: 20px;
  height: 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature__check svg { width: 11px; height: 11px; color: var(--white); }
.feature__visual {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  align-items: stretch;
  padding: 1.25rem;
  overflow: hidden;
}

/* ── Feature Screenshot Frames ─────────────── */
.feature__visual {
  /* override padding for framed screenshots */
  padding: 0;
  background: transparent;
  border: none;
  align-items: center;
  justify-content: center;
}

/* Phone bezel */
.phone-frame {
  display: flex;
  justify-content: center;
}
.phone-frame__bezel {
  background: #111827;
  border-radius: 2.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 0 0 1px #374151;
  padding: 14px;
  width: 224px;
  position: relative;
}
.phone-frame__screen {
  border-radius: 2.25rem;
  overflow: hidden;
}
.phone-frame__screen img { display: block; width: 100%; height: auto; }
.phone-frame__btn-l {
  position: absolute; left: -4px; top: 5rem;
  width: 4px; height: 2rem;
  background: #374151; border-radius: 2px 0 0 2px;
}
.phone-frame__btn-l2 {
  position: absolute; left: -4px; top: 8rem;
  width: 4px; height: 2rem;
  background: #374151; border-radius: 2px 0 0 2px;
}
.phone-frame__btn-r {
  position: absolute; right: -4px; top: 7rem;
  width: 4px; height: 3rem;
  background: #374151; border-radius: 0 2px 2px 0;
}

/* Browser chrome */
.browser-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.browser-frame__bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.browser-frame__dots {
  display: flex; gap: 5px; flex-shrink: 0;
}
.browser-frame__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-frame__dot--red    { background: #f87171; }
.browser-frame__dot--yellow { background: #fbbf24; }
.browser-frame__dot--green  { background: #4ade80; }
.browser-frame__url {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  padding: 0.2rem 0.625rem;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-frame__screen img { display: block; width: 100%; height: auto; }

/* ── Feature UI Mockups ─────────────────────── */
.mock-ui {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.4;
}
.mock-ui__bar {
  background: var(--navy);
  color: #fff;
  padding: 0.55rem 0.875rem;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-ui__bar svg { width: 13px; height: 13px; flex-shrink: 0; }
.mock-ui__subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.75rem;
  background: #f8f9fa;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.mock-badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  padding: 0.1rem 0.5rem;
  font-size: 0.67rem;
}
.mock-badge--ml { margin-left: auto; }
.mock-chip {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}
.mock-chip--green  { background: #dcfce7; color: #15803d; }
.mock-chip--blue   { background: #dbeafe; color: #1d4ed8; }
.mock-chip--grey   { background: #f1f5f9; color: #64748b; }
.mock-chip--amber  { background: #fef3c7; color: #92400e; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.425rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.mock-row:last-child { border-bottom: none; }
.mock-avatar-c {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.mock-name  { font-weight: 600; font-size: 0.78rem; color: var(--text-dark); }
.mock-sub   { font-size: 0.68rem; color: var(--text-muted); }
.mock-col1  { flex: 2; display: flex; align-items: center; gap: 0.4rem; }
.mock-col15 { flex: 1.5; font-size: 0.7rem; color: var(--text-muted); }
.mock-col1f { flex: 1; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot--green { background: #22c55e; }
.mock-dot--grey  { background: #94a3b8; }

/* Wallet Pass */
.mock-pass {
  width: 100%;
  background: linear-gradient(140deg, #1d3657 0%, #2a5298 100%);
  color: #fff;
  border-radius: 14px;
  padding: 1.125rem;
  box-shadow: 0 6px 24px rgba(29,54,87,0.35);
}
.mock-pass__hdr {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  opacity: 0.7;
  margin-bottom: 0.875rem;
}
.mock-pass__logo {
  width: 16px; height: 16px;
  background: #4285F4;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: #fff;
}
.mock-pass__body {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.mock-pass__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-pass__avatar svg { width: 24px; height: 24px; color: rgba(255,255,255,0.6); }
.mock-pass__name    { font-size: 0.975rem; font-weight: 700; margin-bottom: 0.125rem; }
.mock-pass__title   { font-size: 0.7rem; opacity: 0.8; }
.mock-pass__agency  { font-size: 0.68rem; opacity: 0.6; margin-top: 0.1rem; }
.mock-pass__btns {
  display: flex; gap: 0.4rem;
  margin-bottom: 0.875rem;
}
.mock-pass__btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 0.3rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
}
.mock-pass__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.75rem;
  font-size: 0.68rem;
  opacity: 0.65;
}

/* Leaderboard */
.mock-rank {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.mock-rank:last-child { border-bottom: none; }
.mock-rank__num {
  width: 22px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.mock-rank__bar {
  flex: 1;
  height: 5px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 0.25rem;
}
.mock-rank__bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--navy);
}

/* Timeline (review campaign) */
.mock-timeline { padding: 0.75rem; }
.mock-tl-item {
  display: flex;
  gap: 0.625rem;
  padding-bottom: 0.7rem;
  position: relative;
}
.mock-tl-item::before {
  content: '';
  position: absolute;
  left: 10px; top: 22px;
  width: 1px; height: calc(100% - 4px);
  background: #e2e8f0;
}
.mock-tl-item:last-child::before { display: none; }
.mock-tl-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  z-index: 1;
}
.mock-tl-dot--done  { background: #22c55e; color: #fff; }
.mock-tl-dot--star  { background: #fbbf24; color: #fff; }
.mock-tl-dot--off   { background: #e2e8f0; color: #94a3b8; }
.mock-tl-label { font-size: 0.73rem; font-weight: 600; color: var(--text-dark); }
.mock-tl-sub   { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.1rem; line-height: 1.4; }

/* Broadcast */
.mock-broadcast { padding: 0.75rem; }
.mock-msg-box {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.625rem;
  font-size: 0.73rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.mock-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 0.45rem 0.875rem;
  font-size: 0.73rem;
  font-weight: 600;
}

/* === Value Props === */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.value-prop__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-prop__body { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* === Pricing === */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.pricing-toggle__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.pricing-toggle__label.active { color: var(--navy); }
.pricing-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.pricing-toggle__switch.on { background: var(--navy); }
.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}
.pricing-toggle__switch.on::after { transform: translateX(20px); }
.pricing-toggle__badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #dcfce7;
  color: #166534;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card--popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__name { font-size: 1.25rem; margin-bottom: 0.125rem; }
.pricing-card__agents { font-size: 0.875rem; color: var(--text-muted); }
.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  line-height: 1;
}
.pricing-card__amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
}
.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-bottom: 0.3rem;
}
.pricing-card__save {
  font-size: 0.8rem;
  font-weight: 600;
  color: #166534;
  min-height: 1.2em;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.pricing-card__feature {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pricing-card__feature svg {
  width: 16px; height: 16px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card__cta {
  margin-top: auto;
}
.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing-note a { color: var(--text-muted); text-decoration: underline; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 2rem; }
.faq__q { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.faq__a { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* === Section headings === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; margin: 0 auto; }
.section-header--left { text-align: left; }
.section-header--white h2 { color: var(--white); }
.section-header--white p { color: rgba(255,255,255,0.75); }

/* === CTA band === */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* === Why Zeogly === */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.pillar {
  padding: 1.75rem;
  border-left: 3px solid var(--blue);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pillar__title { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.pillar__body { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* === Consulting — Timeline === */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline__role {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}
.timeline__org { font-weight: 600; color: var(--blue); }
.timeline__date {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin: 0.125rem 0 0.5rem;
}
.timeline__body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.625rem;
}
.tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--light-bg);
  color: var(--text-dark);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* === Skills grid === */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.skill-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.skill-group__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.skill-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* === Sectors === */
.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.sector-pill {
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

/* === Contact form === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-info__label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info__value { font-size: 0.9375rem; color: var(--text-dark); }
.contact-info__value a { color: var(--text-dark); }
.contact-info__value a:hover { color: var(--blue); }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,115,232,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-consent {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.form-submit-row { margin-top: 0.5rem; }

/* === Policy pages (privacy/terms) === */
.policy-page { max-width: 780px; margin: 0 auto; padding: 4rem 1.5rem; }
.policy-page h1 { margin-bottom: 0.5rem; }
.policy-date { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 3rem; }
.policy-section { margin-bottom: 2.75rem; }
.policy-section h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}
.policy-section p { color: var(--text-dark); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 0.875rem; max-width: 100%; }
.policy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.policy-section a { color: var(--blue); }
.policy-section strong { font-weight: 600; }
.policy-section em { font-style: italic; }
.policy-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}
.policy-section th, .policy-section td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.875rem;
  text-align: left;
}
.policy-section th { background: var(--light-bg); font-weight: 600; color: var(--navy); }
.policy-section tr:nth-child(even) { background: var(--light-bg); }

/* === NudgeReviews === */
.nr-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.nr-feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}
.nr-feature__title { font-size: 1rem; margin-bottom: 0.375rem; }
.nr-feature__body { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.company-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
}
.company-details dt { font-weight: 600; color: var(--navy); }
.company-details dd { color: var(--text-muted); margin-left: 0; margin-bottom: 0.75rem; }

/* === Footer === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img { height: 36px; width: auto; margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.875rem; line-height: 1.65; max-width: 28ch; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__contact-item {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* === Breadcrumb / page header (policy/about) === */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
}
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.75); margin-top: 0.625rem; }

/* === Responsive === */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--flip .feature__text { order: 1; }
  .feature-row--flip .feature__visual { order: 2; }
}

@media (max-width: 600px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar__col { padding: 2rem 1.5rem; }
  .stats-bar__number { font-size: 2.75rem; }
  .pricing-grid { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* === Utilities === */
.text-center { text-align: center; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.fw-600 { font-weight: 600; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
