/* ============================================
   MemberEmber - Premium Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #3c2a21;
  --color-accent: #C25934;
  --color-accent-light: #d4724f;
  --color-accent-dark: #a44828;
  --color-bg: #ffcc99;
  --color-bg-light: #fff5e6;
  --color-bg-cream: #fffaf3;
  --color-bg-warm: #ffe8c8;
  --color-bg-dark: #3c2a21;
  --color-text: #3c2a21;
  --color-text-secondary: #6b5548;
  --color-text-muted: #9a8578;
  --color-text-light: #fffaf3;
  --color-border: rgba(60, 42, 33, 0.1);
  --color-border-strong: rgba(60, 42, 33, 0.2);
  --color-card: #ffffff;
  --color-card-hover: #fffaf3;
  --shadow-sm: 0 1px 3px rgba(60, 42, 33, 0.06);
  --shadow-md: 0 4px 16px rgba(60, 42, 33, 0.08);
  --shadow-lg: 0 8px 32px rgba(60, 42, 33, 0.1);
  --shadow-xl: 0 16px 48px rgba(60, 42, 33, 0.12);
  --shadow-glow: 0 0 40px rgba(194, 89, 52, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); color: var(--color-text); background: var(--color-bg-cream); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Section Headers --- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); background: rgba(194, 89, 52, 0.1); padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 16px; }
.badge-light { background: rgba(255, 250, 243, 0.15); color: var(--color-bg-light); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--color-primary); margin-bottom: 16px; letter-spacing: -0.03em; }
.title-light { color: var(--color-text-light); }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-secondary); line-height: 1.65; }
.subtitle-light { color: rgba(255, 250, 243, 0.7); }
.highlight { color: var(--color-accent); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; border-radius: var(--radius-full); transition: var(--transition); cursor: pointer; text-decoration: none; }
.btn-primary-sm { background: var(--color-accent); color: #fff; padding: 10px 24px; font-size: 0.9rem; }
.btn-primary-sm:hover { background: var(--color-accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-hero { background: var(--color-accent); color: #fff; padding: 16px 32px; font-size: 1.05rem; font-weight: 700; }
.btn-hero:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-hero svg { transition: transform 0.3s ease; }
.btn-hero:hover svg { transform: translateX(4px); }
.btn-outline { border: 2px solid var(--color-border-strong); color: var(--color-primary); padding: 14px 28px; font-weight: 600; background: transparent; }
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(194, 89, 52, 0.04); transform: translateY(-1px); }
.btn-outline svg { transition: transform 0.3s ease; }
.btn-outline:hover svg { transform: translateX(4px); }
.btn-cta { background: var(--color-accent); color: #fff; padding: 18px 40px; font-size: 1.1rem; font-weight: 700; box-shadow: 0 4px 20px rgba(194, 89, 52, 0.3); }
.btn-cta:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(194, 89, 52, 0.4); }
.btn-cta svg { transition: transform 0.3s ease; }
.btn-cta:hover svg { transform: translateX(4px); }

/* --- Reveal Animation --- */
[data-reveal], .timeline-step, .benefit-card, .faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed, .timeline-step.revealed, .benefit-card.revealed, .faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 250, 243, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: var(--transition); }
.navbar.scrolled { border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 16px 24px; }
.nav-logo { font-size: 1.4rem; font-weight: 800; color: var(--color-primary); letter-spacing: -0.03em; }
.logo-highlight { color: var(--color-accent); }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 0.92rem; font-weight: 500; color: var(--color-text-secondary); transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent); border-radius: 1px; transition: width 0.3s ease; }
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after { width: 100%; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: var(--transition); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { padding: 140px 0 80px; background: var(--color-bg-cream); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(194, 89, 52, 0.06) 0%, transparent 70%); pointer-events: none; }
.hero-card { background: linear-gradient(135deg, #3c2a21 0%, #4e362b 50%, #5a4035 100%); border-radius: var(--radius-xl); padding: 56px; display: flex; align-items: center; gap: 48px; position: relative; overflow: visible; box-shadow: var(--shadow-xl), 0 0 80px rgba(60, 42, 33, 0.2); }

.hero-content { flex: 1; z-index: 1; max-width: 600px; }
.hero-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero-title .highlight { color: var(--color-accent-light); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.trust-item svg { color: var(--color-accent-light); }
.trust-divider { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); }
.hero-visual { position: absolute; right: -47px; top: 50%; transform: translateY(-50%); z-index: 2; width: auto; pointer-events: none; }
.hero-illustration { width: 300px; height: auto; border-radius: 0; }
.hero-mobile { display: none; }


/* ============================================
   PROBLEMS / CHARACTER PICKER
   ============================================ */
.problems { padding: 120px 0; background: var(--color-bg-cream); }
.character-picker { background: var(--color-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.character-display { display: flex; align-items: center; padding: 56px; gap: 48px; min-height: 420px; }
.character-info { flex: 1; }
.character-subtitle { display: block; font-family: 'Caveat', 'Segoe Script', cursive; font-size: 1.4rem; font-style: italic; color: var(--color-accent); margin-bottom: 4px; }
.character-name { font-size: 2.8rem; font-weight: 800; color: var(--color-primary); margin-bottom: 8px; letter-spacing: -0.03em; line-height: 1.1; }
.character-role { display: inline-block; font-size: 1.05rem; color: var(--color-text-secondary); margin-bottom: 32px; }
.problem-card { background: var(--color-bg-cream); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--color-accent); border-left: 6px solid var(--color-accent); box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.problem-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); margin-bottom: 12px; }
.problem-title { font-size: 1.4rem; font-weight: 700; color: var(--color-primary); margin-bottom: 16px; }
.problem-desc { font-size: 1.05rem; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 0; }
.problem-quote { font-size: 0.95rem; font-style: italic; color: var(--color-text-muted); padding-left: 16px; border-left: 3px solid rgba(194, 89, 52, 0.4); line-height: 1.6; margin-bottom: 24px; }
.character-portrait { flex: 0 0 300px; display: flex; justify-content: center; }
.character-image { width: 280px; height: 280px; object-fit: cover; border-radius: var(--radius-xl); transition: opacity 0.4s ease, transform 0.4s ease; }
.character-image.fade-out { opacity: 0; transform: scale(0.95); }
.character-info.fade-out .character-subtitle,
.character-info.fade-out .character-name,
.character-info.fade-out .character-role,
.character-info.fade-out .problem-card,
.character-info.fade-out .problem-quote { opacity: 0; transform: translateY(10px); }
.character-subtitle, .character-name, .character-role, .problem-card, .problem-quote {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.character-nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 56px; border-top: 1px solid var(--color-border); background: var(--color-bg-cream); }
.character-arrows { display: flex; gap: 8px; }
.char-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--color-border-strong); display: flex; align-items: center; justify-content: center; color: var(--color-text-secondary); transition: var(--transition); }
.char-arrow:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(194, 89, 52, 0.05); }
.character-thumbs { display: flex; gap: 12px; }
.char-thumb { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 3px solid transparent; transition: var(--transition); cursor: pointer; }
.char-thumb img { width: 100%; height: 100%; object-fit: cover; }
.char-thumb:hover { border-color: var(--color-border-strong); transform: scale(1.08); }
.char-thumb.active { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(194, 89, 52, 0.2); transform: scale(1.1); }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 120px 0; background: var(--color-bg-cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.service-card { background: var(--color-card); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--color-border); transition: var(--transition); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light)); opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 210px; height: auto; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin-bottom: -16px; margin-left: auto; margin-right: auto; }
.service-title { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); margin-bottom: 16px; letter-spacing: -0.02em; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li { position: relative; padding-left: 20px; font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.55; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); opacity: 0.6; }

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(3) {
  background: #5a4035;
  border-color: transparent;
}
.services-grid .service-card:nth-child(1) .service-title,
.services-grid .service-card:nth-child(3) .service-title {
  color: #ffffff;
}
.services-grid .service-card:nth-child(1) .service-list li,
.services-grid .service-card:nth-child(3) .service-list li {
  color: rgba(255, 255, 255, 0.8);
}
.services-grid .service-card:nth-child(1) .service-list li::before,
.services-grid .service-card:nth-child(3) .service-list li::before {
  background: var(--color-accent-light);
  opacity: 0.8;
}

