/* ═══════════════════════════════════════════════
   EOFFERIX LANDING PAGES — landing-pages.css
   ═══════════════════════════════════════════════ */

/* ── Wrapper ── */
.lp { width: 100%; font-family: inherit; }

/* ── HERO ── */
.lp-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #1a1f2e 100%);
  color: #fff;
  padding: 90px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(106,17,203,.45), transparent);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.lp-badges {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lp-badge-from { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #e2e8ff; }
.lp-badge-to   { background: linear-gradient(135deg,#6a11cb,#2575fc); color: #fff; box-shadow: 0 6px 20px rgba(106,17,203,.45); }
.lp-badge-solo { background: linear-gradient(135deg,#6a11cb,#2575fc); color: #fff; height: 38px; padding: 0 20px; font-size: 14px; box-shadow: 0 6px 20px rgba(106,17,203,.45); }
.lp-arrow { font-size: 24px; color: rgba(255,255,255,.5); }
.lp-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  color: #fff;
}
.lp-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 640px;
}
.lp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  border-radius: 14px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(106,17,203,.42);
  transition: transform .18s, box-shadow .18s;
}
.lp-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(106,17,203,.55); color: #fff; }

/* ── SECTIONS ── */
.lp-section {
  padding: 80px 24px;
}
.lp-section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.lp-section-gray { background: #f5f7fc; }
.lp-section-dark {
  background: linear-gradient(160deg, #1a1f2e 0%, #0f1623 100%);
  color: #fff;
}

.svc-page .lp-section-dark {
  padding-left: 0;
  padding-right: 0;
}

.svc-page .lp-section-dark .lp-section-inner {
  width: min(var(--svc-max), calc(100% - 80px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.lp-section h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--dark, #1a1f2e);
  margin: 0 0 12px;
}
.lp-section-dark h2 { color: #fff; }
.lp-section-sub {
  font-size: 16px;
  color: var(--muted, #64748b);
  margin: 0 0 52px;
  line-height: 1.6;
}
.lp-section-dark .lp-section-sub { color: rgba(255,255,255,.55); }
.lp-section-center { text-align: center; }
.lp-section-center .lp-section-sub { margin-left: auto; margin-right: auto; }

/* ── STEPS ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.lp-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  opacity: .25;
}
.lp-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.lp-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(106,17,203,.35);
  position: relative; z-index: 1;
}
.lp-step h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark, #1a1f2e);
  margin: 0 0 8px;
}
.lp-step p {
  font-size: 14px;
  color: var(--muted, #64748b);
  line-height: 1.6;
  margin: 0;
}

/* ── CODE DEMO ── */
.lp-demo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15,23,42,.22);
}
.lp-demo-tabs {
  display: flex;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lp-demo-tab {
  flex: 1;
  padding: 14px 20px;
  border: none; background: none; cursor: pointer;
  color: rgba(255,255,255,.5);
  font-size: 13px; font-weight: 700;
  font-family: inherit;
  transition: .15s;
  display: flex; align-items: center; gap: 8px;
}
.lp-demo-tab.active {
  color: #fff;
  background: rgba(106,17,203,.3);
  border-bottom: 2px solid #a855f7;
}
.lp-demo-tab:hover:not(.active) { color: rgba(255,255,255,.8); background: rgba(255,255,255,.04); }
.lp-demo-panel { display: none; }
.lp-demo-panel.active { display: block; }
.lp-demo-panel pre {
  margin: 0;
  padding: 28px 32px;
  font-size: 13px;
  line-height: 1.75;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  color: #e2e8f0;
  background: #0d1117;
  overflow-x: auto;
  white-space: pre;
}
.lp-code-key   { color: #79c0ff; }
.lp-code-str   { color: #a5d6ff; }
.lp-code-val   { color: #f2cc60; }
.lp-code-tag   { color: #7ee787; }
.lp-code-attr  { color: #ffa657; }
.lp-code-cm    { color: #8b949e; }

/* ── FEATURES GRID ── */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.lp-feature {
  background: #fff;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15,23,42,.05);
  transition: transform .2s, box-shadow .2s;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,.1); }
.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(106,17,203,.1),rgba(37,117,252,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.lp-feature h3 {
  font-size: 16px; font-weight: 800;
  color: var(--dark,#1a1f2e);
  margin: 0 0 8px;
}
.lp-feature p {
  font-size: 14px; color: var(--muted,#64748b);
  line-height: 1.6; margin: 0;
}

/* ── USE CASES ── */
.lp-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.lp-case {
  border-radius: 18px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(106,17,203,.07), rgba(37,117,252,.07));
  border: 1px solid rgba(106,17,203,.12);
  transition: border-color .2s;
}
.lp-case:hover { border-color: rgba(106,17,203,.3); }
.lp-case-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: #6a11cb;
  background: rgba(106,17,203,.1);
  border-radius: 6px; padding: 3px 10px;
  margin-bottom: 14px;
}
.lp-case h3 { font-size: 17px; font-weight: 800; color: var(--dark,#1a1f2e); margin: 0 0 10px; }
.lp-case p  { font-size: 14px; color: var(--muted,#64748b); line-height: 1.65; margin: 0; }

/* ── STATS ROW ── */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
  margin: 52px 0 0;
}
.lp-stat {
  padding: 28px 24px;
  text-align: center;
  background: rgba(255,255,255,.04);
}
.lp-stat-num {
  font-size: 38px; font-weight: 950;
  background: linear-gradient(135deg,#a78bfa,#60a5fa);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 6px;
}
.lp-stat-label { font-size: 13px; color: rgba(255,255,255,.55); }

/* ── FAQ ── */
.lp-faq { display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item {
  background: #fff;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.lp-faq-item.open { border-color: rgba(106,17,203,.3); }
.lp-faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 700;
  color: var(--dark,#1a1f2e);
  font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .15s;
}
.lp-faq-q:hover { color: #6a11cb; }
.lp-faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(106,17,203,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #6a11cb;
  transition: transform .25s, background .2s;
}
.lp-faq-item.open .lp-faq-icon { transform: rotate(45deg); background: rgba(106,17,203,.15); }
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.lp-faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--muted,#64748b);
  line-height: 1.75;
}

/* ── CTA STRIP ── */
.lp-cta-strip {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.lp-cta-strip h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  color: #fff;
}
.lp-cta-strip p { font-size: 16px; color: rgba(255,255,255,.72); margin: 0 0 36px; }
.lp-cta-strip-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 54px; padding: 0 36px;
  background: #fff; color: #6a11cb;
  border-radius: 14px; font-size: 15px; font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
  transition: transform .18s, box-shadow .18s;
}
.lp-cta-strip-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(0,0,0,.28); color: #6a11cb; }

/* ── FLOW DIAGRAM ── */
.lp-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  padding: 40px 0;
}
.lp-flow-node {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  min-width: 120px;
}
.lp-flow-node-label { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.lp-flow-node-name  { font-size: 18px; font-weight: 900; color: #fff; }
.lp-flow-arrow {
  padding: 0 14px;
  font-size: 28px; color: rgba(106,17,203,.8);
  animation: lp-pulse 1.8s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%,100% { opacity: .5; transform: translateX(0); }
  50%      { opacity: 1;  transform: translateX(4px); }
}
.lp-flow-node.lp-flow-result {
  background: linear-gradient(135deg, rgba(106,17,203,.3), rgba(37,117,252,.3));
  border-color: rgba(106,17,203,.4);
  box-shadow: 0 0 30px rgba(106,17,203,.2);
}

/* ── CHECKLIST ── */
.lp-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--dark,#1a1f2e); line-height: 1.5;
}
.lp-check-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff; font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .lp-hero { padding: 60px 18px 70px; }
  .lp-section { padding: 56px 18px; }
  .lp-steps::before { display: none; }
  .lp-step { padding: 0 8px; }
  .lp-flow { gap: 8px; }
  .lp-flow-arrow { padding: 0 6px; font-size: 20px; }
  .lp-demo-panel pre { padding: 18px; font-size: 12px; }
}
@media (max-width: 480px) {
  .lp-features, .lp-cases { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Codex visual refresh: livelier landing pages ===== */
.lp {
  --lp-ink: #122033;
  --lp-muted: #5c6b7d;
  --lp-line: rgba(28, 45, 68, .12);
  --lp-glow: 0 24px 70px rgba(18, 32, 51, .14);
  --lp-accent: var(--p);
  --lp-accent-2: var(--p2);
  --lp-accent-3: var(--p2);
  background:
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 34%, #f3f7fb 100%);
}

.lp-hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 96px 24px 112px;
  background:
    linear-gradient(135deg, rgba(10, 33, 47, .94), rgba(15, 78, 86, .9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 78px);
  isolation: isolate;
}

.lp-hero::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(106,17,203,.34), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(37,117,252,.22), transparent 26%),
    linear-gradient(120deg, transparent 0 44%, rgba(255,255,255,.07) 44% 46%, transparent 46% 100%);
  opacity: 1;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -90px 8%;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.42), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.lp-hero-inner {
  max-width: 980px;
}

.lp-badges {
  flex-wrap: wrap;
  justify-content: center;
}

.lp-badge,
.lp-badge-solo {
  border-radius: 999px;
  letter-spacing: .08em;
}

.lp-badge-from {
  background: rgba(255,255,255,.13);
  color: #dff7f4;
  border-color: rgba(255,255,255,.25);
}

.lp-badge-to,
.lp-badge-solo,
.lp-hero-btn,
.lp-step-num,
.lp-check-icon {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-3));
  box-shadow: 0 12px 34px rgba(37,117,252,.28);
}

.lp-hero h1 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.lp-hero-sub {
  max-width: 760px;
  color: rgba(232, 249, 246, .82);
}

.lp-hero-btn {
  position: relative;
  overflow: hidden;
}

.lp-hero-btn::after,
.lp-cta-strip-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: transform .55s ease;
}

.lp-hero-btn:hover::after,
.lp-cta-strip-btn:hover::after {
  transform: translateX(120%);
}

.lp-section {
  padding: 92px 24px;
}

.lp-section-gray {
  background:
    linear-gradient(180deg, #eef8f7 0%, #f7fbff 100%);
}

.lp-section h2 {
  color: var(--lp-ink);
  text-wrap: balance;
}

.lp-section-sub {
  color: var(--lp-muted);
}

.lp-steps {
  gap: 18px;
}

.lp-steps::before {
  top: 43px;
  background: linear-gradient(90deg, transparent, var(--lp-accent), var(--lp-accent-2), var(--lp-accent-3), transparent);
  opacity: .38;
}

.lp-step {
  padding: 26px 22px 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--lp-line);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(18,32,51,.07);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lp-step:hover {
  transform: translateY(-6px);
  border-color: rgba(106,17,203,.26);
  box-shadow: var(--lp-glow);
}

.lp-step h3,
.lp-feature h3,
.lp-case h3 {
  color: var(--lp-ink);
}

.lp-feature,
.lp-case {
  border-color: var(--lp-line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(18,32,51,.06);
}

.lp-feature {
  position: relative;
  overflow: hidden;
}

.lp-feature::before,
.lp-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106,17,203,.09), transparent 38%, rgba(37,117,252,.08));
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.lp-feature:hover::before,
.lp-case:hover::before {
  opacity: 1;
}

.lp-feature-icon {
  background: linear-gradient(135deg, rgba(106,17,203,.13), rgba(37,117,252,.14));
  color: var(--lp-ink);
}

.lp-case {
  position: relative;
  background: #fff;
}

.lp-case-tag {
  color: var(--p);
  background: rgba(106,17,203,.1);
  border: 1px solid rgba(106,17,203,.18);
}

.lp-section-dark {
  background:
    linear-gradient(135deg, #101923 0%, #0d2a31 58%, #152231 100%);
}

.lp-demo {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: 0 26px 90px rgba(0,0,0,.28);
}

.lp-demo-tabs {
  background: rgba(255,255,255,.08);
}

.lp-demo-tab.active {
  background: rgba(106,17,203,.22);
  border-bottom-color: var(--lp-accent-2);
}

.lp-demo-panel pre {
  background:
    linear-gradient(135deg, #101820, #0b1016);
  white-space: pre-wrap;
}

.lp-stats {
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
}

.lp-stat-num {
  background: linear-gradient(135deg, #58d5c8, #ffd27a);
  -webkit-background-clip: text;
  background-clip: text;
}

.lp-faq-item {
  box-shadow: 0 12px 34px rgba(18,32,51,.05);
}

.lp-faq-item.open {
  border-color: rgba(106,17,203,.28);
  box-shadow: 0 18px 48px rgba(37,117,252,.11);
}

.lp-faq-q:hover {
  color: var(--p);
}

.lp-faq-icon {
  background: rgba(106,17,203,.1);
  color: var(--p);
}

.lp-cta-strip {
  position: relative;
  overflow: hidden;
  background:
    var(--grad);
}

.lp-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent);
}

.lp-cta-strip > * {
  position: relative;
}

.lp-cta-strip-btn {
  position: relative;
  overflow: hidden;
  color: var(--p);
}

.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal,
  .lp-step,
  .lp-feature,
  .lp-case {
    transition: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .lp-hero { min-height: auto; padding: 72px 18px 80px; }
  .lp-section { padding: 64px 18px; }
  .lp-step { padding: 22px 18px; }
}

/* ===== Service pages 2026 redesign ===== */
.svc-page {
  --svc-max: 1500px;
  width: 100%;
  color: var(--text);
}

.svc-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 104px 40px 84px;
  overflow: hidden;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(106,17,203,.15), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(37,117,252,.14), transparent 36%),
    linear-gradient(160deg, #f0eaff 0%, #e8f0ff 42%, #f5f7fc 100%);
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(106,17,203,.16);
  box-shadow: var(--sh2);
  color: var(--p);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.svc-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 5px rgba(106,17,203,.12);
}

.svc-hero-format {
  margin: 0;
  color: var(--dark);
  font-size: clamp(54px, 9vw, 118px);
  line-height: .94;
  font-weight: 950;
  letter-spacing: -.055em;
}

.svc-h1-label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.svc-h1-from {
  color: rgba(51,65,85,.34);
}

.svc-h1-sep,
.svc-h1-to,
.svc-section h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-h1-sep {
  margin: 0 .07em;
}

.svc-hero-title {
  max-width: 920px;
  margin: 26px auto 0;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.035em;
}

.svc-hero-sub {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.9;
}

.svc-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.svc-btn-primary,
.svc-btn-secondary,
.svc-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  transition: .18s;
}

.svc-btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 34px rgba(37,117,252,.32);
}

.svc-btn-primary:hover,
.svc-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(37,117,252,.42);
}

.svc-btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
  box-shadow: var(--sh2);
}

.svc-band,
.svc-section,
.svc-cta {
  width: min(var(--svc-max), calc(100% - 80px));
  margin-left: auto;
  margin-right: auto;
}

.svc-band-tight {
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.svc-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh);
}

.svc-stat {
  min-height: 150px;
  padding: 24px 22px;
  text-align: left;
  border-right: 1px solid var(--line);
}

.svc-stat:last-child {
  border-right: 0;
}

.svc-stat strong {
  display: block;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: 0;
}

.svc-stat span {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.svc-stat small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.svc-section {
  padding: 82px 0;
}

.svc-section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100% - var(--svc-max)) / 2 + 40px));
  padding-right: max(40px, calc((100% - var(--svc-max)) / 2 + 40px));
  background: rgba(255,255,255,.42);
  border-top: 1px solid rgba(148,163,184,.16);
  border-bottom: 1px solid rgba(148,163,184,.16);
}

.svc-section-head {
  margin-bottom: 38px;
}

.svc-tag {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--p);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.svc-tag:before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--grad);
}

.svc-section h2,
.svc-cta h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.045em;
}

.svc-section-head p,
.svc-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.8;
}

.svc-cards,
.svc-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-card,
.svc-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--sh2);
}

.svc-card-index {
  margin-bottom: 18px;
  color: var(--p);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 850;
}

.svc-card h3,
.svc-feature h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.svc-card p,
.svc-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.svc-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.svc-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(106,17,203,.26);
  box-shadow: 0 18px 42px rgba(37,117,252,.12);
}

