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

* { box-sizing: border-box; margin: 0; padding: 0; }

.lp-root {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

/* ── HERO ── */
.hero {
  background: #fdfcfc;
  height: 655px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  left: calc(540px + max(0px, (100% - 1440px) / 2));
  top: 21px;
  width: 900px;
  height: 637px;
  object-fit: cover;
}
.hero-inner {
  position: absolute;
  left: calc(167px + max(0px, (100% - 1440px) / 2));
  top: 96px;
  width: 1180px;
}
.hero-heading {
  margin-bottom: 24px;
}
.hero-heading h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: 0.3652px;
}
.hero-heading h1 .green { color: #008862; }

.hero-lead {
  font-size: 20px;
  line-height: 1.65;
  color: #444;
  letter-spacing: -0.2344px;
  margin-bottom: 24px;
}
.hero-features {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}
.hero-check-circle {
  width: 16px; height: 16px;
  background: #0b8662;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-check-circle svg { width: 10px; height: 10px; }
.hero-divider { color: #ccc; font-size: 16px; }

.hero-cta-btn {
  position: absolute;
  left: calc(178px + max(0px, (100% - 1440px) / 2));
  top: 437px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #008862;
  color: #fff;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 12px 25px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

/* ── PROBLEM SOLUTION ── */
.section-problem {
  background: #fdfbf4;
  padding: 72px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.problem-header {
  text-align: center;
  margin-bottom: 48px;
}
.problem-header .label {
  font-size: 24px;
  color: #444;
  margin-bottom: 12px;
}
.problem-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.problem-header h2 .green { color: #0b8662; }
.problem-header p {
  font-size: 20px;
  color: #666;
}
.problem-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 41px;
  flex-wrap: wrap;
}
.problem-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  width: 268px;
  min-height: 340px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 21px 24px;
}
.problem-card-number {
  position: absolute;
  top: 19px;
  left: 21px;
  width: 36px; height: 36px;
  background: #0b8662;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
}
.problem-card-icon {
  width: 64px; height: 64px;
  background: #f0f0f0;
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 20px;
}
.problem-card-icon svg { width: 28px; height: 28px; }
.problem-card-tag {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #0b8662;
  line-height: 1.4;
  margin-top: 16px;
}
.problem-card-title {
  width: 100%;
  font-size: 16px;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.45;
  letter-spacing: -0.3125px;
  margin-top: 8px;
}
.problem-card-divider {
  width: 100%;
  height: 1px;
  background: #eee;
  margin-top: auto;
}
.problem-card-desc {
  width: 100%;
  font-size: 16px;
  color: #666;
  line-height: 1.375;
  text-align: center;
  margin-top: 13px;
}

.problem-summary {
  background: #e4efeb;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.problem-summary-icon {
  width: 56px; height: 56px;
  background: #0b8662;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.problem-summary-icon svg { width: 26px; height: 26px; }
.problem-summary-text h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.problem-summary-text h3 .green { color: #0b8662; }
.problem-summary-text p {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.problem-summary-features {
  display: flex;
  gap: 18px;
  align-items: center;
}
.problem-summary-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: #0b8662;
}
.summary-check { width: 14px; height: 14px; flex-shrink: 0; }

/* ════════════════════════════════════════
   NEW TOP DESIGN — Hero2 + Problem Cards 2
   ════════════════════════════════════════ */
.hero2 {
  background: #fdfcfc;
  padding: 96px 0 40px;
}
.hero2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero2-text { flex: 1 1 0; max-width: 640px; }
.hero2-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
  letter-spacing: 0.37px;
  margin-bottom: 24px;
}
.hero2-heading .green { color: #0b8662; }
.hero2-line2 { white-space: nowrap; }
.hero2-lead {
  font-size: 20px;
  color: #444;
  line-height: 1.65;
  letter-spacing: -0.23px;
  margin-bottom: 28px;
}
.hero2-features {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero2-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  letter-spacing: -0.15px;
  white-space: nowrap;
}
.hero2-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #0b8662;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero2-check svg { width: 10px; height: 10px; }
.hero2-divider { color: #ccc; font-size: 16px; }
.hero2-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #008862;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.3px;
  padding: 12px 25px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
}
.hero2-visual {
  flex: 0 0 auto;
  width: 462px;
  height: 462px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero2-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 135%;
  height: 135%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(11, 134, 98, 0.18) 0%,
    rgba(11, 134, 98, 0.10) 35%,
    rgba(11, 134, 98, 0.04) 55%,
    rgba(11, 134, 98, 0) 72%);
  z-index: 0;
  pointer-events: none;
}
.hero2-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Problem cards (new) */
.section-problem2 {
  background: #fdfcfc;
  padding: 8px 0 72px;
}
.problem2-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.problem2-label {
  font-size: 20px;
  font-weight: 500;
  color: #6c6c6c;
  margin-bottom: 36px;
}
.problem2-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.problem2-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  width: 248px;
  min-height: 241px;
  padding: 18px 21px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.problem2-card-num {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 36px;
  height: 36px;
  background: #008862;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 12.4px;
  letter-spacing: 0.25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem2-card-icon {
  width: 66px;
  height: 66px;
  background: #f5f7f7;
  border-radius: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.problem2-card-title {
  font-weight: 700;
  font-size: 16.5px;
  color: #008862;
  line-height: 1.4;
  text-align: center;
}
.problem2-card-desc {
  font-size: 12.4px;
  color: #666;
  line-height: 1.7;
  text-align: center;
}
.problem2-card-cause {
  margin-top: auto;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  font-size: 10.8px;
  color: #444;
  text-align: center;
}
.problem2-summary {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 2;
}
.problem2-summary .green-bold { color: #0b8662; font-weight: 700; }

/* ── PROCESS ── */
.section-process {
  background: #f7f5ef;
  padding: 64px 0 80px;
}
.process-header {
  text-align: center;
  margin-bottom: 48px;
}
.process-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.process-header h2 .green { color: #0b8662; }
.process-header p {
  font-size: 20px;
  color: #666;
}
.process-cards {
  display: flex;
  gap: 27px;
  justify-content: center;
  margin-bottom: 48px;
}
.process-card {
  background: #fff;
  border: 1px solid #0e8f6f;
  border-radius: 20px;
  width: 364px;
  padding: 32px;
  box-shadow: 0 4px 3px rgba(0,0,0,0.1), 0 2px 2px rgba(0,0,0,0.1);
  position: relative;
}
.process-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0e8f6f;
  margin-bottom: 16px;
  line-height: 1.625;
}
.process-card h3 .dark { color: #2c2c2c; }
/* new: title with centered label, left-aligned subtitle */
.process-card-title-center {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 16px;
}
.process-card-title-center .proc-label {
  color: #0e8f6f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.process-card-title-center .proc-sub {
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  white-space: nowrap;
}
.process-card p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.625;
  letter-spacing: -0.3125px;
  margin-bottom: 20px;
  min-height: 130px;
}
.process-card-note {
  background: #f5f5f5;
  padding: 12px;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.625;
  letter-spacing: -0.1504px;
}
.process-card-img {
  width: 100%;
  margin-top: 16px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-img img {
  max-width: 100%;
  max-height: 168px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.process-summary {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.process-summary h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0b8662;
  margin-bottom: 8px;
}
.process-summary-accent {
  height: 4px;
  background: #d4efde;
  width: 583px;
  margin: 0 auto 16px;
}
.process-summary p {
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1.575;
}

/* ── RESULTS & TESTIMONIALS ── */
.section-results {
  background: #fdfbf4;
  padding: 80px 0;
}
.results-header {
  text-align: center;
  margin-bottom: 60px;
}
.results-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.results-header h2 .green { color: #008862; }
.results-header p {
  font-size: 20px;
  color: #666;
}

.stat-card {
  background: #fff;
  border-radius: 18.67px;
  border: 1.167px solid #f3f4f6;
  box-shadow: 0 1.167px 1.75px rgba(0,0,0,0.1), 0 1.167px 1.167px rgba(0,0,0,0.1);
  display: flex;
  gap: 40px;
  padding: 30px;
  margin-bottom: 52px;
  align-items: center;
}
.stat-left {
  flex: 1;
}
.stat-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.stat-from {
  font-size: 37px;
  font-weight: 700;
  color: #0b8662;
}
.stat-from span { font-size: 30px; font-weight: 700; color: #101828; }
.stat-arrow { font-size: 28px; color: #6a7282; }
.stat-to { font-size: 30px; font-weight: 700; color: #101828; }
.stat-reduction {
  font-size: 56px;
  font-weight: 700;
  color: #0b8662;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-reduction .unit { font-size: 42px; }
.stat-prefix { font-size: 24px; font-weight: 700; color: #0b8662; }
.stat-label { font-size: 16px; color: #6a7282; margin-bottom: 16px; }
.stat-desc { font-size: 16px; color: #232323; line-height: 1.625; }

.comparison-cards {
  display: flex;
  align-items: center;
  gap: 20px;
}
.comp-card {
  background: #fff;
  border: 1px solid #e8e7e7;
  border-radius: 16px;
  width: 300px;
  overflow: hidden;
}
.comp-card.featured { border-color: #0b8662; border-width: 2px; }
.comp-card-header {
  background: #f5f6f7;
  padding: 18px 28px;
  font-size: 20px;
  font-weight: 700;
  color: #444;
}
.comp-card-header.featured-header { background: #0b8662; color: #fff; }
.comp-card-body { padding: 14px 28px 24px; }
.comp-card-label { font-size: 14px; font-weight: 500; color: #888; margin-bottom: 8px; }
.comp-card-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.comp-card-value.green-val { color: #0b8662; }
.comp-card-value svg { width: 20px; height: 20px; }
.comp-card-divider { height: 1px; background: #f0f2f5; margin: 16px 0; }
.comp-card-sub { font-size: 11px; color: #888; }
.comp-card-ai-tag { font-size: 18px; font-weight: 700; color: #0b8662; }
.comp-arrow { font-size: 36px; color: #99a1af; }

.interview-box {
  background: #fff;
  border: 2.131px solid #a7c4bc;
  border-radius: 17px;
  padding: 24px 54px;
  margin-bottom: 52px;
}
.interview-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.interview-source svg { width: 23px; height: 23px; flex-shrink: 0; }
.interview-quote {
  font-size: 21px;
  font-weight: 500;
  color: #0b8662;
  margin-bottom: 12px;
  line-height: 1.5;
}
.interview-body {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
}

.testimonials-wrap {
  background: #e4efeb;
  border-radius: 24px;
  padding: 30px 0 40px;
  position: relative;
}
.testimonials-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 54px;
  margin-bottom: 40px;
  font-size: 20px;
  color: #222;
  font-weight: 500;
}
.testimonials-header svg { width: 23px; height: 23px; }
.testimonials-cards {
  display: flex;
  gap: 38px;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border: 0.891px solid #0b8662;
  border-radius: 17px;
  width: 342px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1.227px 2.454px rgba(0,0,0,0.06);
}
.testimonial-icon {
  width: 69px; height: 69px;
  background: #f5faf8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-icon svg { width: 34px; height: 34px; }
.testimonial-industry {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  text-align: center;
}
.testimonial-quote {
  font-size: 16px;
  color: #222;
  text-align: center;
  line-height: 1.825;
}
.testimonial-quote .accent { color: #0b8662; font-weight: 700; }

/* ── PRICING ── */
.section-pricing {
  background: #e4efeb;
  padding: 63px 0 80px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.pricing-header p { font-size: 16px; color: #666; }
.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid #dde5e2;
  border-radius: 20px;
  width: 349px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  border: 2px solid #0b8662;
  box-shadow: 0 8px 12px rgba(0,136,98,0.12);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b8662;
  color: #fff;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}
.plan-name {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
.plan-name.light-name { color: #055ba7; }
.plan-name.start-name { color: #0b8662; }
.plan-name.build-name { color: #c08e24; }
.plan-sub {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 24px;
}
.plan-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.625;
  margin-bottom: 16px;
  min-height: 68px;
}
.plan-price {
  font-size: 24px;
  line-height: 36px;
  color: #111;
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.plan-price span { font-size: 12px; color: #999; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #111;
  position: relative;
  padding-left: 24px;
}
.plan-feature svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* ── HUMAN SUPPORT ── */
.section-support {
  background: #fdfbf4;
  padding: 72px 0;
}
.support-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}
.support-inner h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b8662;
  margin-bottom: 48px;
  line-height: 1.1;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.support-feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 1px 1.5px rgba(0,0,0,0.1), 0 1px 1px rgba(0,0,0,0.1);
}
.support-feature-icon {
  width: 24px; height: 24px;
  float: left;
  margin-right: 16px;
}
.support-feature-icon svg { width: 24px; height: 24px; }
.support-feature-content { overflow: hidden; }
.support-feature-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a5f4a;
  margin-bottom: 4px;
}
.support-feature-content p { font-size: 16px; color: #6a7a7a; }
.support-note {
  font-size: 16px;
  color: #4a5f5a;
  line-height: 1.5;
  text-align: center;
}

/* ── CTA ── */
.section-cta {
  background: #eff3f0;
  height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}
.cta-inner h2 .green { color: #0b8662; }
.cta-inner p {
  font-size: 24px;
  color: #666;
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #008862;
  color: #fff;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 12px 25px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ── FAQ ── */
.section-faq {
  background: #f9f9f7;
  padding: 97px 114px 80px;
}
.faq-title {
  font-size: 43px;
  font-weight: 700;
  color: #0b8662;
  text-align: center;
  margin-bottom: 58px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 0.866px solid #e0e0e0;
  border-radius: 21px;
  padding: 28px 42px;
  user-select: none;
}
.faq-item:hover { border-color: #bbb; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q p {
  font-size: 26px;
  color: #1a1a1a;
  line-height: 1.5;
  font-weight: 700;
}
.faq-a {
  font-size: 24px;
  color: #666;
  line-height: 1.75;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Accordion toggle (was inline style in React) */
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  font-size: 24px;
  color: #999;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Collapsible answer wrapper (was inline style in React) */
.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer-wrap {
  max-height: 300px;
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE  — original design is 1440px fixed; below that,
   sections become fluid and the absolutely-positioned hero
   reflows into normal flow.
   ============================================================ */

/* Tablet / small desktop: ≤ 1280px */
@media (max-width: 1280px) {
  .problem-cards { flex-wrap: wrap; }
  .process-cards { flex-wrap: wrap; }
  .pricing-cards { flex-wrap: wrap; }
  .testimonials-cards { flex-wrap: wrap; }
  .comparison-cards { flex-wrap: wrap; justify-content: center; }
  .stat-card { flex-direction: column; align-items: stretch; }
  .section-faq { padding: 80px 48px 64px; }
}

/* Hero reflow: ≤ 1024px */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 56px 24px 48px;
  }
  .hero-bg-img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 720px;
    margin: 0 auto 32px;
    display: block;
    left: auto;
    top: auto;
  }
  .hero-inner {
    position: static;
    width: 100%;
    left: auto;
    top: auto;
  }
  .hero-features { flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; }
  .hero-cta-btn {
    position: static;
    left: auto;
    top: auto;
    display: inline-flex;
    margin-top: 32px;
  }

  /* new hero2 stacks: illustration on top, text below */
  .hero2 { padding: 48px 0 32px; }
  .hero2-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    padding: 0 24px;
  }
  .hero2-text { max-width: 100%; }
  .hero2-heading { font-size: 32px; }
  .hero2-lead { font-size: 17px; }
  .hero2-features { justify-content: center; }
  .hero2-visual { width: 320px; height: 320px; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .hero-heading h1 { font-size: 30px; }
  .hero-lead { font-size: 16px; }

  .problem-header h2,
  .process-header h2,
  .pricing-header h2 { font-size: 24px; }
  .results-header h2 { font-size: 26px; }
  .support-inner h2 { font-size: 26px; margin-bottom: 32px; }
  .cta-inner h2 { font-size: 28px; }
  .faq-title { font-size: 30px; margin-bottom: 36px; }

  .problem-header p,
  .process-header p,
  .process-summary p,
  .problem-summary-text p { font-size: 16px; }

  .problem-card { width: 100%; max-width: 360px; }

  /* new hero2 / problem2 mobile */
  .hero2-heading { font-size: 28px; }
  .hero2-line2 { white-space: normal; }
  .hero2-visual { width: 260px; height: 260px; }
  .problem2-cards { flex-direction: column; align-items: center; gap: 20px; }
  .problem2-card { width: 100%; max-width: 360px; }
  .problem2-label { font-size: 17px; }
  .problem2-summary { font-size: 17px; }

  .problem-summary {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .problem-summary-text h3 { font-size: 19px; line-height: 1.5; }
  .problem-summary-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .problem-summary-feature {
    font-size: 15px;
    align-items: center;
    justify-content: center;
  }

  .process-card { width: 100%; max-width: 420px; }
  .process-summary-accent { width: 100%; max-width: 583px; }

  .plan-card { width: 100%; max-width: 380px; }
  .testimonial-card { width: 100%; max-width: 380px; }
  .testimonials-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .comparison-cards {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .comp-card {
    width: 100%;
    max-width: none;
  }
  .comp-card-header { font-size: 18px; padding: 16px 20px; }
  .comp-card-body { padding: 14px 20px 22px; }
  .comp-card-value { font-size: 16px; }
  .comp-card-ai-tag { font-size: 16px; }
  /* reduce the inline left indent on AI-tag rows so long text fits */
  .comp-card-ai-tag[style],
  .comp-card-value.green-val[style],
  .comp-card-sub[style] { padding-left: 12px !important; }
  .comp-arrow { transform: rotate(90deg); align-self: center; }

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

  .interview-box { padding: 24px; }
  .interview-quote { font-size: 18px; }
  .testimonials-header { padding: 0 24px; }
  .testimonials-wrap { padding: 30px 16px 40px; }

  .section-problem,
  .section-process,
  .section-results,
  .section-pricing,
  .section-support { padding: 48px 0; }
  .section-cta { height: auto; padding: 56px 24px; }
  .cta-inner p { font-size: 17px; margin-bottom: 28px; }
  .cta-btn,
  .hero-cta-btn { font-size: 17px; padding: 12px 22px; white-space: nowrap; }
  .section-faq { padding: 56px 20px; }
  .faq-item { padding: 20px 24px; }
  .faq-q p { font-size: 18px; }
  .faq-a { font-size: 16px; }

  .stat-from { font-size: 30px; }
  .stat-reduction { font-size: 44px; }
  .stat-reduction .unit { font-size: 32px; }

  .faq-toggle { width: 32px !important; height: 32px !important; font-size: 20px !important; }
}

/* Extra small phones: ≤ 400px */
@media (max-width: 400px) {
  .hero-heading h1 { font-size: 26px; }
  .hero2-heading { font-size: 25px; }
  .hero2-lead { font-size: 16px; }
  .hero2-feature { font-size: 14px; }
  .hero2-cta { font-size: 17px; padding: 11px 20px; }
  .hero2-visual { width: 230px; height: 230px; }
  .problem2-label { font-size: 16px; }
  .problem2-summary { font-size: 16px; }
  .problem-summary-text h3 { font-size: 17px; }
  .problem-summary-feature { font-size: 14px; }
  .interview-quote { font-size: 16px; }
  .faq-q p { font-size: 16px; }
  .faq-a { font-size: 15px; }
  .faq-title { font-size: 26px; }
  .cta-inner h2 { font-size: 24px; }
  .support-inner h2 { font-size: 23px; }
  .results-header h2 { font-size: 23px; }
  .stat-reduction { font-size: 38px; }
  .stat-reduction .unit { font-size: 28px; }
  .comp-card-value { font-size: 15px; }
  .comp-card-ai-tag { font-size: 15px; }
  .comp-card-header { font-size: 16px; }
  .cta-inner p { font-size: 16px; }
  .cta-btn, .hero-cta-btn { font-size: 16px; padding: 11px 18px; }
  .pricing-header h2 { font-size: 22px; }
  .plan-name { font-size: 26px; }
  .plan-price { font-size: 22px; }
  .support-note { font-size: 15px; }
}
