:root {
  --color-bg: #FDF8F3;
  --color-bg-soft: #FBF0E4;
  --color-accent: #E8A87C;
  --color-accent-dark: #D68C5C;
  --color-text: #4A403A;
  --color-text-soft: #7A6E64;
  --color-white: #FFFFFF;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 64px 24px;
}

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

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(253, 248, 243, 0.55) 0%, rgba(253, 248, 243, 0.35) 60%, var(--color-bg) 100%),
    url("../images/hero.png") center / cover no-repeat;
  text-align: center;
  padding: 96px 24px 72px;
}

.hero .eyebrow {
  font-size: 0.85rem;
  color: var(--color-accent-dark);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.hero p.lead {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin: 0 0 40px;
}

/* Sections */
h2 {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 40px;
}

.section-alt {
  background: var(--color-white);
}

/* Who it's for */
.for-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.for-list li {
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(74, 64, 58, 0.06);
}

/* About section image */
.about-image {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(74, 64, 58, 0.12);
  margin: 0 auto 32px;
  max-width: 520px;
  width: 100%;
}

/* Flow steps */
.flow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.flow-steps li {
  counter-increment: step;
  position: relative;
  padding: 8px 0 24px 52px;
  border-left: 2px solid var(--color-accent);
  margin-left: 20px;
}

.flow-steps li:last-child {
  border-left: 2px solid transparent;
  padding-bottom: 0;
}

.flow-steps li::before {
  content: counter(step);
  position: absolute;
  left: -21px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.flow-steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.flow-steps p {
  margin: 0;
  color: var(--color-text-soft);
}

/* Price card */
.price-card {
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.price-card .price-original {
  text-decoration: line-through;
  color: var(--color-text-soft);
  margin: 16px 0 4px;
}

.price-card .price-label {
  color: var(--color-accent-dark);
  font-weight: bold;
  margin: 0;
}

.price-card .price {
  font-size: 2.2rem;
  color: var(--color-accent-dark);
  margin: 8px 0;
}

.price-card .price small {
  font-size: 1rem;
  color: var(--color-text-soft);
}

.price-card ul {
  text-align: left;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--color-text-soft);
}

/* CTA button */
.cta-button {
  display: inline-block;
  background: var(--color-accent-dark);
  color: var(--color-white) !important;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: bold;
  margin-top: 16px;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.85;
}

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

.cta-note {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-top: 16px;
}

/* Profile */
.profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.profile h3 {
  margin: 0;
}

.profile p {
  color: var(--color-text-soft);
  margin: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--color-text-soft);
  font-size: 0.8rem;
}

@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.4rem;
  }
}