.svc-link-card h3 {
  color: var(--dark);
}

.svc-link-card:hover h3 {
  color: var(--p);
}

.svc-before-after {
  margin-top: 28px;
}

.lp-section-dark .svc-before-after .case-example-card {
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.svc-profile-example {
  margin-top: 18px;
}

.svc-profile-example .case-code-block {
  min-height: 0;
}

.svc-profile-example-note {
  max-width: none;
  margin: 0 0 12px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.65;
}

.svc-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--sh2);
}

.svc-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.svc-comparison-table th,
.svc-comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #334155;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.svc-comparison-table th {
  background: rgba(106,17,203,.06);
  color: var(--dark);
  font-weight: 900;
}

.svc-comparison-table tr:last-child td {
  border-bottom: 0;
}

.svc-feature {
  position: relative;
  overflow: hidden;
}

.svc-feature:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}

.svc-feature:hover:before {
  transform: scaleX(1);
}

.svc-faq {
  display: grid;
  gap: 10px;
}

.svc-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh2);
  overflow: hidden;
}

.svc-faq-q {
  width: 100%;
  min-height: 62px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.svc-faq-q span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(106,17,203,.08);
  color: var(--p);
  flex-shrink: 0;
}

.svc-faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.svc-faq-item.open .svc-faq-a {
  display: block;
}

