:root {
  --blue-900: #061433;
  --blue-800: #0a2472;
  --blue-700: #0d3ea8;
  --blue-600: #1b6dff;
  --blue-500: #3b8cff;
  --blue-400: #6fb0ff;
  --blue-100: #e7f1ff;
  --blue-50: #f4f8ff;
  --ink: #0d1b3d;
  --muted: #5b6a88;
  --line: #d7e4f7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 36, 114, 0.12);
  --radius: 22px;
  --header-h: 76px;
  --max: 1180px;
  --brand-navy: #0B2D6B;
  --brand-blue: #007BFF;
  --brand-cyan: #00D4FF;
  --brand-gray: #E9EEF5;
  --promo-card-w: 592px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--blue-700);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}
.container-narrow { width: min(100% - 40px, 820px); }

.nowrap { white-space: nowrap; }

.grad {
  background: linear-gradient(90deg, #0d3ea8, #3b8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-light {
  background: linear-gradient(90deg, #9fd0ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-sale {
  background: linear-gradient(90deg, #e11d48, #ff6b84);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, #3b8cff, #1b6dff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 109, 255, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(27, 109, 255, .4); }
.btn-ghost {
  background: #fff;
  color: var(--blue-800);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue-400); }
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-400);
}
.btn-outline:hover { background: var(--blue-50); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(10,36,114,.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: block;
  width: auto;
  height: 44px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.brand-name {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--brand-navy);
}
.brand-name em { color: var(--brand-blue); font-style: normal; }
.brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand-navy);
  opacity: 0.72;
}
.brand-name-light { color: #fff; }
.brand-name-light em { color: var(--brand-cyan); }
.brand-sub-light { color: #dcecff; opacity: 0.82; }

.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.site-nav a:hover { color: var(--blue-700); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 6px;
  white-space: nowrap;
}
.header-link:hover { color: var(--blue-700); }
.nav-auth { display: none; }

/* 헤더 로그인/회원가입 일시 중단. 다시 켜려면 html의 auth-paused 클래스를 제거하세요. */
html.auth-paused .header-auth {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: visible;
  padding: 48px 0 72px;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(111,176,255,.28), transparent 60%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, var(--promo-card-w));
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.hero-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 560px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}
.pill svg { width: 16px; height: 16px; }
.pill-light { background: rgba(255,255,255,.14); color: #dcecff; }

.hero-title {
  margin: 18px 0 16px;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.hero-lead {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 28px;
}
.hero-lead strong { color: var(--blue-700); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.hero-facts {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  justify-content: center;
}
.hero-facts li { display: flex; flex-direction: column; align-items: center; }
.hero-facts strong { font-size: 26px; color: var(--blue-700); line-height: 1.1; }
.hero-facts span { font-size: 13px; color: var(--muted); }

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  position: relative;
  overflow: visible;
  margin-left: -15mm;
  margin-top: 15mm;
}
.hero-visual img {
  width: var(--promo-card-w);
  max-width: 100%;
  aspect-ratio: 1024 / 682;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
}

.marquee {
  background: var(--blue-800);
  color: #fff;
  padding: 14px 0;
}
.marquee-viewport {
  overflow: hidden;
  margin-left: 160mm;
  margin-right: 130mm;
}
.marquee-track {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  letter-spacing: .04em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 92px 0; }
.section-tint { background: var(--blue-50); }
.section-dark {
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(59,140,255,.22), transparent 55%),
    linear-gradient(180deg, #061433, #0a2472);
  color: #fff;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.section-head-light p,
.section-dark .section-head p { color: #c7d8f5; }
.eyebrow {
  display: inline-block;
  color: var(--blue-600);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow-light { color: #9fd0ff; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.task-card, .pain-card, .feature-card, .value-card, .step-card, .price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(10,36,114,.05);
}
.task-ico, .feature-ico, .value-ico, .step-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 16px;
}
.task-ico svg, .feature-ico svg, .value-ico svg, .step-ico svg { width: 26px; height: 26px; }
.task-card h3, .pain-card h3, .feature-card h3, .value-card h3 { margin: 0 0 8px; font-size: 20px; }
.task-card p, .pain-card p, .feature-card p, .value-card p, .step-card p { margin: 0; color: var(--muted); }

.callout, .callout-strong {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--blue-100);
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 17px;
}
.callout svg, .callout-strong svg { width: 28px; height: 28px; color: var(--blue-700); }
.callout p, .callout-strong p { margin: 0; }
.callout-strong { background: linear-gradient(90deg, #e7f1ff, #d6e8ff); }

.pain-num {
  display: inline-block;
  font-weight: 800;
  color: var(--blue-500);
  margin-bottom: 10px;
}
.pains-note {
  text-align: center;
  margin: 32px 0 0;
  font-size: 18px;
}

.chain {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
}
.chain li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
}
.chain-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-weight: 800;
}
.chain b { display: block; }
.chain small { color: var(--muted); }

.feature-card { position: relative; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.feature-card p { color: #c7d8f5; }
.feature-num { position: absolute; top: 18px; right: 22px; font-weight: 800; color: rgba(255,255,255,.22); font-size: 22px; }
.feature-ico { background: rgba(111,176,255,.16); color: #9fd0ff; }
.tick { margin: 16px 0 0; padding: 0; list-style: none; color: #dcecff; }
.tick li::before { content: "✓ "; color: #6fb0ff; font-weight: 800; }
.feature-note {
  margin-top: 28px;
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px 26px;
}
.feature-note p { margin: 0; color: #dcecff; text-align: center; }

.flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.flow-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.flow-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-weight: 800;
}
.flow-step p { color: var(--muted); }
.flow-arrow { display: grid; place-items: center; color: var(--blue-500); width: 36px; }
.flow-arrow svg { width: 28px; }

.quote {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 26px;
  line-height: 1.45;
  color: var(--blue-800);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 28px;
}
.compare-no { background: #f6f7fb; border: 1px solid #e4e8f0; }
.compare-yes { background: #eef5ff; border: 1px solid #c9ddfb; }
.c-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}
.c-tag-no { background: #e8ebf2; color: #5b6a88; }
.c-tag-yes { background: var(--blue-600); color: #fff; }
.compare ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.compare-yes ul { color: var(--ink); font-weight: 600; }
.position-line {
  text-align: center;
  margin: 36px 0 0;
  font-size: 22px;
  line-height: 1.5;
}

.target-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.target-copy h2 { margin: 10px 0 12px; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.25; }
.target-lead { color: var(--muted); }
.target-list { list-style: none; padding: 0; margin: 24px 0; }
.target-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.tl-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--blue-100);
  border-radius: 12px;
}
.target-strip {
  background: var(--blue-800);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
}
.target-visual img {
  width: var(--promo-card-w);
  max-width: 100%;
  aspect-ratio: 1536 / 1024;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-num {
  display: inline-block;
  font-weight: 800;
  color: var(--blue-500);
  margin-bottom: 8px;
}

.solution-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.map-card, .product-card, .plan-card, .guide-card, .process-item {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(10, 36, 114, .05);
}
.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 0 28px 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.map-card:hover {
  transform: translateY(-7px);
  border-color: #b9d5ff;
  box-shadow: 0 22px 48px rgba(10, 36, 114, .13);
}
.map-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0d3ea8, #6fb0ff);
}
.map-visual {
  position: relative;
  height: 190px;
  margin: 0 -28px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf5ff 0%, #f9fcff 56%, #fff 100%);
  border-bottom: 1px solid #e4eefc;
}
.map-visual svg { width: 100%; height: 100%; display: block; }
.map-visual:after {
  content: "";
  position: absolute;
  inset: auto -35px -75px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(59, 140, 255, .10);
}
.map-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.map-num {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e7f1ff, #f6faff);
  border: 1px solid #cfe1fb;
  color: var(--blue-700);
  font-weight: 900;
}
.map-card h3 { margin: 0; font-size: 22px; line-height: 1.3; }
.map-card p { margin: 0; color: var(--muted); }
.map-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.map-tag {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid #dce9fb;
}
.map-caption {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(215, 228, 247, .95);
  box-shadow: 0 8px 18px rgba(10, 36, 114, .08);
  font-size: 11px;
  font-weight: 900;
  color: var(--blue-700);
  backdrop-filter: blur(8px);
}

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(10, 36, 114, .07);
}
.product-card.featured {
  border: 2px solid var(--blue-500);
  box-shadow: 0 20px 42px rgba(27, 109, 255, .14);
}
.product-kicker {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 16px;
}
.product-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.04em;
}
.product-desc { margin: 10px 0 0; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 9px 0;
  color: #344261;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 900;
}
.price-area { margin-top: 26px; padding-top: 22px; border-top: 1px dashed #c9d9ee; }
.price-label { font-size: 13px; color: var(--muted); font-weight: 700; }
.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.price-chip {
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px 12px;
  text-align: center;
}
.price-chip span { display: block; font-size: 12px; color: var(--muted); font-weight: 700; }
.price-chip strong { display: block; color: var(--blue-800); font-size: 21px; margin-top: 2px; }
.price-single {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.price-single b {
  font-size: 38px;
  line-height: 1.1;
  color: var(--blue-700);
  letter-spacing: -.05em;
}
.price-single small { color: var(--muted); }
.product-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 22px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.svc-card {
  --svc-accent: #159447;
  --svc-deep: #087132;
  --svc-line: #7dbe97;
  --svc-bg1: #effcf4;
  --svc-bg2: #e9f9ef;
  --svc-title: #0d2b20;
  background: #fff;
  border: 1px solid #e4e8e8;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .015);
}
.svc-card.blue {
  --svc-accent: #0864c7;
  --svc-deep: #064c9c;
  --svc-line: #8eb7e8;
  --svc-bg1: #eef7ff;
  --svc-bg2: #e6f1ff;
  --svc-title: #0c305f;
}
.svc-card.purple {
  --svc-accent: #6e33b6;
  --svc-deep: #542092;
  --svc-line: #b397d8;
  --svc-bg1: #f6effd;
  --svc-bg2: #eee5fb;
  --svc-title: #3f146e;
}
.svc-hero {
  position: relative;
  min-height: 248px;
  padding: 28px 22px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 17%, rgba(255, 255, 255, .9) 0 12%, transparent 32%),
    linear-gradient(135deg, var(--svc-bg1) 0%, var(--svc-bg2) 55%, #fff 112%);
}
.svc-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: #eef1f0;
}
.svc-kicker {
  position: relative;
  z-index: 3;
  color: var(--svc-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.svc-hero h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--svc-title);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.22;
  letter-spacing: -.05em;
  font-weight: 900;
}
.svc-desc {
  position: relative;
  z-index: 3;
  width: 62%;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #30343b;
  word-break: keep-all;
}
.svc-art {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 86%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .45) 13%, #000 30%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .45) 13%, #000 30%, #000 100%);
}
.svc-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-features { display: grid; gap: 12px; }
.svc-features > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: #2a2e34;
}
.svc-features span:first-child {
  color: var(--svc-accent);
  font-weight: 900;
  width: 18px;
  flex: none;
}
.svc-pricing { margin-top: auto; padding-top: 20px; }
.svc-price-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--svc-deep);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 14px;
  white-space: nowrap;
}
.svc-price-heading:before,
.svc-price-heading:after {
  content: "";
  height: 1px;
  background: var(--svc-line);
  flex: 1;
  opacity: .72;
}
.svc-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.svc-price-box {
  min-height: 78px;
  border: 1.4px solid var(--svc-line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  text-align: center;
}
.svc-price-box span {
  font-size: 12px;
  font-weight: 700;
  color: var(--svc-deep);
  line-height: 1.3;
}
.svc-price-box strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
  color: var(--svc-deep);
  letter-spacing: -.04em;
}
.svc-single {
  min-height: 78px;
  border: 1.4px solid var(--svc-line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-single strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--svc-deep);
  letter-spacing: -.04em;
}
.svc-single span { font-size: 14px; color: #2d3137; }
.svc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--svc-accent), var(--svc-deep));
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .05);
}
.svc-card.blue .svc-cta { background: linear-gradient(90deg, #0b69cf, #075cbd); }
.svc-card.purple .svc-cta { background: linear-gradient(90deg, #7440bd, #6634aa); }
.svc-card.green .svc-cta { background: linear-gradient(90deg, #159b47, #0b893e); }
.svc-chat {
  position: relative;
  width: 26px;
  height: 20px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.svc-chat:after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -4px;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent;
  transform: rotate(12deg);
}
.svc-chat i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--svc-accent);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(10, 36, 114, .05);
}
.plan-card.best {
  border: 2px solid var(--blue-500);
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(27, 109, 255, .14);
}
.best-ribbon {
  position: absolute;
  left: 24px;
  top: -15px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 900;
}
.plan-name { display: inline-block; font-weight: 900; color: var(--blue-700); letter-spacing: .04em; }
.plan-count {
  font-size: 36px;
  font-weight: 900;
  margin-top: 8px;
  color: var(--blue-900);
}
.plan-count small { font-size: 15px; color: var(--muted); font-weight: 700; }
.plan-copy { color: var(--muted); margin: 6px 0 0; }
.plan-price { margin-top: 24px; padding-top: 18px; border-top: 1px dashed #c9d9ee; }
.plan-price span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }
.plan-price b { display: block; font-size: 36px; color: var(--blue-700); line-height: 1.2; margin-top: 4px; }
.plan-note { text-align: center; margin-top: 30px; color: var(--muted); }

.launch-pricing {
  position: relative;
  overflow: hidden;
  padding: 76px 0 52px;
  background:
    radial-gradient(circle at 50% -15%, rgba(23, 105, 255, .13), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}
.launch-pricing::before,
.launch-pricing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.launch-pricing::before {
  width: 320px;
  height: 320px;
  right: -180px;
  top: 80px;
  background: rgba(23, 105, 255, .06);
}
.launch-pricing::after {
  width: 260px;
  height: 260px;
  left: -150px;
  bottom: 30px;
  background: rgba(58, 143, 255, .06);
}
.lp-wrap {
  position: relative;
  z-index: 1;
  container-type: inline-size;
}
.lp-trial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 10px 16px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #315a95;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(23, 105, 255, .06);
}
.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #13a36d;
  box-shadow: 0 0 0 5px rgba(19, 163, 109, .1);
  flex: 0 0 auto;
}
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.lp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(30, 91, 183, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #b9cff3;
}
.lp-card.featured {
  border: 2px solid var(--blue-600);
  box-shadow: 0 20px 56px rgba(23, 105, 255, .17);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.lp-badge {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--blue-600);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(23, 105, 255, .24);
}
.lp-product {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.04em;
}
.lp-title {
  margin: 8px 0 18px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -.05em;
  font-weight: 900;
}
.lp-deal {
  position: relative;
  margin-top: auto;
  padding: 16px 14px 14px;
  border-radius: 18px;
  background: #fff5f7;
  border: 1px solid #ffd0d8;
}
.lp-card.featured .lp-deal {
  background: #fff1f3;
  border-color: #ffb8c4;
}
.lp-off {
  position: absolute;
  top: -16px;
  right: 12px;
  display: flex;
  align-items: baseline;
  gap: 1px;
  padding: 6px 10px 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3b5c 0%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(225, 29, 72, .3);
  line-height: 1;
}
.lp-off strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.06em;
}
.lp-off span {
  font-size: 15px;
  font-weight: 900;
}
.lp-card.featured .lp-off {
  background: linear-gradient(180deg, #ff2d55 0%, #c81e3a 100%);
  box-shadow: 0 12px 24px rgba(200, 30, 58, .34);
}
.lp-compare {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.lp-was,
.lp-now {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lp-was em,
.lp-now em {
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.lp-was em { color: #8a97b0; }
.lp-now em { color: #e11d48; }
.lp-was s {
  margin-top: 4px;
  color: #9aa6bd;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
  text-decoration-thickness: 3px;
  text-decoration-color: #e11d48;
}
.lp-arrow {
  flex: 0 0 auto;
  align-self: center;
  color: #e11d48;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(10px);
}
.lp-now b {
  margin-top: 4px;
  color: #e11d48;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
}
.lp-units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.lp-unit {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4f8ff;
  border: 1px solid #d7e4f7;
}
.lp-unit span {
  display: block;
  color: #5b6a88;
  font-size: 12px;
  font-weight: 800;
}
.lp-unit strong {
  display: block;
  margin-top: 2px;
  color: var(--blue-800);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
}
.lp-normal {
  color: #4b5a78;
  font-size: 15px;
  font-weight: 800;
}
.lp-normal s {
  text-decoration-thickness: 2px;
  color: #8a97b0;
}
.lp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  border: 1px solid #bcd1f5;
  border-radius: 14px;
  background: #fff;
  color: #1455c7;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}
.lp-cta:hover {
  border-color: var(--blue-600);
  background: #f5f9ff;
}
.lp-card.featured .lp-cta {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 105, 255, .24);
}
.lp-startup {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(30, 91, 183, .06);
}
.lp-startup-copy { min-width: 0; }
.lp-startup .lp-product { margin-bottom: 6px; }
.lp-startup p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  white-space: nowrap;
}
.lp-startup-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.lp-startup .lp-deal {
  width: 330px;
  margin-top: 0;
}
.lp-startup .lp-compare {
  width: 300px;
}
.lp-startup .lp-cta {
  width: 100px;
  min-width: 100px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: var(--blue-600);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(23, 105, 255, .22);
}
.lp-closing {
  max-width: 980px;
  margin: 28px auto 0;
  text-align: center;
  color: #596b8c;
  font-size: 15px;
}
.lp-closing strong { color: #143f86; }
.lp-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 18px;
  color: #72809b;
  font-size: 13px;
}
.lp-proof span::before {
  content: "✓";
  margin-right: 6px;
  color: #13a36d;
  font-weight: 900;
}

.custom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.custom-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  padding: 30px;
}
.custom-ico {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(111, 176, 255, .15);
  color: #9fd0ff;
  font-size: 28px;
  margin-bottom: 18px;
}
.custom-card h3 { margin: 0; font-size: 26px; }
.custom-card p { margin: 9px 0 0; color: #c7d8f5; }
.custom-steps { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.custom-steps span {
  background: rgba(255, 255, 255, .08);
  color: #dcecff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}
.custom-price { margin-top: 24px; font-size: 25px; font-weight: 900; color: #fff; }
.custom-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 22px;
}

.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guide-card { border-radius: 20px; padding: 24px; text-align: center; }
.guide-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  font-size: 26px;
}
.guide-card h3 { font-size: 18px; margin: 0 0 7px; }
.guide-card p { margin: 0; color: var(--muted); font-size: 14px; }

.sol-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-item {
  position: relative;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
}
.process-item:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-400);
  font-size: 24px;
  font-weight: 900;
  z-index: 2;
}
.process-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-weight: 900;
}
.process-item b { display: block; }
.process-item small { display: block; color: var(--muted); margin-top: 3px; }

.sol-cta-section {
  padding: 78px 0;
  background: linear-gradient(180deg, #061433, #0a2472);
  color: #fff;
}
.sol-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px 44px;
  border-radius: 28px;
  background:
    radial-gradient(420px 240px at 88% 20%, rgba(111, 176, 255, .20), transparent 65%),
    rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}
.sol-cta-box h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.28;
}
.sol-cta-box h2 span { color: #9fd0ff; }
.sol-cta-box p { margin: 10px 0 0; color: #c7d8f5; }

.cat-tag {
  display: inline-block;
  width: fit-content;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}
.value-card { position: relative; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card { color: var(--ink); position: relative; }
.price-card-best {
  border: 2px solid #6fb0ff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27,109,255,.22);
}
.price-head { display: flex; align-items: center; gap: 10px; }
.price-head h3 { margin: 0; }
.price-regular {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.price-amount { margin: 6px 0 16px; }
.price-amount b { font-size: 36px; letter-spacing: -0.04em; }
.price-list { padding: 0; margin: 0; list-style: none; color: var(--muted); }
.price-list li::before { content: "• "; color: var(--blue-500); }
.price-note {
  margin: 36px auto 0;
  max-width: 1080px;
  background: rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 56px 48px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.price-note-launch {
  background: linear-gradient(180deg, rgba(255,209,102,.18), rgba(255,255,255,.08));
  border: 1px solid rgba(255,209,102,.45);
}
.pn-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.pn-tag {
  display: inline-block;
  color: #ffd166;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: none;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  filter: none;
  font-synthesis: none;
}
.pn-sale {
  display: inline-block;
  background: #ffd166;
  color: #061433;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 8px 18px;
  border-radius: 999px;
}
.price-note p { margin: 0; color: #dcecff; }
.pn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.pn-deals {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
}
.pn-deal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 140px;
}
.price-note-launch p {
  font-size: 28px;
}
.price-note-launch b {
  color: #fff;
  font-size: 40px;
}
.pn-deal small {
  font-size: 14px;
  font-weight: 600;
  color: #b8cce8;
}
.pn-deal .pn-daily {
  background: #ffd166;
  color: #061433;
  padding: 3px 10px;
  border-radius: 999px;
}
.pn-cta {
  flex: none;
  white-space: nowrap;
}

.gallery { position: relative; }
.gal-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--promo-card-w);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
}
.gal-track figure { margin: 0; scroll-snap-align: start; }
.gal-track img {
  width: var(--promo-card-w);
  max-width: 100%;
  aspect-ratio: 1536 / 1024;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.gal-nav {
  position: absolute;
  top: 42%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10,36,114,.18);
  color: var(--blue-700);
  z-index: 2;
}
.gal-nav svg { width: 20px; height: 20px; }
.gal-prev { left: -10px; }
.gal-next { right: -10px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 0 20px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark {
  width: 22px;
  height: 22px;
  position: relative;
  flex: none;
}
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute;
  background: var(--blue-600);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-mark::before { width: 14px; height: 2px; }
.faq-mark::after { width: 2px; height: 14px; }
.faq-item[open] .faq-mark::after { display: none; }
.faq-body { padding: 0 0 18px; color: var(--muted); }
.faq-body p { margin: 0 0 10px; }

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #061433, #0a2472);
  color: #fff;
  padding: 92px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.cta-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.22;
  margin: 16px 0;
}
.cta-lead { color: #c7d8f5; font-size: 18px; }
.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.cta-benefits li {
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cta-benefits span { color: #9fd0ff; }

.cta-form-wrap {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 28px 28px 18px;
  box-shadow: var(--shadow);
}
.cta-form h3 {
  margin: 0 0 6px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}
.email-combo {
  display: grid;
  grid-template-columns: 1fr auto minmax(132px, 1fr);
  align-items: center;
  gap: 8px;
}
.email-at {
  font-weight: 800;
  color: var(--muted);
}
.email-combo input,
.email-combo select { min-width: 0; }
.email-custom { margin-top: 8px; }
.form-sub { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.field { margin-bottom: 14px; }
.field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.field-head > label { margin-bottom: 0; }
.email-manual {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  white-space: nowrap;
}
.label-note {
  font-weight: 400;
  color: #4b5563;
}
.referrer-hint,
.referrer-hint::placeholder { font-size: 14px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fbfdff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--blue-400);
  border-color: var(--blue-400);
}
.field input[readonly] {
  background: #f3f6fb;
  color: #334155;
  cursor: default;
}
.cta-form .form-spacer { height: 1.4em; }
.cta-form .check { margin-top: 0; }
.check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 16px;
}
.check-line {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 8px 0 16px;
}
.check-line .check { margin: 0; }
.legal-underline {
  flex: none;
  margin-top: 1px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-underline:hover { color: var(--blue-800); }
.form-status { min-height: 0; margin: 8px 0 0; font-size: 14px; }
.form-status.ok { color: #0b7a3b; }
.form-status.err { color: #c0392b; }

.site-footer {
  background: #041027;
  color: #c7d8f5;
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-tag { color: #9fb4d8; }
.footer-nav { display: flex; gap: 48px; }
.footer-nav h4 { margin: 0 0 10px; color: #fff; }
.footer-nav a { display: block; margin: 6px 0; color: #9fb4d8; }
.disclaimer { font-size: 13px; color: #7f93b8; }
.copyright { font-size: 13px; color: #6d82aa; }

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(27,109,255,.4);
}
.fab svg { width: 18px; height: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .7s ease forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .hero-inner, .target-inner, .cta-inner { grid-template-columns: 1fr; }
  .hero-copy {
    grid-column: 1;
    max-width: 100%;
  }
  .hero-visual {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-left: 0;
  }
  .hero-visual img,
  .target-visual img,
  .gal-track img { width: min(100%, var(--promo-card-w)); }
  .grid-3, .grid-4, .chain, .steps, .compare { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .solution-map,
  .product-grid,
  .svc-grid,
  .custom-grid,
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card.best { transform: none; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .sol-process { grid-template-columns: 1fr; gap: 28px; }
  .process-item:not(:last-child):after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -24px;
    transform: translateX(-50%);
  }
  .sol-cta-box { flex-direction: column; align-items: flex-start; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-card { min-height: auto; }
  .lp-startup {
    flex-wrap: wrap;
  }
  .lp-startup p { white-space: normal; }
  .lp-startup-offer { flex-wrap: wrap; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); height: 28px; width: 100%; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 22px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn-trial { display: none; }
  .nav-auth { display: block; }
  .fab { display: inline-flex; }
  .footer-inner { flex-direction: column; }
  .gal-track { grid-auto-columns: min(100%, var(--promo-card-w)); }
  .nav-auth { display: block; }
}

@media (max-width: 640px) {
  .brand-mark { height: 38px; }
  .brand-sub { display: none; }
  .grid-2, .grid-3, .grid-4, .chain, .steps, .compare, .price-grid, .solution-map, .product-grid, .svc-grid, .custom-grid, .plan-grid, .guide-grid { grid-template-columns: 1fr; }
  .svc-desc { width: 70%; }
  .email-combo { grid-template-columns: 1fr; }
  .cta-form h3 { white-space: normal; }
  .hero-facts { flex-direction: column; gap: 12px; }
  .hero { padding-top: 28px; }
  .section { padding: 72px 0; }
  .price-table { grid-template-columns: 1fr; }
  .sol-cta-box { padding: 30px 24px; }
  .lp-trial { width: 100%; border-radius: 16px; }
  .lp-was s { font-size: 28px; }
  .lp-now b { font-size: 36px; }
  .lp-off strong { font-size: 26px; }
  .price-card-best { transform: none; }
  .price-note {
    padding: 36px 22px;
    min-height: 0;
  }
}

/* Auth pages */
.auth-body {
  min-height: 100vh;
  background:
    radial-gradient(800px 360px at 80% 0%, rgba(111,176,255,.22), transparent 60%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 55%);
}
.auth-wrap {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 40px 20px 64px;
}
.auth-card {
  width: min(100%, 480px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px 32px 32px;
}
.auth-card h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.auth-lead {
  margin: 0 0 28px;
  color: var(--muted);
}
.auth-card .field { margin-bottom: 16px; }
.field-row {
  display: flex;
  gap: 8px;
}
.field-row input { flex: 1; min-width: 0; }
.field-row .btn { flex: none; height: 46px; padding: 0 14px; border-radius: 12px; white-space: nowrap; }
.field-hint { margin: 6px 0 0; font-size: 13px; min-height: 18px; }
.field-hint.ok { color: #0b7a3b; }
.field-hint.err { color: #c0392b; }
.auth-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin: -4px 0 18px;
}
.auth-find {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-find a { font-weight: 700; }
.auth-find a:hover { color: var(--blue-700); }
.auth-step[hidden] { display: none; }
.auth-extra a:hover { color: var(--blue-700); }
.auth-switch {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.auth-switch a { color: var(--blue-700); font-weight: 800; }
.legal-page {
  padding: 48px 0 80px;
  max-width: 760px;
}
.legal-page h1 { font-size: 32px; margin: 0 0 8px; }
.legal-page h2 {
  margin: 28px 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page ul {
  margin: 0;
  padding-left: 20px;
}
.legal-page li { margin: 6px 0; }
.legal-page article + article { margin-top: 4px; }
.legal-meta {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
}
.legal-lead { margin: 0 0 8px; }
.legal-page a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.consult-modal[hidden] { display: none; }
.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 51, .45);
}
.consult-modal-box {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 28px 28px 18px;
  box-shadow: var(--shadow);
}
.consult-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.consult-close:hover { color: var(--ink); }
.consult-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  padding-right: 36px;
}
.consult-head .eyebrow {
  margin: 0;
  flex: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.consult-form h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: normal;
}
body.consult-open { overflow: hidden; }

.alert-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.alert-modal[hidden] { display: none; }
.alert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 51, .45);
}
.alert-modal-box {
  position: relative;
  width: min(100%, 380px);
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.alert-modal-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.alert-modal-box p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-line;
}
.alert-modal-list {
  margin: 0 0 20px;
  padding-left: 22px;
  text-align: left;
  color: var(--ink);
  font-weight: 700;
}
.alert-modal-list[hidden] { display: none; }
.alert-modal-list li { margin: 4px 0; }
.alert-modal-list li.alert-item-compact {
  font-size: 15px;
  white-space: nowrap;
}
