/* =============================================
   SalesDoc Landing Page — salesdoc.css
   ============================================= */

/* ─── LP専用ヘッダー（メニューなし） ─── */
.lp-header-simple {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  transition: background 0.3s;
}
.lp-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-header-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.lp-header-logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.lp-header-cta {
  background: #2563eb;
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.lp-header-cta:hover { background: #1d4ed8; }

/* ─── デモ申し込みフォームセクション ─── */
.lp-demo-form-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
  padding: 96px 0;
  border-top: 1px solid #e2e8f0;
}
.lp-demo-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(37,99,235,0.10);
  padding: 52px 48px;
  border: 1px solid rgba(37,99,235,0.1);
}
@media (max-width: 640px) {
  .lp-demo-form-wrap { padding: 36px 24px; }
}
.lp-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.lp-form-header h2 {
  font-size: 1.7rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}
.lp-form-header p {
  font-size: 0.94rem;
  color: #64748b;
  line-height: 1.75;
}
.lp-form-group {
  margin-bottom: 22px;
}
.lp-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 7px;
}
.lp-form-required {
  color: #ef4444;
  margin-left: 4px;
  font-size: 0.78rem;
}
.lp-form-input,
.lp-form-select,
.lp-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.94rem;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.lp-form-input:focus,
.lp-form-select:focus,
.lp-form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.lp-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.lp-form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}
.lp-form-submit {
  width: 100%;
  padding: 15px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
  letter-spacing: 0.02em;
}
.lp-form-submit:hover { background: #1d4ed8; transform: translateY(-1px); }
.lp-form-submit:disabled { background: #94a3b8; cursor: not-allowed; transform: none; }
.lp-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 14px;
  line-height: 1.6;
}
.lp-form-success {
  display: none;
  text-align: center;
  padding: 28px;
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 12px;
  margin-top: 16px;
}
.lp-form-success.visible { display: block; }
.lp-form-success-icon { font-size: 2.4rem; margin-bottom: 12px; }
.lp-form-success h3 { font-size: 1.1rem; font-weight: 800; color: #15803d; margin-bottom: 8px; }
.lp-form-success p { font-size: 0.88rem; color: #166534; line-height: 1.7; }
.lp-form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.lp-form-error.visible { display: block; }

/* ─── LP Hero ─── */
.lp-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1d4ed8 100%);
  padding: 140px 0 90px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 72% 45%, rgba(37,99,235,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.22);
  border: 1px solid rgba(99,102,241,0.4);
  color: #a5b4fc;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.lp-brand-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: #2563eb;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.lp-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.lp-hero-title em {
  font-style: normal;
  color: #60a5fa;
}
.lp-hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
}
.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.lp-hero-actions .lp-btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.lp-hero-actions .lp-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
.lp-hero-actions .lp-btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.lp-hero-actions .lp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}
.lp-hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.lp-hero-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-hero-stat-lbl {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Hero right — browser mockup */
.lp-hero-visual { position: relative; }
.lp-hero-screen {
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lp-browser-dot:nth-child(1) { background: #ef4444; }
.lp-browser-dot:nth-child(2) { background: #f59e0b; }
.lp-browser-dot:nth-child(3) { background: #22c55e; }
.lp-browser-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
  margin-left: 8px;
}
.lp-hero-screen img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}
.lp-hero-float-badge span { color: #22c55e; font-size: 1.2rem; }

/* ─── Shared Section Styles ─── */
.lp-section { padding: 96px 0; }
.lp-section-alt { background: #f8fafc; }
.lp-section-dark { background: #0f172a; color: #fff; }
.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.lp-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
}
.lp-section-dark .lp-section-label { color: #60a5fa; }
.lp-section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.25;
}
.lp-section-dark .lp-section-title { color: #fff; }
.lp-section-desc {
  font-size: 1.02rem;
  color: #64748b;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}
.lp-section-dark .lp-section-desc { color: rgba(255,255,255,0.62); }

/* ─── Pain Points ─── */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-pain-card {
  background: #fff;
  border: 2px solid #fef2f2;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}
.lp-pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(239,68,68,0.1);
}
.lp-pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 14px 14px 0 0;
}
.lp-pain-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.lp-pain-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.45;
}
.lp-pain-desc {
  font-size: 0.89rem;
  color: #64748b;
  line-height: 1.75;
}

/* ─── Solutions ─── */
.lp-sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-sol-card {
  background: #fff;
  border: 2px solid rgba(37,99,235,0.16);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.lp-sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  border-radius: 14px 14px 0 0;
}
.lp-sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(37,99,235,0.12);
}
.lp-sol-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 20px;
}
.lp-sol-num {
  font-size: 0.74rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.lp-sol-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.35;
}
.lp-sol-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.75;
}

/* ─── Feature Showcase ─── */
.lp-ft-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
  /* モバイルでは横スクロール */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.lp-ft-tabs::-webkit-scrollbar { display: none; }
.lp-ft-tab-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 2px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.lp-ft-tab-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.lp-ft-tab-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
@keyframes lpFtFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-ft-panel {
  display: none;
}
.lp-ft-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 52px;
  align-items: center;
  animation: lpFtFadeIn 0.3s ease both;
}
.lp-ft-text { padding-right: 8px; }
.lp-ft-num {
  font-size: 0.74rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.lp-ft-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.28;
}
.lp-ft-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.82;
  margin-bottom: 22px;
}
.lp-ft-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-ft-list li {
  font-size: 0.87rem;
  color: #334155;
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.lp-ft-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
  top: 1px;
}
.lp-ft-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2563eb;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(37,99,235,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.lp-ft-demo-link:hover { border-color: #2563eb; }

/* Browser-chrome wrapper for feature screenshots */
.lp-ft-img-wrap {
  background: #f1f5f9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.lp-ft-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #e2e8f0;
}
.lp-ft-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lp-ft-browser-dot:nth-child(1) { background: #ef4444; }
.lp-ft-browser-dot:nth-child(2) { background: #f59e0b; }
.lp-ft-browser-dot:nth-child(3) { background: #22c55e; }
.lp-ft-browser-url {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  margin-left: 8px;
}
.lp-ft-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-ft-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  min-height: 280px;
  color: #94a3b8;
  font-size: 0.88rem;
  text-align: center;
  padding: 48px;
  line-height: 1.7;
}

/* ─── No-Code Section ─── */
.lp-nocode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-nocode-badge {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.lp-nocode-title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.32;
}
.lp-nocode-desc {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 32px;
}
.lp-nocode-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lp-nocode-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-nc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-nc-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.lp-nc-detail {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.65;
}

/* Chat bubble demo */
.lp-chat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}
.lp-chat-msg {
  margin-bottom: 18px;
}
.lp-chat-msg:last-child { margin-bottom: 0; }
.lp-chat-msg.user { text-align: right; }
.lp-cb-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.lp-chat-msg.user .lp-cb-label { text-align: right; }
.lp-cb-body {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: left;
  max-width: 88%;
}
.lp-chat-msg:not(.user) .lp-cb-body {
  background: #f1f5f9;
  color: #1e293b;
  border-radius: 4px 12px 12px 12px;
}
.lp-chat-msg.user .lp-cb-body {
  background: #2563eb;
  color: #fff;
  border-radius: 12px 4px 12px 12px;
}

/* ─── Pricing ─── */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.lp-price-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: box-shadow 0.22s;
}
.lp-price-card:hover {
  box-shadow: 0 14px 48px rgba(0,0,0,0.09);
}
.lp-price-card.featured {
  border-color: #2563eb;
  background: linear-gradient(160deg, #eff6ff 0%, #fff 60%);
}
.lp-price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #2563eb;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.lp-price-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.lp-price-catchcopy {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 24px;
  min-height: 52px;
}
.lp-price-initial {
  font-size: 0.86rem;
  color: #475569;
  margin-bottom: 6px;
}
.lp-price-initial strong {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}
.lp-price-monthly {
  font-size: 0.86rem;
  color: #475569;
  margin-bottom: 28px;
}
.lp-price-monthly strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}
.lp-price-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 0 0 22px;
}
.lp-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-price-list li {
  font-size: 0.9rem;
  color: #334155;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.lp-price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.82rem;
  top: 2px;
}
.lp-price-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-price-card:not(.featured) .lp-price-cta {
  border: 2px solid #2563eb;
  color: #2563eb;
}
.lp-price-card:not(.featured) .lp-price-cta:hover {
  background: #2563eb;
  color: #fff;
}
.lp-price-card.featured .lp-price-cta {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.lp-price-card.featured .lp-price-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.lp-price-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: #94a3b8;
}

