/* ============================================
   あっぷっぷ LP スタイルシート
   ============================================ */

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

:root {
  --red: #E8344E;
  --red-dark: #C4293F;
  --red-light: #FDEAEC;
  --green: #5CB85C;
  --green-dark: #469446;
  --green-light: #EBF7EB;
  --orange: #F0873A;
  --orange-light: #FEF3EB;
  --yellow: #F8CC45;
  --yellow-light: #FFFBEA;
  --cream: #FFF8EF;
  --cream-dark: #FFF0D6;
  --brown: #3D2C1E;
  --brown-mid: #7A5C42;
  --text: #3D2C1E;
  --text-mid: #6B4F3A;
  --text-light: #9B7B5A;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(61, 44, 30, 0.10);
  --shadow-strong: 0 8px 32px rgba(61, 44, 30, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.3s ease;
  --font: 'Noto Sans JP', sans-serif;
  --hero-bg-top: #FFFDF1;
  --hero-bg: #FFFEF2;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #c8283e 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(232, 52, 78, 0.40);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 52, 78, 0.50);
  background: linear-gradient(135deg, #f0415c 0%, var(--red) 100%);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  border: 2.5px solid var(--green);
  box-shadow: 0 4px 14px rgba(92, 184, 92, 0.20);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--green-light);
  box-shadow: 0 8px 22px rgba(92, 184, 92, 0.30);
}

/* ---- Sections Common ---- */
.section-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 80px 0;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  text-align: center;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  text-align: center;
  color: var(--brown);
  margin-bottom: 14px;
  line-height: 1.35;
}
.section-desc {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 48px;
}
.section-desc strong { color: var(--red); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 210, 160, 0.40);
  box-shadow: 0 2px 16px rgba(232, 100, 60, 0.07);
}
.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.header-logo-svg {
  height: 44px;
  width: auto;
  display: block;
}
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red) 0%, #c8283e 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(232, 52, 78, 0.35);
  transition: all var(--transition);
}
.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(232, 52, 78, 0.45);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--hero-bg-top) 0%, var(--hero-bg) 44%, var(--hero-bg) 100%);
  padding: 0;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Decorations */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-star {
  position: absolute;
  font-size: 1.3rem;
  color: var(--yellow);
  animation: twinkle 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(248,204,69,0.6));
}
.star-1 { top: 12%; left: 5%; animation-delay: 0s; font-size: 1.4rem; }
.star-2 { top: 28%; left: 12%; animation-delay: 0.5s; font-size: 0.9rem; color: var(--orange); }
.star-3 { top: 6%; left: 35%; animation-delay: 1s; font-size: 1.1rem; color: #FFD700; }
.star-4 { top: 15%; right: 25%; animation-delay: 1.5s; font-size: 1.2rem; }
.star-5 { top: 38%; right: 6%; animation-delay: 0.8s; font-size: 1rem; color: var(--orange); }
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.deco-puzzle {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.25;
  animation: float 5s ease-in-out infinite;
}
.puzzle-1 { top: 10%; right: 5%; animation-delay: 0s; }
.puzzle-2 { top: 40%; left: 3%; animation-delay: 2s; font-size: 2rem; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.circle-1 { width: 260px; height: 260px; background: radial-gradient(circle, #FFE8B0, #FFCC70); top: -100px; left: -80px; opacity: 0.35; }
.circle-2 { width: 160px; height: 160px; background: radial-gradient(circle, #C8F0C8, #90DC90); bottom: 60px; left: 18%; opacity: 0.28; }
.circle-3 { width: 120px; height: 120px; background: radial-gradient(circle, #FFB8C8, #FF90A8); top: 11%; right: 8%; opacity: 0.25; }
.deco-abacus { position: absolute; font-size: 4rem; top: 6%; left: 2%; opacity: 0.22; animation: float 6s ease-in-out infinite; }
.star-6 { bottom: 20%; left: 8%; animation-delay: 1.2s; font-size: 0.85rem; color: #FF80AB; }
.star-7 { bottom: 30%; right: 12%; animation-delay: 0.3s; font-size: 1rem; color: #69F0AE; }

/* Colorful bubbles */
.deco-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  animation: float 7s ease-in-out infinite;
}
.bubble-1 {
  width: 60px; height: 60px;
  background: radial-gradient(circle at 35% 35%, #FFB3C6, #FF4081);
  top: 55%; left: 5%;
  animation-delay: 1s;
}
.bubble-2 {
  width: 44px; height: 44px;
  background: radial-gradient(circle at 35% 35%, #B9F6CA, #00C853);
  top: 65%; right: 22%;
  animation-delay: 2.5s;
}
.bubble-3 {
  width: 36px; height: 36px;
  background: radial-gradient(circle at 35% 35%, #80D8FF, #0091EA);
  top: 20%; left: 48%;
  animation-delay: 0.7s;
}
.bubble-4 {
  width: 50px; height: 50px;
  background: radial-gradient(circle at 35% 35%, #FFE57F, #FFD600);
  bottom: 18%; right: 5%;
  animation-delay: 1.8s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 48px;
  min-height: 740px;
  position: relative;
  z-index: 1;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(400px, 1fr);
  align-items: center;
  column-gap: 26px;
}

/* Hero Logo Center */
.hero-logo-center {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  grid-column: 1;
}
.hero-logo-img {
  height: 118px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
.hero-logo-svg {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.08));
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFF0C0, #FFE080);
  border: 2.5px solid #F8CC45;
  color: #7A5500;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 3px 12px rgba(248, 204, 69, 0.35);
  justify-self: center;
  grid-column: 1;
}
.badge-icon { font-size: 1rem; }

/* Hero Title */
.hero-title {
  font-size: clamp(2.45rem, 5vw, 4.1rem);
  font-weight: 900;
  line-height: 1.24;
  color: #2D1A0E;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  grid-column: 1;
}
.em-red {
  color: var(--red);
  font-style: normal;
  font-size: 1.18em;
  text-shadow: 0 2px 8px rgba(232,52,78,0.20);
}
.em-orange {
  color: #E06800;
  font-style: normal;
  text-shadow: 0 1px 4px rgba(224,104,0,0.15);
}
.em-calc {
  color: #84A23E;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 1;
}
.hero-title .hero-subtitle {
  margin-top: 14px;
  margin-bottom: 4px;
  text-shadow: none;
}
.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Hero Desc */
.hero-desc {
  font-size: 1rem;
  color: #6B4F3A;
  margin: 0 auto 26px;
  line-height: 1.85;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border-left: 0;
  max-width: 620px;
  grid-column: 1;
}

/* Price Box */
.hero-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 18px 30px 20px;
  box-shadow: 0 6px 28px rgba(232,52,78,0.10), 0 1px 4px rgba(0,0,0,0.06);
  margin: 0 auto 26px;
  border: 2.5px solid rgba(255,220,150,0.9);
  backdrop-filter: blur(8px);
  max-width: 730px;
  grid-column: 1;
}
/* ヒーロー：キャンペーンタグ */
.campaign-tag {
  width: 100%;
  text-align: center;
  display: block;
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 0;
  box-shadow: 0 2px 6px rgba(232,52,78,0.25);
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.03); }
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
}
.price-num {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-en {
  font-size: 1.2rem;
  font-weight: 700;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: 100%;
}
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFF3E0, #FFE0A3);
  border: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown-mid);
  line-height: 1.4;
  white-space: nowrap;
}
.badge-gift { font-size: 1.2rem; }

/* Hero Buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  grid-column: 1;
}
.hero-btns .btn-primary {
  font-size: 1.12rem;
  padding: 18px 42px;
}
.hero-btns .btn-secondary {
  font-size: 1.03rem;
  padding: 17px 34px;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: auto;
  bottom: auto;
  min-height: 0;
  width: 100%;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 7;
}
.hero-image::before {
  display: none;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-img-wrapper {
  position: relative;
  width: min(620px, 100%);
  max-width: none;
  margin-right: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(61, 44, 30, 0.13);
  animation: none;
  z-index: 1;
  aspect-ratio: 4 / 3;
}
.hero-img-wrapper::before {
  display: none;
}
.hero-girl-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.02) saturate(1.04);
  mix-blend-mode: normal;
}
.hero-image-logo {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  width: clamp(192px, 44%, 296px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(61, 44, 30, 0.18));
  pointer-events: none;
}
.hero-illust {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(232, 52, 78, 0.12));
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
  border-top: 3px solid #FFE8C8;
  padding: 36px 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -4px 20px rgba(255,200,120,0.10);
}
.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  padding: 0 16px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stat-item:nth-child(1) .stat-icon { background: #FEF3EB; color: var(--orange); }
.stat-item:nth-child(3) .stat-icon { background: #EBF7EB; color: var(--green); }
.stat-item:nth-child(5) .stat-icon { background: #FFFBEA; color: var(--yellow); }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-plus { font-size: 1.1rem; font-weight: 700; }
.stat-label { font-size: 0.8rem; font-weight: 700; color: var(--text-mid); line-height: 1.4; }
.stat-note { font-size: 0.65rem; color: var(--text-light); }
.stat-divider { width: 1px; height: 60px; background: var(--cream-dark); flex-shrink: 0; }

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: var(--white);
}
.about-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: linear-gradient(135deg, #FFF8EF, #FFF0E6);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
}
.about-avatar {
  flex-shrink: 0;
}
.avatar-circle {
  width: 180px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  border: 4px solid var(--orange);
  box-shadow: 0 4px 16px rgba(240, 135, 58, 0.25);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-name h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 4px;
}
.about-kana {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
}
.about-title-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 18px;
}
.about-career {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.about-career li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-career li i {
  color: var(--green);
  font-size: 0.85rem;
  justify-self: start;
}
.about-message {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border-left: 4px solid var(--red);
}
.message-title {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.about-message p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}
.about-message p:last-child { margin-bottom: 0; }
.about-message strong { color: var(--brown); }

/* ============================================
   EFFECT
   ============================================ */
.effect-section {
  background: linear-gradient(160deg, var(--cream) 0%, #FFF0E6 100%);
}
.effect-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.effect-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.effect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.effect-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
}
.effect-red { background: var(--red-light); }
.effect-green { background: var(--green-light); }
.effect-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 12px;
}
.effect-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.effect-desc strong { color: var(--brown); }
.effect-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.effect-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}
.star-bullet { font-size: 0.9rem; }
.golden-age-banner {
  background: linear-gradient(135deg, #FFF3C4, #FFDEA0);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 16px rgba(248, 204, 69, 0.25);
}
.golden-age-icon { font-size: 3rem; flex-shrink: 0; }
.golden-age-text h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 6px;
}
.golden-age-text p { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.7; }

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: linear-gradient(160deg, #f8fff8 0%, var(--white) 60%, #fffaf4 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: linear-gradient(160deg, #FFF8EF, var(--cream));
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 2px solid var(--cream-dark);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); border-color: var(--orange); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
.feature-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 10px;
}
.feature-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.cmp-wrap {
  max-width: 820px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(92, 184, 92, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(61,44,30,0.10);
  overflow: hidden;
}
.cmp-grid {
  display: grid;
  grid-template-columns: 1.25fr 2fr 2.15fr;
  align-items: stretch;
}
.cmp-head-row {
  align-items: stretch;
  background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
  border-bottom: 1px solid rgba(61,44,30,0.08);
}
.cmp-head-row .cmp-label-cell {
  background: transparent;
  border-bottom: none;
}
.cmp-general-head {
  background: transparent;
  border-left: 1px solid rgba(61,44,30,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  margin: 0;
}
.cmp-appuppu-head {
  background: linear-gradient(180deg, #f8fff8 0%, #ffffff 100%);
  border-left: 1px solid rgba(92,184,92,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 18px;
  position: relative;
  margin-top: 0;
}
.cmp-appuppu-head::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--red), var(--orange));
}
.cmp-head-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.cmp-head-title {
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  color: #7a6a5b;
  margin: 0;
  letter-spacing: 0.01em;
}
.cmp-head-title--appuppu {
  color: var(--brown);
  font-size: 0.9rem;
  text-shadow: none;
}
.cmp-data-row {
  min-height: 68px;
  border-bottom: 1px solid rgba(61,44,30,0.07);
}
.cmp-data-row--last {
  border-bottom: none;
}
.cmp-label-cell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 18px 16px 16px;
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.5;
  text-align: right;
  background: #fffaf2;
}
.cmp-general-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
  background: #f7f7f5;
  margin-right: 0;
  text-align: center;
  border-left: 1px solid rgba(61,44,30,0.08);
  border-top: none;
}
.cmp-data-row--last .cmp-general-cell {
  border-radius: 0;
}
.cmp-gen-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #8a8178;
  line-height: 1.65;
}
.cmp-gen-text small {
  font-size: 0.75rem;
  color: #a69d93;
  display: block;
  margin-top: 2px;
}
.cmp-appuppu-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: #fbfffb;
  text-align: center;
  border-left: 1px solid rgba(92,184,92,0.22);
  border-top: none;
  position: relative;
}
.cmp-data-row--last .cmp-appuppu-cell {
  border-radius: 0;
}
.cmp-app-text {
  font-size: 1rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: none;
}
.cmp-body .cmp-data-row:first-child .cmp-general-cell,
.cmp-body .cmp-data-row:first-child .cmp-appuppu-cell {
  border-top: none;
}
.cmp-cross {
  font-size: 1.5rem;
  font-weight: 900;
  color: #b7aea5;
  line-height: 1;
  display: inline-block;
}
.cmp-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(92,184,92,0.24);
  text-shadow: none;
}
.cmp-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 40px auto 0;
}
.cmp-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 3px 16px rgba(61,44,30,0.08);
  border: 2px solid var(--green-light);
  transition: all var(--transition);
}
.cmp-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(92,184,92,0.22);
  border-color: var(--green);
}
.cmp-point-icon {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.cmp-point-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cmp-point-body strong {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--brown);
  display: block;
  line-height: 1.4;
}
.cmp-point-body span {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .cmp-wrap { border-radius: 14px; margin-top: 36px; }
  .cmp-grid { grid-template-columns: 1.25fr 1.75fr 1.95fr; }
  .cmp-label-cell { font-size: 0.72rem; padding: 12px 9px; }
  .cmp-general-cell, .cmp-appuppu-cell { padding: 12px 8px; }
  .cmp-gen-text  { font-size: 0.75rem; }
  .cmp-app-text  { font-size: 0.85rem; }
  .cmp-head-title { font-size: 0.78rem; }
  .cmp-head-logo  { height: 32px; padding: 0; }
  .cmp-general-head, .cmp-appuppu-head { padding: 16px 8px; }
  .cmp-circle { width: 30px; height: 30px; font-size: 1.25rem; }
  .cmp-cross  { font-size: 1.2rem; }
  .cmp-points { grid-template-columns: 1fr; max-width: 360px; }
}

