/* ============================================================
   Ai CMO AIリスキリング研修 LP — style.css
   Design: "Trust & Authority" — ライト基調 + パープル/ブルーアクセント
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── Typography ── */
.font-display {
  font-family: 'Outfit', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-line {
  height: 3px;
  width: 4rem;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, #7c3aed, #3b82f6);
  border-radius: 9999px;
}

/* ── Card ── */
.card-light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.card-light:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* ── CTA Button ── */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.15) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
}

.cta-button--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ── Scroll Fade-in Animation ── */
.section-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Logo Marquee ── */
.logo-marquee-wrap {
  overflow: hidden;
}

.logo-marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

.logo-marquee img {
  height: 2rem;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.logo-marquee img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (min-width: 768px) {
  .logo-marquee img { height: 2.5rem; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

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

.header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Outfit', sans-serif;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.header__nav a:hover {
  color: #1e293b;
}

.header__nav-external {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .header__nav { display: flex; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

@media (min-width: 1920px) {
  .hero {
    min-height: auto;
    height: 900px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.7), #fff);
}

.hero__content {
  position: relative;
  padding: 5rem 0 3rem;
  max-width: 48rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #faf5ff;
  border: 1px solid #f3e8ff;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero__badge-text {
  color: #7e22ce;
  font-weight: 600;
}

.hero__title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

@media (min-width: 640px) { .hero__title { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1920px) { .hero__title { font-size: 4rem; } }

.hero__desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 42rem;
}

@media (min-width: 640px) { .hero__desc { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero__desc { font-size: 1.25rem; } }

.hero__sub {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
}

.hero__secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 1rem;
  transition: background 0.3s;
}

.hero__secondary-btn:hover {
  background: #f8fafc;
}

/* ── Section ── */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section--gray {
  background: #f8fafc;
}

.section--gradient {
  background: linear-gradient(135deg, #faf5ff, #fff, #eff6ff);
}

.section--dark {
  background: linear-gradient(135deg, #0f172a, rgba(88, 28, 135, 0.9), #0f172a);
  color: #fff;
}

.section--dark-curriculum {
  position: relative;
}

.section--dark-curriculum .curriculum-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.section--dark-curriculum .curriculum-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--dark-curriculum .curriculum-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.95));
}

/* ── Section Title ── */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title { margin-bottom: 4rem; }
}

.section-title__sub {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title__main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .section-title__main { font-size: 2.25rem; }
}

.section-title__main--light {
  color: #fff;
}

.section-title__desc {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

@media (min-width: 768px) {
  .section-title__desc { font-size: 1.125rem; }
}

.section-title__desc--light {
  color: #e2e8f0;
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

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

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ── Problem Cards ── */
.problem-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .problem-card { padding: 2rem; }
}

.problem-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.problem-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.problem-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── Approach Cards ── */
.approach-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .approach-card { padding: 2rem; }
}

.approach-card--bad {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  opacity: 0.7;
}

.approach-card--good {
  background: linear-gradient(135deg, #faf5ff, #eff6ff);
  border: 1px solid #e9d5ff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.approach-card__icon {
  margin-bottom: 1rem;
}

.approach-card__icon--bad { color: #94a3b8; }
.approach-card__icon--good { color: #7c3aed; }

.approach-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.approach-card__title--bad { color: #94a3b8; }
.approach-card__title--good { color: #1e293b; }

.approach-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.approach-card__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.approach-card__item--bad { color: #94a3b8; }
.approach-card__item--good { color: #475569; }

.approach-card__x { color: #f87171; font-size: 0.75rem; }
.approach-card__check { color: #10b981; flex-shrink: 0; }

/* ── Game Change Box ── */
.game-change {
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .game-change { padding: 3rem; }
}

.game-change__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .game-change__title { font-size: 1.5rem; }
}

.game-change__desc {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .game-change__desc { font-size: 1rem; }
}

.game-change__note {
  text-align: center;
  color: #94a3b8;
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .game-change__note { font-size: 0.875rem; }
}

.game-change__tool {
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.game-change__tool--purple {
  background: rgba(250, 245, 255, 0.5);
  border: 1px solid #f3e8ff;
}

.game-change__tool--blue {
  background: rgba(239, 246, 255, 0.5);
  border: 1px solid #dbeafe;
}

.game-change__tool-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.game-change__tool-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
}

.game-change__tool-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.game-change__tool-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.game-change__tool-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.game-change__tool-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ── Why Ai CMO Cards ── */
.why-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .why-card { padding: 2rem; }
}

.why-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}

.why-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  font-family: 'Outfit', sans-serif;
}

.why-card__icon {
  color: #7c3aed;
  margin-bottom: 1rem;
}

.why-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.why-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── CEO Profile ── */
.ceo-card {
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .ceo-card { padding: 2.5rem; }
}

.ceo-card__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .ceo-card__inner { flex-direction: row; }
}

.ceo-card__photo-wrap {
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ceo-card__photo-wrap { margin: 0; }
}

.ceo-card__photo {
  width: 10rem;
  height: 10rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .ceo-card__photo { width: 12rem; height: 12rem; }
}

.ceo-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-card__bio { flex: 1; }

.ceo-card__role {
  font-size: 0.875rem;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ceo-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (min-width: 768px) {
  .ceo-card__name { font-size: 1.875rem; }
}

.ceo-card__text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ceo-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ceo-card__stat {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.ceo-card__stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.ceo-card__stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  font-family: 'Outfit', sans-serif;
}

.ceo-card__note {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ── Reskilling Intro ── */
.reskilling-intro {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .reskilling-intro { grid-template-columns: 1fr 1fr; }
}

.reskilling-intro__sub {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.reskilling-intro__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .reskilling-intro__title { font-size: 2.25rem; }
}

.reskilling-intro__desc {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.reskilling-intro__reverse {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #7e22ce;
  font-weight: 600;
}

.reskilling-intro__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.reskilling-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}

.reskilling-intro__item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #10b981;
}

.reskilling-intro__img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15);
}

/* ── Curriculum ── */
.curriculum-item {
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .curriculum-item { padding: 1.5rem; gap: 1.5rem; }
}

.curriculum-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.curriculum-item__day {
  flex-shrink: 0;
  width: 5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d8b4fe;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .curriculum-item__day { width: 6rem; }
}

.curriculum-item__icon {
  flex-shrink: 0;
  color: #93c5fd;
  margin-top: 0.125rem;
}

.curriculum-item__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

@media (min-width: 768px) {
  .curriculum-item__title { font-size: 1.125rem; }
}

.curriculum-item__desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.curriculum-note {
  text-align: center;
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-top: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Barrier Cards ── */
.barrier-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .barrier-card { padding: 2rem; }
}

.barrier-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}

.barrier-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.barrier-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.barrier-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

.barrier-resolve {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .barrier-resolve { font-size: 1.25rem; }
}

/* ── Subsidy ── */
.subsidy-box {
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .subsidy-box { padding: 2.5rem; }
}

.subsidy-box__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.subsidy-box__header-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.subsidy-box__header-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
}

.subsidy-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .subsidy-grid { grid-template-columns: repeat(2, 1fr); }
}

.subsidy-stat {
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.subsidy-stat--purple {
  background: #faf5ff;
  border: 1px solid #f3e8ff;
}

.subsidy-stat--blue {
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.subsidy-stat__label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.subsidy-stat__value {
  font-size: 1.875rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
}

@media (min-width: 768px) {
  .subsidy-stat__value { font-size: 2.25rem; }
}

.subsidy-stat__note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.subsidy-stat__sub-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.subsidy-stat__sub-note {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Urgency box */
.urgency-box {
  border-radius: 1rem;
  background: linear-gradient(to right, #fffbeb, #fff7ed);
  border: 1px solid #fde68a;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .urgency-box { padding: 2rem; }
}

.urgency-box__inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.urgency-box__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d97706;
}

.urgency-box__title {
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.urgency-box__text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

/* Cost Simulation */
.cost-sim {
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .cost-sim { padding: 2.5rem; }
}

.cost-sim__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .cost-sim__title { font-size: 1.5rem; }
}

.cost-sim__subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 2rem;
}

.cost-sim__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cost-sim__grid { grid-template-columns: repeat(2, 1fr); }
}

.cost-sim__before {
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 1.5rem;
  text-align: center;
}

.cost-sim__before-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.cost-sim__before-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: #cbd5e1;
  text-decoration: line-through;
  text-decoration-color: rgba(248, 113, 113, 0.5);
  font-family: 'Outfit', sans-serif;
}

.cost-sim__before-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.cost-sim__after {
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border: 1px solid #a7f3d0;
  padding: 1.5rem;
  text-align: center;
}

.cost-sim__after-label {
  font-size: 0.875rem;
  color: #059669;
  margin-bottom: 0.75rem;
}

.cost-sim__after-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: #059669;
  font-family: 'Outfit', sans-serif;
}

@media (min-width: 768px) {
  .cost-sim__after-value { font-size: 3rem; }
}

.cost-sim__after-per {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.cost-sim__after-detail {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.cost-sim__logic {
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 1.25rem;
}

.cost-sim__logic-title {
  color: #475569;
  font-weight: 600;
}

.cost-sim__logic p {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ── Steps ── */
.steps-timeline {
  position: relative;
}

.steps-timeline__line {
  display: none;
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #a78bfa, #60a5fa, #34d399);
}

@media (min-width: 768px) {
  .steps-timeline__line { display: block; }
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .step { gap: 2rem; }
}

.step__number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.125rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .step__number { width: 4rem; height: 4rem; font-size: 1.25rem; }
}

.step__number--purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.step__number--blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.step__number--green { background: linear-gradient(135deg, #10b981, #059669); }

.step__content {
  flex: 1;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .step__content { padding: 1.5rem; }
}

.step__period {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  background: #f8fafc;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.step__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .step__title { font-size: 1.125rem; }
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.step__item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #10b981;
}

/* ── Dogfooding / Before-After ── */
.dogfooding-intro {
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .dogfooding-intro { padding: 2.5rem; }
}

.dogfooding-intro p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .dogfooding-intro p { font-size: 1rem; }
}

.ba-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .ba-card { padding: 1.5rem; }
}

.ba-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ba-card__header svg { color: #3b82f6; }

.ba-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
}

.ba-card__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.ba-card__before {
  border-radius: 0.5rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 1rem;
  text-align: center;
}

.ba-card__before-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.ba-card__before-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #94a3b8;
}

.ba-card__arrow { color: #10b981; }

.ba-card__after {
  border-radius: 0.5rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 1rem;
  text-align: center;
}

.ba-card__after-label {
  font-size: 0.75rem;
  color: #059669;
  margin-bottom: 0.25rem;
}

.ba-card__after-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #059669;
}

.dogfooding-note {
  text-align: center;
  margin-top: 2rem;
}

.dogfooding-note span {
  display: inline-block;
  font-size: 0.875rem;
  color: #64748b;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ── FAQ ── */
.faq-item {
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.faq-item summary {
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .faq-item summary { padding: 1.5rem; }
}

.faq-item summary:hover {
  background: #f8fafc;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__q {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .faq-item__q { font-size: 1rem; }
}

.faq-item__chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.3s;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(90deg);
}

.faq-item__a {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq-item__a { padding: 0 1.5rem 1.5rem; }
}

/* ── Final CTA ── */
.final-cta {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .final-cta { padding: 7rem 0; }
}

.final-cta__sub {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #d8b4fe;
}

.final-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

@media (min-width: 768px) {
  .final-cta__title { font-size: 2.25rem; }
}

.final-cta__desc {
  color: #cbd5e1;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .final-cta__desc { font-size: 1rem; }
}

.final-cta__questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .final-cta__questions { flex-direction: row; max-width: none; }
}

.final-cta__q-item {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

@media (min-width: 640px) {
  .final-cta__q-item { width: auto; }
}

.final-cta__form-wrap {
  max-width: 36rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .final-cta__form-wrap { padding: 2.5rem; }
}

.final-cta__form-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta__form-title { font-size: 1.25rem; }
}

.final-cta__note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1.5rem;
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.footer__logo-corp {
  font-size: 0.75rem;
  color: #94a3b8;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer__links a:hover { color: #334155; }

.footer__copy {
  font-size: 0.75rem;
  color: #cbd5e1;
}

/* ── Sticky CTA (Mobile) ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .cta-button {
  display: block;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ── SVG Icons (inline) ── */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

.icon--sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon--lg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon--xl {
  width: 2rem;
  height: 2rem;
}

/* ── Utility Colors ── */
.text-red { color: #ef4444; }
.text-orange { color: #f97316; }
.text-yellow { color: #ca8a04; }
.text-amber { color: #d97706; }
.text-emerald { color: #10b981; }
.text-purple { color: #7c3aed; }
.text-blue { color: #3b82f6; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-800 { color: #1e293b; }

.bg-red-50 { background: #fef2f2; }
.bg-orange-50 { background: #fff7ed; }
.bg-yellow-50 { background: #fefce8; }
.bg-amber-50 { background: #fffbeb; }
.bg-emerald-50 { background: #ecfdf5; }
.bg-purple-50 { background: #faf5ff; }

/* ── Counter animation number ── */
.counter-value {
  font-family: 'Outfit', sans-serif;
}