.service-custom { background: var(--color-card); border-radius: var(--radius-lg); padding: 40px 48px; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; gap: 32px; transition: var(--transition); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.service-custom::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light)); opacity: 0; transition: opacity 0.3s ease; }
.service-custom:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); }
.service-custom:hover::before { opacity: 1; }
.custom-content { display: flex; align-items: center; gap: 20px; flex: 1; }
.custom-icon { flex-shrink: 0; width: 180px; height: auto; border-radius: var(--radius-md); background: #ffffff; display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.custom-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; }
.custom-content p { font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.6; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { padding: 120px 0; background: var(--color-bg-cream); position: relative; overflow: hidden; }
.process-card { background: linear-gradient(135deg, #3c2a21 0%, #4e362b 50%, #5a4035 100%); border-radius: var(--radius-xl); padding: 56px; position: relative; overflow: hidden; box-shadow: var(--shadow-xl), 0 0 80px rgba(60, 42, 33, 0.2); }
.process-card::before { content: ''; position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(194, 89, 52, 0.06) 0%, transparent 60%); pointer-events: none; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 36px; top: 0; bottom: 0; width: 2px; background: rgba(255, 250, 243, 0.1); }
.timeline-step { display: flex; gap: 32px; padding-bottom: 48px; position: relative; }
.timeline-step:last-child { padding-bottom: 0; }
.step-number { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; background: rgba(194, 89, 52, 0.15); border: 2px solid rgba(194, 89, 52, 0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--color-accent-light); z-index: 1; transition: var(--transition); }
.timeline-step.revealed .step-number { background: var(--color-accent); border-color: var(--color-accent); color: #fff; box-shadow: 0 0 30px rgba(194, 89, 52, 0.3); }
.step-content { padding-top: 12px; }
.step-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--color-text-light); margin-bottom: 10px; letter-spacing: -0.02em; }
.step-content p { font-size: 1rem; color: rgba(255, 250, 243, 0.65); line-height: 1.7; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits { padding: 60px 0 120px; background: var(--color-bg-cream); }


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

.bento-box {
  background: var(--color-bg-cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.bento-content {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.bento-num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.bento-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.bento-img-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.bento-img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.bento-box:hover .bento-img {
  transform: scale(1.05) translateY(-5px);
}

/* Grid Specific Configurations */
.bento-large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.bento-large .bento-content {
  flex: 1;
  margin-bottom: 0;
}
.bento-large .bento-title {
  font-size: 2.2rem;
}
.bento-large .bento-img-wrap {
  flex-shrink: 0;
}
.bento-large .bento-img {
  max-height: 280px;
}

.bento-standard {
  grid-column: span 1;
}
.bento-standard .bento-img {
  height: 230px;
  max-height: 240px;
}
.benefits-bento .bento-box:nth-child(4) .bento-img {
  height: 270px;
  max-height: 280px;
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.bento-wide .bento-content {
  flex: 1;
  margin-bottom: 0;
}
.bento-wide .bento-img-wrap {
  flex-shrink: 0;
}
.bento-wide .bento-img {
  height: 260px;
  max-height: 300px;
}

.bento-full {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.bento-full .bento-content {
  flex: 1;
  margin-bottom: 0;
}
.bento-full .bento-title {
  font-size: 2rem;
}
.bento-full .bento-img-wrap {
  flex-shrink: 0;
}
.bento-full .bento-img {
  max-height: 260px;
}

.benefits-bento .bento-box:nth-child(2),
.benefits-bento .bento-box:nth-child(3) {
  background: #5a4035;
  border-color: transparent;
}
.benefits-bento .bento-box:nth-child(2) .bento-title,
.benefits-bento .bento-box:nth-child(3) .bento-title {
  color: #ffffff;
}
.benefits-bento .bento-box:nth-child(2) .bento-desc,
.benefits-bento .bento-box:nth-child(3) .bento-desc {
  color: rgba(255, 255, 255, 0.8);
}
.benefits-bento .bento-box:nth-child(2) .bento-num,
.benefits-bento .bento-box:nth-child(3) .bento-num {
  color: var(--color-accent-light);
}

/* ============================================
   WHY ME
   ============================================ */
.why-me { padding: 60px 0 120px; background: var(--color-bg-cream); }
.why-me-card {
  background: linear-gradient(135deg, #3c2a21 0%, #4e362b 50%, #5a4035 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(60, 42, 33, 0.2);
}
.why-me-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(194, 89, 52, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Intro Row - text + portrait */
.why-me-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 16px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.why-me-intro-text { grid-column: 1; grid-row: 1; }
.why-me-intro-text .section-title { text-align: left; }
.why-me-blurb {
  font-size: 1.08rem;
  color: rgba(255, 250, 243, 0.7);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 0;
  grid-column: 1;
  grid-row: 2;
}
.why-me-portrait { grid-column: 2; grid-row: 1 / span 2; align-self: start; margin-right: 80px; }
.why-me-avatar {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
}

/* Reason Cards Grid */
.why-me-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-reason-card {
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(255, 250, 243, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-reason-card:hover {
  background: rgba(255, 250, 243, 0.1);
  border-color: rgba(194, 89, 52, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.why-reason-card:hover::before { opacity: 1; }
.why-reason-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-accent-light);
  margin-bottom: 16px;
}
.why-reason-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.why-reason-desc {
  font-size: 0.98rem;
  color: rgba(255, 250, 243, 0.6);
  line-height: 1.7;
}

/* Contact strip inside Why Me card */
.why-me-contact {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.why-me-contact-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(194, 89, 52, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  flex-wrap: wrap;
}
.why-me-contact-inner svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}
.why-me-contact-inner p {
  font-size: 0.98rem;
  color: rgba(255, 250, 243, 0.7);
  margin: 0;
  flex: 1;
  min-width: 180px;
}
.why-me-email-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-light);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.why-me-email-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 120px 0; background: var(--color-bg-cream); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--color-card); border-radius: var(--radius-md); border: 1px solid var(--color-border); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--color-border-strong); }
.faq-item.open { border-color: rgba(194, 89, 52, 0.2); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; text-align: left; font-size: 1rem; font-weight: 600; color: var(--color-primary); cursor: pointer; transition: var(--transition); }
.faq-question:hover { color: var(--color-accent); }
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; color: var(--color-text-muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--color-accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { padding: 120px 0; background: var(--color-bg-cream); position: relative; overflow: hidden; }

/* CTA Card */
.cta-card { background: linear-gradient(135deg, #3c2a21 0%, #4e362b 50%, #5a4035 100%); border-radius: var(--radius-xl); padding: 72px; position: relative; overflow: hidden; box-shadow: var(--shadow-xl), 0 0 80px rgba(60, 42, 33, 0.2); }

/* CTA Layout */
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.cta-left { display: flex; flex-direction: column; gap: 24px; }
.cta-badge { display: inline-block; background: rgba(194, 89, 52, 0.2); color: var(--color-accent-light); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(194, 89, 52, 0.3); width: fit-content; }
.cta-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--color-text-light); letter-spacing: -0.03em; line-height: 1.1; margin: 0; overflow-wrap: break-word; }
.cta-title .highlight { color: var(--color-accent-light); }
.cta-subtitle { font-size: 1.05rem; color: rgba(255, 250, 243, 0.7); line-height: 1.75; margin: 0; }
.cta-promises { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cta-promises li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(255, 250, 243, 0.65); font-weight: 500; }
.cta-promises li svg { color: var(--color-accent-light); flex-shrink: 0; }

/* CTA Form */
.cta-right { background: rgba(255, 250, 243, 0.05); border: 1px solid rgba(255, 250, 243, 0.1); border-radius: var(--radius-xl); padding: 40px; }
.cta-form { display: flex; flex-direction: column; gap: 20px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-field { display: flex; flex-direction: column; gap: 8px; }
.cta-field label { font-size: 0.85rem; font-weight: 600; color: rgba(255, 250, 243, 0.8); letter-spacing: 0.02em; }
.cta-field input, .cta-field textarea { background: rgba(255, 250, 243, 0.07); border: 1px solid rgba(255, 250, 243, 0.15); border-radius: var(--radius-md); padding: 12px 16px; font-size: 0.95rem; font-family: var(--font); color: var(--color-text-light); outline: none; transition: var(--transition); resize: none; width: 100%; min-width: 0; }
.cta-field input::placeholder, .cta-field textarea::placeholder { color: rgba(255, 250, 243, 0.3); }
.cta-field input:focus, .cta-field textarea:focus { border-color: var(--color-accent); background: rgba(255, 250, 243, 0.1); box-shadow: 0 0 0 3px rgba(194, 89, 52, 0.15); }
.btn-cta-form { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--color-accent); color: #fff; border: none; border-radius: var(--radius-md); padding: 16px 32px; font-size: 1rem; font-weight: 700; font-family: var(--font); cursor: pointer; transition: var(--transition); letter-spacing: 0.01em; margin-top: 4px; }
.btn-cta-form:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194, 89, 52, 0.35); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-bg-dark); border-top: 1px solid rgba(255, 250, 243, 0.06); padding: 64px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 320px; }
.footer-logo { font-size: 1.3rem; display: inline-block; margin-bottom: 12px; color: var(--color-text-light); }
.footer-tagline { font-size: 0.88rem; color: rgba(255, 250, 243, 0.5); line-height: 1.6; }
.footer-links-group { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 250, 243, 0.4); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: rgba(255, 250, 243, 0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--color-accent-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255, 250, 243, 0.06); }
.footer-bottom p { font-size: 0.82rem; color: rgba(255, 250, 243, 0.3); }
.footer-legal { display: flex; gap: 12px; font-size: 0.82rem; color: rgba(255, 250, 243, 0.3); }
.footer-legal a { color: rgba(255, 250, 243, 0.4); transition: var(--transition); }
.footer-legal a:hover { color: var(--color-accent-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-card { flex-direction: column; padding: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-visual { right: -20px; }
  .hero-illustration { width: 200px; }
  .hero-actions { justify-content: center; display: flex; }
  .hero-trust { justify-content: center; }
  .character-display { flex-direction: column; text-align: center; padding: 40px; }
  .character-portrait { flex: none; }
  .problem-quote { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .service-custom { flex-direction: column; text-align: center; padding: 32px; }
  .custom-content { flex-direction: column; align-items: center; }
  .why-me-intro { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .why-me-portrait { margin-right: 0; align-self: center; }
  .why-me-intro-text .section-title { text-align: center; }
  .why-me-blurb { margin-left: auto; margin-right: auto; }
  .why-me-reasons { grid-template-columns: 1fr 1fr; }
  .why-reason-card:last-child { grid-column: span 2; }
  .benefits-bento { grid-template-columns: 1fr 1fr; }
  .bento-large, .bento-wide, .bento-full { grid-column: span 2; }
  .bento-large .bento-title, .bento-full .bento-title { font-size: 1.8rem; }
  .bento-large .bento-img, .bento-full .bento-img { max-height: 220px; }
  .bento-wide .bento-img { max-height: 180px; }
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 250, 243, 0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .nav-links.open { display: flex; }
  .navbar.nav-open { background: rgba(255, 250, 243, 1); backdrop-filter: none; -webkit-backdrop-filter: none; transition: none; }
  .nav-links .nav-link { font-size: 1.3rem; font-weight: 600; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { padding: 120px 0 60px; }
  .hero-card { padding: 56px 24px 0 24px; overflow: hidden; }
  .process-card { padding: 32px 24px; }
  .why-me-card { padding: 32px 24px; }
  .why-me-avatar { width: 180px; height: 180px; }
  .why-me-reasons { grid-template-columns: 1fr; }
  .why-reason-card:last-child { grid-column: span 1; }
  .hero-title { font-size: 2.8rem; }
  .hero-float-card { display: none; }
  .hero-visual { display: flex; position: static; transform: none; right: auto; top: auto; justify-content: center; align-items: flex-end; margin-top: 8px; width: 100%; pointer-events: auto; }
  .hero-desktop { display: none; }
  .hero-mobile { display: block; width: 100%; max-width: 380px; }
  .character-display { min-height: auto; padding: 32px 24px; }
  .character-nav { padding: 20px 24px; flex-direction: column-reverse; gap: 16px; }
  .character-name { font-size: 1.6rem; }
  .character-image { width: 200px; height: 200px; }
  .benefits-bento { grid-template-columns: 1fr; }
  .bento-large, .bento-standard, .bento-wide, .bento-full { 
    grid-column: span 1; 
    flex-direction: column; 
    text-align: center;
    gap: 32px;
  }
  .bento-content { margin-bottom: 0; }
  .bento-img-wrap { justify-content: center; width: 100%; margin-top: auto; }
  .bento-img { max-height: 200px !important; }
  .bento-large .bento-title, .bento-full .bento-title, .bento-wide .bento-title, .bento-title { font-size: 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-header { margin-bottom: 48px; }
  .problems, .services, .how-it-works, .benefits, .why-me, .faq, .final-cta { padding: 80px 0; }
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-card { padding: 52px 20px 0; }
  .cta-card { padding: 32px 16px; }
  .hero-title { font-size: 2.5rem; }
  .btn-hero { padding: 14px 24px; font-size: 0.95rem; }
  .character-thumbs { gap: 8px; }
  .char-thumb { width: 44px; height: 44px; }
}