/* ============================================
   OUTCOME
   ============================================ */
.outcome-section {
  background: linear-gradient(160deg, #fffdf5 0%, #f6fff6 60%, #fff8ef 100%);
}
.outcome-pre-title {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.outcome-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--brown);
  text-align: center;
  margin-bottom: 52px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.02em;
}
.outcome-title::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 6px;
  width: 100%;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.outcome-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(240,135,58,0.18);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(61,44,30,0.08);
  transition: transform 0.3s ease;
}
.outcome-card:hover { transform: translateY(-6px); }
.phase-cloud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 0;
  min-width: 0;
  min-height: 0;
  padding: 8px 18px;
  text-align: center;
  background: #fff7e8;
  border: 1.5px solid rgba(240,135,58,0.28);
  border-radius: 999px;
  box-shadow: none;
  filter: none;
}
.phase-desc {
  font-size: 0.82rem;
  color: var(--brown-mid);
  line-height: 1.75;
  text-align: center;
  min-height: 58px;
  margin-bottom: 0;
  padding: 0 4px;
}
.phase-commit {
  width: 100%;
  background: linear-gradient(160deg, #5cb85c 0%, #3d9e3d 100%);
  border-radius: 14px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(61,158,61,0.22);
  margin-top: auto;
  min-height: 138px;
  justify-content: center;
}
.commit-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  line-height: 1;
}
.commit-value {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.14);
}
.phase-year {
  width: 100%;
  border: 2.5px solid var(--orange);
  border-radius: 12px;
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--orange);
  text-align: center;
  background: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(240,135,58,0.12);
  margin-bottom: 0;
}
.outcome-card::after {
  display: none;
}
@media (max-width: 680px) {
  .outcome-grid { grid-template-columns: 1fr; max-width: 360px; }
  .outcome-card::after { display: none; }
  .outcome-title { font-size: 1.25rem; }
  .phase-cloud { font-size: 0.95rem; padding: 8px 18px; }
  .commit-value { font-size: 0.95rem; }
  .phase-desc { min-height: unset; }
}

