/* fitfndr.app — Pensionfriend-inspired design system */
:root {
  --primary: #0B7285;
  --primary-darken1: #095e6e;
  --primary-darken2: #074955;
  --primary-lighten1: #3d9aad;
  --primary-lighten2: #7ec4d0;
  --primary-lighten3: #b8dfe6;
  --primary-lighten4: #e6f4f6;
  --secondary: #16324F;
  --secondary-lighten1: #1f4268;
  --secondary-lighten2: #3d5a7a;
  --secondary-lighten3: #6b8299;
  --secondary-lighten4: #c5d0dc;
  --peach: #FF6B4A;
  --peach-light: #ff8a6f;
  --peach-bg: rgba(255, 107, 74, 0.1);
  --orange: #F0A93B;
  --success: #059669;
  --info: #6366F1;
  --grey-light: #E7E5E4;
  --grey-lightest: #FAFAF9;
  --bg-alt: #c5d0cf;
  --green-bg: #e6f4f6;
  --white: #fff;
  --black: #000;
  --text-body: #57534E;
  --text-muted: #78716C;
  --dark-overlay: #0C0A09;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'PT Serif', Georgia, serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-card: 8px;
  --shadow-sm: 0 1px 2px rgba(22, 50, 79, 0.06);
  --shadow-md: 0 2px 8px rgba(22, 50, 79, 0.08);
  --shadow-card: none;
  --card-border: 1px solid var(--grey-light);
  --container: 1200px;
  --header-h: 72px;
  --banner-h: 42px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

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

.container--narrow { max-width: 820px; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white-muted { color: rgba(255, 255, 255, 0.75); }

/* Buttons — Pensionfriend style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--peach);
  color: var(--white);
  border-color: transparent;
}

.btn--primary:hover {
  background: #e85a3a;
}

.btn--blue {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.btn--blue:hover {
  background: var(--primary-darken1);
}

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

.btn--outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary-lighten4);
  color: var(--primary-darken1);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--sm { padding: 8px 18px; font-size: 14px; font-weight: 600; }
.btn--lg { padding: 14px 32px; font-size: 17px; }
.btn--xl {
  width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  font-size: 17px;
  border-radius: var(--radius);
}

.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Top banner */
.top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: var(--banner-h);
  padding: 8px 48px 8px 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  text-align: center;
  position: relative;
}

.top-banner strong { color: var(--peach); }
.top-banner__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
}

.top-banner__close:hover { opacity: 1; }
.top-banner.hidden { display: none; }

body.banner-hidden { --banner-h: 0px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.header__logo { flex-shrink: 0; z-index: 201; }
.header__logo img { height: 40px; width: auto; }

.header__nav {
  display: none;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
}

.header__nav a {
  padding: 4px 0;
  transition: color 0.15s;
}

.header__nav a:hover { color: var(--primary); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 201;
}

.header__cta-secondary { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}

.menu-toggle:hover { background: var(--grey-lightest); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: calc(var(--header-h) + var(--banner-h));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px 24px;
  gap: 8px;
  font-size: 18px;
  z-index: 150;
  overflow-y: auto;
}

.header__nav.open a {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
}

/* Hero — Pensionfriend white panel over image */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/hero-small.webp');
  background-size: cover;
  background-position: 65% 0;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.1);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 0 32px;
  width: 100%;
}

.hero__panel {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px 32px;
  border: var(--card-border);
  max-width: 520px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 12px;
  text-shadow: none;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.35;
  margin-bottom: 12px;
}

.hero__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 24px;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-light);
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-light);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
}

.trust-badge__icon--users {
  background: var(--primary-lighten4);
  color: var(--primary);
}

.trust-badge__icon--free {
  background: rgba(5, 150, 105, 0.14);
  color: var(--success);
}

.trust-badge__icon--users svg,
.trust-badge__icon--free svg { width: 22px; height: 22px; }

.trust-badge__icon--rating {
  background: rgba(251, 191, 36, 0.22);
  color: #D97706;
}

.trust-badge__icon--rating svg { width: 20px; height: 20px; }

.trust-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.trust-badge span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Benefits strip */
.benefits-strip {
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

.benefits-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: var(--card-border);
}

