:root {
  --pf-ink: #0f172a;
  --pf-muted: #64748b;
  --pf-paper: #ffffff;
  --pf-surface: #ffffff;
  --pf-soft: #f5f6fa;
  --pf-line: #e8eaf0;
  --pf-accent: #5b35d5;
  --pf-accent-2: #7c4dff;
  --pf-accent-dark: #4c1d95;
  --pf-accent-soft: #efe9ff;
  --pf-navy: #0b1220;
  --pf-radius: 18px;
  --pf-max: 1160px;
  --pf-font: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.platform-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--pf-font);
  color: var(--pf-ink);
  background: var(--pf-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--pf-font);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Nav (Azores blue gradient + official wordmark) ——— */
.platform-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2.25rem);
  background: linear-gradient(105deg, #0037d6 0%, #0a6dff 42%, #3bb2ff 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 55, 214, 0.28);
  transition: box-shadow 0.2s ease;
}
.platform-nav.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 40, 160, 0.38);
}
.platform-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.platform-nav-logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.platform-logo-mobile { display: none; }
.platform-logo-desktop { display: block; }
.platform-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.platform-nav-links a:hover { color: #fff; }
.platform-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.platform-regions {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.platform-regions a {
  min-width: 2.1rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
}
.platform-flag {
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.platform-regions a.is-active {
  background: #fff;
  color: #0037d6;
}
.platform-regions-menu { display: none; }
.platform-nav .platform-btn-sm {
  background: #fff;
  color: #0037d6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.platform-nav .platform-btn-sm:hover {
  background: #f0f7ff;
  color: #002bb0;
  filter: none;
}
.platform-btn-short { display: none; }
.platform-menu-btn {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}
.platform-menu-btn span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.platform-nav.is-open .platform-menu-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.platform-nav.is-open .platform-menu-btn span:nth-child(2) {
  opacity: 0;
}
.platform-nav.is-open .platform-menu-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
body.platform-menu-lock {
  overflow: hidden;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pf-accent) 0%, var(--pf-accent-2) 100%);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(91, 53, 213, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.platform-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(91, 53, 213, 0.34);
}
.platform-btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
}
.platform-btn-plan {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  font-size: 0.88rem;
}

.platform-section {
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
}
.platform-section-tone {
  background: var(--pf-soft);
}
.platform-section-inner {
  width: min(var(--pf-max), calc(100% - 2rem));
  margin: 0 auto;
}
.platform-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pf-accent);
}
.platform-section h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 800;
}
.platform-prose {
  margin: 0.85rem 0 0;
  color: var(--pf-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40rem;
}
.ls-center { text-align: center; }
.ls-center-prose {
  margin-left: auto;
  margin-right: auto;
}
.ls-accent { color: var(--pf-accent); }

/* ——— Hero ——— */
.ls-hero {
  background:
    radial-gradient(640px 320px at 12% 18%, rgba(91, 53, 213, 0.1), transparent 60%),
    radial-gradient(520px 280px at 88% 80%, rgba(124, 77, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  padding: clamp(2.2rem, 5vh, 3.6rem) 0 clamp(2.4rem, 5vh, 3.8rem);
  overflow: hidden;
}
.ls-hero-inner {
  width: min(var(--pf-max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.ls-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.ls-hero-copy h1 span { color: var(--pf-accent); }
.ls-hero-lead {
  margin: 1.05rem 0 0;
  max-width: 34rem;
  color: var(--pf-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.ls-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 1.5rem;
}
.ls-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--pf-ink);
}
.ls-demo:hover { color: var(--pf-accent); }
.ls-demo-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--pf-accent-soft);
  color: var(--pf-accent);
  font-size: 0.7rem;
}
.ls-trust {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--pf-muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.ls-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.ls-trust-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.7rem;
}
.ls-hero-visual { min-width: 0; }
.ls-hero-banner {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.16));
}

/* ——— Steps ——— */
.ls-steps {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}
.ls-steps::before {
  content: "";
  position: absolute;
  top: 2.35rem;
  left: 8%;
  right: 8%;
  border-top: 2px dashed #d8dce8;
  z-index: 0;
}
.ls-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ls-step-ico {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.ls-step-ico svg {
  width: 1.55rem;
  height: 1.55rem;
}
.ls-step-num {
  position: absolute;
  top: -0.2rem;
  right: -0.15rem;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #fff;
  color: var(--pf-ink);
  border: 1px solid var(--pf-line);
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.ls-step-purple .ls-step-ico { background: linear-gradient(145deg, #7c4dff, #5b35d5); }
.ls-step-green .ls-step-ico { background: linear-gradient(145deg, #34d399, #059669); }
.ls-step-orange .ls-step-ico { background: linear-gradient(145deg, #fb923c, #ea580c); }
.ls-step-blue .ls-step-ico { background: linear-gradient(145deg, #60a5fa, #2563eb); }
.ls-step-cyan .ls-step-ico { background: linear-gradient(145deg, #22d3ee, #0891b2); }
.ls-step h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}
.ls-step p {
  margin: 0.45rem 0 0;
  color: var(--pf-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ——— Categories ——— */
.ls-cats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}
.ls-cats-extra { margin-top: 1rem; }
.ls-cat {
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 20px;
  padding: 1.15rem 1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ls-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(91, 53, 213, 0.1);
}
.ls-cat-img {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  display: grid;
  place-items: center;
}
.ls-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ls-cat h3 {
  margin: 0;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 800;
}
.ls-cat-more-ico {
  background: var(--pf-accent-soft);
  gap: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-cat-more-ico span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--pf-accent);
}
.ls-outline-btn {
  margin: 1.75rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--pf-accent) 45%, #fff);
  background: #fff;
  color: var(--pf-accent);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.ls-outline-btn:hover {
  background: var(--pf-accent);
  color: #fff;
}

/* ——— Features ——— */
.ls-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}
.ls-feature {
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 20px;
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.ls-feature-ico {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
}
.ls-feature-ico svg {
  width: 1.35rem;
  height: 1.35rem;
}
.ls-feature-purple .ls-feature-ico { background: #efe9ff; color: #5b35d5; }
.ls-feature-orange .ls-feature-ico { background: #fff1e8; color: #ea580c; }
.ls-feature-green .ls-feature-ico { background: #e8faf2; color: #059669; }
.ls-feature-blue .ls-feature-ico { background: #e8f1ff; color: #2563eb; }
.ls-feature-pink .ls-feature-ico { background: #fce7f3; color: #db2777; }
.ls-feature-teal .ls-feature-ico { background: #e6fffb; color: #0d9488; }
.ls-feature h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}
.ls-feature p {
  margin: 0.45rem 0 0;
  color: var(--pf-muted);
  font-size: 0.94rem;
}

/* ——— Plans ——— */
.platform-plans {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}
.platform-plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 22px;
  padding: 1.25rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.platform-plan:hover { transform: translateY(-3px); }
.platform-plan.is-featured {
  border-color: color-mix(in srgb, var(--pf-accent) 55%, var(--pf-line));
  box-shadow: 0 16px 36px rgba(91, 53, 213, 0.14);
}
.platform-plan-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--pf-accent-soft);
  color: var(--pf-accent);
  font-size: 0.7rem;
  font-weight: 800;
}
.platform-plan h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}
.platform-plan header p {
  margin: 0.3rem 0 0;
  color: var(--pf-muted);
  font-size: 0.86rem;
}
.platform-plan-price {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.35rem;
}
.platform-plan-flag {
  font-size: 1.35rem;
  line-height: 1;
}
.platform-plan-price .platform-plan-amount {
  font-size: 1.7rem;
  font-weight: 800;
}
.platform-plan-price em {
  font-style: normal;
  color: var(--pf-muted);
  font-size: 0.85rem;
}
.platform-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.platform-plan li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--pf-muted);
  font-size: 0.86rem;
}
.platform-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pf-accent);
  font-weight: 800;
  font-size: 0.78rem;
}

.platform-plan-tabs {
  display: inline-flex;
  margin: 0;
  padding: 0.28rem;
  gap: 0.25rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--pf-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.platform-plan-switchers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.platform-plan-tab {
  border: 0;
  background: transparent;
  color: var(--pf-muted);
  padding: 0.62rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.platform-plan-tab.is-active {
  background: var(--pf-accent);
  color: #fff;
}
.platform-plan-billing-note,
.platform-plan-save {
  margin: 0.85rem 0 0;
  color: var(--pf-accent);
  font-size: 0.9rem;
  font-weight: 700;
}
.platform-plan-save { margin: 0; font-size: 0.82rem; }
.platform-plans[hidden] { display: none !important; }
.platform-plans.is-two {
  grid-template-columns: repeat(2, minmax(0, 18rem));
  justify-content: center;
}

/* ——— Testimonials ——— */
.ls-quotes-wrap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}
.ls-quotes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.35rem 0.15rem 0.75rem;
  scrollbar-width: none;
}
.ls-quotes::-webkit-scrollbar { display: none; }
.ls-quote {
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 20px;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.ls-quote-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.ls-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #7c4dff, #5b35d5);
  color: #fff;
  font-weight: 800;
}
.ls-quote-head strong {
  display: block;
  font-size: 0.98rem;
}
.ls-quote-head span {
  color: var(--pf-muted);
  font-size: 0.82rem;
}
.ls-quote > p {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
}
.ls-stars {
  margin-top: 0.85rem;
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.ls-quotes-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--pf-line);
  background: #fff;
  color: var(--pf-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.ls-quotes-nav:hover {
  border-color: var(--pf-accent);
  color: var(--pf-accent);
}
.ls-quotes-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.ls-quotes-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cfd5e4;
  cursor: pointer;
}
.ls-quotes-dots button.is-active {
  width: 1.15rem;
  background: var(--pf-accent);
}

/* ——— Customers ——— */
.platform-customers {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  text-align: left;
}
.platform-customer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  min-height: 88px;
}
.platform-customer-mark {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.platform-customer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  background: #fff;
}
.platform-customer-copy {
  min-width: 0;
}
.platform-customer-copy strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.platform-customer-copy span {
  display: block;
  margin-top: 0.18rem;
  color: var(--pf-muted);
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.platform-customer.tone-purple .platform-customer-mark { background: #efe9ff; color: #5b35d5; }
.platform-customer.tone-green .platform-customer-mark { background: #e8faf2; color: #059669; }
.platform-customer.tone-orange .platform-customer-mark { background: #fff1e8; color: #ea580c; }
.platform-customer.tone-blue .platform-customer-mark { background: #e8f1ff; color: #2563eb; }
.platform-customer.tone-pink .platform-customer-mark { background: #fce7f3; color: #db2777; }
.platform-customer.tone-teal .platform-customer-mark { background: #e6fffb; color: #0d9488; }
.platform-empty {
  margin: 1.2rem 0 0;
  color: var(--pf-muted);
}

/* ——— FAQ ——— */
.ls-faq {
  margin: 1.75rem auto 0;
  max-width: 720px;
  text-align: left;
  display: grid;
  gap: 0.7rem;
}
.ls-faq-item {
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}
.ls-faq-item summary {
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}
.ls-faq-item summary::-webkit-details-marker { display: none; }
.ls-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--pf-accent);
  font-weight: 800;
}
.ls-faq-item[open] summary::after { content: "–"; }
.ls-faq-item p {
  margin: 0.7rem 0 0.15rem;
  color: var(--pf-muted);
  font-size: 0.95rem;
}

/* ——— CTA band ——— */
.ls-cta {
  padding: 0 0 clamp(2.6rem, 6vw, 3.6rem);
}
.ls-cta-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: clamp(1.35rem, 3.5vw, 1.75rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 24px;
  background: linear-gradient(120deg, #4c1d95 0%, #5b35d5 45%, #7c4dff 100%);
  color: #fff;
  box-shadow: 0 20px 44px rgba(91, 53, 213, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.ls-cta-ico {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  flex-shrink: 0;
}
.ls-cta-ico svg {
  width: 1.7rem;
  height: 1.7rem;
}
.ls-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: #fff;
  max-width: 22ch;
}
.ls-cta-copy p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  font-size: 0.95rem;
}
.ls-cta-action {
  text-align: center;
}
.ls-cta-btn {
  background: #fff;
  color: var(--pf-accent-dark);
  box-shadow: none;
}
.ls-cta-btn:hover {
  background: #f8fafc;
  color: var(--pf-accent-dark);
  filter: none;
}
.ls-cta-note {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ——— Footer ——— */
.platform-footer {
  padding: 3rem 0 1.4rem;
  background: var(--pf-navy);
  color: rgba(255, 255, 255, 0.68);
}
.platform-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.85fr) 1.15fr;
  gap: 1.75rem 1.25rem;
}
.platform-footer-logo img {
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
}
.platform-footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 28rem;
}
.platform-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.platform-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.platform-social a:hover { background: var(--pf-accent); }
.platform-footer h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}
.platform-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.platform-footer li a {
  font-size: 0.88rem;
}
.platform-footer li a:hover { color: #fff; }
.platform-footer-news p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
}
.platform-news {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.3rem 0.25rem 0.9rem;
}
.platform-news input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
}
.platform-news input::placeholder { color: rgba(255, 255, 255, 0.45); }
.platform-news button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pf-accent), var(--pf-accent-2));
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.platform-copy {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.84rem;
}

@media (max-width: 1080px) {
  .ls-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ls-steps::before { display: none; }
  .platform-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .platform-nav {
    flex-wrap: wrap;
    padding: 0.7rem 1rem;
  }
  .platform-nav-brand { z-index: 2; flex-shrink: 1; min-width: 0; }
  .platform-nav-actions {
    z-index: 2;
    margin-left: auto;
    flex-shrink: 0;
    gap: 0.4rem;
  }
  .platform-nav-actions .platform-regions-bar { display: none; }
  .platform-menu-btn { display: inline-flex; }
  .platform-nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin-top: 0.65rem;
    padding: 0.55rem 0 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .platform-nav.is-open .platform-nav-links { display: flex; }
  .platform-regions-menu {
    display: flex;
    width: 100%;
    justify-content: stretch;
    margin: 0 0 0.45rem;
    padding: 0.28rem;
  }
  .platform-regions-menu a {
    flex: 1;
    min-width: 0;
    min-height: 42px;
    padding: 0.55rem 0.35rem;
    font-size: 0.82rem;
  }
  .platform-nav-links > a {
    display: block;
    padding: 0.85rem 0.7rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
  }
  .platform-nav-links > a:hover,
  .platform-nav-links > a:active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .platform-logo-desktop { display: none; }
  .platform-logo-mobile { display: block; }
  .platform-nav-logo.platform-logo-mobile {
    height: 36px;
    max-width: min(148px, 42vw);
  }
  .platform-btn-full { display: none; }
  .platform-btn-short { display: inline; }
  .platform-nav .platform-btn-sm {
    min-height: 40px;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .platform-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-plans.is-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-customers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ls-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ls-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ls-hero {
    padding: 1.6rem 0 2rem;
  }
  .ls-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ls-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
  }
  .ls-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .ls-hero-cta .platform-btn,
  .ls-demo {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .ls-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .ls-cta-band {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .ls-cta-copy h2 { max-width: none; }
  .platform-section {
    padding: 2.6rem 0;
  }
  .platform-section-inner {
    width: min(var(--pf-max), calc(100% - 1.5rem));
  }
}
@media (max-width: 640px) {
  .platform-plans,
  .ls-features { grid-template-columns: 1fr; }
  .platform-plans.is-two { grid-template-columns: 1fr; }
  .platform-customers { grid-template-columns: 1fr; }
  .ls-cats,
  .ls-steps { grid-template-columns: 1fr 1fr; }
  .ls-step {
    text-align: left;
  }
  .ls-step-ico {
    margin-left: 0;
    margin-right: auto;
  }
  .ls-cat {
    padding: 0.95rem 0.75rem 1rem;
  }
  .ls-cat-img {
    width: 3.6rem;
    height: 3.6rem;
  }
  .ls-cat h3 { font-size: 0.88rem; }
  .ls-quotes {
    grid-auto-columns: minmax(78%, 1fr);
  }
  .platform-footer {
    padding: 2.2rem 0 1.2rem;
  }
  .platform-footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .ls-quotes-wrap { grid-template-columns: 1fr; }
  .ls-quotes-nav { display: none; }
  .ls-outline-btn {
    width: 100%;
    justify-content: center;
  }
  .platform-plan-price .platform-plan-amount { font-size: 1.5rem; }
  .ls-faq-item summary {
    font-size: 0.95rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 420px) {
  .ls-cats,
  .ls-steps { grid-template-columns: 1fr; }
  .ls-step { text-align: center; }
  .ls-step-ico { margin-left: auto; margin-right: auto; }
  .platform-btn-nav-cta .platform-btn-short { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  .platform-btn,
  .ls-cat,
  .platform-plan,
  .platform-menu-btn span {
    transition: none;
  }
}

body.platform-modal-lock { overflow: hidden; }
.pf-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 80;
  transform: translateX(-50%);
  max-width: min(520px, calc(100% - 1.5rem));
  background: #065f46;
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 16px 40px rgba(6, 95, 70, 0.28);
}
.pf-toast.is-gone { display: none; }
.pf-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4.5rem 1rem 1.5rem;
  background: rgba(11, 18, 32, 0.62);
  overflow: auto;
}
.pf-modal-backdrop.is-open { display: flex; }
.pf-modal {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  margin: auto;
}
.pf-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem 0.35rem;
}
.pf-modal-head h2 {
  margin: 0;
  font-size: 1.35rem;
}
.pf-modal-close {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.pf-modal-form { padding: 0.4rem 1.35rem 1.35rem; }
.pf-modal-lead {
  margin: 0 0 1rem;
  color: var(--pf-muted);
  font-size: 0.95rem;
}
.pf-form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.pf-form-errors ul { margin: 0; padding-left: 1.1rem; }
.pf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.pf-field-full { grid-column: 1 / -1; }
.pf-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.3rem;
}
.pf-field label span { font-weight: 500; color: #94a3b8; }
.pf-field input,
.pf-field select,
.pf-field textarea {
  width: 100%;
  border: 1px solid var(--pf-line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
  color: var(--pf-ink);
}
.pf-field textarea { resize: vertical; min-height: 88px; }
.pf-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.pf-captcha input { max-width: 8rem; }
.pf-modal-foot {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.55rem;
}
.pf-modal-foot .platform-btn { width: 100%; justify-content: center; }
.pf-modal-foot p {
  margin: 0;
  text-align: center;
  color: var(--pf-muted);
  font-size: 0.82rem;
}
@media (max-width: 640px) {
  .pf-form-grid { grid-template-columns: 1fr; }
  .pf-modal-backdrop { padding: 1rem 0.75rem; }
}

/* ——— Store signup ——— */
.start-body {
  background:
    radial-gradient(820px 380px at 6% -4%, #dbeafe 0%, transparent 58%),
    radial-gradient(640px 340px at 96% 4%, #e0e7ff 0%, transparent 52%),
    linear-gradient(180deg, #eef4ff 0%, #f7f9fc 42%, #f4f6fb 100%);
}
.start-topbar,
.start-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem clamp(1rem, 4vw, 2.25rem);
  background: linear-gradient(105deg, #0037d6 0%, #0a6dff 42%, #3bb2ff 100%);
}
.start-topbar .platform-nav-logo,
.start-nav .platform-nav-logo { height: 40px; width: auto; }
.start-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.start-help {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 650;
  font-size: 0.88rem;
  opacity: 0.95;
}
.start-help svg { width: 18px; height: 18px; }
.start-help:hover { opacity: 1; }
.start-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: #1e3a8a;
  font-weight: 750;
  font-size: 0.86rem;
  padding: 0.48rem 0.95rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.start-home-btn:hover { background: #f8fafc; }
.start-nav-link {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.92;
}
.start-nav-link:hover { opacity: 1; }
.start-main { padding: 1.8rem 1rem 3.5rem; }
.start-shell {
  width: min(1080px, calc(100% - 1.25rem));
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: clamp(1.4rem, 3.2vw, 2.5rem);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  position: relative;
}
.start-hero {
  margin-bottom: 0.2rem;
}
.start-hero h1,
.start-shell h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: #0f1b3d;
}
.start-lead {
  margin: 0.55rem 0 0;
  color: var(--pf-muted);
  max-width: 38rem;
}
.start-rocket {
  width: 220px;
  background: linear-gradient(160deg, #efe9ff, #f6f2ff);
  border-radius: 22px;
  padding: 0.85rem 1rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.08);
}
.start-rocket-art {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 8px 10px rgba(99, 102, 241, 0.25));
}
.start-rocket p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: #4338ca;
}
.start-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.5rem auto 1.6rem;
  padding: 0;
  max-width: 560px;
  position: relative;
}
.start-steps::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: #e5e7eb;
}
.start-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}
.start-steps li span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef0f6;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  box-shadow: 0 0 0 6px #fff;
}
.start-steps li strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #94a3b8;
}
.start-steps li small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.74rem;
  font-weight: 500;
  color: #94a3b8;
}
.start-steps li.is-active strong,
.start-steps li.is-done strong { color: var(--pf-ink); }
.start-steps li.is-active small { color: var(--pf-muted); }
.start-steps li.is-active span,
.start-steps li.is-done span {
  background: #6366f1;
  color: #fff;
}
.start-pane[data-step="3"] > p,
.start-pane[data-step="4"] > p {
  margin: 0 0 1.1rem;
}
.start-type-panel[hidden],
.start-industry[hidden],
.start-rocket[hidden] {
  display: none !important;
}
.start-pane { display: none; }
.start-pane.is-active { display: block; }
.start-pane h2 {
  margin: 0 0 0.3rem;
  font-size: 1.22rem;
  color: #0f1b3d;
}
.start-pane > p,
.start-cat-head p {
  margin: 0;
  color: var(--pf-muted);
  font-size: 0.92rem;
}
.start-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.start-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: min(260px, 100%);
  background: #f3f5f9;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  color: #94a3b8;
}
.start-search svg { width: 18px; height: 18px; flex-shrink: 0; }
.start-search input {
  border: 0;
  background: transparent;
  outline: none;
  width: 100%;
  font: inherit;
  color: var(--pf-ink);
}
.start-industries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.start-industry {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 88px;
  text-align: left;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  font: inherit;
  position: relative;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}
.start-industry:hover { filter: brightness(0.99); }
.start-industry.tone-food { background: #fff1e8; }
.start-industry.tone-grocery { background: #eaf8ef; }
.start-industry.tone-boutique { background: #fde8f1; }
.start-industry.tone-beauty { background: #efe9ff; }
.start-industry.tone-medical { background: #e8f3ff; }
.start-industry.tone-realty { background: #fff6e5; }
.start-industry.tone-garden { background: #eaf8ef; }
.start-industry.tone-auto { background: #fde8e8; }
.start-industry.tone-solar { background: #e8f4ff; }
.start-industry.tone-security { background: #eaf0ff; }
.start-industry.tone-other { background: #f4f6fb; }
.start-industry.is-selected {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1, 0 10px 24px rgba(99, 102, 241, 0.14);
}
.start-industry.is-selected .start-industry-go { visibility: hidden; }
.start-industry.is-selected::after {
  content: "✓";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #6366f1;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}
.start-industry-emoji {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}
.start-industry-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}
.start-industry-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f1b3d;
}
.start-industry-copy small {
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.35;
}
.start-industry-go {
  color: #94a3b8;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 400;
}
.start-popular { margin-top: 0.4rem; }
.start-popular-label,
.start-types-label {
  margin: 1.35rem 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.start-types { margin-top: 0.15rem; }
.start-type-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.85rem;
}
.start-type-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 92px;
  text-align: left;
  border: 1.5px solid transparent;
  background: #f7f8fc;
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  cursor: pointer;
  font: inherit;
  position: relative;
}
.start-type-row:hover { background: #f1f3f9; }
.start-type-row.is-selected {
  border-color: #6366f1;
  background: #f5f3ff;
  box-shadow: 0 0 0 1px #6366f1;
}
.start-type-row.is-selected .start-industry-go { visibility: hidden; }
.start-type-row.is-selected::after {
  content: "✓";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #6366f1;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.start-type-emoji {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
  background: #fff;
}
.start-type-row span:nth-child(2) { min-width: 0; }
.start-type-row strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f1b3d;
}
.start-type-row small {
  display: block;
  margin-top: 0.15rem;
  color: var(--pf-muted);
  font-size: 0.74rem;
  line-height: 1.3;
}
.start-type-group h3 svg,
.start-choice-icon svg,
.start-choice-icon .type-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.start-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.55rem;
}
.start-choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  border: 1px solid var(--pf-line);
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 0.8rem;
  cursor: pointer;
  font: inherit;
}
.start-choice:hover { border-color: color-mix(in srgb, var(--pf-accent) 45%, var(--pf-line)); }
.start-choice.is-selected {
  border-color: var(--pf-accent);
  background: var(--pf-accent-soft);
  box-shadow: inset 0 0 0 1px var(--pf-accent);
}
.start-choice-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--pf-accent-soft);
  color: var(--pf-accent);
  flex-shrink: 0;
}
.start-choice.is-selected .start-choice-icon {
  background: var(--pf-accent);
  color: #fff;
}
.start-choice strong { font-size: 0.9rem; }
.start-choice small {
  display: block;
  margin-top: 0.2rem;
  color: var(--pf-muted);
  font-size: 0.75rem;
}
.start-method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.start-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.start-hint {
  margin: 0.4rem 0 0;
  color: var(--pf-muted);
  font-size: 0.8rem;
}
.start-slug-row,
.start-phone {
  display: grid;
  gap: 0.5rem;
}
.start-slug-row {
  grid-template-columns: minmax(0, 1fr) auto;
}
.start-phone {
  grid-template-columns: minmax(8.5rem, 0.9fr) minmax(0, 1.2fr);
}
.start-phone select,
.start-check-btn {
  font: inherit;
  border: 1px solid var(--pf-line);
  background: #fff;
  border-radius: 12px;
}
.start-phone select {
  padding: 0.7rem 0.7rem;
  color: var(--pf-ink);
}
.start-check-btn {
  padding: 0.7rem 0.95rem;
  font-weight: 750;
  color: var(--pf-accent);
  cursor: pointer;
  white-space: nowrap;
}
.start-check-btn:hover { background: var(--pf-accent-soft); }
.start-status {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  font-weight: 650;
}
.start-status.is-ok { color: #15803d; }
.start-status.is-bad { color: #b91c1c; }
.start-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.start-back {
  border: 0;
  background: transparent;
  color: var(--pf-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0.7rem 0.4rem;
}
.start-plan {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--pf-accent) 45%, var(--pf-line));
  border-radius: 20px;
  padding: 1.2rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, #faf8ff, #fff);
  margin-bottom: 1.1rem;
}
.start-plan-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--pf-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.start-plan h3 { margin: 0; font-size: 1.2rem; }
.start-plan > p { margin: 0.35rem 0 0; color: var(--pf-muted); }
.start-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.85rem 0;
}
.start-plan-price span { font-size: 1.6rem; font-weight: 800; }
.start-plan-price em { font-style: normal; color: var(--pf-muted); font-size: 0.85rem; }
.start-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--pf-muted);
  font-size: 0.88rem;
}
.start-plan li { padding-left: 1rem; position: relative; }
.start-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pf-accent);
  font-weight: 800;
}
.start-captcha { max-width: 22rem; }
.start-captcha-word {
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: #eef0ff;
  letter-spacing: 0.16em;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f1b3d;
  text-align: center;
  min-width: 7.5rem;
}
.start-launch {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
  align-items: stretch;
}
.start-browser {
  border: 1px solid #e4e7ff;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f8ff 0%, #fff 55%);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.start-browser-chrome {
  padding: 0.75rem 0.85rem 0.65rem;
  background: #eef1fb;
  border-bottom: 1px solid #e4e7ff;
}
.start-browser-dots {
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 4px 4px, #ff6b6b 3.2px, transparent 3.4px),
    radial-gradient(circle at 18px 4px, #fbbf24 3.2px, transparent 3.4px),
    radial-gradient(circle at 32px 4px, #34d399 3.2px, transparent 3.4px);
}
.start-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  font-size: 0.82rem;
}
.start-browser-bar span {
  color: #22c55e;
  font-size: 0.55rem;
  line-height: 1;
}
.start-browser-bar strong {
  font-size: 0.88rem;
  font-weight: 750;
  color: #0f1b3d;
  word-break: break-all;
}
.start-browser-body {
  padding: 1.6rem 1.4rem 1.5rem;
  flex: 1;
}
.start-launch-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
}
.start-browser-body h3 {
  margin: 0;
  font-size: 1.55rem;
  color: #0f1b3d;
}
.start-browser-body p:last-child {
  margin: 0.55rem 0 0;
  color: var(--pf-muted);
  max-width: 28rem;
}
.start-launch-side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.start-launch-plan {
  border: 1px solid #e4e7ff;
  border-radius: 20px;
  padding: 1rem 1.05rem 0.95rem;
  background: #fff;
}
.start-launch-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.start-launch-plan-top strong {
  display: block;
  font-size: 1.05rem;
}
.start-launch-plan-top small {
  display: block;
  margin-top: 0.2rem;
  color: var(--pf-muted);
  font-size: 0.8rem;
}
.start-launch-plan-top span {
  flex-shrink: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--pf-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}
.start-launch-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
  color: var(--pf-muted);
  font-size: 0.86rem;
}
.start-launch-plan li { padding-left: 1.05rem; position: relative; }
.start-launch-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pf-accent);
  font-weight: 800;
}
.start-launch-captcha label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 750;
}
.start-captcha-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
}
.start-captcha-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--pf-line);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}
.start-launch-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: auto;
}
.start-launch-actions .platform-btn { flex: 1; justify-content: center; }
.start-notice-modal {
  width: min(420px, 100%);
}
.start-notice-modal .platform-btn { width: 100%; justify-content: center; }
.start-url-card {
  display: grid;
  gap: 0.3rem;
  margin: 0 0 1.1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: #f4f6ff;
  border: 1px solid #e4e7ff;
  text-align: left;
}
.start-url-card span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.start-url-card strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f1b3d;
  word-break: break-all;
}
.start-success .start-url-card {
  margin: 1.1rem auto 1.2rem;
  max-width: 32rem;
}
.start-success-browser {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 1.15rem auto 0;
  max-width: 36rem;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.start-success-browser:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(91, 53, 213, 0.12);
}
.start-success-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.15rem 0 0.35rem;
}
.start-success-actions .platform-btn,
.start-success-actions .start-btn-secondary {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-width: 12.5rem;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0 1.35rem;
  line-height: 1;
  transform: none;
  box-shadow: none;
}
.start-success-actions .platform-btn {
  box-shadow: 0 10px 24px rgba(91, 53, 213, 0.28);
}
.start-success-actions .platform-btn:hover {
  transform: none;
}
.start-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid #d7dce8;
  background: #fff;
  color: #0f1b3d;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.start-btn-secondary:hover {
  background: #f8f9ff;
  border-color: #c5cbed;
}
.start-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(247, 248, 252, 0.78);
  backdrop-filter: blur(8px);
}
.start-loader[hidden] { display: none; }
.start-loader-card {
  width: min(420px, 100%);
  text-align: center;
  padding: 1.6rem 1.4rem 1.45rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e4e7ff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.start-loader-spin {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid #ece9ff;
  border-top-color: var(--pf-accent);
  animation: start-spin 0.8s linear infinite;
}
.start-loader-card strong {
  display: block;
  font-size: 1.12rem;
  color: #0f1b3d;
}
.start-loader-card p {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.45;
}
@keyframes start-spin {
  to { transform: rotate(360deg); }
}
.start-honeypot {
  position: absolute;
  left: -10000px;
  height: 0;
  overflow: hidden;
}
.pf-error-body {
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(91, 53, 213, 0.08), transparent 55%),
    var(--pf-soft);
}
.pf-error-main {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem 2.5rem;
}
.pf-error-card {
  width: min(520px, 100%);
  text-align: center;
  padding: 2rem 1.4rem 1.6rem;
  background: #fff;
  border: 1px solid #e4e7ff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.pf-error-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--pf-accent-soft);
  color: var(--pf-accent);
}
.pf-error-mark svg { width: 42px; height: 42px; }
.pf-error-card h1 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.55rem, 4vw, 2rem);
  color: #0f1b3d;
}
.pf-error-copy {
  margin: 0.7rem auto 0;
  max-width: 28rem;
  color: var(--pf-muted);
  font-size: 1rem;
}
.pf-error-actions {
  margin-top: 1.25rem;
}
@media (max-width: 720px) {
  .pf-error-actions {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .pf-error-actions .platform-btn,
  .pf-error-actions .start-btn-secondary {
    width: 100%;
    min-width: 0;
  }
}
.start-success { text-align: center; padding-top: 2.4rem; padding-bottom: 2.6rem; }
.start-success h1 { margin-left: auto; margin-right: auto; }
.start-success .start-lead { margin-left: auto; margin-right: auto; }
.start-success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--pf-accent-soft);
  color: var(--pf-accent);
}
.start-success-mark svg { width: 42px; height: 42px; }
.start-success-list {
  list-style: none;
  margin: 0 auto 1.4rem;
  padding: 0;
  max-width: 28rem;
  text-align: left;
  display: grid;
  gap: 0.45rem;
  color: var(--pf-muted);
}
.start-success-list li { padding-left: 1.1rem; position: relative; }
.start-success-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pf-accent);
  font-weight: 800;
}
@media (max-width: 900px) {
  .start-industries,
  .start-type-panel { grid-template-columns: 1fr 1fr; }
  .start-hero { grid-template-columns: 1fr; }
  .start-rocket { display: none; }
  .start-launch { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .start-fields,
  .start-method,
  .start-industries,
  .start-type-panel { grid-template-columns: 1fr; }
  .start-cat-head { flex-direction: column; align-items: stretch; }
  .start-actions,
  .start-launch-actions { flex-direction: column-reverse; }
  .start-actions .platform-btn,
  .start-launch-actions .platform-btn { width: 100%; justify-content: center; }
  .start-success-actions { flex-direction: column; flex-wrap: wrap; }
  .start-success-actions .platform-btn,
  .start-success-actions .start-btn-secondary { width: 100%; justify-content: center; min-width: 0; }
  .start-captcha-row { grid-template-columns: 1fr; }
  .start-topbar-actions { gap: 0.55rem; }
  .start-help span { display: none; }
  .start-home-btn { padding: 0.42rem 0.7rem; font-size: 0.8rem; }
}