/* ============================================
   FLOW
   ============================================ */
.flow-section {
  background: linear-gradient(160deg, #EBF7EB 0%, var(--cream) 100%);
}
.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 2px solid var(--green-light);
  transition: all var(--transition);
}
.flow-step:hover { transform: translateX(6px); border-color: var(--green); box-shadow: var(--shadow-strong); }
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.35);
}
.step-num { font-size: 1.3rem; font-weight: 900; color: var(--white); }
.step-content { flex: 1; }
.step-icon { font-size: 1.8rem; margin-bottom: 8px; }
.step-title { font-size: 1.05rem; font-weight: 900; color: var(--brown); margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.flow-arrow {
  color: var(--green);
  font-size: 1.3rem;
  padding: 8px 0;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================
   SUPPORT
   ============================================ */
.support-section {
  background: linear-gradient(160deg, #f0faf0 0%, var(--white) 60%, #fff8ef 100%);
}
.support-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.support-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.support-card--green  { border: 2px solid var(--green); }
.support-card--orange { border: 2px solid var(--orange); }
.support-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.support-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
}
.support-card-icon--green  { background: var(--green); }
.support-card-icon--orange { background: var(--orange); }
.support-card-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.app-illust-wrap,
.cycle-illust-wrap {
  width: 100%;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}
.app-illust-wrap {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f5ff 100%);
  height: 270px;
  padding: 8px;
}
.app-generated-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.app-illust-svg {
  width: 100%;
  max-width: 300px;
  height: 100%;
  object-fit: contain;
  display: none;
  animation: float-phone 4s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.support-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.support-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-icon {
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.check-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.check-body strong {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--brown);
  display: block;
}
.check-body span {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.cycle-illust-wrap {
  background: linear-gradient(135deg, #fff8ef 0%, #fff3e0 100%);
  height: 270px;
  padding: 8px;
}
.cycle-generated-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cycle-illust-svg {
  width: 100%;
  max-width: 420px;
  height: 100%;
  object-fit: contain;
  display: none;
  animation: float-cycle 5s ease-in-out infinite;
}
@keyframes float-cycle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.cycle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  justify-content: space-between;
}
.cycle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fdf6ed;
  border-radius: 10px;
  padding: 10px 14px;
}
.cycle-item--highlight { background: #fff0f2; }
.cycle-time {
  font-size: 1.0rem;
  font-weight: 900;
  min-width: 62px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.cycle-time--orange { color: var(--orange); }
.cycle-time--red    { color: var(--red); }
.cycle-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.5;
}
.cycle-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange);
  font-size: 0.85rem;
  padding: 2px 0;
  opacity: 0.6;
}
@media (max-width: 760px) {
  .support-cards { grid-template-columns: 1fr; max-width: 480px; }
  .app-illust-wrap, .cycle-illust-wrap { height: 180px; }
  .app-illust-wrap { height: 220px; }
  .cycle-illust-wrap { height: 220px; }
  .support-card-title { font-size: 0.95rem; }
  .cycle-time { min-width: 52px; font-size: 0.9rem; }
  .cycle-text { font-size: 0.8rem; }
}

/* ============================================
   PLAN
   ============================================ */
.plan-section { background: var(--white); }
.plan-card-wrap {
  display: flex;
  justify-content: center;
}
.plan-card {
  background: linear-gradient(160deg, #FFF8EF, var(--cream));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 3px solid var(--orange);
  position: relative;
  width: 100%;
  max-width: 560px;
}
.plan-badge-top {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  text-align: center;
}
.plan-header {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 30px 32px;
  text-align: center;
}
.plan-name {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 10px;
}
.plan-campaign-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  animation: pulse-badge 2.5s ease-in-out infinite;
}
.plan-price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.plan-price-label { font-size: 1rem; font-weight: 700; }
.plan-price { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.plan-price-unit { font-size: 1.3rem; font-weight: 700; }
.plan-price-note { font-size: 0.78rem; opacity: 0.75; margin-top: 4px; }

/* 料金補足ノート（税抜・入会金） */
.plan-fee-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff7ed;
  border-top: 1px solid #f7d7c7;
  padding: 14px 32px;
}
.fee-note-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #3D2C1E;
  line-height: 1.5;
}
.fee-note-row i { font-size: 0.82rem; flex-shrink: 0; color: var(--red); opacity: 0.9; }
.fee-note-row strong { color: #2a1c12; }
.fee-note-row--entry { color: #5a321d; }
.fee-note-row--entry i { color: var(--orange); }
.fee-note-row--entry strong { color: #3D2C1E; }

/* ヒーロー：税・入会金小テキスト */
.hero-price-tax {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 2px;
  text-align: center;
  width: 100%;
}

/* CTAセクション：入会金補足 */
.cta-fee-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-align: center;
}

.plan-includes { padding: 26px 32px; }
.plan-includes-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}
.plan-list li i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }
.btn-plan {
  display: flex;
  justify-content: center;
  margin: 0 32px 28px;
  font-size: 1rem;
}

