:root {
  color-scheme: light;
  --bg: #f8f5ee;
  --panel: rgba(255, 255, 255, 0.84);
  --ink: #0b0f0e;
  --muted: #66716c;
  --line: rgba(26, 31, 29, 0.1);
  --line-strong: rgba(16, 163, 127, 0.28);
  --soft: #f1ece2;
  --soft-2: #e7f7f1;
  --accent: #10a37f;
  --accent-dark: #067359;
  --accent-ink: #043d30;
  --dark: #07100e;
  --gold: #d8a545;
  --shadow: 0 24px 80px rgba(12, 29, 23, 0.14);
  --shadow-strong: 0 30px 90px rgba(6, 32, 25, 0.2);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --page: min(1160px, calc(100vw - 44px));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(16, 163, 127, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(16, 163, 127, 0.2), transparent 22rem),
    radial-gradient(circle at 72% 38%, rgba(216, 165, 69, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 48%, #fbfaf7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(7, 16, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 14, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  right: -140px;
  top: -140px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(16, 163, 127, 0.18);
  filter: blur(36px);
  pointer-events: none;
  z-index: -1;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(26, 31, 29, 0.08);
  background: rgba(251, 250, 247, 0.76);
  backdrop-filter: blur(18px) saturate(1.25);
}

.nav-shell {
  width: var(--page);
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #07100e, #0f5a47 72%, #10a37f);
  box-shadow: 0 14px 34px rgba(16, 163, 127, 0.23);
}

.brand-icon svg {
  width: 21px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-icon.image-logo {
  overflow: hidden;
  background: #fff;
  color: inherit;
  box-shadow: 0 14px 34px rgba(16, 163, 127, 0.18);
}

.brand-icon.image-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3b4540;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  opacity: 0.86;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #53d5b5);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:not(.nav-cta):hover {
  opacity: 1;
  color: var(--accent-ink);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.recharge-link {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(16, 163, 127, 0.24);
  border-radius: 999px;
  color: var(--accent-dark) !important;
  background: rgba(234, 247, 242, 0.7);
  box-shadow: 0 10px 26px rgba(16, 163, 127, 0.08), 0 0 0 0 rgba(16, 163, 127, 0.1);
  font-weight: 900;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  animation: rechargeSoftPulse 2.8s ease-in-out infinite;
}

.recharge-link:hover {
  background: rgba(218, 250, 240, 0.92);
  border-color: rgba(16, 163, 127, 0.45);
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 13px 32px rgba(16, 163, 127, 0.14), 0 0 0 4px rgba(16, 163, 127, 0.08);
}




.recharge-link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 38%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: rechargeSoftShine 3.8s ease-in-out infinite;
}

.recharge-link::after {
  display: none !important;
}

@keyframes rechargeSoftPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(16, 163, 127, 0.08), 0 0 0 0 rgba(16, 163, 127, 0.08); }
  50% { box-shadow: 0 12px 30px rgba(16, 163, 127, 0.13), 0 0 0 4px rgba(16, 163, 127, 0.06); }
}

@keyframes rechargeSoftShine {
  0% { left: -55%; }
  38%, 100% { left: 125%; }
}

.nav-links .recharge-link::after {
  display: none !important;
}
.account-query {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(16, 163, 127, 0.28);
  border-radius: 999px;
  color: var(--accent-dark) !important;
  background: rgba(234, 247, 242, 0.78);
  box-shadow: 0 10px 26px rgba(16, 163, 127, 0.1);
  font-weight: 900;
}

.account-query:hover {
  background: rgba(218, 250, 240, 0.96);
  border-color: rgba(16, 163, 127, 0.45);
}

.nav-links .account-query::after {
  display: none !important;
}

.nav-cta,
.primary-btn,
.card-btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    var(--dark);
  box-shadow: 0 18px 42px rgba(7, 16, 14, 0.16);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-cta {
  min-height: 38px;
  padding: 0 18px;
}

