/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1A6FD4;
  --green-mid: #1559B0;
  --green-dark: #0F4490;
  --green-light: #E8F0FB;
  --green-pale: #F0F5FD;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-100: #f4f5f7;
  --gray-200: #e8eaed;
  --gray-400: #b0b8cc;
  --gray-600: #6b7590;
  --gray-800: #2c3350;
  --text: #1a1e2e;
  --font: 'Inter', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: 68px;
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__logo { display: flex; align-items: center; margin-right: auto; }
.header__logo-img { height: 32px; width: auto; }

.header__nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.header__nav a { transition: color 0.2s; }
.header__nav a:hover { color: var(--green); }

.header__actions { display: flex; gap: 12px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn--primary:hover { background: var(--green-mid); border-color: var(--green-mid); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover { background: var(--green-light); }

.btn--white {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
}
.btn--white:hover { background: var(--green-light); }

.btn--sm { font-size: 13px; padding: 8px 18px; }
.btn--md { font-size: 14px; padding: 12px 24px; }
.btn--lg { font-size: 16px; padding: 16px 36px; border-radius: 10px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}
.btn-arrow:hover { gap: 12px; }
.btn-arrow svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4e6fb 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 68px);
}

/* FV ロゴ */
.hero__logo { margin-bottom: 20px; }
.hero__logo img { height: 36px; width: auto; display: block; margin-bottom: 8px; }
.hero__logo-by { font-size: 12px; font-weight: 600; color: var(--gray-600); letter-spacing: 0.04em; }
.hero__logo-by a { color: var(--green); text-decoration: none; font-weight: 700; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.hero__logo-by a:hover { border-bottom-color: var(--green); }

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.hero__title em { display: block; font-style: normal; color: var(--green); font-size: 0.6em; font-weight: 700; margin-bottom: 8px; letter-spacing: 0; }

.hero__sub {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero__visual { padding-bottom: 80px; }
.hero__yt-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(26,111,212,0.18); }
.hero__yt-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ===== LOGOS (marquee) ===== */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logos {
  padding: 56px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
}

.logos__label {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 40px;
}

.logos__marquee { overflow: hidden; width: 100%; margin-bottom: 4px; }
.logos__marquee:last-child { margin-bottom: 0; }
.logos__track { display: flex; align-items: center; width: max-content; }

.logos__marquee--row1 .logos__track { animation: marquee-left 28s linear infinite; }
.logos__marquee--row2 .logos__track { animation: marquee-right 32s linear infinite; }

.logos__item { display: flex; align-items: center; justify-content: center; padding: 20px 56px; flex-shrink: 0; }
.logos__item img { height: 100px; width: auto; max-width: 260px; object-fit: contain; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--green);
  padding: 48px 0;
}

.stats-band__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stats-band__item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stats-band__item:last-child { border-right: none; }

.stats-band__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stats-band__unit { font-size: 22px; font-weight: 700; }
.stats-band__label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.04em; }

/* ===== SECTION BASE ===== */
.section { padding: 120px 0; }
.section--gray { background: var(--gray-100); }
.section--green-pale { background: var(--green-pale); }
.section--green { background: var(--green); }

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green-dark);
}

.section__sub {
  font-size: 16px;
  color: var(--gray-600);
  margin-top: 16px;
  line-height: 1.75;
}

/* ===== PAIN POINTS ===== */
.pain { padding: 100px 0; background: var(--white); }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pain__item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 24px rgba(26,111,212,0.1);
}

.pain__icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.pain__icon svg { width: 24px; height: 24px; }

.pain__body {}
.pain__title { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.pain__text { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* ===== ABOUT (flow diagram) ===== */
.about__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1.5px solid var(--green);
  border-radius: 2px;
  opacity: 0.8;
}

.about__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.about__body {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
}

.about__flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
}

.about__phase {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
}

.about__phase-header {
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 12px;
}

.about__phase-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 20px 16px;
}

.about__phase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  border-radius: 10px;
  background: var(--green-pale);
  text-align: center;
}
.about__phase-item svg { width: 36px; height: 36px; color: var(--green); flex-shrink: 0; }
.about__phase-item span { font-size: 12px; font-weight: 600; color: var(--green-dark); line-height: 1.5; }

.about__flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
  color: var(--green);
}
.about__flow-arrow svg { width: 24px; height: 40px; transform: rotate(-90deg); }

.about__cred-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about__cred-badge {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}
.about__cred-badge svg { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
.about__cred-badge-title { font-size: 13px; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.about__cred-badge-sub { font-size: 11px; color: var(--gray-600); line-height: 1.4; }

/* ===== FEATURES ===== */
.feature { padding: 56px 0; }
.feature + .feature { border-top: 1px solid var(--gray-200); }

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature__inner--reverse { direction: rtl; }
.feature__inner--reverse > * { direction: ltr; }

.feature__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
  opacity: 0.6;
  margin-bottom: 10px;
}
.feature__rule { width: 32px; height: 3px; background: var(--green); margin-bottom: 20px; border-radius: 2px; }
.feature__title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 900; line-height: 1.35; color: var(--green-dark); margin-bottom: 20px; letter-spacing: -0.02em; }
.feature__body { font-size: 15px; color: var(--gray-600); line-height: 1.9; margin-bottom: 24px; }
.feature__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature__tag { font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-light); padding: 5px 12px; border-radius: 99px; }

