/* Hero section */

.hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(72px, 9vw, 140px);
  position: relative;
  overflow: hidden;
  background-image: url('../assets/BG.png');
  background-size: cover;
  background-position: center top;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.hero__copy {
  max-width: 640px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(17, 54, 108, 0.08);
}
.hero__eyebrow-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero h1 .accent { color: var(--tc-navy); }
.hero h1 .accent-green {
  color: var(--tc-green);
  font-style: italic;
  font-family: var(--serif);
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.35;
  color: var(--tc-ink-2);
  margin-top: 18px;
  max-width: 22ch;
  font-weight: 400;
  font-style: italic;
}
.hero__desc {
  margin-top: 28px;
  max-width: 50ch;
  color: var(--tc-ink-2);
  font-size: 17px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--tc-line);
}
.hero__trust span {
  font-size: 12px;
  color: var(--tc-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__trust img {
  height: 36px;
  width: auto;
  opacity: 0.95;
}