.nav-cta:hover,
.primary-btn:hover,
.card-btn:hover,
.mini-btn:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    #020605;
  box-shadow: 0 22px 52px rgba(7, 16, 14, 0.24);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.78fr);
  gap: 64px;
  align-items: center;
  padding-block: 34px 56px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 11%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(16, 163, 127, 0.1);
  filter: blur(28px);
  z-index: -1;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px 0 11px;
  border: 1px solid rgba(16, 163, 127, 0.28);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(234, 247, 242, 0.88);
  box-shadow: 0 12px 34px rgba(16, 163, 127, 0.1);
  font-size: 14px;
  font-weight: 850;
}

.pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(16, 163, 127, 0.12);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(16, 163, 127, 0.34);
  animation: pulseRing 1.9s ease-out infinite;
}

@keyframes pulseRing {
  from {
    opacity: 0.9;
    transform: scale(0.55);
  }
  to {
    opacity: 0;
    transform: scale(1.45);
  }
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 16px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.title-accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(120deg, #07100e 0%, #0c5f4a 52%, #10a37f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #5b6762;
  font-size: 19px;
  line-height: 1.72;
}

.hero-lead span {
  display: inline;
}

.fast-note {
  display: inline;
  margin-left: 8px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  white-space: normal;
}
.hero-sublead {
  position: relative;
  width: fit-content;
  max-width: 720px;
  margin: 12px 0 0;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(16, 163, 127, 0.22);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  color: #163f34;
  background: linear-gradient(135deg, rgba(231, 250, 244, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: 0 12px 30px rgba(16, 163, 127, 0.1);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
}


.price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.price-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(16, 163, 127, 0.22);
  border-radius: 999px;
  color: var(--accent-ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(12, 29, 23, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn {
  min-height: 52px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 900;
}

.primary-btn::after {
  content: "→";
  margin-left: 9px;
  transition: transform 0.2s ease;
}

.primary-btn:hover::after {
  transform: translateX(3px);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 31, 29, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(12, 29, 23, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 163, 127, 0.36);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 29, 23, 0.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  max-width: 635px;
  margin-top: 38px;
}

.stats div {
  position: relative;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 16px 62px;
  border: 1px solid rgba(26, 31, 29, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(12, 29, 23, 0.07);
  overflow: hidden;
}

.stats div::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.42;
}

.stats strong {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.stats span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-strong);
  transform: translateZ(0);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  filter: blur(10px);
}

.hero-card::before {
  inset: -88px -72px auto auto;
  width: 210px;
  height: 210px;
  background: rgba(16, 163, 127, 0.18);
}

.hero-card::after {
  left: -44px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  background: rgba(216, 165, 69, 0.16);
}

.terminal-window {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(24, 214, 162, 0.18), transparent 13rem),
    radial-gradient(circle at 88% 90%, rgba(16, 163, 127, 0.1), transparent 12rem),
    #07100e;
  color: #e2fff6;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -70px 80px rgba(0, 0, 0, 0.15);
}

.terminal-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 28px;
  opacity: 0.42;
}

.window-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  padding: 21px 23px 12px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b61;
}

.window-dots span:nth-child(2) {
  background: #ffd166;
}

.window-dots span:nth-child(3) {
  background: #4cc38a;
}

.terminal-window pre {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 31px 24px;
  white-space: pre-wrap;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.95;
  text-shadow: 0 0 22px rgba(83, 213, 181, 0.18);
}

.terminal-window code {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}
.service-progress {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px 22px 24px;
}

.progress-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.progress-item.active {
  border-color: rgba(83, 213, 181, 0.35);
  background: rgba(16, 163, 127, 0.13);
}

.progress-num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07100e;
  background: #53d5b5;
  font-size: 14px;
  font-weight: 950;
}

.progress-item strong {
  display: block;
  color: #f2fff9;
  font-size: 16px;
  line-height: 1.25;
}

