/* ============================================================
   CCEF3 Landing Page — style.css
   Palette: cream bg · forest green · amber · near-black text
   Fonts: DM Sans (body) · Fraunces (headings)
   ============================================================ */

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

:root {
  --bg:          #FDFAF5;
  --bg-alt:      #F2EDE3;
  --bg-dark:     #1C2B24;
  --green:       #2A6B5A;
  --green-light: #3D8A73;
  --green-pale:  #D6EDE7;
  --amber:       #D4844A;
  --amber-light: #F5C58A;
  --amber-pale:  #FDF0DC;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-muted:  #7A7A7A;
  --border:      #E4DDD2;
  --white:       #FFFFFF;

  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-head:   'Fraunces', Georgia, serif;

  --max-w:       1100px;
  --section-pad: 88px 24px;
  --radius:      16px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(26,26,26,0.08);
  --shadow-lg:   0 12px 48px rgba(26,26,26,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.serif-em { font-style: italic; }

/* ── Layout helpers ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: var(--section-pad); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--green { background: var(--green); color: var(--white); }
.section--amber-pale { background: var(--amber-pale); }

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(42,107,90,0.35);
}
.btn--primary:hover { background: var(--green-light); box-shadow: 0 6px 24px rgba(42,107,90,0.45); }

.btn--amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,132,74,0.35);
}
.btn--amber:hover { background: #c07340; box-shadow: 0 6px 24px rgba(212,132,74,0.45); }

.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--ghost:hover { background: var(--green-pale); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Landing SVG icons ────────────────────────────────────── */
.landing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.landing-icon svg { display: block; }
.landing-icon--green { background: var(--green-pale); color: var(--green); }
.landing-icon--amber { background: var(--amber-pale); color: var(--amber); }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.nav__logo-badge {
  background: var(--green);
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--green); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.lang-toggle a { padding: 4px 6px; border-radius: 4px; font-weight: 500; }
.lang-toggle a.active { color: var(--green); background: var(--green-pale); }
.lang-toggle a:hover { color: var(--green); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 96px 24px 80px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

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

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

.hero__h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
  color: var(--text);
  max-width: 560px;
}

.hero__h1 .accent { color: var(--green); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__snap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--amber-pale);
  border: 1px solid var(--amber-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__snap-icon {
  flex-shrink: 0;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.hero__snap-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.hero__snap-text strong {
  color: var(--amber);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__phone {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.hero__phone-bar {
  background: var(--green);
  height: 8px;
}

.hero__phone-content {
  padding: 24px;
}

.hero__phone-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hero__phone-step:last-child { border-bottom: none; }

.hero__phone-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__phone-step-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-top: 4px;
  line-height: 1.5;
}

.hero__phone-step-text strong {
  color: var(--text);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__float--1 { top: -16px; right: -12px; }
.hero__float--2 { bottom: 24px; left: -28px; }
.hero__float-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: var(--green); }
.dot--amber { background: var(--amber); }

/* ── Empathy strip ────────────────────────────────────────── */
.empathy { padding: 80px 24px; background: var(--bg-alt); }

.empathy__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.empathy__intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.empathy__intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.empathy__intro p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.empathy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.empathy__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.empathy__card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.empathy__emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.empathy__card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.empathy__card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Snap section ─────────────────────────────────────────── */
.snap { padding: var(--section-pad); }

.snap__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.snap__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}

.snap__h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.snap__body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.snap__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.snap__step:hover { background: var(--green-pale); }

.snap__step-icon {
  flex-shrink: 0;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.snap__step-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.snap__step-text p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Snap visual */
.snap__visual {
  position: relative;
}

.snap__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.snap__card-header {
  background: var(--green);
  padding: 16px 20px;
  color: var(--white);
}

.snap__card-header h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.snap__card-title {
  font-size: 1rem;
  font-weight: 500;
}

.snap__card-body { padding: 20px; }

.snap__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-mid);
}
.snap__card-row:last-child { border-bottom: none; }
.snap__card-row .icon { font-size: 1rem; color: var(--green); width: 20px; }

.snap__arrow {
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--amber);
  background: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.snap__source {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  border: 2px dashed var(--border);
  margin-bottom: 16px;
}

.snap__source-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.snap__source-content {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ── Moments / "What you get back" ───────────────────────── */
.moments { padding: var(--section-pad); background: var(--bg-alt); }

.moments__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.moments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.moment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.moment-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.moment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.moment-card--amber::before { background: var(--amber); }
.moment-card--dark::before  { background: var(--bg-dark); }

.moment-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}
.moment-card--amber .moment-icon { color: var(--amber); }
.moment-card--dark .moment-icon  { color: var(--green); }

.moment-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.moment-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Learning trail ───────────────────────────────────────── */
.trail { padding: var(--section-pad); background: var(--bg-dark); color: var(--white); }

.trail__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.trail .section-eyebrow { color: var(--amber-light); }
.trail .section-h2 { color: var(--white); }
.trail .section-sub { color: rgba(255,255,255,0.65); }

.trail__path {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 52px 0;
  position: relative;
}

.trail__path::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: rgba(255,255,255,0.12);
}

.trail__node {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.trail__node-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
  color: white;
}
.trail__node:hover .trail__node-dot { transform: scale(1.1); }

.trail__node-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.trail__node-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.trail__connector {
  font-size: 1rem;
  color: rgba(255,255,255,0.25);
  padding-top: 18px;
  flex-shrink: 0;
}

.trail__quote {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  max-width: 680px;
  margin: 0 auto;
}

.trail__quote p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.65;
}

.trail__quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* ── Community ────────────────────────────────────────────── */
.community { padding: var(--section-pad); }

.community__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.community__testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial__stars {
  color: var(--amber);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing { padding: var(--section-pad); background: var(--bg-alt); }

.pricing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.pricing-card--featured {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.pricing-card__badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.7;
}

.pricing-card--featured .pricing-card__name { opacity: 0.7; color: var(--white); }

.pricing-card__price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,0.6); }

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.45;
}
.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,0.8); }

