/* ============================================
   WOMESTOR DESIGN SYSTEM
   Financial Education für Frauen
   ============================================ */

:root {
  /* Colors – Premium Minimalist Palette */
  --color-primary: #2D5016;          /* Forest Green */
  --color-primary-light: #E8F1E3;    /* Light Forest Green */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-900: #0F0F0F;         /* Near Black */
  --color-gray-800: #1A1A1A;
  --color-gray-700: #2D2D2D;
  --color-gray-600: #505050;
  --color-gray-500: #747474;
  --color-gray-400: #A8A8A8;
  --color-gray-300: #D1D1D1;
  --color-gray-200: #E5E5E5;
  --color-gray-100: #F2F2F2;
  --color-gray-50: #F9F9F9;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-body: 16px;
  --font-size-body-large: 18px;
  --font-size-small: 14px;
  --line-height-body: 1.6;
  --line-height-heading: 1.2;
  
  /* Spacing */
  --spacing-section: 80px;
  --spacing-gap: 40px;
  --spacing-small: 20px;
  
  /* Max Width */
  --max-width-container: 1320px;
  
  /* Transitions */
  --transition-smooth: 150ms ease-in-out;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-gray-900);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-heading);
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 64px);
}

h2, .section-heading {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: var(--spacing-gap);
}

h3 {
  font-size: 28px;
}

p {
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

a {
  color: var(--color-forestgreen);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  text-decoration: underline;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--spacing-small);
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

.section {
  padding: var(--spacing-section) 0;
  width: 100%;
  scroll-margin-top: 84px;
}

.home-page .section:not(.section-explore):not(.section-studies) {
  display: none;
}

.page-main {
  margin-top: 64px;
}

.detail-page .page-main > .section:first-child {
  padding-top: 56px;
}

.page-kicker {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-section-header {
  max-width: 62ch;
  margin-bottom: 2.5rem;
}

.page-section-header .detail-heading {
  margin-bottom: 0.75rem;
  font-size: clamp(27px, 3vw, 38px);
}

.page-section-header > p:last-child {
  margin-bottom: 0;
  color: var(--color-gray-600);
}

.detail-intro {
  padding-top: 48px;
  padding-bottom: 24px;
  background: var(--color-gray-50);
}

.detail-intro h1 {
  max-width: 28ch;
  font-size: clamp(28px, 3.2vw, 42px);
}

.detail-lead {
  max-width: 52ch;
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--color-gray-600);
  font-size: 16px;
}

.detail-heading {
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
  font-size: clamp(28px, 3.2vw, 40px);
}

.detail-page.is-page-ready .detail-intro .explore-kicker,
.detail-page.is-page-ready .detail-intro h1,
.detail-page.is-page-ready .detail-intro .detail-lead {
  animation: detailIntroIn 0.65s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.detail-page.is-page-ready .detail-intro h1 {
  animation-delay: 100ms;
}

.detail-page.is-page-ready .detail-intro .detail-lead {
  animation-delay: 200ms;
}

.detail-page .is-content-visible {
  animation: contentSurfaceIn 0.55s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

/* ============================================
   SELIN JOURNEY
   ============================================ */

.selin-journey-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.selin-journey-intro h1 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1;
}

.selin-journey-intro > div > p:last-child {
  max-width: 43ch;
  margin-bottom: 0;
  color: var(--color-gray-600);
  font-size: 17px;
  line-height: 1.6;
}

.selin-journey-intro .selin-image img,
.selin-journey-intro .selin-image figcaption {
  max-width: none;
}

.selin-journey {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.selin-journey::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 22px;
  width: 1px;
  background: var(--color-primary);
  content: '';
}

.selin-journey li {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
}

.selin-journey > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
}

.selin-journey li > div {
  padding: 1.5rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-gray-50);
}

.selin-journey h2 {
  margin-bottom: 0.65rem;
  color: var(--color-gray-900);
  font-size: clamp(24px, 2.8vw, 34px);
}

.selin-journey p:not(.page-kicker) {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--color-gray-700);
}

.selin-journey .btn {
  margin-top: 1.25rem;
}

@media (max-width: 767px) {
  .selin-journey-intro {
    grid-template-columns: 1fr;
  }

  .selin-journey-intro .selin-image {
    max-width: 420px;
  }

  .selin-journey li {
    gap: 1rem;
  }

  .selin-journey li > div {
    padding: 1.25rem;
  }
}

/* ============================================
   SERVICE PORTFOLIO
   ============================================ */

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

.section-portfolio .container {
  display: grid;
  gap: 1.5rem;
}

.portfolio-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.portfolio-switcher {
  display: inline-flex;
  width: fit-content;
  overflow: hidden;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
}

.portfolio-switcher button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 0;
  background: var(--color-white);
  color: var(--color-gray-700);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

.portfolio-switcher button + button {
  border-left: 1px solid var(--color-gray-300);
}

.portfolio-switcher button:hover,
.portfolio-switcher button:focus-visible {
  background: var(--color-primary-light);
  color: var(--color-primary);
  text-decoration: none;
}

.portfolio-switcher button.is-selected {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-panel {
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 350ms ease, filter 350ms ease, transform 350ms ease;
}

.section-portfolio.is-individual-selected .service-panel--collective,
.section-portfolio.is-collective-selected .service-panel--individual {
  filter: saturate(0.6) !important;
  opacity: 0.42 !important;
}

.section-portfolio.is-individual-selected .service-panel--individual,
.section-portfolio.is-collective-selected .service-panel--collective {
  filter: saturate(1) !important;
  opacity: 1 !important;
}

.service-panel--individual {
  background: var(--color-gray-50);
}

.service-panel--collective {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.service-panel--collective .service-panel-header {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
}

.service-panel--collective .service-index {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--color-white);
}

.service-type {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-panel--collective .service-type {
  color: rgba(255, 255, 255, 0.8);
}

.service-wordmark {
  margin: clamp(1.5rem, 3.5vw, 3rem) 0 0;
  color: var(--color-primary);
  font-size: clamp(38px, 4.6vw, 76px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.service-panel--collective .service-wordmark {
  color: rgba(255, 255, 255, 0.16);
}

.service-panel-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.service-panel h2 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  color: var(--color-gray-900);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
}

.service-panel--collective h2 {
  color: var(--color-white);
}

.service-lead {
  max-width: 48ch;
  color: var(--color-gray-700);
  font-size: 17px;
  line-height: 1.65;
}

.service-panel--collective .service-lead {
  color: rgba(255, 255, 255, 0.86);
}

.service-timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
  list-style: none;
}

.service-timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 5px;
  width: 1px;
  background: var(--color-primary);
  content: '';
}

.service-timeline li {
  position: relative;
  padding-left: 2rem;
}

.service-timeline li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-gray-50);
  content: '';
}

.service-timeline span,
.service-timeline strong {
  display: block;
}

.service-timeline span {
  margin-bottom: 0.35rem;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.service-timeline strong {
  color: var(--color-gray-700);
  font-size: 15px;
  line-height: 1.45;
}

.network-visual {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.network-visual::before,
.network-visual::after {
  position: absolute;
  top: 50%;
  left: 16%;
  width: 68%;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  content: '';
}

.network-visual::after {
  top: 16%;
  left: 50%;
  width: 0;
  height: 68%;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.network-visual span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-primary);
}

.network-visual span:nth-child(1) { top: 12%; left: 12%; }
.network-visual span:nth-child(2) { top: 12%; right: 12%; }
.network-visual span:nth-child(3) { top: calc(50% - 9px); left: calc(50% - 9px); background: var(--color-white); }
.network-visual span:nth-child(4) { bottom: 12%; left: 12%; }
.network-visual span:nth-child(5) { right: 12%; bottom: 12%; }

.service-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 3rem;
}