.progress-item p {
  margin: 4px 0 0;
  color: rgba(226, 255, 246, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.quick-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
  padding: 18px;
  border: 1px solid rgba(26, 31, 29, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 40px rgba(12, 29, 23, 0.06);
}

.quick-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.quick-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.055em;
}
.quick-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-title strong {
  margin-top: 5px;
}

.quick-title .help-title {
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.quick-help {
  max-width: 300px;
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.quick-help span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.mini-btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: -20px;
  margin-bottom: 94px;
}

.trust-strip div {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(26, 31, 29, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 46px rgba(12, 29, 23, 0.06);
  overflow: hidden;
}

.trust-strip div::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(16, 163, 127, 0.08);
}

.trust-strip strong,
.trust-strip span {
  display: block;
  position: relative;
  z-index: 1;
}

.trust-strip strong {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-section,
.service-section {
  scroll-margin-top: 92px;
  padding-block: 24px 94px;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0 auto;
  text-align: left;
}

.section-heading > span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 10px 0 11px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

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

.price-card {
  position: relative;
  min-height: 548px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(26, 31, 29, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(12, 29, 23, 0.08);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(16, 163, 127, 0.8), rgba(83, 213, 181, 0));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(16, 163, 127, 0.32);
  box-shadow: var(--shadow);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  border-color: rgba(16, 163, 127, 0.48);
  background:
    radial-gradient(circle at 80% 0%, rgba(16, 163, 127, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(234, 247, 242, 0.96), rgba(255, 255, 255, 0.86) 36%),
    #fff;
  box-shadow: 0 28px 84px rgba(16, 120, 94, 0.18);
}

.price-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, #10a37f, #56dfbd, #10a37f);
}

.popular-ribbon {
  position: absolute;
  top: 18px;
  right: -38px;
  width: 150px;
  padding: 8px 0;
  text-align: center;
  transform: rotate(36deg);
  color: #fff;
  background: linear-gradient(135deg, #10a37f, #08775c);
  box-shadow: 0 12px 26px rgba(16, 163, 127, 0.2);
  font-size: 12px;
  font-weight: 950;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.plan-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.plan-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(16, 163, 127, 0.1);
}

.price-card h3 {
  margin: 7px 0 0;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #45443f;
  background: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.badge.hot {
  color: var(--accent-ink);
  background: rgba(16, 163, 127, 0.13);
}

.card-desc {
  min-height: 80px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 22px 0 24px;
  border-block: 1px solid rgba(26, 31, 29, 0.1);
}

.price .currency {
  font-size: 27px;
  font-weight: 950;
}

.price strong {
  font-size: clamp(54px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.price span:last-child {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.card-btn {
  width: 100%;
  min-height: 52px;
  margin: 22px 0;
  font-size: 15px;
  font-weight: 950;
}

.card-btn::after {
  content: "→";
  margin-left: 9px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.card-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #303a35;
  line-height: 1.56;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: rgba(16, 163, 127, 0.13);
  font-size: 12px;
  font-weight: 950;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 36px;
  align-items: start;
}

.workflow-grid {
  display: grid;
  gap: 16px;
}

.workflow-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid rgba(26, 31, 29, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 42px rgba(12, 29, 23, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.workflow-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 163, 127, 0.28);
}

.step-number {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--accent-dark);
  background: linear-gradient(180deg, #e7f7f1, #d9f1e9);
  font-weight: 950;
}

.workflow-grid h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.workflow-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.site-footer {
  border-top: 1px solid rgba(26, 31, 29, 0.09);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner div,
.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner span,
.footer-inner a {
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a:hover {
  color: var(--ink);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 12, 11, 0.56);
  backdrop-filter: blur(14px);
}

.modal[hidden] {
  display: none;
}

.modal-dialog {
  position: relative;
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.3);
  animation: popIn 0.18s ease-out;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
}

.modal-close svg {
  width: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal-copy {
  padding-right: 42px;
}

.modal-kicker {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.modal-copy h2 {
  margin: 7px 0 8px;
  font-size: 30px;
  letter-spacing: -0.055em;
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.qr-card {
  display: grid;
  place-items: center;
  margin: 22px auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fafafa;
}

.qr-card img {
  width: min(240px, 78vw);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 16px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-info div {
  padding: 15px;
  border-radius: 18px;
  background: var(--soft);
}

.contact-info span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.contact-info strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

@media (min-width: 981px) {
  .price-card.featured {
    transform: translateY(-8px);
  }

  .price-card.featured:hover {
    transform: translateY(-14px);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }

  .hero-card {
    max-width: 660px;
  }

  .pricing-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .service-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100vw - 28px, 1160px);
  }

  .nav-shell {
    min-height: 64px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(26, 31, 29, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    gap: 30px;
    padding-block: 24px 50px;
  }

  .hero h1 {
    max-width: 100%;
    margin: 18px 0 14px;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.06em;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.7;
  }

.price-chips span {
    min-height: 34px;
    font-size: 12px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .terminal-window {
    min-height: 280px;
  }

  .trust-strip {
    margin-top: 0;
    margin-bottom: 54px;
  }

  .section-heading {
    text-align: left;
  }

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

  .step-number {
    margin-bottom: 16px;
  }

  .footer-inner,
  .footer-inner div,
  .footer-inner nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding-block: 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}




/* Colorful value cards */
.stats .stat-card {
  padding-left: 58px;
  border-color: rgba(255, 255, 255, 0.78);
  isolation: isolate;
}

.stats .stat-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
  z-index: 0;
}

.stats .stat-card > * {
  position: relative;
  z-index: 1;
}

.stats .stat-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  margin: 0;
  border-radius: 13px;
  color: #fff;
  background: currentColor;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.stats .stat-card strong {
  color: #0b0f0e;
}

.stats .stat-card span:not(.stat-icon) {
  color: rgba(11, 15, 14, 0.68);
}

.stats .stat-warranty {
  color: #0d9b78;
  background: linear-gradient(135deg, rgba(214, 255, 243, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 48px rgba(13, 155, 120, 0.16);
}

.stats .stat-official {
  color: #2569d8;
  background: linear-gradient(135deg, rgba(222, 238, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 48px rgba(37, 105, 216, 0.14);
}

.stats .stat-invoice {
  color: #d98a14;
  background: linear-gradient(135deg, rgba(255, 238, 207, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 48px rgba(217, 138, 20, 0.15);
}













/* User reviews */
.reviews-section {
  scroll-margin-top: 92px;
  padding-block: 10px 92px;
}

.stars,
.review-stars {
  color: #ffae00;
  letter-spacing: 0.12em;
  font-size: 14px;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(26, 31, 29, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(12, 29, 23, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-card::after {
  content: "“";
  position: absolute;
  right: 20px;
  top: 8px;
  color: rgba(16, 163, 127, 0.1);
  font-size: 76px;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 163, 127, 0.25);
  box-shadow: 0 24px 70px rgba(12, 29, 23, 0.13);
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 22px;
  color: #3d4944;
  font-size: 15px;
  line-height: 1.78;
}

.review-user {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 31, 29, 0.08);
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
}

.avatar.blue { background: #1da1f2; }
.avatar.green { background: #10b981; }
.avatar.orange { background: #f59e0b; }
.avatar.red { background: #ef4565; }
.avatar.purple { background: #6c5ce7; }
.avatar.pink { background: #d946ef; }

.review-user strong,
.review-user small,
.review-user em {
  display: block;
}

.review-user strong {
  color: var(--ink);
  font-size: 14px;
}

.review-user small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.review-user em {
  padding: 6px 10px;
  border: 1px solid rgba(26, 31, 29, 0.08);
  border-radius: 999px;
  color: #50605a;
  background: rgba(247, 250, 249, 0.9);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

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

@media (max-width: 720px) {

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-user {
    grid-template-columns: auto 1fr;
  }

  .review-user em {
    grid-column: 2;
    width: fit-content;
  }
}

/* Animated reviews wall */
.reviews-stage {
  display: grid;
  gap: 18px;
  overflow: hidden;
  margin-inline: calc((100vw - min(1160px, calc(100vw - 44px))) / -2);
  padding: 4px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-marquee {
  overflow: hidden;
}

.reviews-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: reviewsMove 58s linear infinite;
  will-change: transform;
}

.reviews-marquee.reverse .reviews-track {
  animation-duration: 66s;
  animation-direction: reverse;
}

.reviews-stage:hover .reviews-track {
  animation-play-state: paused;
}

.reviews-track .review-card {
  flex: 0 0 360px;
  width: 360px;
  min-height: 224px;
}

@keyframes reviewsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.avatar.cyan { background: #06b6d4; }
.avatar.violet { background: #8b5cf6; }

@media (max-width: 720px) {
  .reviews-stage {
    margin-inline: -14px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .reviews-track .review-card {
    flex-basis: min(330px, calc(100vw - 48px));
    width: min(330px, calc(100vw - 48px));
  }
}








