:root {
  --orange: #4face0;
  --orange-dark: #2f8fc3;
  --teal: #1d6f9f;
  --teal-dark: #174d70;
  --ink: #102033;
  --muted: #617084;
  --line: #dcecf7;
  --soft: #f4f9fd;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(29, 111, 159, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 46px;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(79, 172, 224, 0.24);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--white);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--orange);
}

.btn-teal {
  color: var(--white);
  background: var(--teal);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 88%, rgba(79, 172, 224, 0.18), transparent 20%),
    linear-gradient(115deg, #ffffff 0%, #f7fbff 52%, #eaf5fb 100%);
}

.hero .container {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  padding: 54px 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--teal);
}

.lead {
  margin: 20px 0 0;
  max-width: 620px;
  color: #344357;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0 0 0 150px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  top: 38px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.13);
  font-size: 13px;
  font-weight: 800;
}

.icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
}

.icon.orange {
  background: var(--orange);
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  padding: 24px 0;
  text-align: center;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 14px;
  color: #6b7480;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 32, 51, 0.06);
}

a.card {
  display: block;
}

a.card:hover {
  border-color: rgba(79, 172, 224, 0.48);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.learn {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

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

.stat {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.stat strong {
  display: block;
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
}

.case-card .meta {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  font-size: 14px;
}

.case-card b {
  color: var(--ink);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -15px;
  left: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.cta-band {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(29, 111, 159, 0.98), rgba(23, 77, 112, 0.98)),
    radial-gradient(circle at 85% 20%, rgba(79, 172, 224, 0.38), transparent 24%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.page-hero {
  padding: 84px 0 62px;
  background: linear-gradient(120deg, #ffffff, #eef8fe);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.content-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.content-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: var(--soft);
}

.leader-photo {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(29, 111, 159, 0.1), rgba(79, 172, 224, 0.08)),
    url("assets/peoplebridge-hero.png") center / cover;
  box-shadow: var(--shadow);
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(79, 172, 224, 0.2);
  border-color: var(--teal);
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eaf8f5;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-status.show {
  display: block;
}

.booking-frame {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.booking-placeholder {
  height: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: repeating-linear-gradient(135deg, #fbfcfd 0 12px, #f4f7fa 12px 24px);
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.accordion summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.accordion details div {
  padding: 0 22px 22px;
  color: var(--muted);
}

.post-meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article {
  max-width: 780px;
}

.article h2 {
  margin-top: 42px;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(135deg, #123d5c, #1d6f9f);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(16, 32, 51, 0.1);
  }

  .nav-links.open {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero .container,
  .split,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
  }

  .hero-visual img {
    height: 390px;
    border-radius: 8px;
  }

  .grid-4,
  .grid-3,
  .stats,
  .process,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero-actions,
  .section-head,
  .cta-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .stats,
  .process,
  .trust-logos,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-visual img {
    height: 320px;
  }

  .floating-note {
    left: 14px;
    top: 14px;
  }
}