.svc-faq-item.open .svc-faq-q span {
  background: var(--grad);
  color: #fff;
  transform: rotate(45deg);
}

.svc-cta {
  margin-bottom: 86px;
  padding: 72px 40px;
  text-align: center;
  border-radius: 28px;
  background: var(--grad);
  box-shadow: 0 24px 80px rgba(106,17,203,.28);
  overflow: hidden;
}

.svc-cta .svc-tag {
  justify-content: center;
  color: rgba(255,255,255,.72);
}

.svc-cta .svc-tag:before {
  background: rgba(255,255,255,.42);
}

.svc-cta h2,
.svc-cta p,
.svc-cta small {
  color: #fff;
}

.svc-cta p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.72);
}

.svc-cta a {
  margin-top: 30px;
  background: #fff;
  color: var(--p);
}

.svc-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.svc-try-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--sh);
  overflow: hidden;
}

.svc-advanced-cta {
  position: relative;
  width: min(var(--svc-max), calc(100% - 80px));
  margin: -34px auto 78px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr) auto;
  align-items: start;
  gap: 30px;
  border: 1px solid rgba(106,17,203,.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(106,17,203,.1) 0%, rgba(37,117,252,.07) 42%, rgba(255,255,255,.98) 100%);
  box-shadow: 0 22px 60px rgba(15,23,42,.1), inset 0 1px 0 rgba(255,255,255,.74);
  overflow: hidden;
}