.pricing-card__feature-check {
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__feature-check { color: var(--amber-light); }

.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: var(--section-pad); }

.faq__inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.faq__q:hover { background: var(--bg-alt); }

.faq__q-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--green);
  transition: transform 0.25s;
  line-height: 1;
}

.faq__item.open .faq__q-icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq__item.open .faq__a { max-height: 400px; }

/* ── Final CTA ────────────────────────────────────────────── */
.cta-final { padding: var(--section-pad); background: var(--green); color: var(--white); }

.cta-final__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-final__form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}

.cta-final__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-final__input:focus { box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 3px rgba(255,255,255,0.3); }

.cta-final__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.55);
  padding: 48px 24px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__lang-links {
  display: flex;
  gap: 12px;
}
.footer__lang-links a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer__lang-links a:hover, .footer__lang-links a.active { color: var(--white); }

.footer__claude {
  max-width: var(--max-w);
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  text-align: center;
}
.footer__claude a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.footer__claude a:hover { color: rgba(255,255,255,0.6); }

/* ── Founders page ────────────────────────────────────────── */
.founders-hero {
  padding: 96px 24px 64px;
  background: var(--bg);
}

.founders-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.founders-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  transition: color 0.15s;
}
.founders-hero__back:hover { color: var(--green); }

.founders-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}

.founders-hero__h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  max-width: 640px;
}

.founders-hero__lede {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
}

.founders-content {
  padding: 64px 24px 96px;
}

.founders-content__inner {
  max-width: 680px;
  margin: 0 auto;
}

.founders-profile {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.founders-profile__photo {
  width: 130px;
  height: 180px;
  border-radius: 18px;
  background: var(--green-pale);
  border: 3px solid var(--green);
  color: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founders-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.founders-profile__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.founders-profile__role {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.founders-profile__bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.founders-story {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.founders-story h2 {
  font-size: 1.6rem;
  color: var(--text);
  margin: 40px 0 16px;
}

.founders-story p { margin-bottom: 20px; }

.founders-story blockquote {
  border-left: 3px solid var(--amber);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--amber-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}

.founders-beliefs {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 48px;
}

.founders-beliefs h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.belief-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.belief-item:last-child { border-bottom: none; }

.belief-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border-radius: 8px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.belief-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.belief-text strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

/* ── Utility — fade in on scroll ─────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
  border-top: 1px solid var(--border);
}

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

.mobile-nav a {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner,
  .snap__inner,
  .community__inner { grid-template-columns: 1fr; gap: 40px; }

  .hero__visual { display: none; }

  .empathy__grid,
  .moments__grid,
  .pricing__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }

  .trail__path { flex-direction: column; align-items: center; gap: 12px; }
  .trail__path::before { display: none; }
  .trail__connector { transform: rotate(90deg); }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px 20px; }

  .footer__inner { grid-template-columns: 1fr; }

  .hero { padding: 64px 20px 52px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .cta-final__form { flex-direction: column; }
  .cta-final__input { min-width: unset; width: 100%; }
}

/* ── Japanese typography adjustments ─────────────────────── */
:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3 {
  letter-spacing: 0;
  line-height: 1.4;
}

:lang(ja) p,
:lang(ja) li {
  line-height: 1.9;
}
