@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Colors (CSS Custom Properties) ===== */
:root {
  --primary: #F29C2B;
  --primary-light: #FFF8EE;
  --primary-pale: #FEF3E0;
  --teal: #4DB8A4;
  --teal-light: #E8F6F3;
  --blue: #3B7CC2;
  --blue-light: #EBF3FB;
  --red: #E85A5A;
  --yellow: #FFD54F;
  --dark: #2C3E50;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-white: #fff;
  --bg-cream: #FFF8EE;
  --bg-gray: #F7F7F7;
  --border: #E8E8E8;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --max-width: 1100px;
  --section-padding: 80px 0;
  --transition: 0.3s ease;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-padding); }
.section--cream { background: var(--bg-cream); }
.section--gray { background: var(--bg-gray); }
.section--teal { background: var(--teal-light); }
.section--primary { background: var(--primary-pale); }

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

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-block;
}

.footer__logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

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

.header__cta {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.header__cta:hover {
  background: #e08d1f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ===== Hero / First View ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero--cream { background: var(--bg-cream); }

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.06;
  border-radius: 50% 40% 60% 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: var(--teal);
  opacity: 0.05;
  border-radius: 40% 60% 50% 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text);
}

.hero__title .highlight {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 640px;
}

.hero__subtitle--center {
  margin-left: auto;
  margin-right: auto;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.hero__stat-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero__stat-number {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-light);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

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

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

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

.btn--teal {
  color: #fff;
  background: var(--teal);
}

.btn--teal:hover { background: #3fa893; }

.btn--blue {
  color: #fff;
  background: var(--blue);
}

.btn--blue:hover { background: #2d6aab; }

.btn--outline {
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary-pale);
}

.btn--lg {
  font-size: 18px;
  padding: 20px 48px;
}

.btn--sm {
  font-size: 14px;
  padding: 12px 28px;
}

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

.btn--arrow::after {
  content: '→';
  margin-left: 4px;
  transition: transform var(--transition);
}

.btn--arrow:hover::after { transform: translateX(4px); }

/* ===== Section Headings ===== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-heading__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--text);
}

.section-heading__title .highlight {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}

.section-heading__subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.9;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card--flat {
  box-shadow: none;
  border: 1px solid var(--border);
}

.card--flat:hover {
  box-shadow: var(--shadow);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.card__icon--primary { background: var(--primary-pale); }
.card__icon--teal { background: var(--teal-light); }
.card__icon--blue { background: var(--blue-light); }

.card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.card__tag--primary { color: var(--primary); background: var(--primary-pale); }
.card__tag--teal { color: var(--teal); background: var(--teal-light); }
.card__tag--blue { color: var(--blue); background: var(--blue-light); }

.card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.card__image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
}

.card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card__list {
  margin-bottom: 20px;
}

.card__list li {
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.7;
}

.card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}

.card__price {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.card__price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card__cta { margin-top: auto; }

/* ===== Choice Cards (index) ===== */
.choice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.choice-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.choice-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.choice-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.choice-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.choice-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.choice-card__list {
  margin-bottom: 28px;
  flex-grow: 1;
}

.choice-card__list li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.7;
}

.choice-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ===== Worry / Problem Cards ===== */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.worry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
}

.worry-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.worry-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ===== About / Profile ===== */
.about {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about__image {
  flex: 0 0 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__content { flex: 1; }

.about__text {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 28px;
}

.about__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about__stat-box {
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.about__stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.about__stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== Service Cards ===== */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-cream);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  align-self: flex-start;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card__list {
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card__list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 3px 0 3px 18px;
  position: relative;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
}

.service-card__price {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.service-card__price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===== Guide (どの相談を選べばいい？) ===== */
.guide-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide-table thead th {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
}

.guide-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  vertical-align: middle;
}

.guide-table tbody tr:last-child td { border-bottom: none; }

.guide-table tbody tr:hover td { background: var(--primary-pale); }

.guide-table .guide-arrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.guide-table .guide-service {
  font-weight: 700;
  color: var(--primary);
}

/* ===== Plan Cards ===== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.plan-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.plan-card--featured {
  border-color: var(--primary);
}

.plan-card--featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}

.plan-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-card__desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.plan-card__price {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.plan-card__price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== Steps / Flow ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.step__content { flex: 1; padding-top: 4px; }

.step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step__text {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== Prepare List ===== */
.prepare-list {
  max-width: 640px;
  margin: 0 auto;
}

.prepare-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

.prepare-list li::before {
  content: '📋';
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-cream); }

.faq-question::before {
  content: 'Q';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.faq-question::after {
  content: '+';
  margin-left: auto;
  font-size: 20px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px 70px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

.faq-item.is-open .faq-answer { display: block; }

/* ===== CTA Banner ===== */
.cta-banner {
  text-align: center;
  padding: 60px 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner--cream { background: var(--bg-cream); }
.cta-banner--primary { background: var(--primary-pale); }

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  line-height: 1.6;
}

.cta-banner__text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.9;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ===== Funnel Diagram ===== */
.funnel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 32px 0;
}

.funnel__step {
  text-align: center;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 700;
  min-width: 110px;
  position: relative;
}

.funnel__step--highlight {
  background: var(--primary-pale);
  border: 2px solid var(--primary);
}

.funnel__arrow {
  font-size: 24px;
  color: var(--primary);
  padding: 0 6px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer__desc {
  font-size: 13px;
  line-height: 1.8;
  max-width: 360px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  transition: color var(--transition);
}

.footer__link:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}

/* ===== Note / Disclaimer ===== */
.note-box {
  background: var(--bg-gray);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.8;
}

/* ===== Consultation Items ===== */
.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.consult-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.consult-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.consult-item__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
  }

  .container { padding: 0 20px; }

  .hero { padding: 56px 0 40px; }
  .hero__inner { padding: 0 20px; }
  .hero__title { font-size: 24px; }
  .hero__subtitle { font-size: 15px; }
  .hero__stats { gap: 20px; }
  .hero__stat-number { font-size: 18px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .header__inner { padding: 0 16px; }
  .header__nav { gap: 12px; }
  .header__link { display: none; }

  .section-heading__title { font-size: 22px; }

  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

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

  .about { flex-direction: column; }
  .about__image { flex: none; width: 100%; }

  .funnel { flex-direction: column; gap: 0; }
  .funnel__arrow { transform: rotate(90deg); padding: 4px 0; }

  .guide-table { font-size: 13px; }
  .guide-table thead th,
  .guide-table tbody td { padding: 12px 14px; }

  .cta-banner { padding: 48px 20px; }
  .cta-banner__title { font-size: 20px; }

  .footer__top { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 12px; }

  .btn--lg { font-size: 16px; padding: 18px 36px; }

  .header__logo { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 22px; }
  .hero__stats { flex-direction: column; gap: 12px; }
  .section-heading__title { font-size: 20px; }
  .worry-grid { grid-template-columns: 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
}

/* ===== Placeholder Image Styles ===== */
.placeholder-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  gap: 8px;
  padding: 20px;
}

.placeholder-img__icon { font-size: 36px; opacity: 0.5; }
.placeholder-img__text { opacity: 0.7; }