.svc-advanced-cta:before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  width: 112px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.svc-advanced-cta h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.2;
}

.svc-advanced-cta p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.svc-advanced-cta__examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.svc-advanced-cta__examples span {
  position: relative;
  display: block;
  padding-left: 22px;
  color: #334155;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
}

.svc-advanced-cta__examples span:before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.svc-advanced-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(37,117,252,.24);
  transition: transform .18s, box-shadow .18s, color .18s, border-color .18s, background .18s;
}

.svc-advanced-cta a:hover {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 16px 36px rgba(37,117,252,.32);
  transform: translateY(-1px);
}

.svc-try-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(106,17,203,.03);
}

.svc-try-top > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 900;
}

.svc-try-top button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.svc-format-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(106,17,203,.09);
  color: var(--p);
  font-size: 12px;
  font-weight: 950;
}

.svc-format-pill-out {
  background: rgba(37,117,252,.1);
  color: #185fa5;
}

.svc-try-body,
.try-body-convert {
  display: grid;
  grid-template-columns: minmax(0,1fr) 112px minmax(0,1fr);
  min-height: 430px;
}

.try-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.try-panel-left {
  border-right: 1px solid var(--line);
}

.try-panel-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 8px;
  background: #fafbff;
  border-right: 1px solid var(--line);
}