/* Feature Visual */
.feature__visual {
  background: var(--green-pale);
  border-radius: 20px;
  padding: 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.feature__visual-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); opacity: 0.7; margin-bottom: 20px; align-self: flex-start; }

/* FV01 chart */
.fv-chart { width: 100%; display: flex; flex-direction: column; align-items: center; }
.fv-chart__arrow-row { width: 100%; padding: 0 40px; }
.fv-chart__arrow-row svg { width: 100%; height: 40px; display: block; }
.fv-chart__bars { display: flex; align-items: flex-end; gap: 32px; height: 160px; padding: 0 40px; justify-content: center; }
.fv-chart__col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fv-chart__bar { width: 72px; border-radius: 6px 6px 0 0; }
.fv-chart__bar--before { background: var(--gray-400); }
.fv-chart__bar--after { background: var(--green); }
.fv-chart__label-bottom { font-size: 12px; font-weight: 600; color: var(--gray-600); }
.fv-chart__label-bottom--accent { color: var(--green); font-weight: 800; }
.fv-chart__note { font-size: 13px; font-weight: 700; color: var(--green); margin-top: 16px; }

/* FV02 tasks */
.fv-tasks { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.fv-tasks__item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.fv-tasks__item--done { background: var(--green); color: var(--white); }
.fv-tasks__item--focus { background: var(--white); border: 2px solid var(--green); color: var(--green-dark); }
.fv-tasks__item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* FV03 media list */
.feature__mock-list { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.feature__mock-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature__mock-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ===== PRICE ===== */
.price__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.price__grid--single {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.price__card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.price__card--featured {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(26,111,212,0.12);
}

.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.price__plan { font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.price__name { font-size: 22px; font-weight: 900; color: var(--green-dark); margin-bottom: 20px; }
.price__amount { font-size: 42px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.price__amount span { font-size: 16px; font-weight: 600; color: var(--gray-600); }
.price__note { font-size: 12px; color: var(--gray-600); margin-bottom: 28px; }

.price__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-800); }
.price__list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.price__list li { position: relative; padding-left: 28px; }
.price__list li::before { position: absolute; left: 0; top: 3px; }

/* ===== KNOWLEDGE CAROUSEL ===== */
.ks-track-wrap { overflow: hidden; margin: 0 -8px; }
.ks-track { display: flex; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.ks-card { flex: 0 0 calc(33.333% - 16px); margin: 0 8px; background: var(--white); border: 1px solid var(--gray-200); display: flex; flex-direction: column; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.ks-card:hover { border-color: var(--green); box-shadow: 0 4px 24px rgba(26,111,212,0.1); transform: translateY(-3px); }
.ks-card__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); flex-shrink: 0; }
.ks-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ks-card:hover .ks-card__img img { transform: scale(1.04); }
.ks-card__body { padding: 20px 20px 12px; flex: 1; }
.ks-card__cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: var(--green); background: var(--green-light); padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }
.ks-card__title { font-size: 14px; font-weight: 700; color: var(--gray-800); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ks-card__foot { padding: 12px 20px 18px; border-top: 1px solid var(--gray-200); }
.ks-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--green); border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: gap 0.2s; }
.ks-card:hover .ks-card__link { gap: 7px; }
.ks-card__link svg { width: 13px; height: 13px; }
.ks-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.ks-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.ks-btn svg { width: 20px; height: 20px; }
.ks-btn:hover:not(:disabled) { border-color: var(--green); background: var(--green); }
.ks-btn:hover:not(:disabled) svg { stroke: #fff; }
.ks-btn:disabled { opacity: 0.3; cursor: default; }
.ks-dots { display: flex; gap: 8px; }
.ks-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--gray-200); cursor: pointer; padding: 0; transition: all 0.2s; }
.ks-dot.is-active { background: var(--green); width: 24px; border-radius: 4px; }
@media (max-width: 1024px) { .ks-card { flex: 0 0 calc(50% - 16px); } }
@media (max-width: 768px) { .ks-card { flex: 0 0 calc(100% - 16px); } }

