/* ============================================================
   My name is LP — style.css v2
   Main: #F44A04 / #C72D02  Accent bright: #FF8C38 / #FFF1E8
   ============================================================ */

:root {
  --org:      #F44A04;
  --red:      #C72D02;
  --org-lt:   #FF8C38;
  --grad:     linear-gradient(135deg, #F44A04 0%, #C72D02 100%);
  --grad-r:   linear-gradient(135deg, #C72D02 0%, #F44A04 100%);
  --cream:    #FFF8F3;
  --peach:    #FFF1E8;
  --peach2:   #FFE0C8;
  --white:    #ffffff;
  --text:     #1E0F00;
  --text-sub: #6B4020;
  --border:   rgba(244,74,4,0.15);
  --shadow-org: 0 8px 32px rgba(244,74,4,0.28);
  --shadow-lg:  0 16px 56px rgba(244,74,4,0.35);
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  --r-full: 9999px;
  --hh: 72px; /* header height */
  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-disp:  'Oswald', 'Noto Serif JP', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .35s ease;
}
body.loaded { opacity: 1; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-family: var(--font-disp);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--org);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--org); opacity: .45;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 4.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.45;
  color: var(--text);
}
.section-title span { color: var(--org); }
.section-desc { margin-top: 14px; font-size: .92rem; color: var(--text-sub); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hh);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(244,74,4,.12);
  z-index: 1000;
}
.header-inner {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 42px; width: auto; object-fit: contain; }
.logo-fallback {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--org);
}

/* Hamburger */
.hamburger {
  width: 42px; height: 42px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 6px;
  border-radius: 50%;
  transition: background .2s;
}
.hamburger:hover { background: rgba(244,74,4,.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.77,0,.175,1), opacity .2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Nav overlay */
.nav-menu {
  position: fixed;
  top: var(--hh); left: 0; right: 0; bottom: 0;
  background: #1e0a00;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.77,0,.175,1);
  z-index: 999;
}
.nav-menu.open { transform: translateX(0); }
.nav-menu ul { display: flex; flex-direction: column; width: 100%; }
.nav-menu ul li a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 22px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
  letter-spacing: .06em;
}
.nav-menu ul li a:hover { color: var(--org-lt); background: rgba(244,74,4,.06); }
.nav-menu ul li a.nav-cta { color: var(--org); }

/* ============================================================
   FV — 画像のみ（テキスト・ボタンなし）
   ============================================================ */
.fv-section {
  margin-top: var(--hh);
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.fv-picture { display: block; width: 100%; }
.fv-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* scroll hint */
.fv-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,.65);
  font-family: var(--font-disp);
  font-size: .6rem; letter-spacing: .25em;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform: scaleY(1); }
  50% { opacity:1; transform: scaleY(1.15); }
}

/* ============================================================
   SAMPLES SECTION
   ============================================================ */
.samples-section {
  padding: 96px 0 72px;
  background: var(--text);
  overflow: hidden;
}
.samples-section .section-header { padding: 0 28px; }
.samples-section .section-title { color: var(--white); }
.samples-section .section-title span { color: var(--org-lt); }
.samples-section .section-desc { color: rgba(255,255,255,.45); }

.slider-viewport {
  overflow: hidden;
  padding: 4px 0 8px;
  cursor: grab;
  user-select: none;
}
.slider-viewport:active { cursor: grabbing; }

.slider-track {
  display: flex;
  gap: 20px;
  padding: 0 28px;
  transition: transform .48s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}

.sample-card {
  flex: 0 0 280px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  aspect-ratio: 3/4;
  background: #222;
  transition: transform .3s, box-shadow .3s;
}
.sample-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 48px rgba(244,74,4,.4);
}
.sample-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform .5s;
}
.sample-card:hover img { transform: scale(1.05); }

.slider-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-top: 28px; padding: 0 28px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(244,74,4,.5);
  color: var(--org);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.slider-arrow:hover {
  background: var(--org); border-color: var(--org);
  color: var(--white); transform: scale(1.1);
}
.slider-dots { display: flex; gap: 8px; }
.s-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.s-dot.active { background: var(--org); transform: scale(1.4); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--grad);
  padding: 72px 28px;
  text-align: center;
  overflow: hidden;
}
.cta-banner--warm { background: var(--grad-r); }