.try-panel-right {
  background: #fafbff;
}

.try-panel-label,
.fmt-selector label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.drop-zone {
  position: relative;
  padding: 24px 12px;
  text-align: center;
  cursor: pointer;
  border: 2px dashed rgba(106,17,203,.22);
  border-radius: 16px;
  background: rgba(106,17,203,.02);
  transition: .18s;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--p);
  background: rgba(106,17,203,.05);
}

.drop-zone input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dz-hint {
  margin: 6px 0 3px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 850;
}

.dz-hint2 {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  max-width: 280px;
  margin: 0 auto;
}

.file-list,
.merge-files-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.file-fmt {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  flex-shrink: 0;
}

.file-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--dark);
  font-size: 11px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-sz {
  color: var(--muted);
  font-size: 10px;
  flex-shrink: 0;
}

.file-rm {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(231,76,60,.1);
  color: #c0392b;
  cursor: pointer;
}

.src-preview,
.res-preview {
  flex: 1;
  min-height: 130px;
  max-height: 270px;
  overflow: auto;
  padding: 13px;
  border-radius: 14px;
  background: #0f172a;
  color: #cbd5e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.src-preview {
  display: none;
}

.src-preview.show {
  display: block;
}

.res-preview--table {
  padding: 0;
  background: #fff;
  color: #334155;
  white-space: normal;
}