.service-use-cases span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
}

.service-note {
  max-width: 70ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .portfolio-panels {
    grid-template-columns: 1fr;
  }

  .check-in-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .service-panel {
    min-height: 0;
  }

  .service-panel-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-wordmark {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1;
    white-space: normal;
  }

  .network-visual {
    width: min(100%, 240px);
  }
}

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

@keyframes contentSurfaceIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.section-heading {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--spacing-gap);
  color: var(--color-gray-900);
  font-weight: 700;
  letter-spacing: -0.8px;
}

.section-subtext {
  font-size: var(--font-size-small);
  color: var(--color-gray-text);
  display: block;
  margin-top: -1rem;
  margin-bottom: var(--spacing-gap);
}

/* ============================================
   STUDIES AND SAFE SPACE
   ============================================ */

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

.studies-intro {
  max-width: 70ch;
}

.studies-intro > p:last-child {
  color: var(--color-gray-700);
  font-size: 17px;
  line-height: 1.7;
}

.studies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.study-card {
  display: flex;
  min-height: 260px;
  padding: 1.75rem;
  flex-direction: column;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-gray-50);
  box-shadow: 0 8px 22px rgba(15, 15, 15, 0.035);
}

.study-card:nth-child(1),
.study-card:nth-child(2) {
  background: var(--color-primary-light);
  border-color: rgba(45, 80, 22, 0.25);
}

.study-number {
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.9;
}

.study-mark {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(45, 80, 22, 0.3);
  border-radius: 99px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.study-card h3 {
  margin-bottom: 0.7rem;
  color: var(--color-gray-900);
  font-size: 21px;
}

.study-card p {
  margin-bottom: 1.25rem;
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.55;
}

.study-source {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: auto;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(45, 80, 22, 0.24);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.study-source::before {
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
  content: '';
}

.study-source--research::before {
  display: none;
}

.study-source--research span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 0.5rem;
  border-radius: 3px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
}

.friendship-study {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--color-gray-200);
  border-left: 3px solid var(--color-primary);
  border-radius: 8px;
  background: var(--color-white);
}

.friendship-study-label {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.friendship-study h3 {
  margin-bottom: 0.4rem;
  color: var(--color-gray-900);
  font-size: 22px;
}

.friendship-study p {
  max-width: 62ch;
  margin: 0;
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .friendship-study {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}

.safe-space-statement {
  margin-top: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
}

.safe-space-statement .explore-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.safe-space-statement h2 {
  max-width: 22ch;
  margin-bottom: 1.25rem;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.safe-space-statement p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.65;
}

.roadmap-container {
  max-width: none !important;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.safe-space-statement .btn-primary {
  border: 1px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-primary);
}

.safe-space-statement .btn-primary:hover {
  background: var(--color-primary-light);
}

.safe-space-network {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-height: 370px;
  margin: 2rem 0;
  padding: 0 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.safe-space-network::before,
.safe-space-network::after {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 76%;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  content: '';
}

.safe-space-network::after {
  top: 17%;
  left: 50%;
  width: 0;
  height: 66%;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.44);
}

.safe-space-node {
  position: absolute;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-primary);
}

.safe-space-node--one { top: 15%; left: 12%; }.safe-space-node--two { top: 15%; right: 12%; }.safe-space-node--three { top: calc(50% - 8px); left: calc(50% - 8px); background: var(--color-white); }.safe-space-node--four { bottom: 15%; left: 12%; }.safe-space-node--five { right: 12%; bottom: 15%; }

.safe-space-bubble {
  position: relative;
  z-index: 2;
  align-self: end;
  min-height: 82px;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-primary) !important;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.4 !important;
  opacity: 0;
}

.safe-space-bubble::before {
  position: absolute;
  top: -8px;
  left: 22px;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
  content: '';
}

.safe-space-bubble--one { grid-column: 1; grid-row: 2; }.safe-space-bubble--two { grid-column: 2; grid-row: 2; }.safe-space-bubble--three { grid-column: 3; grid-row: 2; }

.safe-space-statement.is-charging .safe-space-node { animation: safeNodeIn 0.55s ease-out both; }
.safe-space-statement.is-charging .safe-space-node--two { animation-delay: 80ms; }.safe-space-statement.is-charging .safe-space-node--three { animation-delay: 160ms; }.safe-space-statement.is-charging .safe-space-node--four { animation-delay: 240ms; }.safe-space-statement.is-charging .safe-space-node--five { animation-delay: 320ms; }
.safe-space-statement.is-charging .safe-space-bubble { animation: safeBubbleIn 0.5s ease-out both; }.safe-space-statement.is-charging .safe-space-bubble--one { animation-delay: 420ms; }.safe-space-statement.is-charging .safe-space-bubble--two { animation-delay: 560ms; }.safe-space-statement.is-charging .safe-space-bubble--three { animation-delay: 700ms; }

@keyframes safeNodeIn { from { opacity: 0; transform: scale(0.35); } to { opacity: 1; transform: scale(1); } }
@keyframes safeBubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   ONE-PAGE FINANCIAL CARE ROADMAP
   ============================================ */

.onepage-roadmap {
  max-width: none;
  margin: 0 auto;
}

