:root {
  --blue-950: #071633;
  --blue-900: #0b1f4a;
  --blue-850: #0f2a66;
  --blue-800: #10338a;
  --blue-700: #1446b3;
  --blue-600: #1f5ce0;
  --blue-500: #2f6ff7;
  --blue-300: #84b4ff;
  --sky-100: #e9f1ff;
  --ink-900: #0a1736;
  --ink-700: #223057;
  --ink-500: #4a5a82;
  --card: rgba(255, 255, 255, 0.92);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 20px 50px rgba(7, 17, 45, 0.2);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink-900);
  background: #f5f7ff;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.dark {
  background: var(--blue-900);
  color: #fff;
}

.section.soft {
  background: #eef3ff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge-spaced {
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(11, 31, 74, 0.98) 0%, rgba(16, 51, 138, 0.96) 55%, rgba(47, 111, 247, 0.88) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(6, 14, 38, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 42px;
}

.site-header .logo img {
  height: 50px;
  filter: drop-shadow(0 6px 10px rgba(5, 12, 38, 0.35));
}

.logo-text {
  font-family: "SF Pro Display", "DIN Alternate", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2.5px;
  line-height: 1;
  display: inline-block;
  position: relative;
  transform: translateY(-6px);
}

.logo-mark {
  width: 62px;
  height: 62px;
  background-image: url("./logo-tech.svg");
  background-size: contain;
  background-repeat: no-repeat;
  filter: none;
}

.site-header .logo-text {
  font-size: 24px;
  color: #ffffff;
  text-shadow: 0 6px 16px rgba(40, 120, 255, 0.35);
}

.site-header .logo-text::after {
  content: "yishangjia.app";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -14px;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: none;
  color: rgba(210, 225, 245, 0.85);
  text-align: left;
  font-weight: 500;
}

.footer .logo-text {
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
}

.footer .logo-mark {
  width: 50px;
  height: 50px;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.site-nav a {
  color: #fff;
  opacity: 0.9;
  padding: 8px 12px;
  border-radius: 999px;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  cursor: pointer;
  width: 40px;
  height: 32px;
  position: relative;
  box-shadow: 0 8px 18px rgba(5, 12, 38, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 8px;
}

.nav-toggle span:nth-child(2) {
  top: 15px;
}

.nav-toggle span:nth-child(3) {
  top: 22px;
}

.site-nav.mobile-open {
  position: absolute;
  top: 56px;
  right: 4vw;
  background: rgba(12, 27, 66, 0.98);
  border-radius: 14px;
  padding: 16px 18px;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #1f5ce0, #2f6ff7);
  color: #fff;
  box-shadow: 0 16px 30px rgba(33, 93, 224, 0.35);
}

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

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn.light {
  background: #fff;
  color: var(--blue-700);
  border-color: rgba(31, 92, 224, 0.2);
}

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #0b1f4a 0%, #10338a 48%, #2f6ff7 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./hero-abstract.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding: 110px 0 120px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1,
.hero-copy .lead {
  margin: 0;
}

.hero-copy h1 {
  letter-spacing: 0.6px;
}

.hero-copy .lead {
  line-height: 1.65;
  letter-spacing: 0.2px;
}

.hero-copy .hero-cta {
  margin: 6px 0 0;
}

.hero-copy .hero-prices {
  margin-top: 6px;
}

.hero-grid > div:first-child:not(.hero-copy) > .badge {
  display: flex;
  width: fit-content;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 12px;
}

.hero-price-highlight {
  display: block;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 209, 79, 0.94), rgba(255, 173, 48, 0.95));
  color: #2d1400;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(15, 38, 92, 0.3);
}

.home-hero-badge {
  padding-top: 9px;
  padding-bottom: 9px;
}

.footer .footer-contact-row {
  white-space: nowrap;
}

.footer .footer-grid .footer-contact-link {
  display: inline;
  margin-top: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  opacity: 1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 18px;
}

.hero-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 360px;
  width: 100%;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  display: none;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.section-title {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 18px;
}

.article-content {
  max-width: 960px;
  margin: 0 auto;
}

.article-content p {
  margin-bottom: 14px;
  color: var(--ink-700);
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content .section-title {
  margin-top: 24px;
}

.article-intro {
  font-size: 18px;
  color: var(--ink-900);
}

.article-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 18px;
}

.article-snapshot-card {
  padding: 18px 20px;
  border: 1px solid #d9e6ff;
  border-radius: 22px;
  background:
    radial-gradient(260px 120px at 100% 0%, rgba(47, 111, 247, 0.08), rgba(47, 111, 247, 0)),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 16px 34px rgba(8, 22, 54, 0.06);
}

.article-snapshot-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-snapshot-card p {
  margin: 12px 0 0;
  color: var(--ink-700);
}

.article-outline {
  margin: 28px 0 36px;
  padding: 24px 26px;
  border: 1px solid #dbe6ff;
  border-radius: 24px;
  background:
    radial-gradient(560px 220px at 100% 0%, rgba(47, 111, 247, 0.08), rgba(47, 111, 247, 0)),
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 18px 40px rgba(8, 22, 54, 0.08);
}

.article-outline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.article-outline-head p {
  margin: 12px 0 0;
  color: var(--ink-700);
}

.article-outline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-outline-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 600;
}