/* 装飾円 */
.cta-banner-deco {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.cta-banner-deco--left  { left: -120px; top: -80px; }
.cta-banner-deco--right { right: -120px; bottom: -80px; }

.cta-banner-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}

/* 🔥バッジ */
.cta-badge-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--r-full);
  padding: 7px 22px;
}
.cta-badge-text {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .18em;
  color: var(--white);
}
.cta-badge-fire { font-size: .9rem; }

/* 価格行 */
.cta-price-row {
  display: flex; align-items: center;
  gap: 20px;
}
.cta-price-before, .cta-price-after {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.cta-price-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; color: rgba(255,255,255,.75);
}
.cta-price-num {
  font-family: var(--font-disp);
  font-weight: 700; line-height: 1;
}
.cta-price-num span { font-size: .6em; margin-left: 2px; }
.cta-price-num--before {
  font-size: 1.7rem; color: rgba(255,255,255,.5);
  text-decoration: line-through;
}
.cta-price-num--after {
  font-size: 3.8rem; color: #FFE600;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.cta-price-arrow { color: rgba(255,255,255,.7); }

.cta-banner-sub {
  font-size: .9rem; color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}

/* CTA大ボタン */
.cta-big-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-big-btn-inner {
  display: inline-flex; align-items: center; gap: 12px;
  background: #FFE600;
  color: #1E0F00;
  font-size: 1.05rem; font-weight: 900;
  letter-spacing: .04em;
  padding: 20px 44px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  position: relative; z-index: 1;
  transition: transform .22s, box-shadow .22s, background .22s;
}
.cta-big-btn:hover .cta-big-btn-inner {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,.32);
  background: #fff176;
}
.cta-big-btn-arrow { font-size: 1.2rem; }
.cta-big-btn-pulse {
  position: absolute;
  inset: -8px;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,230,0,.6);
  animation: btnPulse 2.4s ease-out infinite;
}
@keyframes btnPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  right: -180px; top: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff1e8 0%, transparent 70%);
  pointer-events: none;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-org);
  aspect-ratio: 3/4;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-tag {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--grad);
  color: var(--white);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em;
  padding: 6px 16px;
  border-radius: var(--r-full);
}
.about-img-deco {
  position: absolute;
  top: -24px; left: -24px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad);
  opacity: .15;
  z-index: -1;
}
.about-catch {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: var(--text-sub);
  margin-bottom: 6px;
  line-height: 1.7;
}
.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text);
}
.about-headline strong { color: var(--org); }
.about-body {
  font-size: .92rem;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 28px;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.about-tag {
  display: inline-flex; align-items: center;
  background: var(--peach);
  color: var(--org);
  font-size: .8rem; font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--peach2);
}

/* ============================================================
   MERITS SECTION
   ============================================================ */