/* ============================================
   STEPS
   ============================================ */
.steps-section { background: var(--cream); }
.steps-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.steps-flow::-webkit-scrollbar { display: none; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ccc;
  flex-shrink: 0;
  padding: 0 2px;
  margin-top: 28px;
}
.step-card {
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  background: var(--white);
  border: 1.5px solid #e8e0d8;
  border-radius: 16px;
  padding: 0 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 14px rgba(61,44,30,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 20px;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(61,44,30,0.13);
}
.step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.step-badge--1 { background: var(--green); }
.step-badge--2 { background: var(--orange); }
.step-badge--3 { background: var(--orange); }
.step-badge--4 { background: var(--orange); }
.step-badge--5 { background: var(--red); }
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 28px 0 14px;
  flex-shrink: 0;
}
.step-icon-wrap--1 { background: #ebf7eb; color: var(--green); }
.step-icon-wrap--2 { background: #ebf7eb; color: var(--green); }
.step-icon-wrap--3 { background: #fef3eb; color: var(--orange); }
.step-icon-wrap--4 { background: #fef3eb; color: var(--orange); }
.step-icon-wrap--5 { background: #fdeaec; color: var(--red); }
.step-name {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.45;
  margin-bottom: 10px;
}
.step-body {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.7;
  text-align: left;
}
@media (max-width: 900px) {
  .steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 12px; overflow-x: visible; }
  .step-arrow { display: none; }
  .step-card  { max-width: 100%; }
}
@media (max-width: 560px) {
  .steps-flow { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   VOICE
   ============================================ */
.voice-section {
  background: linear-gradient(160deg, #FFF8EF, var(--cream));
}
.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
  transition: all var(--transition);
}
.voice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.voice-stars { font-size: 1rem; margin-bottom: 14px; }
.voice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
}
.voice-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 2rem;
  color: var(--orange);
  font-family: serif;
  line-height: 1;
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1.5px solid var(--cream-dark);
  padding-top: 16px;
}
.author-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  flex-shrink: 0;
}
.author-name { display: block; font-size: 0.85rem; font-weight: 700; color: var(--brown); }
.author-note { display: block; font-size: 0.75rem; color: var(--text-light); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--white); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--orange); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #FFF8EF, var(--cream));
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  transition: background var(--transition);
}
.faq-question:hover { background: linear-gradient(135deg, #FFF0D6, var(--cream-dark)); }
.faq-q-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
}
.faq-question-text { flex: 1; }
.faq-arrow {
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  background: var(--white);
  border-top: 1.5px solid var(--cream-dark);
}
.faq-answer.open { display: flex; }
.faq-a-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; flex: 1; }

/* ============================================
   CTA
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #C4293F 50%, #A02030 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-deco {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 40px;
  pointer-events: none;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.cta-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.3));
}
.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cta-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.8;
}
.cta-desc strong { color: var(--yellow); }
.cta-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.cta-campaign-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 14px 30px;
}
.cta-price-label { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.cta-price-num { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.cta-price-unit { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.cta-price-note { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.btn-cta-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.15rem;
  padding: 20px 48px;
  margin: 0 auto 28px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.32);
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-contact-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-contact-link:hover {
  color: var(--yellow);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brown);
  padding: 48px 24px 32px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.footer-inner { max-width: 640px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-logo-svg {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
}
.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-company {
  font-size: 0.82rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}
.floating-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.btn-floating {
  font-size: 0.95rem;
  padding: 14px 28px;
  box-shadow: 0 8px 30px rgba(232, 52, 78, 0.55);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    min-height: auto;
    text-align: center;
    padding: 40px 24px 34px;
  }
  .hero-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-logo-center { align-items: center; }
  .hero-badge { justify-content: center; }
  .hero-subtitle { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-image { display: flex; width: 100%; margin: 4px 0 22px; }
  .hero-img-wrapper { width: min(620px, 100%); border-radius: 22px; }
  .hero-price-box { justify-content: center; }
  .stats-inner { flex-direction: column; gap: 20px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item {
    width: min(280px, 100%);
    max-width: 280px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    justify-content: initial;
    justify-items: start;
    gap: 14px;
    padding: 0;
  }
  .stat-icon { justify-self: center; }
  .about-card { flex-direction: column; align-items: center; text-align: center; }
  .about-career {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .about-career li { justify-content: start; text-align: left; }
  .about-message { text-align: left; }
  .effect-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .voice-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding-top: 64px; }
  .hero-inner { padding: 30px 18px 30px; gap: 22px; }
  .hero-logo-img { height: 92px; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-trust { flex-direction: column; gap: 10px; }
  .golden-age-banner { flex-direction: column; text-align: center; }
  .btn-primary, .btn-secondary { font-size: 0.9rem; padding: 14px 22px; }
  .btn-header-cta { font-size: 0.78rem; padding: 9px 16px; }
  .hero-title { font-size: 1.7rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-desc { font-size: 0.88rem; line-height: 1.8; }
  .hero-price-box { flex-direction: column; align-items: flex-start; }
  .price-row { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .price-main { justify-content: center; }
  .price-label { white-space: nowrap; }
  .hero-img-wrapper { border-radius: 18px; aspect-ratio: 4 / 3; }
  .hero-image-logo { right: 12px; bottom: 10px; width: 184px; }
  .floating-cta { display: none; }
}

/* ---- Header scrolled ---- */
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(61, 44, 30, 0.14);
  background: rgba(255, 248, 239, 0.98);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