.article-outline-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.article-outline-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #dde8ff;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-outline-link:hover {
  transform: translateY(-2px);
  border-color: #bfd4ff;
  box-shadow: 0 14px 26px rgba(8, 22, 54, 0.08);
}

.article-outline-index {
  display: inline-flex;
  min-width: 32px;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-sub {
  color: var(--ink-500);
  max-width: 640px;
  margin-bottom: 32px;
}

.section-sub-wide {
  max-width: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.appstore-benefit {
  background:
    radial-gradient(1200px 420px at 50% -12%, rgba(47, 111, 247, 0.14), rgba(47, 111, 247, 0)),
    linear-gradient(180deg, #f7f9ff 0%, #edf3ff 100%);
}

.appstore-benefit-head {
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.benefit-card {
  background: #fff;
  border: 1px solid #dee8ff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(13, 36, 94, 0.08);
}

.benefit-card h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--ink-700);
}

.benefit-card strong {
  color: var(--blue-700);
}

.metric-highlight {
  color: var(--blue-700);
}

.benefit-note {
  margin-top: 20px;
  color: var(--ink-700);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card.glass {
  background: var(--glass);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}

.article-title a {
  color: inherit;
  display: inline-block;
}

.article-title a:hover {
  color: var(--blue-700);
}

.article-action {
  margin-top: auto;
  align-self: flex-end;
}

.article-cta .card {
  padding: 32px 36px;
  display: grid;
  gap: 12px;
}

.article-cta .hero-cta {
  margin: 12px 0 0;
}

.article-cta p {
  margin-bottom: 0;
}

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

.list-check span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check span::before {
  content: "✓";
  color: var(--blue-600);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.timeline-item strong {
  color: var(--blue-700);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e8edf9;
  font-size: 14px;
}

pre {
  background: #f1f5ff;
  border: 1px solid #dbe6ff;
  border-radius: 12px;
  padding: 16px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;
}

.table th {
  background: #f4f7ff;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid #e5ecff;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-700);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--blue-700);
  font-size: 13px;
}

.hero-entry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(8, 20, 50, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-entry-pill:hover {
  transform: translateY(-2px);
}

.hero-entry-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: none;
}

.hero-entry-pill-apple {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 236, 255, 0.84));
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--blue-900);
}

.hero-entry-pill-apple::before {
  background: linear-gradient(135deg, #0b1f4a, #7b89ae);
  box-shadow: 0 0 0 4px rgba(20, 70, 179, 0.08);
}

.hero-entry-pill-google {
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.96), rgba(211, 255, 242, 0.88));
  border-color: rgba(255, 255, 255, 0.42);
  color: #0a2b56;
}

.hero-entry-pill-google::before {
  background: linear-gradient(135deg, #34a853, #4285f4);
  box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.12);
}