.merits-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.merits-bg-deco {
  position: absolute;
  left: -200px; bottom: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe8d6 0%, transparent 65%);
  pointer-events: none;
}
.merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.merit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(244,74,4,.1);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s;
}
.merit-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s;
}
.merit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(244,74,4,.22);
}
.merit-card-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-disp);
  font-size: 2.8rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; opacity: .25;
}
.merit-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.merit-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.merit-card:hover .merit-card-img img { transform: scale(1.06); }
.merit-card-body { padding: 24px 24px 28px; }
.merit-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.merit-card-icon { font-size: 1.3rem; }
.merit-card-text {
  font-size: .875rem; line-height: 1.85;
  color: var(--text-sub);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-card--wide { grid-column: 1 / -1; }

.faq-card {
  background: var(--cream);
  border: 1.5px solid var(--peach2);
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.faq-card.visible { opacity: 1; transform: translateY(0); }

.faq-card-q {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 24px 16px;
  font-size: .95rem; font-weight: 700;
  color: var(--text); line-height: 1.65;
}
.fq-badge {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-disp);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-card-a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 0 24px 22px;
  font-size: .88rem; line-height: 1.85;
  color: var(--text-sub);
  border-top: 1px solid var(--peach2);
  padding-top: 16px;
  margin: 0 24px;
  padding-left: 0; padding-right: 0;
}
.fa-badge {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--peach2);
  color: var(--org);
  font-family: var(--font-disp);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-card-a p strong { color: var(--org); }

/* ============================================================
   FLOW SECTION
   ============================================================ */
.flow-section {
  padding: 100px 0;
  background: var(--cream);
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.flow-step {
  display: grid;
  grid-template-columns: 100px auto 1fr;
  gap: 32px;
  align-items: start;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  position: relative;
}
.flow-step.visible { opacity: 1; transform: translateY(0); }

.flow-step-circle {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: var(--shadow-org);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.flow-step-label {
  font-family: var(--font-disp);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .18em; color: rgba(255,255,255,.8);
  line-height: 1;
}
.flow-step-num {
  font-family: var(--font-disp);
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}

/* 縦コネクター */
.flow-step-line {
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--org), var(--peach2));
  opacity: .4;
  z-index: 1;
}

.flow-step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: visible;
  box-shadow: 0 4px 20px rgba(244,74,4,.1);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  grid-column: 3;
  padding: 24px;
}
.flow-step-img {
  aspect-ratio: 1/1;
  width: 180px;
  min-width: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--peach2);
  box-shadow: var(--shadow-org);
  align-self: center;
}
.flow-step-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.flow-step-card:hover .flow-step-img img { transform: scale(1.05); }
.flow-step-body {
  display: flex; flex-direction: column; justify-content: center;
}
.flow-step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 900;
  color: var(--text); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.flow-step-title::before {
  content: '';
  display: block;
  width: 4px; height: 1.1em;
  background: var(--grad);
  border-radius: 2px;
  flex-shrink: 0;
}
.flow-step-text {
  font-size: .88rem; line-height: 1.85;
  color: var(--text-sub);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  position: relative;
  background: var(--grad);
  padding: 100px 28px 88px;
  text-align: center;
  overflow: hidden;
}

/* 背景円リング */
.cta-final-rings { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  transform: translate(-50%, -50%);
  left: 50%; top: 50%;
}
.ring1 { width: 400px; height: 400px; animation: ringPulse 4s ease-in-out infinite; }
.ring2 { width: 650px; height: 650px; animation: ringPulse 4s ease-in-out infinite .8s; }
.ring3 { width: 920px; height: 920px; animation: ringPulse 4s ease-in-out infinite 1.6s; }
@keyframes ringPulse {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .2; transform: translate(-50%,-50%) scale(1.04); }
}

.cta-final-inner {
  position: relative; z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}

/* バッジ */
.cta-final-badge-row { display: flex; align-items: center; }
.cta-final-badge {
  display: inline-block;
  background: #FFE600;
  border: none;
  color: #1E0F00;
  font-size: .85rem; font-weight: 900;
  letter-spacing: .15em;
  padding: 10px 28px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

/* 価格ブロック */
.cta-final-price-block {
  display: flex; align-items: center;
  gap: 20px;
}
.cfp-before, .cfp-after {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.cfp-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; color: rgba(255,255,255,.75);
}
.cfp-value {
  font-family: var(--font-disp);
  font-size: 1.8rem; font-weight: 700;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  line-height: 1;
}
.cfp-value--zero {
  font-size: 4.5rem; color: #FFE600;
  text-decoration: none;
  text-shadow: 0 4px 24px rgba(0,0,0,.2);
  line-height: 1;
}
.cfp-yen { font-size: .55em; margin-left: 3px; }
.cfp-arrow { color: rgba(255,255,255,.7); }

.cta-final-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.45;
}

