/* ═══════════════════════════════════════════
   SustAIn — カジュアルポップ LP
   ═══════════════════════════════════════════ */

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

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

body {
  font-family: 'Zen Maru Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #333;
  background-color: #FFFBF7;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilities ─── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

.text-accent {
  background: linear-gradient(135deg, #43A047, #26C6DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, #43A047, #2E7D32);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(67, 160, 71, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 160, 71, 0.4);
}

.btn--outline {
  background: #fff;
  color: #43A047;
  border-color: #43A047;
}

.btn--outline:hover {
  background: #E8F5E9;
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ─── Section Titles ─── */
.section-title {
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #888;
  font-size: 1rem;
  margin-bottom: 48px;
}

/* ─── Wave Dividers ─── */
.section-wave {
  display: block;
  width: 100%;
  height: 60px;
}

.section-wave--top { margin-bottom: -1px; }
.section-wave--bottom { margin-top: -1px; }

/* ═══════════════════════════════════════════
   Header
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 251, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #2E7D32;
}

.header__logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #66BB6A, #2E7D32);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.header__nav {
  display: flex;
  gap: 28px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #666;
  transition: color 0.2s;
}

.header__link:hover {
  color: #43A047;
}

.header__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.header__menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px;
    gap: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .header__nav.is-open { display: flex; }

  .header__nav .header__link {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid #F5F0EB;
  }
  .header__nav .header__link:last-child { border-bottom: none; }

  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFBF7 0%, #E8F5E9 40%, #B2DFDB 70%, #E0F7FA 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  padding: 6px 18px;
  background: #fff;
  color: #43A047;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(67, 160, 71, 0.15);
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #2D2D2D;
}

.hero__accent {
  background: linear-gradient(135deg, #43A047, #00897B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 28px;
}

.hero__cta {
  margin-bottom: 12px;
}

.hero__note {
  font-size: 0.8rem;
  color: #999;
}

/* Blobs */
.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.blob--1 {
  width: 300px; height: 300px;
  background: #A5D6A7;
  top: -50px; right: -80px;
}

.blob--2 {
  width: 200px; height: 200px;
  background: #FFAB91;
  bottom: 40px; left: -60px;
}

.blob--3 {
  width: 160px; height: 160px;
  background: #B39DDB;
  top: 40%; left: 50%;
}

/* Wave */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

/* Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: #F5F0EB;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.phone-mockup__notch {
  width: 100px;
  height: 24px;
  background: #F5F0EB;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-mockup__screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.phone-mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 14px 12px;
  background: linear-gradient(135deg, #43A047, #2E7D32);
  color: #fff;
}

.phone-mockup__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}

.phone-mockup__name {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}

.phone-mockup__status {
  font-size: 0.65rem;
  opacity: 0.7;
}

.phone-mockup__chat {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 88%;
}

.chat-bubble--assistant {
  background: #F5F5F5;
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}

.chat-bubble--user {
  background: linear-gradient(135deg, #42A5F5, #1E88E5);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}

.chat-bubble p { margin-bottom: 4px; }
.chat-bubble p:last-child { margin-bottom: 0; }

.chat-bubble__calorie {
  display: inline-block;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  color: #2E7D32;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.7rem;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0 80px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title { font-size: 1.8rem; }
  .hero__cta { justify-content: center; display: flex; }

  .hero__visual { order: -1; }

  .phone-mockup { width: 240px; }
}

/* ═══════════════════════════════════════════
   Stats Bar
   ═══════════════════════════════════════════ */
.stats {
  background: #fff;
  padding: 36px 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stats__item {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.stats__number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #43A047, #26C6DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__unit {
  font-size: 0.95rem;
  font-weight: 700;
  color: #43A047;
}

.stats__label {
  font-size: 0.85rem;
  color: #888;
  margin-left: 4px;
}

.stats__divider {
  width: 4px; height: 4px;
  background: #CCC;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .stats__inner { flex-direction: column; gap: 12px; }
  .stats__divider { display: none; }
}

/* ═══════════════════════════════════════════
   Features
   ═══════════════════════════════════════════ */
.features {
  padding: 80px 0;
  background: #fff;
}

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

.feature-card {
  border-radius: 24px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card--coral {
  background: #FFF3E0;
  color: #E65100;
}
.feature-card--coral:hover { border-color: #FFB74D; }

.feature-card--green {
  background: #E8F5E9;
  color: #2E7D32;
}
.feature-card--green:hover { border-color: #81C784; }

.feature-card--purple {
  background: #EDE7F6;
  color: #5E35B1;
}
.feature-card--purple:hover { border-color: #B39DDB; }

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.feature-card__icon svg { width: 48px; height: 48px; }

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: inherit;
}

.feature-card__text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .features { padding: 60px 0; }
  .features__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════
   How It Works
   ═══════════════════════════════════════════ */
.how-it-works__bg {
  background: #FFF5F0;
  padding: 60px 0;
}

.steps {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step__number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, #FF8A65, #FF5722);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.step__content { padding-top: 2px; }

.step__title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: #333;
}

.step__text {
  color: #777;
  font-size: 0.9rem;
}

.step__connector {
  width: 3px;
  height: 28px;
  background: linear-gradient(to bottom, #FFCCBC, #FFF5F0);
  margin-left: 20px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   Trainers
   ═══════════════════════════════════════════ */
.trainers {
  padding: 80px 0;
  background: #FFFBF7;
}

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

.trainer-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.trainer-card:hover {
  transform: translateY(-6px);
}

.trainer-card__avatar-wrap {
  margin-bottom: 12px;
}

.trainer-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
}

.trainer-card__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trainer-card__name {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.trainer-card__speech {
  padding: 14px;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
  position: relative;
}

.trainer-card__speech::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.trainer-card__traits {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trainer-card__traits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}

.trainer-card__traits li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
}

/* ─── Kei ─── */
.trainer-card--kei { border-color: #E0E0E0; }
.trainer-card--kei:hover { border-color: #607D8B; box-shadow: 0 12px 32px rgba(96, 125, 139, 0.15); }
.trainer-card--kei .trainer-card__avatar { background: linear-gradient(135deg, #546E7A, #263238); }
.trainer-card--kei .trainer-card__badge { background: #ECEFF1; color: #455A64; }
.trainer-card--kei .trainer-card__speech { background: #ECEFF1; }
.trainer-card--kei .trainer-card__speech::before { background: #ECEFF1; }
.trainer-card--kei .trainer-card__traits li::before { background: #607D8B; }

/* ─── Misaki ─── */
.trainer-card--misaki { border-color: #E8EAF6; }
.trainer-card--misaki:hover { border-color: #7986CB; box-shadow: 0 12px 32px rgba(121, 134, 203, 0.15); }
.trainer-card--misaki .trainer-card__avatar { background: linear-gradient(135deg, #9FA8DA, #5C6BC0); }
.trainer-card--misaki .trainer-card__badge { background: #E8EAF6; color: #5C6BC0; }
.trainer-card--misaki .trainer-card__speech { background: #EDE7F6; }
.trainer-card--misaki .trainer-card__speech::before { background: #EDE7F6; }
.trainer-card--misaki .trainer-card__traits li::before { background: #7986CB; }

/* ─── Ryu ─── */
.trainer-card--ryu { border-color: #FFF3E0; }
.trainer-card--ryu:hover { border-color: #FFB74D; box-shadow: 0 12px 32px rgba(255, 183, 77, 0.15); }
.trainer-card--ryu .trainer-card__avatar { background: linear-gradient(135deg, #FFB74D, #FF9800); }
.trainer-card--ryu .trainer-card__badge { background: #FFF3E0; color: #F57C00; }
.trainer-card--ryu .trainer-card__speech { background: #FFF8E1; }
.trainer-card--ryu .trainer-card__speech::before { background: #FFF8E1; }
.trainer-card--ryu .trainer-card__traits li::before { background: #FFB74D; }

@media (max-width: 768px) {
  .trainers { padding: 60px 0; }
  .trainers__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════
   Philosophy
   ═══════════════════════════════════════════ */
.philosophy__bg {
  background: #F0FAF0;
  padding: 60px 0;
}

.philosophy__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__lead {
  font-size: 1.1rem;
  color: #555;
  margin: 24px 0 12px;
  line-height: 1.8;
}

.philosophy__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.philosophy__stages {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  position: relative;
  padding-left: 28px;
}

.stage::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #C8E6C9;
  background: #fff;
}

.stage:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: calc(50% + 8px);
  width: 2px;
  height: calc(100% - 8px);
  background: #E0E0E0;
}

.stage--done::before {
  background: #43A047;
  border-color: #43A047;
}

.stage--current::before {
  background: #FF7043;
  border-color: #FF7043;
  box-shadow: 0 0 0 4px rgba(255, 112, 67, 0.2);
}

.stage__label {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.stage--done .stage__label { color: #43A047; font-weight: 700; }
.stage--current .stage__label { color: #FF7043; font-weight: 700; }

.stage__now {
  background: #FF7043;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
}

.philosophy__note {
  font-size: 0.9rem;
  color: #999;
  margin-top: 20px;
  text-align: center;
}

/* ═══════════════════════════════════════════
   Pricing
   ═══════════════════════════════════════════ */
.pricing {
  padding: 80px 0;
  background: #FFFBF7;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  border: 2px solid #F0EBE5;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.plan-card--featured {
  border-color: #43A047;
  box-shadow: 0 8px 28px rgba(67, 160, 71, 0.12);
  padding-top: 36px;
}

.plan-card--featured:hover {
  box-shadow: 0 16px 40px rgba(67, 160, 71, 0.18);
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-card__name {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #555;
}

.plan-card--featured .plan-card__name { color: #2E7D32; }

.plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.plan-card__amount {
  font-size: 2rem;
  font-weight: 900;
}

.plan-card__period {
  font-size: 0.85rem;
  color: #999;
}

.plan-card__tagline {
  font-size: 0.75rem;
  color: #FF7043;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
  text-align: left;
  flex: 1;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}

.plan-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2343A047' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pricing { padding: 60px 0; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 2px solid #F0EBE5;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq__item[open] {
  border-color: #C8E6C9;
  background: #FAFFF5;
}

.faq__question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: background 0.2s;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { background: #FAFAF5; }

.faq__toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #F5F0EB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  position: relative;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: #888;
  border-radius: 2px;
}

.faq__toggle::before {
  width: 12px; height: 2px;
}

.faq__toggle::after {
  width: 2px; height: 12px;
  transition: transform 0.25s;
}

.faq__item[open] .faq__toggle {
  background: #E8F5E9;
}

.faq__item[open] .faq__toggle::after {
  transform: rotate(90deg);
}

.faq__item[open] .faq__toggle::before,
.faq__item[open] .faq__toggle::after {
  background: #43A047;
}

.faq__answer {
  padding: 0 22px 18px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq { padding: 60px 0; }
}

/* ═══════════════════════════════════════════
   Download CTA
   ═══════════════════════════════════════════ */
.download {
  padding: 80px 0;
  background: linear-gradient(135deg, #43A047, #00897B);
  color: #fff;
  border-radius: 40px 40px 0 0;
}

.download__inner {
  text-align: center;
}

.download__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.download__subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
}

.download__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.store-badge {
  transition: transform 0.2s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg { height: 48px; width: auto; }

.download__note {
  font-size: 0.75rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .download { padding: 60px 0; border-radius: 32px 32px 0 0; }
  .download__title { font-size: 1.5rem; }
  .download__badges { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */
.footer {
  padding: 40px 0 0;
  background: #2D3A2E;
  color: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 28px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.footer__logo-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.footer__desc {
  font-size: 0.8rem;
  color: #9CAA9D;
  line-height: 1.7;
}

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

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #9CAA9D;
  margin-bottom: 2px;
}

.footer__col a {
  font-size: 0.85rem;
  color: #C8D8C9;
  transition: color 0.2s;
}

.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid #3E4B3F;
  padding: 16px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: #6B7B6C;
}

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; gap: 28px; }
  .footer__links { gap: 32px; }
}

/* ═══════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