.onepage-opening {
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.onepage-opening > p:first-child {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.onepage-opening h2 {
  max-width: 18ch;
  margin: 1.25rem 0;
  font-size: clamp(38px, 5.3vw, 72px);
  line-height: 1.02;
}

.onepage-opening h2 .opening-old,
.onepage-opening h2 strong {
  display: block;
}

.onepage-opening h2 .opening-old {
  position: relative;
  color: var(--color-gray-500);
}

.onepage-opening h2 .opening-old > span {
  position: relative;
  display: inline-block;
  margin-right: 0.18em;
  color: inherit;
}

.onepage-opening h2 .opening-old > span::after {
  position: absolute;
  top: 57%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 0;
  background: var(--color-primary);
  content: '';
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.onepage-opening h2 strong {
  margin-top: 0.65rem;
  color: var(--color-primary);
  opacity: 0;
}

.onepage-opening.is-replaying h2 .opening-old {
  animation: openingOldStatement 1.25s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.onepage-opening.is-replaying h2 .opening-old > span::after {
  animation: editorialStrike 0.42s cubic-bezier(0.2, 0.9, 0.25, 1) forwards;
  animation-delay: 0.78s;
}

.onepage-opening.is-replaying h2 .opening-old > span:nth-child(2)::after {
  animation-delay: 0.9s;
}

.onepage-opening.is-replaying h2 .opening-old > span:nth-child(3)::after {
  animation-delay: 1.02s;
}

.onepage-opening.is-replaying h2 strong {
  animation: openingStatement 0.62s cubic-bezier(0.2, 0.9, 0.25, 1) both;
  animation-delay: 1.12s;
}

.onepage-opening > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: var(--color-gray-700);
  font-size: 18px;
}

.onepage-route {
  position: relative;
  margin-top: 1.5rem;
}

.onepage-route::before {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--color-primary), rgba(45, 80, 22, 0.15));
  content: '';
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.onepage-route.is-active::before {
  transform: scaleY(1);
}

.onepage-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  align-items: center;
  min-height: 440px;
  opacity: 0.45;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.onepage-milestone.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.onepage-milestone:nth-child(even) .milestone-content {
  grid-column: 3;
}

.milestone-marker {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: grid;
  place-items: center;
}

.milestone-marker span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.milestone-marker i {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(45, 80, 22, 0.2);
  border-radius: 50%;
  animation: milestonePulse 2.6s ease-in-out infinite;
}

.milestone-content {
  max-width: 460px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 14px 30px rgba(15, 15, 15, 0.05);
}

.onepage-milestone:nth-child(odd) .milestone-content {
  grid-column: 1;
  justify-self: end;
}

.milestone-content h2 {
  margin: 0.7rem 0 1rem;
  color: var(--color-gray-900);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.milestone-content > p:not(.roadmap-kicker):not(.milestone-quote):not(.milestone-fact) {
  color: var(--color-gray-700);
  line-height: 1.6;
}

.milestone-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--color-primary-light);
}

.milestone-stat b,
.milestone-data b {
  color: var(--color-primary);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.milestone-stat span { color: var(--color-gray-900); font-weight: 700; }.milestone-stat small { grid-column: 1 / -1; color: var(--color-gray-600); }
.milestone-quote { margin: 1rem 0 0; padding-left: 0.85rem; border-left: 2px solid var(--color-primary); color: var(--color-primary); font-weight: 700; }
.milestone-dialogue { display: grid; gap: 0.65rem; margin-top: 1.25rem; }.milestone-dialogue p { max-width: 88%; margin: 0; padding: 0.85rem; border-radius: 7px 7px 7px 2px; background: var(--color-gray-50); color: var(--color-gray-700); }.milestone-dialogue p:last-child { justify-self: end; border-radius: 7px 7px 2px 7px; background: var(--color-primary-light); }.milestone-dialogue b { display: block; margin-bottom: 0.25rem; color: var(--color-primary); font-size: 12px; }
.milestone-fact { margin: 1rem 0 0; color: var(--color-primary); font-size: 14px; font-weight: 700; }
.milestone-data { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 1.25rem; background: var(--color-gray-200); }.milestone-data span { min-height: 108px; padding: 0.75rem; background: var(--color-gray-50); color: var(--color-gray-600); font-size: 12px; }.milestone-data b { display: block; margin-bottom: 0.4rem; font-size: 28px; }
.milestone-identity-choices { display: grid; gap: 0.55rem; margin: 1.25rem 0; }.milestone-identity-choices button { min-height: 46px; border: 1px solid var(--color-gray-300); border-radius: 5px; background: var(--color-white); color: var(--color-gray-900); cursor: pointer; font-family: var(--font-family); font-size: 14px; font-weight: 700; }.milestone-identity-choices button.is-selected, .milestone-identity-choices button:hover { border-color: var(--color-primary); background: var(--color-primary-light); color: var(--color-primary); }

@keyframes openingOldStatement { from { opacity: 0; transform: translateY(10px); } 20%, 60% { opacity: 1; transform: translateY(0); } to { opacity: 0.36; transform: translateY(0); } }
@keyframes editorialStrike { from { opacity: 0; transform: scaleX(0); } 70% { opacity: 1; transform: scaleX(1); } to { opacity: 1; transform: scaleX(1); } }
@keyframes openingStatement { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes milestonePulse { 0%, 100% { transform: scale(0.8); opacity: 0.3; } 50% { transform: scale(1.08); opacity: 0.75; } }

@media (max-width: 640px) {
  .onepage-opening h2 span {
    width: 100%;
  }

  .safe-space-network {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-height: 500px;
    padding-top: 235px;
  }

  .safe-space-network::before,
  .safe-space-network::after {
    top: 95px;
  }

  .safe-space-network::after {
    top: 28px;
  }

  .safe-space-bubble--one,
  .safe-space-bubble--two,
  .safe-space-bubble--three {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  .onepage-route::before { top: 36px; bottom: 36px; left: 23px; }
  .onepage-milestone { grid-template-columns: 46px minmax(0, 1fr); gap: 1rem; min-height: 0; padding-bottom: 2rem; }
  .milestone-marker { grid-column: 1; align-self: start; margin-top: 1.5rem; }
  .onepage-milestone:nth-child(odd) .milestone-content, .onepage-milestone:nth-child(even) .milestone-content { grid-column: 2; width: 100%; justify-self: stretch; }
  .milestone-data { grid-template-columns: 1fr; }
}

/* ============================================
   FINANCIAL CARE CHECK-IN
   ============================================ */

.section-check-in {
  background: var(--color-gray-50);
}

.check-in-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.check-in-copy {
  max-width: 44ch;
  color: var(--color-gray-700);
  font-size: 17px;
  line-height: 1.65;
}

.check-in-console {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 16px 34px rgba(15, 15, 15, 0.06);
}

.check-in-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.check-in-option {
  min-height: 82px;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-gray-700);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.check-in-option:hover,
.check-in-option:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.check-in-option.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.check-in-result {
  min-height: 225px;
  margin-top: 1rem;
  padding: 1.5rem;
  border-left: 3px solid var(--color-primary);
  background: var(--color-primary-light);
}

.check-in-result.is-updating {
  animation: checkInUpdate 0.36s ease-out both;
}

.check-in-result-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.check-in-result strong {
  display: block;
  max-width: 28ch;
  color: var(--color-gray-900);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.15;
}

.check-in-result p {
  margin: 0.75rem 0 1.25rem;
  color: var(--color-gray-700);
  font-size: 14px;
}

@keyframes checkInUpdate {
  from { opacity: 0.55; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CONTENT NAVIGATION
   ============================================ */

.section-explore {
  background: var(--color-gray-50);
}

.explore-kicker {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.explore-card {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 1.75rem;
  flex-direction: column;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-gray-900);
  box-shadow: 0 4px 14px rgba(15, 15, 15, 0.04);
  text-decoration: none;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.explore-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border-bottom: 1px solid rgba(45, 80, 22, 0.22);
  border-left: 1px solid rgba(45, 80, 22, 0.22);
  border-radius: 0 0 0 96px;
  background: var(--color-primary-light);
  content: '';
}

.explore-card:hover,
.explore-card:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 14px 30px rgba(45, 80, 22, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
}

.explore-card-index {
  position: relative;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
}

.explore-card-title {
  max-width: 24ch;
  margin-top: 1.5rem;
  color: var(--color-gray-900);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.15;
}

.explore-card-copy {
  max-width: 42ch;
  margin-top: 0.75rem;
  color: var(--color-gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.explore-card-action {
  margin-top: 1.5rem;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.explore-card-action::after {
  margin-left: 0.45rem;
  content: '→';
}

.explore-subnav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.explore-portfolio {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.explore-portfolio:hover,
.explore-portfolio:focus-visible {
  box-shadow: 0 14px 30px rgba(45, 80, 22, 0.22);
  transform: translateY(-3px);
  text-decoration: none;
}

.explore-portfolio-index {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.explore-portfolio strong {
  max-width: 31ch;
  color: var(--color-white);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
}

.explore-portfolio > span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.explore-subnav a {
  display: flex;
  min-height: 112px;
  padding: 1.25rem 1.5rem;
  flex-direction: column;
  justify-content: center;
  color: var(--color-gray-900);
  text-decoration: none;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

.explore-subnav a + a {
  border-left: 1px solid var(--color-gray-200);
}

.explore-subnav a:hover,
.explore-subnav a:focus-visible {
  background: var(--color-primary-light);
  color: var(--color-primary);
  text-decoration: none;
}

.explore-subnav span {
  margin-bottom: 0.35rem;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.explore-subnav strong {
  font-size: 15px;
  line-height: 1.35;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-gray-200);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-gray-900);
  text-decoration: none;
  min-width: 100px;
}

.nav-context {
  display: block;
  margin-top: 1px;
  color: var(--color-gray-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1f3810 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-item {
  margin: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: color var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #1f3810;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 4px 0;
  background: var(--color-gray-900);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

@media (max-width: 768px) {
  .nav-context {
    display: none;
  }

  .nav-container {
    padding: 0 20px;
    gap: 1rem;
  }
  
  .nav-menu {
    display: none;
  }

  .nav-menu.is-open {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 20px 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 10px 20px rgba(15, 15, 15, 0.06);
  }

  .nav-menu.is-open .nav-link {
    display: block;
    padding: 0.85rem 0;
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }
  
  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 64px;
  padding-top: 60px;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - 40px, 1200px);
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 18, 5, 0.84) 0%, rgba(8, 18, 5, 0.58) 43%, rgba(8, 18, 5, 0.12) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  width: min(100%, 760px);
  text-align: left;
  color: var(--color-white);
}

.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-headline {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}

.hero-headline.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero-subtext {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.95);
  max-width: 500px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-nav {
  display: none;
}

.scroll-cue {
  display: none;
  width: 56px;
  height: 60px;
  margin: 2rem auto 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.scroll-cue span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.65; }
  50% { transform: translateY(7px) rotate(45deg); opacity: 1; }
}

@media (min-width: 1024px) {
  .home-page .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 400px;
    display: grid;
    gap: 3rem;
  }

  .hero-content {
    width: auto;
  }

  .hero-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-nav a {
    display: flex;
    min-height: 184px;
    padding: 1.25rem;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    backdrop-filter: blur(10px);
    animation: heroNavIn 0.55s cubic-bezier(0.2, 0.9, 0.25, 1) both;
  }

  .hero-nav a:nth-child(2) { animation-delay: 100ms; }
  .hero-nav a:nth-child(3) { animation-delay: 200ms; }
  .hero-nav a:nth-child(4) { animation-delay: 300ms; }

  .hero-nav a:nth-child(3) {
    grid-column: span 2;
    min-height: 114px;
  }

  .hero-nav a:hover,
  .hero-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-3px);
    text-decoration: none;
  }

  .hero-nav-index {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
  }

  .hero-nav-label {
    color: var(--color-white);
  }

  .hero-nav-visual {
    position: relative;
    display: flex;
    width: 58px;
    height: 48px;
    align-items: center;
    color: var(--color-white);
    opacity: 0.9;
    animation: heroVisualIn 0.7s cubic-bezier(0.2, 0.9, 0.25, 1) both;
  }

  .hero-nav a:nth-child(2) .hero-nav-visual { animation-delay: 160ms; }
  .hero-nav a:nth-child(3) .hero-nav-visual { animation-delay: 260ms; }
  .hero-nav a:nth-child(4) .hero-nav-visual { animation-delay: 360ms; }

  .hero-nav-visual i {
    position: absolute;
    display: block;
    background: currentColor;
  }

  .hero-nav-visual--profile { justify-content: center; }
  .hero-nav-visual--profile i { width: 20px; height: 20px; border: 1.5px solid currentColor; border-radius: 50%; background: transparent; }
  .hero-nav-visual--profile i::after { position: absolute; top: 28px; left: 2px; width: 16px; height: 10px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 16px 16px 0 0; content: ''; }
  .hero-nav-visual--profile i:first-child { transform: translateX(-10px); opacity: 0.55; }
  .hero-nav-visual--profile i:last-child { transform: translateX(10px); }

  .hero-nav-visual--bars { align-items: end; gap: 6px; padding: 0 4px 2px; border-bottom: 1px solid rgba(255, 255, 255, 0.7); }
  .hero-nav-visual--bars i { position: static; width: 10px; }
  .hero-nav-visual--bars i:nth-child(1) { height: 16px; opacity: 0.45; }
  .hero-nav-visual--bars i:nth-child(2) { height: 28px; opacity: 0.7; }
  .hero-nav-visual--bars i:nth-child(3) { height: 40px; }

  .hero-nav-visual--quiz i:first-child {
    top: 2px;
    left: 7px;
    width: 30px;
    height: 39px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    background: transparent;
  }

  .hero-nav-visual--quiz i:first-child::before {
    position: absolute;
    top: 10px;
    left: 7px;
    width: 14px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
    content: '';
  }

  .hero-nav-visual--quiz i:last-child {
    top: 28px;
    left: 29px;
    width: 11px;
    height: 6px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    background: transparent;
    transform: rotate(-45deg);
  }

  .hero-nav-visual--women::before {
    position: absolute;
    top: 17px;
    left: 7px;
    right: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    content: '';
  }

  .hero-nav-visual--women { align-items: center; justify-content: center; gap: 5px; }
  .hero-nav-visual--women i { position: static; width: 13px; height: 15px; border: 1.5px solid currentColor; border-radius: 8px 8px 2px 2px; background: transparent; }
  .hero-nav-visual--women i::before { display: block; width: 8px; height: 8px; margin: -6px auto 0; border-radius: 50%; background: currentColor; content: ''; }
  .hero-nav-visual--women i:nth-child(1) { transform: translateY(5px); opacity: 0.6; }
  .hero-nav-visual--women i:nth-child(2) { width: 15px; height: 19px; background: currentColor; }
  .hero-nav-visual--women i:nth-child(2)::before { background: rgba(45, 80, 22, 0.55); }
  .hero-nav-visual--women i:nth-child(3) { transform: translateY(5px); opacity: 0.78; }
}

@keyframes heroNavIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 0.9; transform: scale(1); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: var(--font-size-body);
  font-weight: 700;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: var(--font-family);
  min-height: 44px;
  min-width: 44px;
  text-align: center;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #1f3810;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-primary:focus {
  outline: 2px solid var(--color-forestgreen);
  outline-offset: 2px;
}

/* ============================================
   ACCENT ELEMENTS
   ============================================ */

.accent-line {
  display: inline-block;
  width: 3px;
  height: 1.5em;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1f3810 100%);
  margin-right: 1rem;
  vertical-align: middle;
  flex-shrink: 0;
  border-radius: 2px;
}

.accent-block {
  display: flex;
  margin-bottom: 2rem;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.accent-block:nth-child(2) {
  animation-delay: 0.1s;
}

.accent-block:nth-child(3) {
  animation-delay: 0.2s;
}

.accent-block:nth-child(4) {
  animation-delay: 0.3s;
}

.accent-block.is-revealed,
.stat-card--animated.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.accent-block > div:not(.visual) {
  flex: 1;
}

.visual {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  opacity: 0.9;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.selin-text .visual--signal {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid rgba(45, 80, 22, 0.35);
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.visual span {
  position: absolute;
  display: block;
  background: currentColor;
}

.visual--orbit::before,
.visual--orbit::after {
  content: '';
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.visual--orbit::before { width: 31px; height: 13px; transform: rotate(32deg); }
.visual--orbit::after { width: 31px; height: 13px; transform: rotate(-32deg); }
.visual--orbit span { width: 5px; height: 5px; border-radius: 50%; }
.visual--orbit span:nth-child(1) { transform: translate(-14px, -12px); }
.visual--orbit span:nth-child(2) { transform: translate(14px, 12px); }
.visual--orbit span:nth-child(3) { width: 8px; height: 8px; border-radius: 50%; }

.visual--grid { display: grid; grid-template-columns: repeat(2, 9px); grid-template-rows: repeat(2, 9px); gap: 5px; }
.visual--grid span { position: static; width: 9px; height: 9px; border: 1px solid currentColor; background: transparent; }
.visual--grid span:nth-child(1), .visual--grid span:nth-child(4) { background: currentColor; }

.visual--growth { align-items: end; gap: 4px; padding: 7px; border-bottom: 1px solid currentColor; }
.visual--growth span { position: static; width: 6px; }
.visual--growth span:nth-child(1) { height: 10px; opacity: 0.45; }
.visual--growth span:nth-child(2) { height: 18px; opacity: 0.7; }
.visual--growth span:nth-child(3) { height: 28px; }

.accent-block:hover .visual {
  transform: scale(1.08);
  opacity: 1;
}

/* ============================================
   SELIN PROFILE SECTION
   ============================================ */

.section-selin-profile {
  background-color: var(--color-white);
}

.selin-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .selin-content {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 4rem;
  }
}

.selin-image {
  margin: 0;
  flex-shrink: 0;
}

.selin-image img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--color-primary);
  display: block;
  background-color: var(--color-gray-100);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(15, 15, 15, 0.12);
}

.selin-image figcaption {
  max-width: 360px;
  margin-top: 0.85rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--color-primary);
  color: var(--color-gray-900);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.selin-image figcaption span {
  color: var(--color-gray-600);
  font-size: 13px;
  font-weight: 400;
}

.selin-text p {
  max-width: 70ch;
  margin-bottom: 1.25rem;
  color: var(--color-gray-900);
  font-size: 15px;
  line-height: 1.7;
}

.selin-text strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================
   REALITY SECTION
   ============================================ */

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

.reality-text p {
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.content-panel {
  max-width: 70ch;
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.04);
}

/* ============================================
   IMPACT / STATS SECTION
   ============================================ */

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

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

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

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

.stat-card {
  padding: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--color-primary);
  transition: all var(--transition-smooth);
  background: linear-gradient(135deg, rgba(232, 241, 227, 0.5) 0%, transparent 100%);
  border-radius: 8px;
}

.stat-card--animated {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.stats-grid .stat-card:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .stat-card:nth-child(4) { transition-delay: 0.3s; }

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.1);
}

.stat-card .visual {
  width: 56px;
  height: 48px;
  margin: 0 auto 1rem;
}

.visual--people { gap: 5px; align-items: end; }
.visual--people span { position: static; width: 12px; height: 25px; border: 1px solid currentColor; border-radius: 8px 8px 2px 2px; background: transparent; }
.visual--people span::before { content: ''; display: block; width: 8px; height: 8px; margin: -5px auto 0; border-radius: 50%; background: currentColor; }
.visual--people span:nth-child(2) { height: 32px; background: currentColor; }
.visual--people span:nth-child(2)::before { background: var(--color-white); }

.visual--bars { align-items: end; gap: 5px; padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.visual--bars span { position: static; width: 9px; }
.visual--bars span:nth-child(1) { height: 15px; opacity: 0.45; }
.visual--bars span:nth-child(2) { height: 27px; opacity: 0.7; }
.visual--bars span:nth-child(3) { height: 38px; }

.visual--stack { flex-direction: column; gap: 4px; }
.visual--stack span { position: static; width: 38px; height: 7px; border: 1px solid currentColor; background: transparent; }
.visual--stack span:nth-child(2) { width: 30px; background: currentColor; }
.visual--stack span:nth-child(3) { width: 22px; }

.visual--trend::before { content: ''; position: absolute; width: 36px; height: 25px; border-left: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(42deg) translate(-2px, 0); }
.visual--trend::after { content: ''; position: absolute; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translate(16px, -16px) rotate(45deg); }
.visual--trend span { width: 5px; height: 5px; border-radius: 50%; }
.visual--trend span:nth-child(1) { transform: translate(-16px, 13px); opacity: 0.45; }
.visual--trend span:nth-child(2) { transform: translate(-2px, 2px); opacity: 0.7; }
.visual--trend span:nth-child(3) { transform: translate(12px, -10px); }

.stat-card:hover .visual {
  transform: scale(1.08) translateY(-2px);
}

.stat-icon {
  margin-bottom: 1rem;
  display: none;
}

.stat-number {
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1f3810 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.stat-description {
  font-size: 13px;
  color: var(--color-gray-600);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================
   PSYCHOLOGY SECTION
   ============================================ */

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

.psychology-text {
  max-width: 70ch;
}

.psychology-text p {
  margin-bottom: 1.5rem;
}

.psychology-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.psychology-list li {
  margin-bottom: 0.75rem;
  position: relative;
}

.psychology-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   QUIZ SECTION
   ============================================ */

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

.quiz-container {
  max-width: 70ch;
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-gray-50);
  box-shadow: 0 14px 30px rgba(15, 15, 15, 0.06);
}

.quiz-question {
  margin-bottom: 0;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  color: var(--color-gray-600);
  font-size: 13px;
  font-weight: 700;
}

.quiz-progress::after {
  content: '';
  height: 2px;
  flex: 1;
  background: linear-gradient(to right, var(--color-primary) var(--progress), var(--color-gray-200) var(--progress));
}

.quiz-question-text {
  font-size: var(--font-size-body);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-answer-btn {
  min-height: 52px;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  transition: all var(--transition-smooth);
  border-radius: 0;
}

.quiz-answer-btn:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.quiz-answer-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.quiz-result {
  padding: 2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(45, 80, 22, 0.1);
}

.quiz-result-score {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.quiz-result-text {
  max-width: 70ch;
}

.quiz-email-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quiz-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-form-group label {
  color: var(--color-gray-900);
  font-size: 14px;
  font-weight: 700;
}

.quiz-email-form input {
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  background: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-body);
}

.quiz-email-form input:focus {
  outline: 2px solid rgba(45, 80, 22, 0.25);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

.quiz-contact-note {
  color: var(--color-gray-600);
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   FINANCIAL CARE JOURNEY
   ============================================ */

.care-journey {
  max-width: 860px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 38px rgba(15, 15, 15, 0.07);
}

.care-journey-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: center;
  color: var(--color-gray-600);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.care-journey-progress i {
  grid-column: 1 / -1;
  display: block;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary) var(--journey-progress), var(--color-gray-200) var(--journey-progress));
}

.care-stages {
  display: flex;
  gap: 0.35rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.care-stages button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 99px;
  background: transparent;
  color: var(--color-gray-500);
  cursor: default;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.care-stages button span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-300);
  border-radius: 50%;
  font-size: 10px;
}

.care-stages button.is-visited {
  border-color: rgba(45, 80, 22, 0.22);
  color: var(--color-primary);
  cursor: pointer;
}

.care-stages button.is-visited span,
.care-stages button.is-current span {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.care-stages button.is-current {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.care-scene {
  position: relative;
  min-height: 390px;
  padding: clamp(2rem, 5vw, 4rem) 0 2rem;
  overflow: hidden;
  animation: careSceneIn 0.45s ease-out both;
}

.care-scene::before {
  position: absolute;
  z-index: 0;
  top: 1.5rem;
  right: 0;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(45, 80, 22, 0.14);
  border-radius: 50%;
  content: '';
}

.care-scene > * {
  position: relative;
  z-index: 1;
}

.care-scene--1::before {
  width: 170px;
  height: 110px;
  border-radius: 0;
  border-top: 0;
  border-right: 0;
}

.care-scene--2::before {
  width: 180px;
  height: 90px;
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  transform: skewY(-18deg);
}

.care-scene--3::before {
  width: 128px;
  height: 128px;
  box-shadow: -18px 18px 0 -1px rgba(45, 80, 22, 0.08);
}

.care-scene--4::before {
  width: 190px;
  height: 70px;
  border-radius: 8px;
  transform: rotate(-7deg);
}

.care-scene--5::before {
  width: 156px;
  height: 156px;
  box-shadow: -46px 14px 0 -1px rgba(45, 80, 22, 0.09), 20px 46px 0 -1px rgba(45, 80, 22, 0.09);
}

.care-scene--6::before {
  width: 150px;
  height: 150px;
  border-radius: 8px;
}

.care-scene--7::before {
  width: 170px;
  height: 170px;
  border-width: 2px;
  box-shadow: 0 0 0 18px rgba(45, 80, 22, 0.06);
}

.care-scene-label {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.care-scene h2 {
  max-width: 19ch;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.care-scene > p:not(.care-scene-label):not(.care-reassurance):not(.care-prompt) {
  max-width: 56ch;
  color: var(--color-gray-700);
  font-size: 17px;
  line-height: 1.65;
}

.care-prompt {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

.care-reassurance {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
}

.care-coin {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 25px;
  font-weight: 700;
  animation: coinFloat 2.4s ease-in-out infinite;
}

.care-choices,
.care-amounts,
.care-goals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.journey-choice,
.journey-goal,
.journey-year,
.care-conversation-trigger,
.care-network-add,
.journey-back {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-gray-900);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.journey-choice:hover,
.journey-choice:focus-visible,
.journey-goal:hover,
.journey-goal:focus-visible,
.journey-year:hover,
.journey-year:focus-visible,
.care-conversation-trigger:hover,
.care-conversation-trigger:focus-visible,
.care-network-add:hover,
.care-network-add:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.journey-choice.is-selected,
.journey-goal.is-selected,
.journey-year.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.care-budget {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.care-budget span {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: end;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--color-gray-50);
}

.care-budget b { color: var(--color-gray-900); font-size: 14px; }
.care-budget i { display: block; height: var(--budget); background: var(--color-primary); transform-origin: bottom; animation: budgetGrow 0.7s ease-out both; }
.care-budget span:nth-child(2) i { animation-delay: 120ms; opacity: 0.72; }.care-budget span:nth-child(3) i { animation-delay: 240ms; opacity: 0.48; }

.care-years { display: flex; gap: 0.5rem; margin-top: 1rem; }

.care-projection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--color-primary-light);
}

.care-projection strong { color: var(--color-primary); font-size: 22px; }.care-projection span { color: var(--color-gray-700); align-self: end; text-align: right; }.care-projection b { grid-column: 1 / -1; color: var(--color-gray-900); font-size: clamp(32px, 5vw, 48px); }.care-projection small { grid-column: 1 / -1; color: var(--color-gray-600); }

.care-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.care-comparison article {
  display: flex;
  min-height: 168px;
  padding: 1rem;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.care-comparison article.is-highlighted {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.care-comparison span {
  margin-bottom: 0.75rem;
  color: var(--color-gray-600);
  font-size: 12px;
  font-weight: 700;
}

.care-comparison strong {
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.care-comparison .is-highlighted strong {
  color: var(--color-primary);
}

.care-comparison small,
.care-disclaimer {
  color: var(--color-gray-600);
  font-size: 11px;
  line-height: 1.45;
}

.care-disclaimer {
  margin: 0.75rem 0 0;
}

.care-voices { display: none; gap: 0.75rem; margin-top: 1rem; }
.care-scene.is-open .care-voices { display: grid; }
.care-voices p { margin: 0; padding: 1rem; border-left: 2px solid var(--color-primary); background: var(--color-gray-50); color: var(--color-gray-700); animation: careSceneIn 0.4s ease-out both; }
.care-voices p:nth-child(2) { animation-delay: 100ms; }.care-voices p:nth-child(3) { animation-delay: 200ms; }

.care-network { position: relative; width: min(100%, 340px); height: 180px; margin: 1.5rem auto; border-top: 1px solid var(--color-gray-200); border-bottom: 1px solid var(--color-gray-200); }
.care-network::before, .care-network::after { position: absolute; top: 50%; left: 12%; width: 76%; border-top: 1px solid rgba(45, 80, 22, 0.35); content: ''; }.care-network::after { top: 20%; left: 50%; width: 0; height: 60%; border-top: 0; border-left: 1px solid rgba(45, 80, 22, 0.35); }
.care-network i { position: absolute; width: 13px; height: 13px; border: 1px solid var(--color-primary); border-radius: 50%; background: var(--color-white); }.care-network i:nth-child(1) { top: 16%; left: 12%; }.care-network i:nth-child(2) { top: 16%; right: 12%; }.care-network i:nth-child(3) { top: calc(50% - 7px); left: calc(50% - 7px); background: var(--color-primary); }.care-network i:nth-child(4) { bottom: 16%; left: 12%; }.care-network i:nth-child(5) { right: 12%; bottom: 16%; }.care-network i:nth-child(6), .care-network i:nth-child(7) { display: none; }
.care-scene.is-growing .care-network i:nth-child(6), .care-scene.is-growing .care-network i:nth-child(7) { display: block; background: var(--color-primary-light); animation: nodeAppear 0.5s ease-out both; }.care-scene.is-growing .care-network i:nth-child(6) { top: 47%; left: 24%; }.care-scene.is-growing .care-network i:nth-child(7) { top: 47%; right: 24%; animation-delay: 140ms; }

.care-impact { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 2rem; background: var(--color-gray-200); }.care-impact span { min-height: 154px; padding: 1.25rem; background: var(--color-white); color: var(--color-gray-700); font-size: 14px; line-height: 1.55; }.care-impact b { display: block; margin-bottom: 0.75rem; color: var(--color-primary); font-size: 20px; }
.care-final { margin-top: 2rem; padding: 1.5rem; border-left: 3px solid var(--color-primary); background: var(--color-primary-light); }.care-final p { margin-bottom: 0.75rem; color: var(--color-gray-900); }.care-final strong { color: var(--color-primary); font-size: 17px; }
.care-next-action { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; padding: 1rem 1.25rem; border: 1px solid rgba(45, 80, 22, 0.25); background: var(--color-white); }.care-next-action strong { color: var(--color-primary); font-size: 15px; }

.care-journey-actions { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--color-gray-200); }.journey-back { background: transparent; }.care-journey-actions .btn { margin-left: auto; }

.care-journey-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding-bottom: 0.75rem;
  background: var(--color-white);
}

/* ============================================
   FINANCIAL CARE ROADMAP
   ============================================ */

.financial-roadmap {
  max-width: 960px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 38px rgba(15, 15, 15, 0.07);
}

.roadmap-brand,
.roadmap-kicker {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.roadmap-persona {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.roadmap-persona-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
}

.roadmap-persona p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 13px;
}

.roadmap-persona strong,
.roadmap-persona span {
  display: block;
}

.roadmap-persona strong {
  color: var(--color-gray-900);
}

.roadmap-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0 0.5rem;
  list-style: none;
}

.roadmap-steps::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  background: var(--color-gray-300);
  content: '';
}

.roadmap-steps button {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92px;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-gray-500);
  cursor: default;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.roadmap-steps button span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-300);
  border-radius: 50%;
  font-size: 11px;
}

.roadmap-steps li.is-current button {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.roadmap-steps li.is-current button span,
.roadmap-steps li.is-complete button span {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.roadmap-steps li.is-complete button {
  color: var(--color-primary);
  cursor: pointer;
}

.roadmap-steps li.is-complete button::after {
  position: absolute;
  right: 0.75rem;
  bottom: 0.6rem;
  color: var(--color-primary);
  content: 'erlebt';
  font-size: 10px;
  font-weight: 700;
}

.roadmap-scene {
  min-height: 430px;
  padding: clamp(2rem, 5vw, 4rem) 0 1.5rem;
  animation: careSceneIn 0.45s ease-out both;
}

.roadmap-scene h2 {
  max-width: 19ch;
  margin: 0.8rem 0 1rem;
  color: var(--color-gray-900);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.roadmap-scene > p:not(.roadmap-kicker):not(.roadmap-note) {
  max-width: 58ch;
  color: var(--color-gray-700);
  font-size: 17px;
  line-height: 1.65;
}

.roadmap-statements {
  display: grid;
  gap: 0.65rem;
  max-width: 680px;
  margin-top: 1.75rem;
}

.roadmap-statement,
.roadmap-identity,
.roadmap-action,
.roadmap-back,
.roadmap-restart {
  min-height: 50px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-gray-900);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.roadmap-statement:hover,
.roadmap-statement:focus-visible,
.roadmap-identity:hover,
.roadmap-identity:focus-visible,
.roadmap-action:hover,
.roadmap-action:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.roadmap-statement.is-selected,
.roadmap-identity.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.roadmap-note {
  margin-top: 1.25rem;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.roadmap-dialogue {
  display: grid;
  max-width: 650px;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.roadmap-dialogue div {
  max-width: 84%;
  padding: 1rem 1.15rem;
  border-radius: 8px 8px 8px 2px;
  background: var(--color-gray-50);
}

.roadmap-dialogue div:last-child {
  justify-self: end;
  border-radius: 8px 8px 2px 8px;
  background: var(--color-primary-light);
}

.roadmap-dialogue span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.roadmap-dialogue p {
  margin: 0;
  color: var(--color-gray-900);
  font-size: 16px;
}

.roadmap-action {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.roadmap-awareness {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 1.75rem 0;
  background: var(--color-gray-200);
}

.roadmap-awareness span {
  min-height: 140px;
  padding: 1.25rem;
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.5;
}

.roadmap-awareness b {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  font-size: 18px;
}

.roadmap-identities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.roadmap-identity {
  min-height: 112px;
  text-align: center;
}

.roadmap-identity-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-left: 3px solid var(--color-primary);
  background: var(--color-primary-light);
}

.roadmap-identity-result strong {
  color: var(--color-primary);
  font-size: 18px;
}

.roadmap-identity-result p {
  margin: 0.35rem 0 0;
  color: var(--color-gray-700);
  font-size: 14px;
}

.roadmap-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
}

.roadmap-restart {
  margin-left: auto;
}

@media (max-width: 640px) {
  .roadmap-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .roadmap-steps::before {
    top: 28px;
    bottom: 28px;
    left: 20px;
    width: 1px;
    height: auto;
  }

  .roadmap-steps button {
    min-height: 58px;
    flex-direction: row;
    align-items: center;
    border-radius: 0;
  }

  .roadmap-scene {
    min-height: 0;
  }

  .roadmap-awareness,
  .roadmap-identities {
    grid-template-columns: 1fr;
  }

  .roadmap-awareness span,
  .roadmap-identity {
    min-height: 0;
  }

  .roadmap-identity-result {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .care-comparison {
    grid-template-columns: 1fr;
  }

  .care-comparison article {
    min-height: 110px;
  }
}

@keyframes careSceneIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes coinFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes budgetGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes nodeAppear { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-gap);
}

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

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.1);
  transform: translateY(-4px);
}

.testimonial-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background-color: var(--color-gray-100);
  border: 3px solid var(--color-primary);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.12);
}

.testimonial-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
  padding-left: 2px;
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
}

.testimonial-author {
  font-size: 13px;
  color: var(--color-gray-600);
  font-weight: 600;
  margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

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

.faq-list {
  max-width: 70ch;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: 0;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-900);
  text-align: left;
  font-family: var(--font-family);
  transition: color var(--transition-smooth);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-visual {
  position: relative;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  width: 32px;
  height: 28px;
  min-width: 32px;
  color: var(--color-primary);
  opacity: 0.8;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.faq-visual span { display: block; background: currentColor; }
.faq-visual--allocation { width: 28px; height: 28px; border-radius: 50%; background: conic-gradient(currentColor 0 45%, rgba(45, 80, 22, 0.5) 45% 72%, rgba(45, 80, 22, 0.2) 72% 100%); }
.faq-visual--allocation::after { content: ''; position: absolute; inset: 7px; border-radius: 50%; background: var(--color-white); }
.faq-visual--allocation span { display: none; }
.faq-visual--dialogue { align-items: center; gap: 4px; }
.faq-visual--dialogue span { width: 13px; height: 10px; border: 1px solid currentColor; border-radius: 3px; background: transparent; }
.faq-visual--dialogue span:nth-child(1) { transform: translateY(-4px); }.faq-visual--dialogue span:nth-child(2) { background: currentColor; transform: translateY(4px); }
.faq-visual--roadmap::before { content: ''; position: absolute; width: 21px; border-top: 1px solid currentColor; }
.faq-visual--roadmap { align-items: center; gap: 4px; }
.faq-visual--roadmap span { width: 6px; height: 6px; border-radius: 50%; }.faq-visual--roadmap span:nth-child(1) { opacity: 0.45; }.faq-visual--roadmap span:nth-child(2) { width: 8px; height: 8px; opacity: 0.75; }.faq-visual--roadmap span:nth-child(3) { width: 10px; height: 10px; }

.faq-question:hover .faq-visual {
  transform: translateY(-2px);
  opacity: 1;
}

.is-charging .visual,
.faq-item.is-charging .faq-visual {
  animation: visualCharge 0.7s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

@keyframes visualCharge {
  0% { opacity: 0; transform: scale(0.72); }
  55% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 0.9; transform: scale(1); }
}

.faq-question span:nth-child(2) {
  flex: 1;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
  margin-left: auto;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.75rem;
  max-width: 70ch;
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-diagram {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  background: var(--color-gray-50);
  animation: diagramReveal 0.5s ease-out both;
}

.faq-diagram figcaption {
  max-width: 56ch;
  margin-bottom: 1.25rem;
  color: var(--color-gray-700);
  font-size: 13px;
  line-height: 1.5;
}

.diagram-bars {
  display: flex;
  height: 132px;
  align-items: end;
  gap: 0.75rem;
  padding: 0 0.5rem;
  border-bottom: 1px solid var(--color-gray-300);
}

.diagram-bars span {
  display: flex;
  height: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: end;
  gap: 0.5rem;
}

.diagram-bars i {
  display: block;
  height: var(--bar-height);
  min-height: 8px;
  background: var(--color-primary);
  transform-origin: bottom;
  animation: barCharge 0.7s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.diagram-bars span:nth-child(2) i { animation-delay: 100ms; opacity: 0.72; }
.diagram-bars span:nth-child(3) i { animation-delay: 200ms; opacity: 0.86; }
.diagram-bars span:nth-child(4) i { animation-delay: 300ms; }

.diagram-bars b {
  min-height: 30px;
  color: var(--color-gray-600);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.diagram-decision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.diagram-decision span {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid rgba(45, 80, 22, 0.3);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  animation: diagramNode 0.55s ease-out both;
}

.diagram-decision span:nth-child(2) { animation-delay: 120ms; background: var(--color-primary-light); }
.diagram-decision span:nth-child(3) { animation-delay: 240ms; }

.faq-diagram--ai {
  background: var(--color-white);
}

.ai-illustration {
  position: relative;
  height: 142px;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.ai-illustration::before,
.ai-illustration::after {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 76%;
  border-top: 1px solid rgba(45, 80, 22, 0.32);
  content: '';
}

.ai-illustration::after {
  top: 18%;
  left: 50%;
  width: 0;
  height: 64%;
  border-top: 0;
  border-left: 1px solid rgba(45, 80, 22, 0.32);
}

.ai-illustration span {
  position: absolute;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-white);
  animation: aiNodeCharge 0.55s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.ai-illustration span:nth-child(1) { top: 18%; left: 12%; }
.ai-illustration span:nth-child(2) { top: 50%; left: 27%; transform: translateY(-50%); animation-delay: 80ms; }
.ai-illustration span:nth-child(3) { right: 27%; bottom: 18%; animation-delay: 160ms; }
.ai-illustration span:nth-child(4) { top: 18%; right: 12%; animation-delay: 240ms; }
.ai-illustration span:nth-child(5) { bottom: 18%; left: 12%; animation-delay: 320ms; }
.ai-illustration span:nth-child(6) { top: 50%; right: 27%; transform: translateY(-50%); animation-delay: 400ms; }
.ai-illustration span:nth-child(7) { top: 50%; left: 50%; width: 25px; height: 25px; border: 0; background: var(--color-primary); box-shadow: 0 0 0 7px var(--color-primary-light); transform: translate(-50%, -50%); animation-delay: 480ms; }

.ai-illustration-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  color: var(--color-gray-600);
  font-size: 11px;
  font-weight: 700;
}

.diagram-start {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.diagram-start span {
  display: flex;
  min-height: 92px;
  padding: 0.75rem;
  flex-direction: column;
  justify-content: center;
  animation: diagramNode 0.55s ease-out both;
}

.diagram-start span + span {
  border-left: 1px solid var(--color-gray-200);
}

.diagram-start span:nth-child(2) { animation-delay: 120ms; }
.diagram-start span:nth-child(3) { animation-delay: 240ms; }

.diagram-start b {
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.2;
}

.diagram-start small {
  margin-top: 0.35rem;
  color: var(--color-gray-600);
  font-size: 11px;
  line-height: 1.3;
}

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

@keyframes barCharge {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes diagramNode {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes aiNodeCharge {
  from { opacity: 0; transform: scale(0.35); }
  to { opacity: 1; transform: scale(1); }
}

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

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

.faq-answer p {
  margin-bottom: 1rem;
  font-size: 15px;
  color: var(--color-gray-900);
  line-height: 1.6;
}

/* ============================================
   KIDS SECTION
   ============================================ */

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

.section-kids p {
  max-width: 70ch;
  margin-bottom: 1.5rem;
}

.section-kids .btn {
  margin-top: var(--spacing-gap);
}

/* ============================================
   SEMINARS SECTION
   ============================================ */

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

.section-seminars p {
  max-width: 70ch;
  margin-bottom: 1.5rem;
}

/* ============================================
   THOUGHT OF WEEK SECTION
   ============================================ */

.section-thought-of-week {
  background-color: var(--color-gray-50);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

.thought-label {
  font-size: 12px;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.25rem;
  display: block;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-primary);
  max-width: 70ch;
  font-weight: 700;
}

.thought-content {
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.7;
}

.thought-content p {
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.thought-content strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

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

.section-community p {
  max-width: 70ch;
  margin-bottom: var(--spacing-gap);
}

.community-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 70ch;
}

@media (min-width: 768px) {
  .community-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.community-buttons .btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.contact-form {
  max-width: 70ch;
  margin-bottom: var(--spacing-gap);
  background: var(--color-gray-50);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-gray-200);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
  display: block;
  letter-spacing: -0.3px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--color-gray-300);
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-900);
  transition: all var(--transition-smooth);
  border-radius: 6px;
  background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.contact-form .btn {
  margin-top: 1rem;
}

.contact-links {
  max-width: 70ch;
  margin-top: var(--spacing-gap);
}

.contact-links p {
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-links ul {
  list-style: none;
  padding-left: 0;
}

.contact-links li {
  margin-bottom: 0.5rem;
}

.contact-links a {
  color: var(--color-forestgreen);
  text-decoration: none;
  font-weight: 700;
  transition: text-decoration var(--transition-smooth);
}

.contact-links a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.footer-subtitle {
  font-size: 14px;
  color: var(--color-gray-600);
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-900);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--color-gray-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-divider {
  height: 1px;
  background-color: var(--color-gray-200);
  margin: 2rem 40px 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-credit {
  font-size: 13px;
  color: var(--color-gray-600);
  margin-bottom: 0;
  text-align: center;
  padding: 0 40px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  
  h1, .hero-headline {
    font-size: 36px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
    padding: 64px 0 48px;
  }

  .hero-image {
    object-position: 58% 58%;
    transform: scale(1.12);
    transform-origin: 58% 58%;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 18, 5, 0.88) 0%, rgba(8, 18, 5, 0.56) 52%, rgba(8, 18, 5, 0.08) 100%);
  }

  .hero-content {
    margin-right: 0;
  }

  .scroll-cue {
    display: block;
  }
  
  h2, .section-heading {
    font-size: 26px;
  }
  
  .hero-label {
    font-size: 12px;
  }
  
  .selin-content {
    grid-template-columns: 1fr;
  }
  
  .selin-image img {
    max-width: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .explore-grid,
  .explore-subnav,
  .studies-grid {
    grid-template-columns: 1fr;
  }

  .study-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .safe-space-statement {
    padding: 2rem 1.5rem;
  }

  .explore-card {
    min-height: 220px;
    padding: 1.5rem;
  }

  .explore-subnav {
    margin-top: 1rem;
  }

  .explore-subnav a {
    min-height: 0;
    padding: 1.15rem 0;
  }

  .explore-subnav a + a {
    border-top: 1px solid var(--color-gray-200);
    border-left: 0;
  }

  .explore-portfolio {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.5rem;
  }

  .diagram-decision,
  .diagram-start {
    grid-template-columns: 1fr;
  }

  .diagram-decision span {
    min-height: 52px;
    border-radius: 6px;
  }

  .diagram-start span {
    min-height: 0;
  }

  .diagram-start span + span {
    border-top: 1px solid var(--color-gray-200);
    border-left: 0;
  }
  
  .stat-card {
    padding: 1.5rem 0;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .content-panel,
  .quiz-container,
  .quiz-result {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
  }

  .footer-divider {
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-credit {
    padding: 0 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .onepage-opening h2 span::after {
    transform: rotate(-2deg) scaleX(1);
  }

  .onepage-opening h2 strong {
    opacity: 1;
    transform: none;
  }
}

/* Focus visible for keyboard navigation */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-forestgreen);
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: more) {
  .btn-primary {
    border: 2px solid var(--color-black);
  }
  
  body {
    font-weight: 500;
  }
  
  .nav-link {
    font-weight: 600;
  }
}

/* Print styles */
@media print {
  .hero, .section-quiz, .contact-form {
    display: none;
  }
}

@media (max-width: 767px) {
  .check-in-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}