/* 理由ボックス */
.cta-reason-box {
  width: 100%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
  text-align: left;
}
.cta-reason-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.cta-reason-q {
  font-size: .85rem; font-weight: 800;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.cta-reason-a {
  font-size: .88rem; line-height: 1.85;
  color: rgba(255,255,255,.88);
}
.cta-reason-a strong { color: var(--white); }

.cta-final-lead {
  font-size: .92rem; color: rgba(255,255,255,.85);
  letter-spacing: .03em; line-height: 1.7;
}

/* メールフォーム */
.email-form-block {
  width: 100%;
  max-width: 500px;
  display: flex; flex-direction: column; gap: 14px;
}
.email-input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.email-input-icon {
  position: absolute; left: 18px;
  font-size: 1.1rem; color: var(--org);
  z-index: 1; pointer-events: none;
}
#emailInput {
  width: 100%;
  padding: 18px 18px 18px 48px;
  border-radius: var(--r-md);
  border: 2px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.94);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
#emailInput:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
  background: var(--white);
}
#emailInput.error { border-color: #ffb347; box-shadow: 0 0 0 3px rgba(255,179,71,.35); }
#emailInput::placeholder { color: #bbb; }

.email-error {
  font-size: .82rem; font-weight: 700;
  color: #ffe090; text-align: left;
  min-height: 20px; padding-left: 4px;
}

.btn-calendar {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: #FFE600;
  color: #1E0F00;
  font-size: 1rem; font-weight: 900;
  letter-spacing: .04em;
  padding: 20px 28px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transition: transform .22s, box-shadow .22s, background .22s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-calendar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 60%);
  pointer-events: none;
}
.btn-calendar:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  background: #fff176;
}
.btn-calendar:active { transform: scale(.99); }
.btn-calendar-icon { font-size: 1.2rem; }
.btn-calendar-arrow { font-size: 1.1rem; margin-left: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  padding: 48px 28px 0;
  color: rgba(255,255,255,.6);
}
.footer-info-row {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-info-row p { font-size: .82rem; line-height: 1.8; }
.footer-info-row strong { color: rgba(255,255,255,.85); }
.footer-info-row a { color: var(--org-lt); transition: opacity .2s; }
.footer-info-row a:hover { opacity: .7; }
.footer-copy {
  text-align: center;
  font-size: .72rem; color: rgba(255,255,255,.3);
  padding: 18px 0;
  letter-spacing: .06em;
}

/* ============================================================
   FLOATING BTN
   ============================================================ */
.floating-btn {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 900;
  letter-spacing: .03em;
  text-align: center; line-height: 1.4;
  box-shadow: 0 6px 28px rgba(244,74,4,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .25s, box-shadow .25s;
}
.floating-btn.show { opacity: 1; pointer-events: auto; }
.floating-btn.hide { opacity: 0; pointer-events: none; }
.floating-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 44px rgba(244,74,4,.65);
}
.floating-btn-text { position: relative; z-index: 1; }
.floating-btn-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(244,74,4,.4);
  animation: floatPulse 2.2s ease-out infinite;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* ============================================================
   SCROLL ANIMATE
   ============================================================ */
.animate-on-scroll {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET ≤ 960px
   ============================================================ */
@media (max-width: 960px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-img-col { max-width: 380px; margin: 0 auto; }

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

  .flow-step { grid-template-columns: 80px 1fr; }
  .flow-step-card { grid-column: 2; grid-template-columns: 160px 1fr; }
  .flow-step-img { width: 160px; min-width: 160px; }
  .flow-step-line { left: 32px; }
  .flow-step-circle { width: 64px; height: 64px; }
  .flow-step-line { top: 64px; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --hh: 64px; }
  .container { padding: 0 20px; }

  .merits-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card--wide { grid-column: 1; }

  .flow-step { grid-template-columns: 64px 1fr; gap: 16px; }
  .flow-step-card { grid-column: 2; grid-template-columns: 120px 1fr; gap: 16px; padding: 16px; }
  .flow-step-img { width: 120px; min-width: 120px; }
  .flow-step-circle { width: 56px; height: 56px; }
  .flow-step-line { left: 28px; top: 56px; }

  .cta-final-price-block { gap: 12px; }
  .cfp-value--zero { font-size: 3.4rem; }

  .cta-price-row { gap: 12px; }
  .cta-price-num--after { font-size: 2.8rem; }

  .sample-card { flex: 0 0 72vw; }

  .floating-btn { width: 60px; height: 60px; font-size: .62rem; bottom: 18px; right: 16px; }

  .about-section::before { display: none; }
}
