/* ============================================================
   CRESTPOINT — HOME PAGE STYLES
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  bottom: 100px;
  left: -50px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--sp-6);
}

.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--c-orange);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: var(--sp-6);
}

.hero__headline-em {
  font-style: italic;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--text-md);
  color: var(--c-white-700);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero Visual — Financial Health Card */
.hero__visual {
  position: relative;
}

.hero__card {
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-slow) var(--ease-smooth);
}

.hero__card--main {
  position: relative;
  z-index: 2;
}

.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.hero__card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white-500);
}

.hero__card-status {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.hero__card-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.hero__card-status--active {
  background: rgba(212, 168, 83, 0.12);
  color: var(--c-gold);
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.hero__card-status--active::before {
  background: var(--c-gold);
  box-shadow: 0 0 6px var(--c-gold);
}

.hero__card-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.hero__pillar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--sp-3);
}

.hero__pillar-label {
  font-size: var(--text-xs);
  color: var(--c-white-700);
  font-weight: 500;
}

.hero__pillar-bar {
  width: 120px;
  height: 4px;
  background: var(--c-black-600);
  border-radius: var(--r-full);
  overflow: hidden;
}

.hero__pillar-fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-gold) 100%);
  border-radius: var(--r-full);
  animation: barGrow 1.2s var(--ease-smooth) forwards;
  transform-origin: left;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero__pillar-pct {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--c-white-500);
  width: 32px;
  text-align: right;
}

.hero__card-note {
  font-size: var(--text-xs);
  color: var(--c-white-300);
  line-height: 1.5;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border-subtle);
}

/* Aside cards */
.hero__card--aside {
  position: absolute;
  padding: var(--sp-4) var(--sp-5);
}

.hero__card--aside-1 {
  bottom: -36px;
  left: -36px;
  max-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  z-index: 3;
  background: var(--c-black-700);
  border-color: var(--c-border);
}

.hero__aside-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--c-orange-100);
  border: 1px solid var(--c-orange-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange);
  flex-shrink: 0;
}

.hero__aside-text {
  font-size: var(--text-xs);
  color: var(--c-white-700);
  line-height: 1.5;
}

.hero__card--aside-2 {
  top: -24px;
  right: -24px;
  z-index: 3;
  background: var(--c-black-700);
}

.hero__aside-stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.hero__aside-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}

.hero__aside-desc {
  font-size: var(--text-xs);
  color: var(--c-white-700);
  max-width: 160px;
  line-height: 1.5;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
}

.hero__scroll span {
  font-size: var(--text-xs);
  color: var(--c-white-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-white-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   REALITY CHECK
   ============================================================ */
.reality {
  background: var(--c-black-900);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.reality__intro {
  max-width: 760px;
  margin: 0 auto var(--sp-16);
  text-align: center;
}

.reality__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--c-white-900);
  line-height: 1.3;
}

.reality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.reality__stat {
  padding: var(--sp-6);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-smooth);
}

.reality__stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.reality__stat:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.reality__stat:hover::before { transform: scaleX(1); }

.reality__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--c-orange);
  margin-bottom: var(--sp-3);
  line-height: 1;
}

.reality__stat-desc {
  font-size: var(--text-sm);
  color: var(--c-white-500);
  line-height: 1.65;
}

.reality__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.reality__cta p {
  font-size: var(--text-md);
  color: var(--c-white-700);
}

/* ============================================================
   FRAMEWORK — FINANCIAL HOUSE
   ============================================================ */
.framework {
  background: var(--c-black);
}

.framework__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}

.framework__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-5);
}

.framework__sub {
  font-size: var(--text-md);
  color: var(--c-white-500);
}