.benefit-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: var(--card-border);
}

.benefit-item__icon .icon { width: 24px; height: 24px; }

.benefit-item p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 12px;
}

.benefit-item strong { color: var(--secondary); font-weight: 700; }

/* Sections */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }

.section--dark {
  background: var(--secondary);
  padding: 88px 0;
}

.section--pricing {
  background: var(--grey-lightest);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.section--cta {
  background: var(--secondary);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-label--light { color: var(--peach-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section--dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.section--dark .section-subtitle { color: rgba(255, 255, 255, 0.72); }

.section-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.check-list { list-style: none; margin: 20px 0; }

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--compact { margin: 12px 0 0; }
.check-list--compact li { font-size: 14px; margin-bottom: 8px; }

.section-image {
  width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.two-col__image {
  overflow: hidden;
  border-radius: var(--radius-card);
}

/* Sectors — persona-card style */
.sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}

.sector-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--secondary);
}

.sector-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.52);
  z-index: 1;
}

.sector-card:hover .sector-card__image {
  transform: none;
}

.sector-card:hover::before {
  background: rgba(12, 10, 9, 0.52);
}

.sector-card:hover {
  transform: none;
  box-shadow: none;
}

.sector-card__count,
.sector-card h3,
.sector-card p { position: relative; z-index: 2; }

.sector-card__count {
  display: inline-block;
  align-self: center;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  background: var(--orange);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.sector-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.sector-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Steps / solutions */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: var(--card-border);
}

.step-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: var(--card-border);
}

.step-card__icon .icon { width: 26px; height: 26px; }

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.step-card__subtitle {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

/* Pricing / waarom */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: left;
  border: var(--card-border);
  height: 100%;
}

.pricing-card--featured {
  border: var(--card-border);
  background: var(--white);
}

.pricing-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  border: var(--card-border);
}

.pricing-card--featured .pricing-card__icon {
  background: var(--white);
  color: var(--primary);
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.section--why {
  background: var(--white);
}

/* Why fitfndr cards */
.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: var(--card-border);
  text-align: left;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card > p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: var(--card-border);
  height: 100%;
}

.review-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

.review-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 16px;
}

/* Dual CTA */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dual-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.dual-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 26px);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.dual-cta__card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-card);
  border: var(--card-border);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--grey-light);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item[open] summary {
  background: var(--white);
  color: var(--secondary);
  border-bottom: var(--card-border);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item__body {
  padding: 16px 22px 20px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  background: var(--white);
}

.faq-item__body a { color: var(--primary); text-decoration: underline; }

.contact-page {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: var(--card-border);
}

.contact-panel__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-panel__intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: var(--card-border);
}

.contact-list__item:first-child {
  padding-top: 0;
}

.contact-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  border: var(--card-border);
}

.contact-list__icon .icon {
  width: 22px;
  height: 22px;
}

.contact-list__body {
  min-width: 0;
  padding-top: 2px;
}

.contact-list__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-list__body a,
.contact-list__body p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.contact-list__body a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.contact-list__body a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-list__body p + p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: var(--card-border);
  width: 100%;
}

.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-form-card__intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* Contact form */
.contact-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-type {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  border: var(--card-border);
}

.calculator-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: var(--card-border);
}

.contact-type strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-type p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--secondary);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2378716C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 114, 133, 0.16);
}

.form-row--role {
  border: none;
  padding: 0;
  margin: 0;
}

.form-row--role legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.role-toggle__option {
  position: relative;
  cursor: pointer;
}

.role-toggle__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.role-toggle__option span {
  display: block;
  padding: 12px 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.role-toggle__option input:checked + span {
  border-color: var(--primary);
  background: var(--primary-lighten4);
  color: var(--primary-darken1);
}

.role-toggle__option input:focus-visible + span {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 114, 133, 0.16);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel[hidden] {
  display: none;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}

.form-consent input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--primary-darken1);
}

.calculator-result {
  padding: 24px;
  text-align: center;
  background: rgba(98, 187, 150, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(98, 187, 150, 0.3);
}

.calculator-result__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}

.form-success {
  padding: 36px 28px;
  text-align: center;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--radius-card);
}

