:root {
  --blue: #0071e3;
  --blue-dark: #0057c7;
  --ink: #121417;
  --muted: #6f7885;
  --line: rgba(20, 28, 38, 0.08);
  --panel: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 80px rgba(30, 50, 90, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(120deg, #f5fbff 0%, #fff9fb 48%, #f9fbff 100%);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
}

.blob-a {
  top: 110px;
  left: -80px;
  background: #bcefff;
}

.blob-b {
  top: 240px;
  right: -120px;
  background: #e6c4ff;
}

.blob-c {
  bottom: 120px;
  left: 22%;
  background: #c8ffe6;
}

.blob-d {
  bottom: -150px;
  right: 18%;
  background: #ffe7b5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-shell {
  width: min(1140px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
  min-width: 0;
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  color: #1b1f24;
  background: transparent;
}

.nav-toggle i {
  font-size: 26px;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 15px;
}

.nav-menu > a,
.nav-more > button {
  color: #1d232b;
}

.nav-menu > a:hover,
.nav-more > button:hover {
  color: var(--blue);
}

.nav-more {
  position: relative;
}

.nav-more button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 9px 0;
}

.more-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 150px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-more:hover .more-menu,
.nav-more:focus-within .more-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.more-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #313842;
}

.more-menu a:hover {
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: #17191d;
  box-shadow: 0 10px 30px rgba(20, 24, 30, 0.16);
}

.btn-primary:hover {
  background: #000;
}

.btn-outline {
  color: #20252c;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(20, 28, 38, 0.12);
  box-shadow: 0 10px 30px rgba(50, 70, 100, 0.08);
}

.btn-outline:hover {
  color: var(--blue);
  border-color: rgba(0, 113, 227, 0.28);
}

.btn-lg {
  min-height: 56px;
  padding: 0 30px;
  font-size: 18px;
}

.mobile-mask {
  display: none;
}

.hero {
  padding: 142px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  gap: 48px;
  align-items: center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #0b75bd;
  font-size: 15px;
  font-weight: 800;
  background: rgba(0, 113, 227, 0.09);
  border: 1px solid rgba(0, 113, 227, 0.18);
}

.badges .purple {
  color: #8b32c9;
  background: rgba(150, 74, 220, 0.09);
  border-color: rgba(150, 74, 220, 0.18);
}

.badges .green {
  color: #0f9b60;
  background: rgba(20, 190, 117, 0.1);
  border-color: rgba(20, 190, 117, 0.2);
}

.hero h1 {
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 900;
}

.hero-lead {
  margin: 0 0 28px;
  max-width: 620px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.proof-grid article {
  min-height: 102px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(30, 50, 90, 0.08);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.update-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  color: #6d4a09;
  background: rgba(255, 249, 230, 0.78);
  border: 1px solid rgba(247, 192, 75, 0.36);
  box-shadow: 0 16px 50px rgba(160, 100, 0, 0.08);
}

.update-card i {
  color: #f5a400;
  margin-top: 2px;
}

.update-card strong,
.update-card span {
  display: block;
}

.update-card strong {
  margin-bottom: 7px;
}

.update-card span {
  font-size: 14px;
  line-height: 1.7;
}

.showcase {
  min-width: 0;
}

.browser-card {
  padding: 13px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: #6f7885;
  font-size: 14px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-bar span:nth-child(1) {
  background: #ff6666;
}

.browser-bar span:nth-child(2) {
  background: #ffc54f;
}

.browser-bar span:nth-child(3) {
  background: #2ad6a0;
}

.browser-bar em {
  margin-left: auto;
  font-style: normal;
}

.showcase-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 28, 45, 0.08);
  background: #f4f8ff;
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 360;
  object-fit: cover;
}

.showcase-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 21, 27, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.showcase-link:hover .showcase-cta {
  opacity: 1;
  transform: translateY(0);
}

.price-page {
  background: linear-gradient(120deg, #f5fbff 0%, #fff9fb 48%, #f9fbff 100%);
}

.price-hero {
  padding: 148px 0 58px;
}

.price-hero-inner {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.price-hero-inner h1 {
  margin: 14px 0 18px;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 900;
}

.price-hero-inner p {
  margin: 0 auto;
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.price-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}

.price-value-grid article,
.plan-card,
.delivery-panel,
.price-table-panel,
.price-cta {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.price-value-grid article {
  min-height: 150px;
  padding: 24px 18px;
  text-align: center;
}

.price-value-grid i {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 32px;
}

.price-value-grid strong,
.price-value-grid span {
  display: block;
}

.price-value-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.price-value-grid span {
  color: var(--muted);
  line-height: 1.6;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.plan-card.recommended {
  border-color: rgba(0, 113, 227, 0.32);
  background: rgba(247, 251, 255, 0.92);
}

.plan-card.enterprise {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(248, 255, 251, 0.9);
}

.plan-tag {
  align-self: flex-start;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.plan-card h2 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.plan-card p {
  margin: 0;
  min-height: 76px;
  color: var(--muted);
  line-height: 1.7;
}

.plan-price {
  margin: 18px 0;
  font-size: 38px;
  font-weight: 900;
}

.plan-price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-gain {
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  color: #374151;
  background: rgba(0, 113, 227, 0.07);
  line-height: 1.65;
}

.plan-card ul {
  flex: 1;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #2d3440;
  line-height: 1.55;
}

.plan-card li i {
  flex: 0 0 auto;
  color: #12a36d;
  margin-top: 2px;
}

.plan-card .btn {
  width: 100%;
}

.price-section {
  padding-top: 20px;
}

.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: 36px;
  margin-bottom: 36px;
}

.delivery-panel h2,
.price-table-head h2,
.price-cta h2 {
  margin: 10px 0 14px;
  font-size: 32px;
  line-height: 1.28;
}

.delivery-panel p,
.price-table-head p,
.price-cta p {
  color: var(--muted);
  line-height: 1.8;
}

.compare-money {
  display: grid;
  gap: 16px;
}

.compare-money article {
  padding: 22px;
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(20, 28, 38, 0.08);
}

.compare-money h3 {
  margin: 0 0 10px;
}

.compare-money p {
  margin: 0;
}

.price-table-panel {
  padding: 32px;
  margin-bottom: 36px;
}

.price-table-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.price-table-head h2,
.price-table-head p {
  margin-bottom: 0;
}

.swipe-hint {
  display: none;
  margin: 0 0 12px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.price-table-scroll {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(20, 28, 38, 0.08);
  background: #fff;
}

.price-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(20, 28, 38, 0.08);
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
}

.price-table th:first-child,
.price-table td:first-child {
  width: 170px;
  text-align: left;
  font-weight: 800;
}

.price-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #12161d;
  font-size: 16px;
}

.price-table .is-recommend {
  background: rgba(0, 113, 227, 0.055);
}

.price-table .is-enterprise {
  background: rgba(16, 185, 129, 0.055);
}

.group-row th {
  color: #0b5fc7;
  background: rgba(0, 113, 227, 0.08) !important;
  text-align: left !important;
}

.table-badge {
  display: inline-flex;
  margin-top: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #005fc7;
  background: rgba(0, 113, 227, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.table-badge.green {
  color: #0d8b5d;
  background: rgba(16, 185, 129, 0.13);
}

.table-note,
.table-hot {
  color: #005fc7;
  font-weight: 800;
}

.table-ok {
  color: #0d9b6b;
  font-weight: 800;
}

.table-no {
  color: #9aa3af;
}

.price-cta {
  padding: 44px;
  text-align: center;
}

.price-cta p {
  max-width: 720px;
  margin: 0 auto 24px;
}

.price-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Kept as a fallback if the preview image is replaced with HTML later. */
.mock-screen {
  overflow: hidden;
  min-height: 292px;
  border-radius: 18px;
  background: #f4f8ff;
  border: 1px solid rgba(17, 28, 45, 0.08);
}

.mock-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid rgba(17, 28, 45, 0.08);
}

.mock-top b {
  color: #101521;
  font-size: 17px;
}

.mock-search {
  flex: 1;
  max-width: 240px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #9aa4b2;
  background: #f3f6fb;
  font-size: 12px;
}

.mock-layout {
  display: grid;
  grid-template-columns: 112px 1fr 114px;
  gap: 14px;
  padding: 16px;
}

.mock-layout aside {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mock-layout aside span {
  padding: 8px 9px;
  border-radius: 6px;
  color: #667084;
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.mock-layout aside .active {
  color: var(--blue);
  background: rgba(0, 113, 227, 0.1);
  font-weight: 700;
}

.banner {
  min-height: 162px;
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.28) 0 14%, transparent 15%),
    linear-gradient(135deg, #1d3f93, #7257d9 56%, #161a2f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.banner small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.banner h2 {
  margin: 12px 0 6px;
  font-size: 28px;
}

.banner p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
}

.banner button {
  height: 34px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #132a69;
  background: #ffd66b;
  font-weight: 800;
}

.mock-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mock-products article {
  min-height: 54px;
  padding: 11px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #24b7ff, #4d7fff);
}

.mock-products article:nth-child(2) {
  background: linear-gradient(135deg, #ff7d86, #f0a53f);
}

.mock-products article:nth-child(3) {
  background: linear-gradient(135deg, #24d1b2, #1d91d5);
}

.mock-products b,
.mock-products span {
  display: block;
}

.mock-products b {
  margin-bottom: 5px;
  font-size: 13px;
}

.mock-products span {
  opacity: 0.9;
  font-size: 12px;
}

.right-panel {
  align-items: stretch;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7fd8ff, #9167ff);
}

.right-panel strong {
  font-size: 14px;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.showcase-metrics article {
  min-height: 102px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(30, 50, 90, 0.09);
}

.showcase-metrics i {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 22px;
}

.showcase-metrics strong,
.showcase-metrics span {
  display: block;
}

.showcase-metrics strong {
  margin-bottom: 6px;
}

.showcase-metrics span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 70px 0;
}

.section-head {
  max-width: 830px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.section-head h2,
.delivery-panel h2,
.cta-panel h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 900;
}

.section-head p,
.delivery-panel p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.feature-card,
.case-card,
.faq-panel,
.compare-table,
.delivery-panel,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(30, 50, 90, 0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.value-card,
.feature-card,
.case-card {
  min-height: 214px;
  padding: 28px;
  border-radius: 8px;
}

.icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.09);
  font-size: 24px;
}

.value-card h3,
.feature-card h3,
.case-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.value-card p,
.feature-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.accent-orange .icon {
  color: #f39c12;
  background: rgba(243, 156, 18, 0.1);
}

.accent-green .icon {
  color: #20b572;
  background: rgba(32, 181, 114, 0.1);
}

.accent-purple .icon {
  color: #9b59b6;
  background: rgba(155, 89, 182, 0.11);
}

.accent-red .icon {
  color: #e75045;
  background: rgba(231, 80, 69, 0.1);
}

.accent-dark .icon {
  color: #34495e;
  background: rgba(52, 73, 94, 0.1);
}

.feature-card > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.feature-card .icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.feature-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.delivery-panel {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 18px;
}

.delivery-panel .btn {
  margin-top: 26px;
}

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

.mini-grid article {
  min-height: 142px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.mini-grid i {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 26px;
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  margin-bottom: 8px;
}

.mini-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-line article {
  min-height: 168px;
  padding: 24px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(30, 50, 90, 0.08);
}

.process-line b {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.process-line strong,
.process-line span {
  display: block;
}

.process-line strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-line span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.case-card div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.case-card b {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 18px;
}

.case-card span {
  color: var(--muted);
  font-size: 14px;
}

.case-card.blue b {
  background: #0d8cff;
}

.case-card.green b {
  background: #20b572;
}

.case-card.orange b {
  background: #f39c12;
}

.case-card.purple b {
  background: #9b59b6;
}

.case-card.dark b {
  background: #34495e;
}

.case-card.red b {
  background: #e75045;
}

.compare-table {
  overflow: hidden;
  border-radius: 18px;
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr 1.25fr;
}

.compare-row > div {
  padding: 20px 22px;
  color: #596373;
  line-height: 1.65;
  border-top: 1px solid rgba(20, 28, 38, 0.06);
}

.compare-row > div:first-child {
  color: #1c232c;
  font-weight: 800;
}

.compare-row > div:nth-child(2) {
  color: var(--blue-dark);
  font-weight: 700;
}

.compare-row.head {
  color: #fff;
  background: #12151a;
}

.compare-row.head > div {
  color: #fff;
  border-top: 0;
  font-weight: 900;
}

.compare-row:nth-child(odd):not(.head) {
  background: rgba(255, 255, 255, 0.34);
}

.faq-panel {
  padding: 28px 42px;
  border-radius: 18px;
}

.faq-item {
  border-bottom: 1px solid rgba(20, 28, 38, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 0;
  border: 0;
  color: #141922;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button i:first-child {
  color: var(--blue);
  font-size: 24px;
}

.faq-item button span {
  font-size: 20px;
  font-weight: 800;
}

.faq-item button i:last-child {
  color: #8a93a3;
  transition: transform 0.2s ease;
}

.faq-item p {
  display: none;
  margin: -6px 0 24px 48px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button i:last-child {
  transform: rotate(180deg);
}

.cta-section {
  padding-top: 42px;
}

.cta-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: 52px 36px;
  border-radius: 18px;
  text-align: center;
}

.cta-panel p {
  max-width: 640px;
  margin: 0 auto 26px;
}

.cta-panel div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  padding: 58px 0 44px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: #11151b;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 26px;
}

.footer p {
  margin: 0 0 22px;
}

.friend-links {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.8;
}

.friend-links a:hover {
  color: #fff;
}

.footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.footer small {
  display: block;
  margin: 6px 0;
}

.float-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(0, 113, 227, 0.28);
}

.float-btn i {
  font-size: 27px;
}

@media (max-width: 1080px) {
  .nav-shell {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > a,
  .nav-more > button {
    padding: 13px 10px;
  }

  .nav-actions {
    padding-top: 10px;
  }

  .more-menu {
    position: static;
    width: 100%;
    margin: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-more:hover .more-menu,
  .nav-more:focus-within .more-menu {
    display: block;
  }

  .mobile-mask.open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.32);
  }

  .hero-grid,
  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, 1140px);
  }

  .brand {
    font-size: 19px;
  }

  .hero {
    padding: 108px 0 44px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead,
  .section-head p,
  .delivery-panel p,
  .cta-panel p {
    font-size: 16px;
  }

  .proof-grid,
  .showcase-metrics,
  .card-grid.three,
  .mini-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .mock-layout {
    grid-template-columns: 1fr;
  }

  .mock-layout aside,
  .right-panel {
    display: none;
  }

  .mock-products {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .delivery-panel h2,
  .cta-panel h2 {
    font-size: 28px;
  }

  .value-card,
  .feature-card,
  .case-card,
  .delivery-panel,
  .faq-panel,
  .cta-panel {
    padding: 24px;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 760px;
  }

  .faq-item button {
    grid-template-columns: 28px 1fr 20px;
    gap: 10px;
  }

  .faq-item button span {
    font-size: 17px;
  }

  .faq-item p {
    margin-left: 38px;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-actions,
  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1;
  }
}

.price-page .delivery-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 36px;
  border-radius: 8px;
}

.price-page .price-cta {
  border-radius: 8px;
}

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

@media (max-width: 1080px) {
  .price-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-page .delivery-panel,
  .price-table-head {
    grid-template-columns: 1fr;
  }

  .price-table-head {
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .price-hero {
    padding: 116px 0 38px;
  }

  .price-hero-inner h1 {
    font-size: 30px;
  }

  .price-hero-inner p {
    font-size: 16px;
  }

  .price-value-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .price-page .delivery-panel,
  .price-table-panel,
  .price-cta {
    padding: 24px;
  }

  .plan-card p,
  .plan-gain {
    min-height: 0;
  }

  .delivery-panel h2,
  .price-table-head h2,
  .price-cta h2 {
    font-size: 26px;
  }

  .swipe-hint {
    display: block;
  }

  .price-table-panel {
    margin-left: -14px;
    margin-right: -14px;
    border-radius: 0;
  }
}