.framework__house {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.framework__house-visual {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.framework__house-layer {
  position: relative;
  padding: var(--sp-6) var(--sp-8);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: border-color var(--dur-base), background var(--dur-base), transform var(--dur-base) var(--ease-smooth);
}

.framework__house-layer:hover { transform: translateX(4px); }

.framework__house-layer--top {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, transparent 100%);
  border-color: rgba(212, 168, 83, 0.2);
}

.framework__house-layer--top:hover {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.14) 0%, transparent 100%);
  border-color: rgba(212, 168, 83, 0.35);
}

.framework__house-layer--mid {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, transparent 100%);
  border-color: rgba(249, 115, 22, 0.15);
}

.framework__house-layer--mid:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, transparent 100%);
  border-color: rgba(249, 115, 22, 0.3);
}

.framework__house-layer--base {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.framework__house-layer--base:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, transparent 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.framework__house-layer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.framework__house-layer-icon {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-1);
  display: block;
}

.framework__house-layer-inner h3 {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--c-white-900);
}

.framework__house-layer-inner p {
  font-size: var(--text-sm);
  color: var(--c-white-500);
  line-height: 1.6;
}

.framework__house-layer-tag {
  position: absolute;
  top: 50%;
  right: var(--sp-4);
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--c-white-300);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.framework__house-explain {
  position: sticky;
  top: 96px;
}

.framework__house-note {
  font-size: var(--text-md);
  color: var(--c-white-500);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--c-gold-300);
  font-style: italic;
}

.framework__house-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.framework__step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.framework__step-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--c-orange);
  background: var(--c-orange-100);
  border: 1px solid var(--c-orange-200);
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.framework__step strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-white-900);
  margin-bottom: var(--sp-1);
}

.framework__step p {
  font-size: var(--text-sm);
  color: var(--c-white-500);
  line-height: 1.6;
}

/* ============================================================
   X CURVE TEASER
   ============================================================ */
.xcurve-teaser {
  background: var(--c-black-900);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.xcurve-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.xcurve-teaser__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-5);
  line-height: 1.05;
}

.xcurve-teaser__sub {
  font-size: var(--text-md);
  color: var(--c-white-500);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.xcurve-teaser__diagram {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.xcurve-svg-wrap {
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}

.xcurve-svg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 100%);
}

.xcurve-svg { width: 100%; height: auto; }

.xcurve-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: lineDrawing 1.8s var(--ease-smooth) 0.4s forwards;
}

.xcurve-line--wealth {
  animation-delay: 0.8s;
}

@keyframes lineDrawing {
  to { stroke-dashoffset: 0; }
}

.xcurve-dot {
  opacity: 0;
  animation: dotReveal 0.5s var(--ease-spring) 2s forwards;
}

@keyframes dotReveal {
  from { opacity: 0; transform: scale(0); transform-box: fill-box; transform-origin: center; }
  to   { opacity: 1; transform: scale(1); }
}

.xcurve-teaser__legend {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.xcurve-legend-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--c-white-500);
  font-family: var(--font-mono);
}

.xcurve-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.xcurve-legend-item--orange .xcurve-legend-dot { background: var(--c-orange); }
.xcurve-legend-item--gold .xcurve-legend-dot   { background: var(--c-gold); }

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview {
  background: var(--c-black);
}

.services-overview__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}

.services-overview__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
}

.services-overview__sub {
  font-size: var(--text-md);
  color: var(--c-white-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: inherit;
  transition:
    background var(--dur-base),
    border-color var(--dur-base),
    transform var(--dur-base) var(--ease-smooth),
    box-shadow var(--dur-base);
  position: relative;
  overflow: hidden;
  group: true;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.service-card:hover {
  background: var(--c-black-700);
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(249, 115, 22, 0.08);
}

.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--c-orange-100);
  border: 1px solid var(--c-orange-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange);
  margin-bottom: var(--sp-5);
  transition: background var(--dur-base), border-color var(--dur-base);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__icon {
  background: var(--c-orange-200);
  border-color: var(--c-orange-300);
}

.service-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-white-900);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--c-white-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}

.service-card__link {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-orange);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: letter-spacing var(--dur-base);
}

