@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --pink: #ff2d87;
  --pink-2: #ff4da6;
  --purple: #8b5cf6;
  --navy: #070414;
  --ink: #111827;
  --muted: #6b7280;
  --line: #eceef3;
  --max: 1220px;
  --font: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 22px 50px rgba(15, 10, 40, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 700; border: 1.5px solid transparent; cursor: pointer;
  white-space: nowrap;
}
.btn--pink {
  background: linear-gradient(90deg, #ff2d87, #ff4da6);
  color: #fff; box-shadow: 0 10px 24px rgba(255, 45, 135, 0.35);
}
.btn--pink:hover { filter: brightness(1.05); color: #fff; }
.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.28);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--outline {
  background: #fff; color: var(--pink); border-color: #ffd0e4;
}
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 0.84rem; }
.kicker {
  margin: 0 0 10px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink);
}

.top {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 82% 48%, rgba(99, 102, 241, 0.38), transparent 58%),
    radial-gradient(ellipse 40% 55% at 92% 78%, rgba(236, 72, 153, 0.22), transparent 55%),
    linear-gradient(180deg, #07061a 0%, #0b0822 100%);
}
.site-header {
  position: relative; z-index: 50;
  background: transparent;
  border-bottom: 0;
}
.site-header.is-scrolled {
  position: sticky; top: 0;
  background: rgba(7, 6, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-shell {
  height: 84px; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1rem;
}
.nav-end { display: flex; align-items: center; gap: 14px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; letter-spacing: -0.03em; font-size: 1.12rem; }
.brand img, .brand-mark { width: 36px; height: 36px; border-radius: 10px; }
.desktop-nav { display: none; gap: 28px; justify-content: center; }
.desktop-nav a { color: #cbd5e1; font-size: 0.92rem; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: 0.7;
}
.lang {
  display: none; align-items: center; gap: 6px; color: #cbd5e1; font-size: 0.86rem; font-weight: 600;
  background: none; border: 0; cursor: default;
}
.mobile-menu { position: relative; }
.mobile-menu summary {
  list-style: none; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; display: grid; place-content: center; gap: 4px; cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 16px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-menu nav {
  position: absolute; right: 0; top: 48px; width: 220px; padding: 8px;
  background: #16102a; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
  display: flex; flex-direction: column;
}
.mobile-menu nav a { color: #fff; padding: 10px 12px; border-radius: 8px; font-weight: 600; }
.mobile-menu nav a:hover { background: rgba(255,255,255,0.06); }
@media (min-width: 980px) {
  .desktop-nav, .lang { display: flex; }
  .mobile-menu { display: none; }
}

.hero {
  position: relative;
  color: #fff;
  background: transparent;
  padding: 18px 0 88px;
}
.hero-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(460px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
  }
}
.hero-copy { padding-top: 8px; }
.hero-kicker {
  display: inline-flex; align-items: center;
  margin: 0 0 18px; padding: 6px 14px;
  color: #ff8ab8; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid rgba(255, 45, 135, 0.45);
  background: rgba(255, 45, 135, 0.12);
  border-radius: 999px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  line-height: 1.08; letter-spacing: -0.045em; font-weight: 800;
}
.hero h1 .line { display: block; color: #fff; }
.hero h1 em {
  font-style: normal; color: #ff2d87;
}
@media (min-width: 1080px) {
  .hero h1 { font-size: 3.15rem; }
  .hero h1 .line { white-space: nowrap; }
}
.hero-text { margin: 0 0 26px; max-width: 34rem; color: #94a3b8; font-size: 1.02rem; line-height: 1.6; }
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 16px 18px;
  margin: 0 0 26px; padding: 0; list-style: none;
}
@media (min-width: 1080px) {
  .trust-pills { flex-wrap: nowrap; gap: 12px 14px; }
}
.trust-pills li { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: #e2e8f0; line-height: 1.2; }
.trust-pills i {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  flex: 0 0 42px;
}
.trust-pills .t-pink { background: rgba(255, 45, 135, 0.16); color: #ff6bab; }
.trust-pills .t-blue { background: rgba(59, 130, 246, 0.18); color: #60a5fa; }
.trust-pills .t-teal { background: rgba(45, 212, 191, 0.16); color: #2dd4bf; }
.trust-pills .t-purple { background: rgba(168, 85, 247, 0.18); color: #c084fc; }
.trust-pills svg { width: 18px; height: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.join { display: flex; align-items: center; gap: 8px; color: #94a3b8; font-size: 0.84rem; margin: 0; }
.join-globe { width: 16px; height: 16px; color: #22c55e; flex: 0 0 16px; }

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 28px 8px 24px 0;
}
.hero-caption {
  position: absolute; right: 8px; top: 0; margin: 0;
  font-size: 0.95rem; font-weight: 600; font-style: italic; color: #e9d5ff;
  text-align: right; line-height: 1.3; z-index: 4;
}
.caption-arrow {
  position: absolute; right: 92px; top: 8px; width: 78px; height: 58px;
  z-index: 4; pointer-events: none;
}
.hero-glow {
  position: absolute; right: 0; top: 10%; width: 88%; height: 88%;
  background: radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.55), transparent 64%);
  filter: blur(12px); pointer-events: none; z-index: 0;
}
.dash {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 132px 1fr; gap: 10px;
  width: min(100%, 560px);
  margin-left: auto;
  padding: 14px 14px 14px 10px;
  min-height: 390px;
  background: linear-gradient(180deg, #16142c, #12102a);
  border-radius: 28px;
  border: 1px solid rgba(147, 197, 253, 0.38);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.12), 0 0 70px rgba(99, 102, 241, 0.35), 0 28px 60px rgba(0,0,0,0.45);
}
.dash-side { padding: 10px 6px; color: #94a3b8; font-size: 0.68rem; }
.dash-side strong {
  display: flex; align-items: center; gap: 6px; color: #fff; font-size: 0.72rem;
  margin: 0 0 12px 6px;
}
.dash-mark {
  width: 8px; height: 8px; border-radius: 50%; background: #ff2d87; flex: 0 0 8px;
}
.dash-side p {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 2px; padding: 6px 8px; border-radius: 8px;
}
.dash-side svg { width: 13px; height: 13px; flex: 0 0 13px; opacity: 0.85; }
.dash-side p.active {
  background: rgba(255,255,255,0.08); color: #fff; font-weight: 700;
}
.site-card {
  background: #fff; color: var(--ink); border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  min-height: 360px;
}
.site-bar {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: #fff;
}
.site-bar .play {
  width: 18px; height: 18px; border-radius: 50%; background: #ef4444;
  box-shadow: inset -4px 0 0 0 #fff;
}
.site-bar b { font-size: 0.78rem; letter-spacing: -0.02em; }
.bar-dots { margin-left: auto; display: flex; gap: 4px; }
.bar-dots i { width: 6px; height: 6px; border-radius: 50%; background: #e5e7eb; }
.site-hero {
  display: grid; grid-template-columns: 1fr 1.05fr;
  height: 250px; background: #fff;
}
.site-hero img { width: 100%; height: 250px; object-fit: cover; }
.site-copy {
  display: flex; align-items: center; padding: 18px 14px 18px 16px;
  color: #111827; background: #fff;
}
.site-copy h3 { margin: 0; font-size: 1.22rem; letter-spacing: -0.04em; line-height: 1.15; }
.site-widgets {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 12px;
  background: #f8fafc;
}
.site-widgets span { height: 36px; border-radius: 8px; background: #eef2ff; }

.stat {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: 16px; padding: 12px 14px; box-shadow: 0 18px 40px rgba(15,10,40,0.18); z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.stat b { display: block; font-size: 0.68rem; color: var(--muted); font-weight: 600; }
.stat strong { display: block; font-size: 1.22rem; letter-spacing: -0.03em; }
.stat .up { color: #10b981; font-size: 0.72rem; font-weight: 700; }
.stat-ico { flex: 0 0 auto; }
.stat-ico.pink { width: 52px; height: 32px; }
.stat-ico.people { width: 34px; height: 34px; }
.stat-sales { right: -6px; top: 86px; width: 210px; }
.stat-cust { right: 10px; top: 188px; width: 210px; }
.stat-up { left: 42%; bottom: 18px; width: auto; }
.stat-up small { display: block; color: var(--muted); font-size: 0.68rem; }
.stat-up .shield { width: 40px; height: 40px; flex: 0 0 40px; }

.bmark {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; letter-spacing: -0.03em; white-space: nowrap;
  font-size: 0.98rem;
}
.bmark svg { width: 22px; height: 22px; flex: 0 0 22px; }
.logo-row .bmark { color: #111827; }

.logos {
  background: #fff; padding: 36px 0 20px;
  text-align: center;
}
.logos .kicker { color: var(--pink); margin-bottom: 18px; }
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 28px; margin-top: 4px;
}
.logo-row .more { font-weight: 600; font-size: 0.9rem; color: #9ca3af; }
@media (min-width: 960px) {
  .logo-row { flex-wrap: nowrap; justify-content: space-between; }
}

.features { padding: 56px 0 88px; background: #fff; }
.feat-layout { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) {
  .feat-layout { grid-template-columns: 300px 1fr; gap: 40px; }
}
.feat-copy h2 {
  margin: 0 0 16px; font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  letter-spacing: -0.045em; line-height: 1.08; color: #0f172a;
}
.feat-copy h2 em { font-style: normal; color: var(--pink); }
.feat-copy p { margin: 0 0 24px; color: #64748b; max-width: 20rem; line-height: 1.6; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 960px) {
  .feat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}
.feat {
  background: #fff; border: 1px solid #eef0f4; border-radius: 18px;
  padding: 22px 18px 20px; box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
}
.feat .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px;
  color: #fff;
}
.feat h3 { margin: 0 0 6px; font-size: 1.02rem; color: #0f172a; }
.feat p { margin: 0; color: #6b7280; font-size: 0.84rem; line-height: 1.45; }
.ico-blue { background: #3b82f6; }
.ico-green { background: #34d399; }
.ico-pink { background: #ff4d9d; }
.ico-amber { background: #fb923c; }
.ico-teal { background: #22c55e; }
.ico-violet { background: #8b5cf6; }
.ico-inv { background: #7c3aed; }
.ico-rose { background: #f472b6; }

.pricing {
  position: relative; overflow: hidden; color: #fff;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255, 45, 135, 0.18), transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(124, 58, 237, 0.25), transparent 50%),
    #0b0618;
}
.price-layout { display: grid; gap: 32px; }
@media (min-width: 1080px) {
  .price-layout { grid-template-columns: 260px 1fr; align-items: center; gap: 36px; }
}
.price-copy h2 {
  margin: 0 0 14px; font-size: clamp(2rem, 3.2vw, 2.7rem);
  letter-spacing: -0.04em; line-height: 1.1;
}
.price-copy p { color: #c4c0d4; margin: 0 0 18px; max-width: 22rem; }
.price-copy ul { margin: 0 0 18px; padding: 0; list-style: none; }
.price-copy li { display: flex; gap: 8px; align-items: center; margin: 8px 0; color: #ddd6fe; font-weight: 600; font-size: 0.92rem; }
.price-copy li::before { content: '\2713'; color: #22c55e; font-weight: 800; }
.price-copy a { color: var(--pink-2); font-weight: 700; }
.plans { display: grid; gap: 16px; }
@media (min-width: 840px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: #fff; color: var(--ink); border-radius: 22px; padding: 22px 20px 20px;
  border: 1px solid transparent; position: relative;
}
.plan--pop {
  border: 2px solid var(--pink);
  box-shadow: 0 16px 40px rgba(255, 45, 135, 0.25);
  transform: translateY(-8px);
}
.plan .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.plan .label { margin: 0; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; }
.plan h3 { margin: 6px 0 6px; font-size: 1.25rem; letter-spacing: -0.03em; }
.plan .desc { margin: 0 0 14px; color: var(--muted); font-size: 0.82rem; min-height: 2.6em; }
.plan .amt { margin: 0; font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan .sub { margin: 4px 0 14px; color: #9ca3af; font-size: 0.8rem; }
.plan .month { margin: 0 0 14px; font-weight: 700; }
.plan .month b { color: var(--pink); font-size: 1.05rem; }
.plan ul { margin: 0 0 18px; padding: 0; list-style: none; }
.plan li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.84rem; margin: 8px 0; color: #374151; }
.plan li::before { content: '\2713'; color: #22c55e; font-weight: 800; }
.plan .btn { width: 100%; }
.plan .btn--muted {
  background: #fff; color: var(--pink); border: 1.5px solid #fbcfe8;
  box-shadow: none;
}

.how { padding: 72px 0 80px; }
.how .intro h2 { margin: 0 0 8px; font-size: clamp(2.1rem, 3.4vw, 2.75rem); letter-spacing: -0.04em; color: #0f172a; }
.how .intro p { margin: 0 0 36px; color: #6b7280; }
.steps { display: grid; gap: 22px; }
@media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(6, 1fr); gap: 18px; } }
.step { text-align: left; }
.step .bubble {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 14px;
}
.step .b1 { background: #fce7f3; color: #db2777; }
.step .b2 { background: #ffedd5; color: #ea580c; }
.step .b3 { background: #dcfce7; color: #16a34a; }
.step .b4 { background: #ede9fe; color: #7c3aed; }
.step .b5 { background: #ccfbf1; color: #0d9488; }
.step .b6 { background: #fce7f3; color: #db2777; }
.step h3 { margin: 0 0 6px; font-size: 0.98rem; color: #0f172a; }
.step p { margin: 0; color: #6b7280; font-size: 0.82rem; line-height: 1.45; }

.partners {
  color: #fff; padding: 72px 0;
  background: #0b0618;
}
.partners-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .partners-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.partners h2 {
  margin: 0 0 14px; font-size: clamp(1.9rem, 3vw, 2.55rem); letter-spacing: -0.03em; line-height: 1.15;
}
.partners h2 em { font-style: normal; color: var(--pink); }
.partners p { color: #c4c0d4; margin: 0; max-width: 30rem; }
.partner-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 900px) { .partner-logos { grid-template-columns: repeat(4, 1fr); } }
.partner-logos span,
.partner-logos .bmark {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 64px; border-radius: 14px;
  background: #16102c; font-weight: 800; letter-spacing: -0.03em;
  color: #f8fafc; font-size: 0.88rem;
}
.partner-logos .bmark svg { width: 18px; height: 18px; }
.partner-logos .more { color: #9ca3af; font-weight: 600; font-size: 0.9rem; }

.stories { padding: 80px 0 48px; }
.stories h2 { margin: 0 0 8px; font-size: clamp(2.1rem, 3.4vw, 2.75rem); letter-spacing: -0.04em; color: #0f172a; }
.stories .sub { margin: 0 0 28px; color: #6b7280; }
.quotes { display: grid; gap: 16px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  border: 1px solid #eef0f4; border-radius: 18px; padding: 22px;
  box-shadow: 0 10px 30px rgba(17,24,39,0.04);
}
.quote p { margin: 0 0 18px; color: #374151; line-height: 1.55; }
.quote a { color: var(--pink); font-weight: 700; }
.person { display: flex; gap: 10px; align-items: center; }
.person img, .avatar-mark {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: 0 0 40px;
}
.avatar-mark {
  display: grid; place-items: center;
  background: linear-gradient(135deg, #ff2d87, #8b5cf6);
  color: #fff; font-size: 0.72rem; font-weight: 800;
}
.person strong { display: block; font-size: 0.9rem; }
.person small { color: var(--muted); }
.stars { color: #f59e0b; letter-spacing: 1px; font-size: 0.78rem; margin-top: 2px; }
.stars::before { content: '\2605\2605\2605\2605\2605'; }

.faq { padding: 24px 0 80px; }
.faq-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: start; } }
.faq h2 { margin: 0 0 10px; font-size: clamp(2.1rem, 3.4vw, 2.75rem); letter-spacing: -0.04em; color: #0f172a; }
.faq .lead { color: #6b7280; margin: 0; max-width: 22rem; }
.faq-item { border-bottom: 1px solid #eceef3; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; padding: 16px 0;
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  font-weight: 650; cursor: pointer; color: var(--ink);
}
.faq-item button span {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid #e5e7eb;
  display: grid; place-items: center; color: #9ca3af; flex: 0 0 22px; font-size: 14px;
}
.faq-item .ans { display: none; padding: 0 0 16px; color: var(--muted); margin: 0; }
.faq-item.open .ans { display: block; }
.faq-item.open button span { transform: rotate(180deg); }

.cta {
  background: linear-gradient(90deg, #f72585 0%, #d946ef 55%, #7c3aed 100%);
  color: #fff; padding: 32px 0;
}
.cta-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
}
.cta .kicker { color: #fff; opacity: 0.9; }
.cta h2 { margin: 4px 0 10px; font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -0.03em; }
.cta-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; font-weight: 600; opacity: 0.95; }
.cta-meta span::before { content: '\2713  '; }
.btn--on-grad {
  background: #fff; color: #ff2d87; border-color: #fff;
  box-shadow: 0 10px 24px rgba(15, 10, 40, 0.18);
}
.btn--on-grad:hover { filter: brightness(0.97); color: #ff2d87; }

.site-footer {
  background: #070414; color: #c4c0d4; padding: 22px 0;
  font-size: 0.86rem;
}
.foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
}
.foot .brand { color: #fff; }
.foot nav { display: flex; flex-wrap: wrap; gap: 16px; }
.foot a:hover { color: #fff; }
.social { display: flex; gap: 10px; }
.social a {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; color: #e5e7eb;
}

.modal {
  position: fixed; inset: 0; background: rgba(7,4,20,0.72); z-index: 80;
  display: grid; place-items: center; padding: 20px;
}
.modal[hidden] { display: none; }
.modal-card {
  width: min(100%, 460px); background: #fff; border-radius: 20px; padding: 22px;
}
.modal-card h2 { margin: 0 0 8px; }
.modal-card p { margin: 0 0 14px; color: var(--muted); }
.modal-card label { display: block; font-size: 0.78rem; font-weight: 700; margin: 8px 0 4px; }
.modal-card input, .modal-card textarea, .modal-card select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px;
}
.modal-card textarea { min-height: 90px; resize: vertical; }
.modal-actions { display: flex; gap: 8px; margin-top: 14px; }
.opt { font-weight: 500; color: var(--muted); }
.form-hint { font-size: 0.82rem; color: var(--muted); margin: 12px 0 0; }
.form-ok { margin: 12px 0 0; color: #15803d; font-size: 0.88rem; font-weight: 600; }
.form-copy {
  margin: 10px 0 0; padding: 12px; border-radius: 10px;
  background: #f8fafc; color: #334155; font-size: 0.8rem; white-space: pre-wrap;
}
.legal { max-width: 46rem; padding: 48px 0 72px; color: #e5e7eb; }
.legal-page { background: var(--navy); min-height: 100vh; color: #fff; }
.legal-page .site-header { color: #fff; }
.legal-page .brand { color: #fff; }
.legal h1, .start-page h1 { color: #fff; letter-spacing: -0.03em; }
.legal h2 { color: #fff; font-size: 1.1rem; margin: 28px 0 8px; }
.legal p, .start-page .lead { color: #c4c0d4; }
.legal a, .start-page a { color: #ff8ab8; }
.start-page { padding: 40px 0 72px; max-width: 40rem; }
.start-page h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.start-card {
  margin-top: 24px; background: #fff; color: var(--ink);
  border-radius: 20px; padding: 22px;
}
.start-card label, .start-card legend {
  display: block; font-size: 0.78rem; font-weight: 700; margin: 10px 0 4px;
}
.start-card fieldset { border: 0; padding: 0; margin: 12px 0 0; }
.start-card .check { font-weight: 500; font-size: 0.9rem; margin: 6px 0; }
.start-card .check input { width: auto; margin-right: 8px; }
.start-card input, .start-card textarea, .start-card select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px;
}
.start-card textarea { min-height: 90px; resize: vertical; }
.start-card .btn { margin-top: 16px; }

@media (max-width: 1079px) {
  .hero-visual { min-height: 440px; padding-top: 48px; }
  .dash { width: 100%; }
  .stat-sales { right: 0; }
  .stat-up { left: auto; right: 8%; }
}
@media (max-width: 700px) {
  .hero-visual { min-height: auto; padding-top: 52px; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .stat-sales, .stat-cust, .stat-up { position: relative; right: auto; left: auto; top: auto; bottom: auto; margin: 10px 0 0; width: min(100%, 240px); }
  .hero h1 .line { white-space: normal; }
  .plan--pop { transform: none; }
}