.result-table-preview {
  min-height: 130px;
  max-height: 270px;
  overflow: auto;
  border-radius: 14px;
}

.result-data-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 11px;
}

.result-data-table th,
.result-data-table td {
  max-width: 190px;
  padding: 9px 10px;
  border-right: 1px solid rgba(15,23,42,.07);
  border-bottom: 1px solid rgba(15,23,42,.07);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}

.result-data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: #334155;
  font-weight: 900;
  text-align: left;
}

.result-data-table td {
  color: #1f2937;
}

.result-data-table tr:nth-child(even) td {
  background: #fbfcff;
}

.src-preview-label {
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.csv-header-preview {
  min-height: 130px;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  background: #fff;
}

.csv-header-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, rgba(248,250,252,.98), rgba(255,255,255,.94));
}

.csv-header-preview__title {
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
}

.csv-header-preview__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.csv-header-preview__actions button {
  padding: 10px;
}

.csv-header-preview button {
  min-height: 26px;
  border: 1px solid rgba(106,17,203,.16);
  border-radius: 10px;
  background: rgba(106,17,203,.04);
  color: var(--p);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
}

.csv-header-preview--loading {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.csv-header-preview button:hover,
.csv-header-preview button.is-selected {
  border-color: rgba(106,17,203,.42);
  background: rgba(106,17,203,.1);
}

.csv-header-preview__status {
  padding: 7px 12px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  color: #64748b;
  font-size: 10px;
  line-height: 1.35;
}

.csv-preview-table-wrap {
  overflow: auto;
  flex: 1;
}

.csv-preview-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 11px;
}

.csv-preview-table th,
.csv-preview-table td {
  max-width: 180px;
  padding: 8px 10px;
  border-right: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
  color: #334155;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}

.csv-preview-table th {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 52px;
  background: #f8fafc;
  text-align: center;
}

.csv-preview-table th button {
  width: 30px;
  min-height: 24px;
  padding: 0;
}

.csv-preview-table tr.is-detected td {
  background: rgba(37,117,252,.04);
}

.csv-preview-table tr.is-selected th,
.csv-preview-table tr.is-selected td {
  background: rgba(106,17,203,.09);
  color: #1e1b4b;
}

.csv-preview-more {
  color: #64748b;
  font-weight: 850;
}

.mid-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(37,117,252,.3);
}

