/* ═══════════════════════════════════════════════════════════
   RADE VORM WALD — "Bergisch Vertrauen" Design System
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --navy:        #0B1D3A;
  --navy-light:  #122B52;
  --navy-dark:   #060F1F;
  --green:       #22C55E;
  --green-dark:  #16A34A;
  --green-glow:  rgba(34, 197, 94, 0.15);
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE3;
  --slate:       #64748B;
  --slate-light: #94A3B8;
  --tint:        #E8EDF5;
  --white:       #FFFFFF;
  --border:      #D4DAE3;
  --shadow-sm:   0 1px 3px rgba(11, 29, 58, 0.06);
  --shadow-md:   0 4px 20px rgba(11, 29, 58, 0.08);
  --shadow-lg:   0 12px 40px rgba(11, 29, 58, 0.12);
  --shadow-xl:   0 20px 60px rgba(11, 29, 58, 0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.text-slate { color: var(--slate); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-center { text-align: center; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ── Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--tint { background: var(--tint); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}

.grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 7rem 0; }
}

/* ── Topographic Background Pattern ────────────────────── */
.topo-bg {
  position: relative;
}

.topo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300c100-50 200 50 300 0s200-100 300-50' fill='none' stroke='%230B1D3A' stroke-width='1.5'/%3E%3Cpath d='M0 320c100-40 200 60 300 10s200-90 300-40' fill='none' stroke='%230B1D3A' stroke-width='1.5'/%3E%3Cpath d='M0 340c100-30 200 70 300 20s200-80 300-30' fill='none' stroke='%230B1D3A' stroke-width='1.5'/%3E%3Cpath d='M0 200c150-60 250 40 350-10s150-80 250-30' fill='none' stroke='%230B1D3A' stroke-width='1'/%3E%3Cpath d='M0 220c150-50 250 50 350 0s150-70 250-20' fill='none' stroke='%230B1D3A' stroke-width='1'/%3E%3Cpath d='M0 100c120-40 180 60 300 20s180-60 300-20' fill='none' stroke='%230B1D3A' stroke-width='1'/%3E%3Cpath d='M0 120c120-30 180 70 300 30s180-50 300-10' fill='none' stroke='%230B1D3A' stroke-width='1'/%3E%3Cpath d='M0 420c80-30 220 50 340 10s160-60 260-20' fill='none' stroke='%230B1D3A' stroke-width='1'/%3E%3Cpath d='M0 440c80-20 220 60 340 20s160-50 260-10' fill='none' stroke='%230B1D3A' stroke-width='1'/%3E%3Cpath d='M0 500c200-40 300 30 400-10s100-40 200-10' fill='none' stroke='%230B1D3A' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 600px;
  pointer-events: none;
  z-index: 0;
}

.topo-bg > * { position: relative; z-index: 1; }

/* Navy variant */
.section--navy.topo-bg::before {
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300c100-50 200 50 300 0s200-100 300-50' fill='none' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3Cpath d='M0 320c100-40 200 60 300 10s200-90 300-40' fill='none' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3Cpath d='M0 340c100-30 200 70 300 20s200-80 300-30' fill='none' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3Cpath d='M0 200c150-60 250 40 350-10s150-80 250-30' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M0 220c150-50 250 50 350 0s150-70 250-20' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M0 100c120-40 180 60 300 20s180-60 300-20' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M0 120c120-30 180 70 300 30s180-50 300-10' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M0 420c80-30 220 50 340 10s160-60 260-20' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M0 440c80-20 220 60 340 20s160-50 260-10' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M0 500c200-40 300 30 400-10s100-40 200-10' fill='none' stroke='%23FFFFFF' stroke-width='0.8'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ── Header / Navigation ───────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 29, 58, 0.06);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  white-space: nowrap;
}

.logo__mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.nav { display: none; }
.nav__list { display: flex; gap: 0.25rem; }

.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
  background: rgba(11, 29, 58, 0.05);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out);
}

.nav__cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: 2rem 1.5rem;
  z-index: 99;
  animation: slideDown 0.3s var(--ease-out);
}

.mobile-nav--open { display: block; }

.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 0.5rem; }
  .menu-toggle { display: none; }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.35);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  padding: 0.85rem 1rem;
}

.btn--ghost:hover { background: rgba(11, 29, 58, 0.05); }

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  padding: 8rem 0 5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--cream) 0%, var(--tint) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: 680px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-dark);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ── Section Headers ───────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-header__label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section--navy .section-header p { color: var(--slate-light); }