.hero-entry-pill-service {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-entry-pill-service::before {
  background: linear-gradient(135deg, #84b4ff, #ffffff);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.case-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.case-card h4 {
  margin-bottom: 8px;
}

.testimonial {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-500);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--ink-500);
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open .faq-content {
  max-height: 240px;
  padding: 0 18px 16px;
}

.faq-item button span {
  color: var(--blue-600);
  font-size: 20px;
}

.footer {
  background: #0b1f4a;
  color: #d4def7;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer a {
  color: #d4def7;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.footer .footer-grid a {
  display: block;
  margin-top: 6px;
}

.footer .logo {
  margin-bottom: 10px;
}

.footer .logo img {
  height: 34px;
}

.footer-bottom {
  margin-top: 26px;
  font-size: 13px;
  color: #9fb2dd;
}

.tg-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  background: linear-gradient(135deg, #1f5ce0, #2f6ff7);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(33, 93, 224, 0.4);
  font-weight: 600;
}

.tg-float-note {
  display: inline;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.tg-float:hover {
  transform: translateY(-2px);
}

.mobile-cta {
  display: none;
}

.hero + .section {
  margin-top: -20px;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 76px 0 90px;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .site-nav.mobile-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .nav-wrap {
    padding: 6px 0;
  }

  .hero-grid {
    padding: 56px 0 72px;
  }

  .article-cta .card {
    padding: 24px;
  }

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

  .hero-price-highlight {
    font-size: 16px;
    padding: 8px 12px;
  }

  .home-hero-badge {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tg-float {
    display: none;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px;
    background: rgba(8, 20, 50, 0.94);
    z-index: 110;
    justify-content: center;
  }

  .mobile-cta .btn {
    width: 100%;
    max-width: 360px;
  }

  .table {
    display: block;
    overflow-x: auto;
  }

  .site-header .logo img {
    height: 40px;
  }

  .site-header .logo-text {
    font-size: 21px;
    letter-spacing: 2px;
  }

  .site-header .logo-text::after {
    font-size: 10px;
    bottom: -12px;
    letter-spacing: 1px;
  }

  .logo-mark {
    width: 50px;
    height: 50px;
  }

  .benefit-card {
    padding: 18px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .hero::before {
    background-size: 110%;
    background-position: 60% 25%;
  }

  .tg-float {
    right: 12px;
    bottom: 92px;
    min-width: 0;
    border-radius: 12px;
    padding: 8px 9px 8px;
    text-align: center;
    line-height: 1.18;
    font-size: 12px;
    letter-spacing: 0.2px;
    box-shadow: 0 14px 24px rgba(15, 52, 138, 0.42);
  }

  .tg-float-note {
    display: block;
    margin-left: 0;
    margin-top: 1px;
    font-size: 10px;
  }
}

body.home-page {
  background:
    radial-gradient(circle at top left, rgba(103, 150, 255, 0.16), rgba(103, 150, 255, 0) 34%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 48%, #f9fbff 100%);
}

.home-page main {
  overflow: clip;
}

.home-page .site-header {
  background: linear-gradient(135deg, rgba(6, 20, 48, 0.86) 0%, rgba(10, 29, 69, 0.82) 52%, rgba(13, 54, 138, 0.72) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(4, 11, 29, 0.22);
}

.home-page .site-nav a {
  font-weight: 500;
}

.home-page .hero {
  background:
    radial-gradient(720px 420px at 18% 4%, rgba(119, 172, 255, 0.22), rgba(119, 172, 255, 0) 62%),
    radial-gradient(720px 480px at 92% 8%, rgba(29, 191, 154, 0.14), rgba(29, 191, 154, 0) 64%),
    linear-gradient(135deg, #071631 0%, #0b1d45 42%, #0f3a94 100%);
}

.home-page .hero::before {
  opacity: 0.18;
  mix-blend-mode: screen;
}

.home-page .hero + .section {
  margin-top: 0;
}

.home-page .hero-grid {
  gap: 56px;
  padding: 116px 0 96px;
}

.home-hero-copy {
  max-width: 680px;
  gap: 22px;
}

.home-page .home-hero-badge {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(4, 10, 28, 0.18);
  color: rgba(232, 239, 255, 0.96);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.hero-kicker {
  color: rgba(210, 221, 247, 0.76);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .hero h1 {
  margin-bottom: 0;
  max-width: 13.8ch;
  font-size: clamp(42px, 5vw, 68px);
  line-height: calc(1.04em + 4px);
  letter-spacing: -0.05em;
}

.home-hero-line-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.home-page .hero p.lead {
  margin-bottom: 0;
  max-width: 640px;
  color: rgba(226, 234, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.home-page .hero-cta {
  margin: 6px 0 0;
}

.home-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 24px 48px rgba(4, 10, 28, 0.18);
  backdrop-filter: blur(16px);
}

.proof-item strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: rgba(216, 226, 250, 0.78);
  font-size: 14px;
}

.home-hero-visual {
  align-items: stretch;
  min-height: 0;
}

.hero-visual-shell {
  position: relative;
  width: min(100%, 540px);
  margin-left: auto;
  display: grid;
  gap: 18px;
}

.hero-visual-shell::before {
  content: "";
  position: absolute;
  inset: 20% -12% -12% 20%;
  background: radial-gradient(circle, rgba(104, 167, 255, 0.38) 0%, rgba(104, 167, 255, 0) 72%);
  filter: blur(36px);
  pointer-events: none;
}

.hero-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 26px 60px rgba(4, 10, 28, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.hero-feature-card-primary {
  min-height: 286px;
  padding: 28px;
  gap: 18px;
}

.hero-card-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(214, 225, 251, 0.84);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-process-flow {
  --hero-process-line: 34px;
  --hero-process-gap: 10px;
  position: relative;
  display: inline-grid;
  width: fit-content;
  gap: var(--hero-process-gap);
  justify-items: start;
  padding-right: 42px;
}

.hero-process-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.hero-process-row span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-process-arrow {
  color: rgba(214, 225, 251, 0.56);
  font-size: 24px;
  line-height: 1;
}

.hero-process-row-reverse {
  padding-left: 0;
}

.hero-process-row-reverse .hero-process-arrow {
  margin: 0 2px;
}

.hero-process-row-reverse span:first-of-type {
  color: #fff;
}

.hero-process-row-reverse span:last-of-type {
  color: rgba(235, 241, 255, 0.92);
}

.hero-process-turn-arc {
  position: absolute;
  top: calc(var(--hero-process-line) / 2);
  right: -2px;
  width: 38px;
  height: calc(var(--hero-process-line) + var(--hero-process-gap));
  pointer-events: none;
}

.hero-process-turn-arc svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-process-turn-arc path {
  fill: none;
  stroke: rgba(214, 225, 251, 0.56);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-price-line {
  display: inline-flex;
  width: fit-content;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 208, 112, 0.26);
  background: linear-gradient(135deg, rgba(255, 192, 83, 0.16), rgba(255, 150, 66, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 229, 178, 0.16);
}

.hero-price-line strong {
  color: #ffd669;
  text-shadow: 0 8px 22px rgba(255, 197, 78, 0.28);
  font-size: 48px;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.hero-price-line span {
  padding-bottom: 4px;
  color: rgba(255, 236, 188, 0.94);
  font-size: 15px;
  font-weight: 700;
}

.hero-panel-body,
.hero-feature-card p {
  color: rgba(224, 233, 255, 0.78);
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.home-page .hero-entry-pill {
  box-shadow: none;
}

.hero-side-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-price-card {
  justify-content: space-between;
}

.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.98fr) minmax(0, 1.02fr);
  gap: 26px;
  align-items: stretch;
}

.footer-links-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.88fr) minmax(260px, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

.footer-links-group > .footer-column:first-child {
  display: none;
}

.footer-brand {
  display: grid;
  align-content: start;
  width: 100%;
  max-width: 520px;
  justify-self: start;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 52px rgba(4, 11, 29, 0.18);
  backdrop-filter: blur(12px);
}

.footer-intro {
  margin-top: 14px;
  color: rgba(215, 224, 247, 0.88);
  line-height: 1.8;
}

.footer-contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.footer-contact-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.footer-contact-note {
  color: rgba(194, 208, 240, 0.78);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 22px 46px rgba(4, 11, 29, 0.14);
}

.footer-column h4 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.footer-column p,
.footer-column a {
  color: rgba(212, 222, 247, 0.82);
  line-height: 1.7;
}

.footer-column a {
  margin-top: 0;
}

.footer-column-emphasis {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.footer-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.footer-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(220, 228, 248, 0.88);
  line-height: 1.7;
}

.footer-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #84b4ff, #ffffff);
}

.footer-bottom-strong {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 22px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a9bcdf;
}

.hero-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.hero-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(225, 233, 255, 0.8);
}

.hero-check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #84b4ff, #ffffff);
  box-shadow: 0 0 0 5px rgba(132, 180, 255, 0.1);
}

.home-page .section.soft {
  background: linear-gradient(180deg, rgba(236, 243, 255, 0.86), rgba(246, 249, 255, 0.96));
}

.home-section {
  position: relative;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

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

.section-head .section-title,
.faq-intro .section-title {
  margin-bottom: 0;
}

.section-head .section-sub,
.faq-intro .section-sub {
  margin-bottom: 0;
}

.section-kicker {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .section-title {
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.home-page .section-sub {
  max-width: 760px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(16, 51, 138, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  box-shadow: 0 18px 42px rgba(8, 22, 54, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f6ff7, #2dbf9a);
}

.service-card:hover,
.proof-card:hover,
.entry-card:hover,
.home-case-grid .case-card:hover,
.home-benefit-grid .benefit-card:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  border-color: rgba(31, 92, 224, 0.18);
  box-shadow: 0 24px 52px rgba(8, 22, 54, 0.12);
}

.service-step {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.service-card p {
  color: var(--ink-700);
}

.process-shell {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(16, 51, 138, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.94));
  box-shadow: 0 24px 56px rgba(8, 22, 54, 0.08);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.home-page .home-timeline {
  gap: 16px;
}

.home-page .home-timeline .timeline-item {
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid #dfe9ff;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: none;
}

.home-page .home-timeline .timeline-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.timeline-copy h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.3;
}

.timeline-copy p {
  color: var(--ink-700);
}

.process-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #081a39 0%, #0d2456 48%, #114196 100%);
  color: #fff;
  box-shadow: 0 24px 52px rgba(6, 18, 46, 0.22);
  overflow: hidden;
}

.process-panel::before,
.insight-copy::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 180, 255, 0.28) 0%, rgba(132, 180, 255, 0) 70%);
  pointer-events: none;
}

.process-panel h3 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.process-panel p {
  position: relative;
  color: rgba(228, 236, 255, 0.8);
}

.process-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.process-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(235, 241, 255, 0.88);
  font-size: 14px;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.insight-copy {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #081a39 0%, #0c2558 52%, #124399 100%);
  color: #fff;
  box-shadow: 0 24px 52px rgba(7, 20, 47, 0.2);
  overflow: hidden;
}

.insight-copy .section-kicker,
.process-panel .section-kicker,
.contact-card .section-kicker {
  color: rgba(214, 226, 255, 0.72);
}

.insight-copy .section-title,
.contact-card .section-title {
  color: #fff;
}

.insight-copy .section-sub,
.insight-copy .benefit-note {
  color: rgba(228, 236, 255, 0.82);
}

.home-benefit-grid {
  align-content: start;
}

.home-benefit-grid .benefit-card {
  padding: 24px;
  border: 1px solid #dee8ff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(8, 22, 54, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-benefit-grid .benefit-card:hover {
  box-shadow: 0 24px 52px rgba(8, 22, 54, 0.12);
}

.benefit-value {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
}

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

.proof-card {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid #dbe6ff;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 42px rgba(8, 22, 54, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-card:hover {
  box-shadow: 0 24px 54px rgba(8, 22, 54, 0.12);
}

.proof-number {
  margin-bottom: 18px;
  color: var(--blue-800);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.proof-card p {
  color: var(--ink-700);
}

.section-head-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.home-section-link {
  padding: 10px 16px;
  border: 1px solid #dbe6ff;
  background: #fff;
  box-shadow: 0 14px 30px rgba(8, 22, 54, 0.08);
}

.home-case-grid .case-card {
  padding: 28px;
  border: 1px solid #dce7ff;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 40px rgba(8, 22, 54, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-case-grid .case-card:hover {
  box-shadow: 0 24px 52px rgba(8, 22, 54, 0.12);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.case-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
}

.case-chip.subtle {
  background: #f4f7fd;
  color: var(--ink-500);
}

.home-case-grid .case-card p {
  color: var(--ink-900);
  font-size: 19px;
  line-height: 1.8;
}

.home-case-grid .testimonial {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.entry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid #dce7ff;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 40px rgba(8, 22, 54, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.entry-card:hover {
  border-color: rgba(31, 92, 224, 0.2);
  box-shadow: 0 24px 52px rgba(8, 22, 54, 0.12);
}

.entry-card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-card h3 {
  font-size: 22px;
  line-height: 1.35;
}

.entry-card p {
  color: var(--ink-700);
}

.entry-card-action {
  margin-top: auto;
  color: var(--blue-700);
  font-weight: 700;
}

.entry-card-action::after {
  content: " ↗";
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #06152f 0%, #0c2457 52%, #113c8f 100%);
  box-shadow: 0 26px 58px rgba(7, 19, 46, 0.22);
  overflow: hidden;
}

.contact-card p {
  position: relative;
  color: rgba(228, 236, 255, 0.8);
  line-height: 1.8;
}

.contact-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-card .btn.primary {
  background: #fff;
  color: var(--blue-700);
  box-shadow: none;
}

.contact-card .btn.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 96px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid #dce7ff;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 42px rgba(8, 22, 54, 0.08);
}

.home-page .faq {
  gap: 14px;
}

.home-page .faq-item {
  border: 1px solid #dfe9ff;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: 0 16px 34px rgba(8, 22, 54, 0.07);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.home-page .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(8, 22, 54, 0.1);
}

.home-page .faq-item button {
  padding: 20px 22px;
  text-align: left;
  font-size: 16px;
  gap: 16px;
}

.home-page .faq-item button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 20px;
  line-height: 1;
}

.home-page .faq-item .faq-content {
  padding: 0 22px;
  color: var(--ink-700);
}

.home-page .faq-item.open {
  border-color: #cfe0ff;
  box-shadow: 0 22px 42px rgba(8, 22, 54, 0.1);
}

.home-page .faq-item.open .faq-content {
  padding: 0 22px 20px;
}

.home-page .footer {
  background: linear-gradient(135deg, #081733 0%, #0b1f4a 55%, #0d2d69 100%);
}

.home-footer {
  position: relative;
  overflow: hidden;
}

.home-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(88, 140, 255, 0.18) 0%, rgba(88, 140, 255, 0) 72%);
  pointer-events: none;
}

.home-page .tg-float {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(13, 50, 129, 0.28);
  backdrop-filter: blur(12px);
}

.home-page .mobile-cta {
  background: rgba(6, 18, 46, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .home-page .hero-grid,
  .process-layout,
  .insight-layout,
  .contact-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .hero-visual-shell {
    max-width: none;
    width: 100%;
  }

  .contact-actions,
  .section-head-inline {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .process-panel,
  .faq-intro {
    position: static;
  }
}

@media (max-width: 860px) {
  .home-hero-proof,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-page .hero-grid {
    gap: 32px;
    padding: 58px 0 72px;
  }

  .home-page .hero h1 {
    max-width: none;
    font-size: clamp(36px, 11vw, 48px);
  }

  .home-page .hero p.lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .home-hero-proof,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .process-shell,
  .insight-copy,
  .contact-card,
  .faq-intro {
    padding: 24px;
    border-radius: 24px;
  }

  .service-card,
  .proof-card,
  .entry-card,
  .home-case-grid .case-card,
  .home-benefit-grid .benefit-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-process-flow {
    gap: 8px;
  }

  .hero-process-row {
    gap: 10px;
  }

  .hero-process-row span {
    font-size: 24px;
  }

  .hero-process-row-reverse {
    padding-left: 0;
  }

  .hero-process-flow {
    --hero-process-line: 29px;
    padding-right: 34px;
  }

  .hero-process-turn-arc {
    width: 30px;
  }

  .hero-price-line strong {
    font-size: 38px;
  }

  .process-panel h3 {
    font-size: 24px;
  }

  .home-case-grid .case-card p {
    font-size: 17px;
    line-height: 1.7;
  }

  .home-page .faq-item button {
    font-size: 15px;
  }

  .footer-shell,
  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    gap: 28px;
  }

  .footer-brand,
  .footer-column-emphasis {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .home-page .home-hero-badge,
  .hero-kicker {
    letter-spacing: 0.12em;
  }

  .home-page .hero-entry-pill {
    padding: 9px 12px;
    font-size: 12px;
  }

  .proof-item,
  .service-card,
  .proof-card,
  .entry-card,
  .home-case-grid .case-card,
  .home-benefit-grid .benefit-card,
  .home-page .home-timeline .timeline-item {
    padding: 18px;
  }

  .hero-feature-card,
  .hero-feature-card-primary,
  .process-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-process-flow {
    --hero-process-line: 24px;
    gap: 8px;
  }

  .hero-process-row {
    gap: 8px;
  }

  .hero-process-row span {
    font-size: 20px;
  }

  .hero-process-flow {
    padding-right: 28px;
  }

  .hero-process-turn-arc {
    width: 24px;
  }

  .home-page .home-timeline .timeline-item {
    grid-template-columns: 1fr;
  }

  .home-page .home-timeline .timeline-item strong {
    width: 42px;
    height: 42px;
  }

  .contact-actions .btn,
  .home-page .hero-cta .btn {
    width: 100%;
  }

  .footer-bottom-strong {
    gap: 8px 16px;
  }
}

body.content-page {
  --page-accent: rgba(125, 172, 255, 0.28);
  --page-accent-strong: rgba(125, 172, 255, 0.42);
  --page-accent-soft: rgba(91, 210, 193, 0.18);
  background:
    radial-gradient(circle at top left, rgba(104, 154, 255, 0.14), rgba(104, 154, 255, 0) 34%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 46%, #f9fbff 100%);
}

.page-appstore {
  --page-accent: rgba(144, 172, 255, 0.3);
  --page-accent-strong: rgba(144, 172, 255, 0.46);
  --page-accent-soft: rgba(133, 220, 255, 0.16);
}

.page-googleplay {
  --page-accent: rgba(84, 203, 148, 0.24);
  --page-accent-strong: rgba(84, 203, 148, 0.4);
  --page-accent-soft: rgba(95, 153, 255, 0.18);
}

.page-about {
  --page-accent: rgba(104, 196, 255, 0.22);
  --page-accent-strong: rgba(104, 196, 255, 0.36);
  --page-accent-soft: rgba(98, 239, 210, 0.14);
}

.page-cases {
  --page-accent: rgba(255, 184, 112, 0.2);
  --page-accent-strong: rgba(255, 184, 112, 0.34);
  --page-accent-soft: rgba(123, 171, 255, 0.18);
}

.page-account {
  --page-accent: rgba(255, 176, 120, 0.22);
  --page-accent-strong: rgba(255, 176, 120, 0.38);
  --page-accent-soft: rgba(122, 178, 255, 0.18);
}

.page-white-package {
  --page-accent: rgba(255, 145, 120, 0.2);
  --page-accent-strong: rgba(255, 145, 120, 0.34);
  --page-accent-soft: rgba(255, 214, 120, 0.14);
}

.page-security {
  --page-accent: rgba(88, 214, 194, 0.18);
  --page-accent-strong: rgba(88, 214, 194, 0.34);
  --page-accent-soft: rgba(129, 171, 255, 0.18);
}

.page-blog {
  --page-accent: rgba(137, 160, 255, 0.24);
  --page-accent-strong: rgba(137, 160, 255, 0.42);
  --page-accent-soft: rgba(100, 214, 193, 0.16);
}

.page-services {
  --page-accent: rgba(111, 169, 255, 0.24);
  --page-accent-strong: rgba(111, 169, 255, 0.4);
  --page-accent-soft: rgba(82, 211, 164, 0.16);
}

.content-page .site-header {
  background: linear-gradient(135deg, rgba(6, 20, 48, 0.88) 0%, rgba(10, 29, 69, 0.84) 52%, rgba(13, 54, 138, 0.74) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(4, 11, 29, 0.22);
}

.content-page .site-nav a {
  font-weight: 500;
}

.content-page .hero {
  background:
    radial-gradient(780px 420px at 18% 6%, var(--page-accent), rgba(125, 172, 255, 0) 62%),
    radial-gradient(760px 460px at 92% 10%, var(--page-accent-soft), rgba(91, 210, 193, 0) 64%),
    linear-gradient(135deg, #071631 0%, #0b1d45 42%, #103a90 100%);
}

.content-page .hero::before {
  opacity: 0.16;
  mix-blend-mode: screen;
}

.content-page .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  padding: 110px 0 86px;
}

.content-page .hero-grid:has(.hero-visual:empty) {
  grid-template-columns: 1fr;
}

.content-page .hero-grid > .hero-visual:empty {
  display: none;
}

.content-page .hero-grid:has(.hero-visual:empty) > :first-child {
  max-width: 760px;
}

.page-hero-copy {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-page .hero .badge {
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(4, 10, 28, 0.18);
  color: rgba(232, 239, 255, 0.96);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.content-page .hero h1 {
  margin-bottom: 0;
  max-width: 12ch;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-blog .hero h1 {
  max-width: none;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.028em;
  text-wrap: pretty;
}

.page-blog-index .hero h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-blog .page-hero-copy {
  max-width: 1040px;
}

.page-blog .hero-grid:has(.hero-visual:empty) > .page-hero-copy {
  max-width: 1040px;
}

.content-page .hero p.lead {
  margin-bottom: 0;
  max-width: 640px;
  color: rgba(226, 234, 255, 0.84);
  font-size: 18px;
  line-height: 1.78;
}

.content-page .hero-cta {
  margin: 6px 0 0;
}

.page-hero-visual {
  align-items: stretch;
  min-height: 0;
}

.page-hero-shell {
  position: relative;
  width: min(100%, 540px);
  margin-left: auto;
  display: grid;
  gap: 18px;
}

.page-hero-shell::before {
  content: "";
  position: absolute;
  inset: 20% -10% -12% 22%;
  background: radial-gradient(circle, var(--page-accent-strong) 0%, rgba(125, 172, 255, 0) 72%);
  filter: blur(36px);
  pointer-events: none;
}

.page-hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  box-shadow: 0 26px 60px rgba(4, 10, 28, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.page-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.page-hero-panel-main {
  min-height: 250px;
  padding: 28px;
}

.page-hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-hero-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(214, 225, 251, 0.84);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.page-hero-panel p {
  margin: 0;
  color: rgba(224, 233, 255, 0.78);
  line-height: 1.75;
}

.page-hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.page-hero-kpis span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 255, 0.9);
  font-size: 13px;
}

.page-hero-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.page-hero-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(225, 233, 255, 0.8);
  line-height: 1.65;
}

.page-hero-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #84b4ff, #ffffff);
  box-shadow: 0 0 0 5px rgba(132, 180, 255, 0.1);
}

.page-hero-stat {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.page-hero-stat strong {
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.page-hero-stat span {
  padding-bottom: 4px;
  color: rgba(225, 233, 255, 0.78);
  font-size: 15px;
}

.page-hero-price {
  display: inline-flex;
  width: fit-content;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 208, 112, 0.26);
  background: linear-gradient(135deg, rgba(255, 192, 83, 0.16), rgba(255, 150, 66, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 229, 178, 0.16);
}

.page-hero-price strong {
  color: #ffd669;
  text-shadow: 0 8px 22px rgba(255, 197, 78, 0.28);
  font-size: 48px;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.page-hero-price span {
  padding-bottom: 4px;
  color: rgba(255, 236, 188, 0.94);
  font-size: 15px;
  font-weight: 700;
}

.content-page .hero + .section {
  margin-top: 0;
}

.content-page .section.compact {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding-top: 0;
  padding-bottom: 30px;
}

.content-page .section.compact .card {
  padding: 24px 26px;
  border: 1px solid rgba(16, 51, 138, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 255, 0.96));
  box-shadow: 0 20px 46px rgba(8, 22, 54, 0.1);
  backdrop-filter: blur(12px);
}

.content-page .section {
  padding: 84px 0;
}

.content-page .section.soft {
  background: linear-gradient(180deg, rgba(236, 243, 255, 0.86), rgba(246, 249, 255, 0.96));
}

.content-page .section-title {
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.content-page .section-sub {
  max-width: 780px;
  line-height: 1.75;
}

.content-page .cards,
.content-page .case-grid,
.content-page .pricing-grid,
.content-page .benefit-grid {
  gap: 20px;
}

.content-page .card,
.content-page .case-card,
.content-page .pricing-card,
.content-page .benefit-card {
  border: 1px solid #dce7ff;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 40px rgba(8, 22, 54, 0.08);
}

.content-page .card,
.content-page .pricing-card {
  padding: 28px;
}

.content-page .card h3,
.content-page .case-card h4,
.content-page .pricing-card h3,
.content-page .benefit-card h3 {
  line-height: 1.35;
}

.content-page .card p,
.content-page .case-card p,
.content-page .benefit-card p,
.content-page .pricing-card p,
.content-page .timeline-copy p,
.content-page .faq-content p,
.content-page .article-card p {
  color: var(--ink-700);
}

.content-page .pill {
  padding: 8px 13px;
  border: 1px solid #dbe6ff;
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 12px 26px rgba(8, 22, 54, 0.06);
}

.content-page .article-card {
  gap: 12px;
}

.page-blog-index .cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-index .list-check a,
.page-blog-index .article-title a {
  line-height: 1.62;
  text-wrap: balance;
}

.page-blog-index .card h3 {
  font-size: 22px;
}

.page-blog .article-content {
  counter-reset: article-section;
}

.page-blog .article-content > .section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #e0e8fb;
}

.page-blog .article-content > .section-title::before {
  counter-increment: article-section;
  content: counter(article-section, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-blog .article-content p {
  font-size: 16px;
  line-height: 1.9;
}

.page-blog .article-content a {
  color: var(--blue-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-blog .article-intro {
  font-size: 21px;
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-blog .article-point {
  margin: 20px 0;
  padding: 18px 20px;
  border: 1px solid #d7e5ff;
  border-radius: 20px;
  background:
    radial-gradient(320px 140px at 100% 0%, rgba(47, 111, 247, 0.08), rgba(47, 111, 247, 0)),
    linear-gradient(180deg, #f9fbff, #f3f8ff);
  box-shadow: 0 14px 30px rgba(8, 22, 54, 0.06);
  color: var(--ink-900);
}

.page-blog .article-expand {
  margin-top: 14px;
  padding-left: 18px;
  border-left: 3px solid #dce7ff;
  color: #33446e;
}

.page-blog .article-expand-2 {
  color: var(--ink-500);
  font-size: 14px;
}

.page-blog .article-content pre,
.page-blog .article-content .table {
  margin: 22px 0 30px;
}

.content-page .article-action {
  align-self: flex-start;
  margin-top: auto;
}

.content-page .table {
  border: 1px solid #dce7ff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(8, 22, 54, 0.08);
}

.content-page .table th {
  background: #f5f8ff;
}

.content-page .timeline {
  gap: 16px;
}

.content-page .timeline-item {
  border: 1px solid #dfe9ff;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: none;
  padding: 20px 22px;
}

.content-page .timeline-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 12px 10px;
  border-radius: 16px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.content-page .faq {
  gap: 14px;
}

.content-page .faq-item {
  border: 1px solid #dfe9ff;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: 0 16px 34px rgba(8, 22, 54, 0.07);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.content-page .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(8, 22, 54, 0.1);
}

.content-page .faq-item button {
  padding: 20px 22px;
  text-align: left;
  font-size: 16px;
  gap: 16px;
}

.content-page .faq-item button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 20px;
  line-height: 1;
}

.content-page .faq-item .faq-content {
  padding: 0 22px;
  color: var(--ink-700);
}

.content-page .faq-item.open {
  border-color: #cfe0ff;
  box-shadow: 0 22px 42px rgba(8, 22, 54, 0.1);
}

.content-page .faq-item.open .faq-content {
  padding: 0 22px 20px;
}

.home-footer {
  background: linear-gradient(135deg, #081733 0%, #0b1f4a 55%, #0d2d69 100%);
}

.home-footer .footer-contact-pill:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .content-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-copy,
  .page-hero-shell {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .page-blog .hero h1 {
    max-width: none;
    font-size: clamp(28px, 5.8vw, 36px);
  }

  .page-blog-index .hero h1 {
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .article-outline {
    padding: 20px;
  }

  .article-snapshot {
    grid-template-columns: 1fr;
  }

  .article-outline-links,
  .page-blog-index .cards {
    grid-template-columns: 1fr;
  }

  .page-blog .article-content > .section-title {
    align-items: flex-start;
  }

  .page-hero-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .content-page .hero-grid {
    gap: 30px;
    padding: 58px 0 72px;
  }

  .content-page .hero h1 {
    max-width: none;
    font-size: clamp(34px, 11vw, 46px);
  }

  .page-blog .hero h1 {
    font-size: clamp(26px, 8.4vw, 34px);
    line-height: 1.22;
  }

  .page-blog-index .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .content-page .hero p.lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .content-page .section {
    padding: 58px 0;
  }

  .content-page .section.compact {
    margin-top: -26px;
    padding-bottom: 20px;
  }

  .content-page .card,
  .content-page .case-card,
  .content-page .pricing-card,
  .content-page .benefit-card,
  .content-page .section.compact .card {
    padding: 22px;
    border-radius: 22px;
  }

  .page-hero-panel,
  .page-hero-panel-main {
    padding: 22px;
    border-radius: 24px;
  }

  .page-hero-panel h2 {
    font-size: 26px;
  }

  .page-hero-stat strong,
  .page-hero-price strong {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  .content-page .hero .badge {
    letter-spacing: 0.12em;
  }

  .page-hero-panel h2 {
    font-size: 22px;
  }

  .page-hero-list li,
  .page-hero-panel p {
    line-height: 1.68;
  }

  .page-hero-price {
    padding: 10px 14px;
  }
}