/* ===== VOICE SLIDER ===== */
.vs-section { padding: 120px 0; background: var(--gray-100); overflow: hidden; }
.vs-track-wrap { overflow: hidden; margin: 0 -8px; }
.vs-track { display: flex; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.vs-slide { flex: 0 0 calc(33.333% - 16px); margin: 0 8px; background: var(--white); border: 1px solid var(--gray-200); display: flex; flex-direction: column; transition: border-color 0.2s; }
.vs-slide:hover { border-color: var(--green); }
.vs-slide__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--green-light); flex-shrink: 0; }
.vs-slide__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vs-slide:hover .vs-slide__img img { transform: scale(1.04); }
.vs-slide__img--empty { display: flex; align-items: center; justify-content: center; }
.vs-slide__initial { font-size: 36px; font-weight: 900; color: var(--green); opacity: 0.2; }
.vs-slide__body { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.vs-slide__quote { font-size: 14px; color: var(--gray-800); line-height: 1.9; flex: 1; margin-bottom: 24px; position: relative; padding-left: 16px; }
.vs-slide__quote::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--green); opacity: 0.3; }
.vs-slide__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.vs-slide__name { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 2px; line-height: 1.4; }
.vs-slide__role { font-size: 12px; color: var(--gray-400); }
.vs-slide__link { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--green); white-space: nowrap; flex-shrink: 0; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: gap 0.2s; }
.vs-slide__link:hover { gap: 7px; }
.vs-slide__link svg { width: 13px; height: 13px; }
.vs-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.vs-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.vs-btn svg { width: 20px; height: 20px; }
.vs-btn:hover:not(:disabled) { border-color: var(--green); background: var(--green); color: #fff; }
.vs-btn:hover:not(:disabled) svg { stroke: #fff; }
.vs-btn:disabled { opacity: 0.3; cursor: default; }
.vs-dots { display: flex; gap: 8px; }
.vs-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--gray-200); cursor: pointer; padding: 0; transition: all 0.2s; }
.vs-dot.is-active { background: var(--green); width: 24px; border-radius: 4px; }
@media (max-width: 1024px) { .vs-slide { flex: 0 0 calc(50% - 16px); } }
@media (max-width: 768px) { .vs-slide { flex: 0 0 calc(100% - 16px); } }

/* ===== FLOW ===== */
.flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}

.flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.flow__item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 28px;
  font-size: 20px;
  color: var(--green);
  opacity: 0.5;
}

.flow__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.flow__title { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.flow__text { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* ===== FAQ ===== */
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--gray-200); }

.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__q-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  width: 24px;
}
.faq-item__q-text { font-size: 15px; font-weight: 600; color: var(--green-dark); flex: 1; }

.faq-item__icon { margin-left: auto; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.faq-item__icon svg { width: 14px; height: 14px; color: var(--green); }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer { display: none; padding: 0 0 24px 44px; font-size: 14px; color: var(--gray-600); line-height: 1.85; }
.faq-item.open .faq-item__answer { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--green);
  padding: 96px 0;
  text-align: center;
}
.cta-section__title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.3; }
.cta-section__sub { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 48px; }
.cta-section__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  padding: 56px 0 0;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer__logo-link { display: inline-block; margin-bottom: 8px; }
.footer__logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 48px;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===== POPUP BANNER ===== */
.popup-banner {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 260px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26,111,212,0.18);
  padding: 28px 24px 24px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.popup-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.popup-banner.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }

.popup-banner__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.popup-banner__close:hover { color: var(--green); }
.popup-banner__close svg { width: 18px; height: 18px; }
.popup-banner__img-wrap { margin-bottom: 16px; border-radius: 10px; overflow: hidden; line-height: 0; }
.popup-banner__img { width: 100%; height: auto; display: block; border-radius: 10px; object-fit: cover; }
.popup-banner__label { font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.popup-banner__title { font-size: 18px; font-weight: 800; color: var(--green-dark); line-height: 1.4; margin-bottom: 20px; }
.popup-banner__btns { display: flex; flex-direction: column; gap: 10px; }
.popup-banner__btn { display: block; text-align: center; padding: 11px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; cursor: pointer; }
.popup-banner__btn--outline { border: 2px solid var(--green); color: var(--green); background: transparent; }
.popup-banner__btn--outline:hover { background: var(--green-light); }
.popup-banner__btn--primary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.popup-banner__btn--primary:hover { background: var(--green-mid); border-color: var(--green-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero__inner { gap: 48px; }
  .stats-band__inner { grid-template-columns: repeat(3, 1fr); }
  .about__flow { flex-direction: column; }
  .about__flow-arrow { padding: 8px 0; }
  .about__flow-arrow svg { transform: none; }
  .price__grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header__inner { padding: 0 20px; }
  .header__nav { display: none; }
  .header__actions .btn--outline { display: none; }
  .header__logo-img { height: 20px; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero__visual { display: none; }
  .feature__inner { grid-template-columns: 1fr; }
  .feature__inner--reverse { direction: ltr; }
  .flow__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .flow__item::after { display: none; }
  .stats-band__inner { grid-template-columns: 1fr; }
  .stats-band__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 24px 16px; }
  .stats-band__item:last-child { border-bottom: none; }
  .pain__grid { grid-template-columns: 1fr; }
  .logos__item { padding: 14px 32px; }
  .logos__item img { height: 64px; max-width: 180px; }
  .footer__inner { flex-direction: column; gap: 24px; }
  .popup-banner { bottom: 16px; right: 16px; left: 16px; width: auto; }
  .about__cred-row { flex-direction: column; }
}