.mid-step {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f0f2f5;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.mid-step.active {
  background: rgba(106,17,203,.1);
  color: var(--p);
}

.mid-step.done {
  background: rgba(29,158,117,.1);
  color: #1d9e75;
}

.fmt-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fmt-pick {
  padding: 6px 13px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.fmt-pick.sel {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.try-run-slot {
  display: none;
}

.try-run-slot.is-visible {
  display: block;
}

.try-run-slot .try-go-btn {
  margin: 0;
}

.try-empty {
  flex: 1;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  opacity: .58;
}

.res-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.res-fmt-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.btn-dl,
.try-go-btn {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(37,117,252,.2);
}

.try-go-btn:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.svc-email-toggle {
  border: 0;
  background: transparent;
  color: var(--p);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}

.email-row {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.email-inp {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  outline: none;
  font-size: 12px;
}

.btn-send {
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  background: rgba(106,17,203,.09);
  color: var(--p);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.btn-send:disabled {
  opacity: .72;
  cursor: wait;
}

.btn-send.ok {
  background: rgba(16,185,129,.12);
  color: #047857;
}

.btn-send.err {
  background: rgba(239,68,68,.1);
  color: #b91c1c;
}

.size-err {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(231,76,60,.04);
  border: 1px solid rgba(231,76,60,.2);
}

.size-err.show {
  display: block;
}

.size-err-title {
  margin-bottom: 4px;
  color: #c0392b;
  font-size: 12px;
  font-weight: 900;
}

.size-err-text {
  margin-bottom: 8px;
  color: #a93226;
  font-size: 11px;
}

.size-err-cta {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.try-cinema {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 46%, rgba(106,17,203,.18), transparent 34%),
    linear-gradient(135deg, #0b1018, #0d1117 55%, #09111c);
}

.try-cinema:before,
.try-cinema:after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(148,163,184,.08);
  border-radius: 22px;
  pointer-events: none;
}

.try-cinema:after {
  inset: auto;
  left: 50%;
  top: 50%;
  width: min(540px, 70%);
  height: min(220px, 46%);
  border-color: rgba(106,17,203,.16);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,117,252,.12), transparent 62%);
  transform: translate(-50%, -50%);
}

.try-cinema.show {
  display: flex;
}

.cinema-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cinema-status {
  z-index: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.cinema-substatus {
  z-index: 1;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  text-align: center;
}

.cinema-bar-wrap {
  z-index: 1;
  width: min(360px, 58%);
  height: 3px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
}

.cinema-bar {
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg,#6a11cb,#2575fc);
  transition: width .4s ease;
}

.cinema-log {
  z-index: 1;
  min-height: 14px;
  color: rgba(45,212,191,.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  text-align: center;
}

.svc-app-panel {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  grid-template-areas:
    "copy flow"
    "copy preview";
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(106,17,203,.1), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: var(--sh);
}

.svc-app-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border-radius: 22px;
  background: #0d1117;
  color: #fff;
}

.svc-app-kicker {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45,212,191,.12);
  color: #5eead4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.svc-app-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.svc-app-copy p {
  margin: 0;
  color: rgba(226,232,240,.78);
  line-height: 1.65;
}

.svc-app-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-weight: 750;
}

.svc-app-flow {
  grid-area: flow;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.svc-app-step,
.svc-app-preview {
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(15,23,42,.045);
}

.svc-app-step {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.svc-app-step span {
  color: var(--p);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
}

.svc-app-step strong {
  color: var(--dark);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 650;
}

.svc-app-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.svc-app-preview {
  grid-area: preview;
  padding: 20px;
}

.svc-app-preview__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.svc-app-preview__head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(106,17,203,.08);
  color: var(--p);
  font-size: 12px;
  font-weight: 800;
}

.svc-app-preview ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-app-preview li {
  position: relative;
  padding-left: 20px;
  color: #475569;
  line-height: 1.5;
}

.svc-app-preview li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

@media (max-width: 980px) {
  .svc-hero { padding-left: 22px; padding-right: 22px; }
  .svc-band,
  .svc-section,
  .svc-cta,
  .svc-advanced-cta { width: calc(100% - 36px); }
  .svc-page .lp-section-dark .lp-section-inner { width: calc(100% - 36px); }
  .svc-advanced-cta { grid-template-columns: 1fr; margin-top: -34px; }
  .svc-advanced-cta a { justify-self: start; }
  .svc-section-muted { padding-left: 18px; padding-right: 18px; }
  .svc-stats,
  .svc-cards,
  .svc-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-app-panel {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "flow" "preview";
  }
  .svc-app-flow { grid-template-columns: 1fr; }
  .svc-try-body,
  .try-body-convert { grid-template-columns: 1fr; }
  .try-panel-left,
  .try-panel-mid { border-right: 0; border-bottom: 1px solid var(--line); }
  .try-panel-mid { min-height: 94px; flex-direction: row; }
}

@media (max-width: 640px) {
  .svc-hero { min-height: auto; padding-top: 74px; padding-bottom: 74px; }
  .svc-stats,
  .svc-cards,
  .svc-features { grid-template-columns: 1fr; }
  .svc-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .svc-stat:last-child { border-bottom: 0; }
  .svc-section { padding: 62px 0; }
  .svc-section-muted { padding-top: 62px; padding-bottom: 62px; }
  .svc-try-top { align-items: flex-start; flex-direction: column; }
  .try-panel { padding: 18px; }
  .try-panel-mid { display: none; }
  .svc-advanced-cta { padding: 22px; }
  .svc-advanced-cta__examples { grid-template-columns: 1fr; }
  .svc-cta { padding: 52px 22px; }
}

.lp-hero h1,
.svc-hero-title {
  font-weight: 600;
}