.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-lighten4);
  color: var(--primary);
}

.form-success__icon .icon {
  width: 28px;
  height: 28px;
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.form-success__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0 28px;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__tagline {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}

.footer__label {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.footer__inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}

.footer__inline > *:not(:last-child)::after {
  content: '·';
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.footer__inline a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__inline a:hover {
  color: var(--peach-light);
}

.footer__inline span {
  line-height: 1.5;
}

.footer__copy {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.legal-page {
  padding: 48px 0 80px;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--secondary);
  margin-bottom: 12px;
}

.legal-page__meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--secondary);
  margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 15px;
}

.legal-page ul {
  margin: 12px 0 12px 20px;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* About page */
.about-hero {
  padding: 56px 0 48px;
  background: var(--white);
  text-align: center;
}

.about-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 20px;
}

.about-hero__text {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.about-origin {
  padding: 64px 0;
}

.about-origin__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--card-border);
}

.about-origin__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-questions {
  padding: 64px 0;
  background: var(--bg-alt);
}

.about-questions__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.about-bubbles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.about-bubble {
  max-width: 88%;
  padding: 18px 22px;
  border-radius: var(--radius-card);
  font-size: 15px;
  line-height: 1.55;
  color: var(--secondary);
  background: var(--white);
  border: var(--card-border);
}

.about-bubble--left {
  align-self: flex-start;
}

.about-bubble--right {
  align-self: flex-end;
}

.about-pillars {
  padding: 80px 0;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 12px;
}

.about-pillar {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: var(--card-border);
}

.about-pillar h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.about-pillar p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 10px;
}

.about-pillar p:last-child { margin-bottom: 0; }

.about-team {
  padding: 64px 0 80px;
  background: var(--bg-alt);
}

.about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 12px;
}

.about-team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--card-border);
}

.about-team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.about-team-card__body {
  padding: 22px 24px 26px;
}

.about-team-card__body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.about-team-card__role {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-team-card__body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.about-cta {
  padding: 72px 0;
  background: var(--peach);
  text-align: center;
}

.about-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 14px;
}

.about-cta__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

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

  .hero__stats .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero__stats .trust-badge strong { font-size: 15px; }

  .hero__stats .trust-badge span {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (min-width: 600px) {
  .contact-page__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
  }
}

@media (min-width: 768px) {
  .hero__bg {
    background-image: url('./assets/hero-medium.webp');
    background-position: 70% 20%;
  }

  .hero__overlay {
    background: transparent;
  }

  .hero {
    min-height: 580px;
    align-items: flex-end;
  }

  .hero__content {
    padding: 80px 0 56px;
  }

  .hero__panel {
    padding: 36px 32px 32px;
    max-width: 560px;
  }

  .hero__title { font-size: 32px; line-height: 1.2; }
  .hero__subtitle { font-size: 21px; }
  .btn--xl { min-height: 60px; font-size: 18px; }

  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .about-pillars__grid { grid-template-columns: repeat(3, 1fr); }
  .about-team__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; gap: 56px; }
  .two-col--reverse .two-col__text { order: 2; }
  .two-col--reverse .two-col__image { order: 1; }
  .dual-cta { grid-template-columns: repeat(2, 1fr); }
  .contact-types { grid-template-columns: repeat(2, 1fr); }
  .calculator-card { padding: 40px; }
}

@media (min-width: 960px) {
  .header__nav { display: flex; }
  .header__cta-secondary { display: inline-flex; }
  .menu-toggle { display: none; }

  .hero__bg {
    background-image: url('./assets/hero-large.webp');
    background-position: 72% 15%;
  }

  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding: 100px 0 72px;
  }

  .hero__panel {
    max-width: 580px;
    padding: 40px 36px 36px;
  }

  .hero__title { font-size: 36px; }

  .section { padding: 96px 0; }
  .why-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .two-col--reverse .two-col__text { order: 1; }
  .two-col--reverse .two-col__image { order: 2; }
  .section { padding: 56px 0; }
  .header__cta-secondary { display: none; }
}

@media (max-width: 479px) {
  .header__actions .btn--sm {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero__panel {
    border-radius: var(--radius);
  }
}