.service-card:hover .service-card__link { letter-spacing: 0.04em; }

.services-overview__cta { text-align: center; }

/* ============================================================
   LIFE STAGES
   ============================================================ */
.life-stages {
  background: var(--c-black-900);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.life-stages__header {
  max-width: 640px;
  margin: 0 auto var(--sp-10);
  text-align: center;
}

.life-stages__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
}

.life-stages__tabs {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-2);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.life-stage__tab {
  flex: 1;
  min-width: 140px;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-white-500);
  transition: all var(--dur-base) var(--ease-smooth);
  cursor: pointer;
  text-align: center;
}

.life-stage__tab:hover { color: var(--c-white-900); }

.life-stage__tab--active {
  background: var(--c-orange);
  color: var(--c-white);
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.35);
}

.life-stage__panel { display: none; }
.life-stage__panel--active { display: block; }

.life-stage__panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.life-stage__context h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

.life-stage__context p {
  font-size: var(--text-base);
  color: var(--c-white-500);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.life-stage__concerns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.life-stage__concerns li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--c-white-700);
  line-height: 1.5;
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.life-stage__concerns li::before {
  content: '?';
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--c-orange);
  background: var(--c-orange-100);
  border: 1px solid var(--c-orange-200);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.life-stage__action {
  padding: var(--sp-7);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.life-stage__action-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.life-stage__action p {
  font-size: var(--text-sm);
  color: var(--c-white-700);
  line-height: 1.65;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--c-black);
  padding: var(--sp-16) 0;
  border-top: 1px solid var(--c-border);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--c-gold-100);
  border: 1px solid var(--c-gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-white-900);
  margin-bottom: var(--sp-2);
}

.trust-item p {
  font-size: var(--text-xs);
  color: var(--c-white-500);
  line-height: 1.6;
}

/* ============================================================
   EDUCATION PREVIEW
   ============================================================ */
.edu-preview {
  background: var(--c-black-900);
  border-top: 1px solid var(--c-border);
}

.edu-preview__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}

.edu-preview__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.edu-card {
  padding: var(--sp-7);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-smooth);
}

.edu-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-2px);
}

.edu-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 0.2rem 0.5rem;
  background: var(--c-gold-100);
  border: 1px solid var(--c-gold-200);
  border-radius: var(--r-sm);
  align-self: flex-start;
}

.edu-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-white-900);
  line-height: 1.4;
}

.edu-card__desc {
  font-size: var(--text-sm);
  color: var(--c-white-500);
  line-height: 1.65;
  flex: 1;
}

.edu-card__link {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-gold);
  transition: letter-spacing var(--dur-base);
}

.edu-card:hover .edu-card__link { letter-spacing: 0.04em; }

.edu-preview__cta { text-align: center; }

/* ============================================================
   CONSULTATION CTA
   ============================================================ */
.consult-cta {
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
}

.consult-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-16);
  align-items: center;
  padding: var(--sp-16) var(--sp-12);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
}

.consult-cta__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-gold) 50%, transparent 100%);
}

.consult-cta__inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.consult-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.consult-cta__sub {
  font-size: var(--text-base);
  color: var(--c-white-500);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--sp-8);
}

.consult-cta__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.consult-cta__visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-width: 260px;
  position: relative;
  z-index: 1;
}

.consult-cta__badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-black-700);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  color: var(--c-white-700);
}

.consult-cta__badge-icon {
  font-size: var(--text-lg);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — HOME PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .reality__grid { grid-template-columns: repeat(2, 1fr); }
  .framework__house { grid-template-columns: 1fr; }
  .framework__house-explain { position: static; }
  .xcurve-teaser__inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .consult-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__headline { font-size: 2.5rem; }
  .reality__grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .life-stage__panel-content { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .consult-cta__visual { display: none; }
  .life-stages__tabs { overflow-x: auto; }
  .life-stage__tab { min-width: 110px; }
}