/* ─── Process ─── */
.lp-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.lp-process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  z-index: 0;
}
.lp-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-process-num {
  width: 56px;
  height: 56px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.lp-process-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.lp-process-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.72;
}

/* ─── Final CTA ─── */
.lp-final-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(37,99,235,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.lp-final-cta-inner { position: relative; z-index: 1; }
.lp-final-cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}
.lp-final-cta p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.lp-final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-final-cta .lp-btn-primary {
  background: #fff;
  color: #1e3a8a;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.lp-final-cta .lp-btn-primary:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lp-final-cta .lp-btn-ghost {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s;
  display: inline-block;
}
.lp-final-cta .lp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lp-hero-visual { display: none; }
  .lp-pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-sol-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lp-ft-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-nocode-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .lp-process-steps::before { display: none; }
}
@media (max-width: 640px) {
  .lp-hero { padding: 120px 0 64px; }
  .lp-hero-stats { gap: 22px; flex-wrap: wrap; }
  .lp-section { padding: 64px 0; }
  .lp-sol-grid { grid-template-columns: 1fr; }
  .lp-ft-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
  }
  .lp-ft-tab-btn {
    font-size: 0.78rem;
    padding: 7px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .lp-process-steps { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-price-card { padding: 32px 24px; }
  .lp-final-cta { padding: 72px 0; }
}
