:root {
  --pink: #e9007f;
  --pink-dark: #c8006d;
  --pink-soft: #fff0f7;
  --ink: #07142b;
  --muted: #60708a;
  --line: #d8e1ee;
  --surface: #ffffff;
  --page: #f3f6fb;
  --panel: #edf2f8;
  --green: #2fbf93;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(233, 0, 127, 0.08), transparent 28%),
    var(--page);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(27, 40, 65, 0.06);
}

.brand img,
.footer img {
  display: block;
  width: 164px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.admin-link:hover {
  color: var(--pink);
}

.top-actions,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.button-primary {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 10px 22px rgba(233, 0, 127, 0.18);
}

.button-primary:hover {
  background: var(--pink-dark);
}

.button-secondary,
.button-ghost {
  background: #fff;
}

.button-large {
  min-height: 50px;
  padding: 0 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: 36px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 9px 12px;
  color: #33445f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.product-visual {
  position: relative;
  min-height: 560px;
}

.desktop-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 500px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(27, 40, 65, 0.12);
}

.client-panel {
  padding: 34px 20px 0;
  background: #f8f9fc;
  border-right: 1px solid var(--line);
}

.mini-logo {
  width: 150px;
  margin-bottom: 26px;
}

.client-panel p {
  color: #40516c;
  line-height: 1.45;
}

.id-block {
  margin: 18px 0 26px;
  padding: 10px 0 10px 14px;
  border-left: 3px solid var(--pink);
}

.id-block span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.id-block strong {
  font-size: 26px;
  font-weight: 500;
}

.notice {
  margin: 0 -20px;
  padding: 26px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #f06b8d);
  line-height: 1.45;
  font-weight: 700;
}

.client-main {
  padding: 30px 28px;
  background: #eef2f7;
}

.connect-card {
  max-width: 430px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.connect-card h2 {
  margin-bottom: 14px;
  font-size: 25px;
}

.connect-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.fake-input {
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #bfc8d5;
  border-radius: 6px;
  font-size: 22px;
}

.connect-card button,
.web-card button {
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--pink);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
}

.tabs {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 24px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #57677f;
}

.tabs strong {
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 0 var(--ink);
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.address-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.card-top {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.violet {
  background: #c87bd9;
}

.rose {
  background: #cd7ca5;
}

.green {
  background: #88b982;
}

.address-grid p {
  margin: 0;
  padding: 13px 14px;
  font-size: 16px;
}

.web-card {
  position: absolute;
  right: 26px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  width: 240px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(27, 40, 65, 0.14);
}

.web-card span {
  color: var(--muted);
}

.web-card strong {
  font-size: 24px;
}

.section,
.comparison,
.download,
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  scroll-margin-top: 96px;
}

.section {
  padding-top: 38px;
  padding-bottom: 48px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading p,
.map-card p,
.flow-grid p,
.split-card p,
.feature-grid p,
.comparison p,
.pricing-grid p,
.download p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.solution-map,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.map-card,
.flow-grid article,
.split-card,
.feature-grid article,
.pricing-grid article,
.download,
.footer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.map-card,
.flow-grid article,
.split-card,
.feature-grid article,
.pricing-grid article {
  padding: 24px;
}

.map-card span,
.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--pink);
  background: var(--pink-soft);
  border: 1px solid #f7b4d6;
  border-radius: 999px;
  font-weight: 800;
}

.map-card.accent {
  border-color: #f49ac8;
  box-shadow: inset 4px 0 0 var(--pink);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.split-card.admin {
  border-color: #f49ac8;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-list span {
  position: relative;
  padding: 13px 14px 13px 34px;
  background: #f8fafd;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #35465f;
  line-height: 1.35;
}

.check-list span::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--pink);
  border-radius: 999px;
}

.comparison {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
  background: var(--ink);
  color: #fff;
}

.comparison p {
  color: #c5d0df;
}

.control-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.control-list span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #dbe4f1;
  line-height: 1.45;
}

.control-list strong {
  display: block;
  color: #fff;
  margin-bottom: 7px;
}

.compare-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > div {
  padding: 18px 20px;
  color: #40516c;
  line-height: 1.45;
}

.compare-row > div + div {
  border-left: 1px solid var(--line);
}

.compare-row.head {
  background: #eef2f7;
  font-weight: 800;
}

.compare-row.head > div {
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.pricing-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 26px;
  line-height: 1.1;
}

.pricing-grid small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 20px;
  color: #40516c;
  line-height: 1.35;
}

.pricing-grid li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--pink);
  border-radius: 999px;
}

.pricing-grid .button {
  width: 100%;
  margin-top: auto;
}

.pricing-grid .featured {
  border-color: #f49ac8;
  box-shadow: inset 4px 0 0 var(--pink);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--pink);
  background: var(--pink-soft);
  border: 1px solid #f7b4d6;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.server-plan,
.options-panel {
  margin-top: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.server-plan {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-color: #f49ac8;
}

.server-plan h3,
.options-panel h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.server-price {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.server-price strong {
  font-size: 28px;
}

.server-price span {
  color: var(--muted);
  font-weight: 700;
}

.options-panel .compact {
  margin-bottom: 18px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.options-grid div {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f8fafd;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.options-grid span {
  color: var(--muted);
  line-height: 1.35;
}

.options-grid strong {
  font-size: 20px;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 28px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.download h2 {
  margin-bottom: 8px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer p {
  margin-bottom: 0;
}

.admin-link {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .pricing-grid,
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
    padding: 14px 24px;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .section,
  .comparison,
  .download,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .solution-map,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison,
  .download,
  .footer,
  .server-plan,
  .split-section {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .top-actions,
  .hero-actions {
    width: 100%;
  }

  .top-actions .button,
  .hero-actions .button,
  .download .button {
    flex: 1;
  }

  .desktop-shell {
    grid-template-columns: 1fr;
  }

  .address-grid,
  .control-list,
  .compare-row,
  .solution-map,
  .flow-grid,
  .feature-grid,
  .options-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .compare-row > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .web-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  h1 {
    font-size: 42px;
  }
}