/* ── Service Cards ─────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--green);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--slate);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* ── Pricing Cards ─────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.35s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border-color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--green);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 0 0 4px 4px;
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card__desc {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  margin-bottom: 0.25rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}

.pricing-card__amount span {
  font-size: 1rem;
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-card__monthly {
  color: var(--slate);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__monthly strong {
  color: var(--navy);
  font-weight: 600;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--navy);
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pricing-card .btn { width: 100%; }

/* ── Trust / Stats Bar ─────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.section--navy .stat__number { color: var(--green); }

.stat__label {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
}

/* ── Feature List (Leistungen) ─────────────────────────── */
.feature-block {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-block { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature-block--reverse > :first-child { order: 2; }
}

.feature-block__visual {
  aspect-ratio: 4/3;
  background: var(--tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.feature-block__visual-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

.feature-block__content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}

.feature-block__content p {
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── About / Team Section ──────────────────────────────── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.about-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--tint), var(--cream-dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image__placeholder {
  width: 120px;
  height: 120px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 3rem;
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-content p {
  color: var(--slate);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-value__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.about-value__text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ── Contact Form ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 0.15rem;
}

.contact-info__value {
  font-weight: 500;
  font-size: 1rem;
}

.form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form__textarea { min-height: 140px; resize: vertical; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Inclusive Bar ──────────────────────────────────────── */
.inclusive-bar {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.inclusive-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.inclusive-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.85;
}

.inclusive-item__icon {
  color: var(--green);
}

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Testimonial ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card__quote::before {
  content: '\201E';
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ── Process Steps ─────────────────────────────────────── */
.process-steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  counter-increment: step;
  text-align: center;
  padding: 1.5rem;
}

.process-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.process-step:hover .process-step__number {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-item__question:hover { color: var(--green-dark); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item--open .faq-item__icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  color: var(--slate);
  font-size: 0.925rem;
  line-height: 1.8;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand {
  max-width: 280px;
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__brand .logo__mark {
  background: var(--navy-light);
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: 1rem;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  font-size: 0.9rem;
  color: var(--slate-light);
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--green); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a { color: var(--slate-light); transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--green); }

/* ── Page Hero (for sub-pages) ─────────────────────────── */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(170deg, var(--tint), var(--cream));
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 1.1rem;
}

/* ── Divider ───────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin: 1.5rem 0;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* ── Utility ───────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

/* ── Scroll animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(n+7) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }

/* ── Legal Pages ───────────────────────────────────────── */
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section address {
  font-style: normal;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--navy);
}

/* ── Blog Hero ────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 10rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.blog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.blog-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.blog-hero p {
  color: var(--slate-light);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Blog Featured ────────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-featured__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--green);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(11, 29, 58, 0.18);
  position: relative;
}

.blog-featured__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-xl);
  border: 2px dashed var(--green-glow);
}

.blog-featured__icon svg {
  width: 44px;
  height: 44px;
}

.blog-featured__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-featured__date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.blog-featured__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.blog-featured__excerpt {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
  transition: gap 0.2s var(--ease-out);
}

.blog-featured:hover .blog-featured__link {
  gap: 0.7rem;
}

@media (max-width: 700px) {
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .blog-featured__icon {
    width: 64px;
    height: 64px;
  }
  .blog-featured__icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ── Blog Section Header ──────────────────────────────── */
.blog-section-header {
  margin-bottom: 2rem;
}

.blog-section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.25rem;
}

/* ── Blog Tag ─────────────────────────────────────────── */
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--tint);
  color: var(--navy);
}

.blog-tag--green {
  background: var(--green-glow);
  color: var(--green-dark);
}

/* ── Blog Grid ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* ── Blog Card ────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card__accent {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
  transition: height 0.25s var(--ease-out);
}

.blog-card:hover .blog-card__accent {
  height: 6px;
}

.blog-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--green);
  margin: 1.5rem 1.5rem 0;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 29, 58, 0.12);
}

.blog-card:nth-child(2) .blog-card__icon-wrap { background: var(--navy-light); }
.blog-card:nth-child(3) .blog-card__icon-wrap { background: #7C3AED; }
.blog-card:nth-child(4) .blog-card__icon-wrap { background: #E97451; color: #fff; }
.blog-card:nth-child(5) .blog-card__icon-wrap { background: #0284C7; color: #fff; }

.blog-card__body {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card__title a {
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: var(--green-dark);
}

.blog-card__excerpt {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-card__reading {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--slate-light);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-dark);
  transition: gap 0.2s var(--ease-out);
  cursor: pointer;
}

.blog-card__link:hover {
  gap: 0.7rem;
}

/* Blog Article */
.blog-article {
  max-width: 780px;
}

.blog-article__header {
  margin-bottom: 3rem;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.blog-article__back:hover {
  color: var(--green-dark);
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.blog-article__content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article__content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-article__content p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.blog-article__content ul,
.blog-article__content ol {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-article__content ul { list-style: disc; }
.blog-article__content ol { list-style: decimal; }

.blog-article__content li {
  margin-bottom: 0.4rem;
}

.blog-article__content strong {
  color: var(--navy);
  font-weight: 600;
}

.blog-article__content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article__content a:hover {
  color: var(--navy);
}

.blog-article__content blockquote {
  border-left: 3px solid var(--green);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-article__content blockquote p {
  color: var(--navy);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
