:root {
  --bg: #090610;
  --bg-soft: #130d21;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(233, 213, 255, 0.16);
  --border-bright: rgba(216, 180, 254, 0.5);
  --text: #fbf7ff;
  --muted: #c8b7ee;
  --muted-2: #9e8ac8;
  --primary: #a855f7;
  --primary-2: #ec77d9;
  --cyan: #67e8f9;
  --success: #8ef0c0;
  --danger: #ff9db3;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(168, 85, 247, 0.26), transparent 28rem),
    radial-gradient(circle at 84% 4%, rgba(236, 119, 217, 0.16), transparent 24rem),
    linear-gradient(145deg, #090610 0%, #151023 46%, #0d0718 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(9, 6, 16, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.42);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark.has-logo {
  border: 1px solid rgba(233, 213, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.34);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
}

.site-nav a.active {
  position: relative;
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  content: "";
}

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button:disabled:hover {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #d946ef);
  box-shadow: 0 14px 34px rgba(124, 58, 237, 0.32);
}

.button.secondary {
  color: #eadcff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.section,
.section-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-band {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 90px rgba(21, 9, 42, 0.48);
}

.home-hero {
  min-height: calc(100vh - 78px);
  padding: clamp(76px, 10vw, 148px) 18px 40px;
  background:
    radial-gradient(circle at 50% 18%, rgba(168, 85, 247, 0.22), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.home-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-hero h1 {
  max-width: 980px;
  margin: 0 auto 26px;
  color: var(--text);
  font-size: clamp(58px, 9.2vw, 138px);
  line-height: 1.05;
  font-weight: 950;
}

.home-hero strong {
  display: block;
  margin-bottom: 28px;
  color: var(--primary-2);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.home-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.7;
}

.home-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 54px 0 76px;
}

.home-hero-actions .button {
  min-width: 220px;
  min-height: 72px;
  border-radius: 18px;
  font-size: 20px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.hero-benefits article,
.why-grid article,
.compare-card,
.site-cta-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 60px rgba(7, 4, 14, 0.24);
}

.hero-benefits article {
  min-height: 178px;
  padding: 28px 24px;
  border-radius: 18px;
}

.hero-benefits span,
.why-grid span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 15px;
  border: 1px solid rgba(236, 119, 217, 0.32);
  color: #f4c8ff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(168, 85, 247, 0.22), rgba(236, 119, 217, 0.1));
  box-shadow: 0 14px 34px rgba(123, 58, 237, 0.22);
}

.icon-svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(236, 119, 217, 0.28));
}

.hero-benefits h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-benefits p {
  color: var(--muted-2);
  font-size: 16px;
}

.section-title {
  margin-bottom: 62px;
}

.section-title.center {
  text-align: center;
}

.section-title h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.section-title h2 span {
  color: var(--primary-2);
}

.section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
}

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

.why-grid article {
  min-height: 246px;
  padding: 34px 28px;
  border-radius: 20px;
}

.why-grid span {
  margin: 0 0 26px;
}

.why-grid h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.why-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero {
  width: min(1180px, calc(100% - 36px));
  min-height: min(660px, calc(100vh - 112px));
  margin: 28px auto 0;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 78% 24%, rgba(168, 85, 247, 0.24), transparent 22rem);
  box-shadow: 0 24px 90px rgba(21, 9, 42, 0.48);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(26px, 5vw, 60px);
}

.homepage-hero h1,
.page-hero h1 {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.h1-line {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: 0;
}

.hero-text,
.section-copy,
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

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

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #e9ddff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-card,
.checkout-card,
.plan-card,
.lookup-result,
.process-grid article,
.feature-strip article,
.comparison-grid article,
.steps-row article,
.trust-grid article,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(7, 4, 14, 0.28);
}

.hero-card {
  padding: 28px;
}

.hero-dashboard {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 4, 14, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-dashboard h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px 14px;
  margin-top: 30px;
  align-items: baseline;
}

.dashboard-grid strong {
  font-size: 38px;
  line-height: 1;
}

.dashboard-grid span {
  color: var(--muted);
}

.dashboard-flow {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.dashboard-flow span {
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #efe5ff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 0;
  padding: 7px 11px;
  border: 1px solid rgba(216, 180, 254, 0.38);
  border-radius: 999px;
  color: #f6e7ff;
  background: rgba(168, 85, 247, 0.24);
  font-size: 13px;
  font-weight: 900;
}

.hero-dashboard > .plan-badge,
.checkout-card > .plan-badge {
  margin-bottom: 18px;
}

.plan-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.stock-pill {
  display: inline-flex;
  flex-shrink: 0;
  padding: 6px 10px;
  border: 1px solid rgba(103, 232, 249, 0.34);
  border-radius: 999px;
  color: #d9fbff;
  background: rgba(103, 232, 249, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.hero-price {
  margin: 22px 0;
  font-size: 54px;
  font-weight: 950;
}

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

.section-heading > p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.plans-grid,
.process-grid,
.feature-strip,
.trust-grid,
.comparison-grid,
.steps-row {
  display: grid;
  gap: 18px;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 34px;
  padding-bottom: 34px;
}

.feature-strip article {
  min-height: 142px;
  padding: 22px;
}

.feature-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-strip span {
  color: var(--muted);
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plans-grid.single-column {
  grid-template-columns: 1fr;
}

.plan-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.plan-card.selected {
  border-color: var(--border-bright);
  background: var(--panel-strong);
}

.plan-card.unavailable {
  opacity: 0.62;
}

.plan-card.unavailable .stock-pill {
  border-color: rgba(255, 157, 179, 0.38);
  color: #ffd7e0;
  background: rgba(255, 157, 179, 0.1);
}

.plan-card:hover {
  transform: translateY(-3px);
}

.plan-card .price,
.selected-plan .price {
  margin: 16px 0;
  font-size: 44px;
  font-weight: 950;
}

.plan-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.plan-card li {
  margin-bottom: 8px;
}

.plan-card button {
  margin-top: auto;
}

.purchase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: start;
  gap: 28px;
}

.buy-hero {
  display: grid;
  gap: 18px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 16px;
}

.checkout-steps span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.checkout-steps b {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.18);
  color: #f5e9ff;
  font-size: 13px;
}

.checkout-steps span.active {
  border-color: var(--border-bright);
  color: var(--text);
  background: rgba(168, 85, 247, 0.16);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  align-items: start;
  gap: 24px;
}

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

.product-purchase-card,
.checkout-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(18, 11, 31, 0.86);
  box-shadow: 0 18px 60px rgba(7, 4, 14, 0.28);
}

.product-purchase-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.product-purchase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 180, 254, 0.35);
}

.product-purchase-card.selected {
  border-color: var(--border-bright);
  background:
    linear-gradient(145deg, rgba(168, 85, 247, 0.18), rgba(255, 255, 255, 0.052)),
    rgba(19, 11, 34, 0.92);
}

.product-purchase-card.unavailable {
  opacity: 0.62;
}

.product-card-head,
.selected-product-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.product-card-visual {
  width: 74px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.28);
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.13);
  color: #e9d5ff;
  overflow: hidden;
}

.product-card-visual .icon-svg {
  width: 36px;
  height: 36px;
}

.product-card-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-purchase-card h3,
.checkout-panel h3 {
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.22;
}

.product-purchase-card p,
.checkout-panel p {
  margin: 0;
  color: var(--muted);
}

.product-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag-row span {
  padding: 6px 9px;
  border: 1px solid rgba(216, 180, 254, 0.28);
  border-radius: 999px;
  color: #eadcff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.product-price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.product-price-line strong,
.checkout-total strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.product-price-line span,
.checkout-total span,
.checkout-info-grid span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
}

.product-purchase-card ul,
.checkout-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.product-purchase-card li,
.checkout-section li {
  margin-bottom: 7px;
}

.product-purchase-card button {
  width: 100%;
  margin-top: auto;
}

.checkout-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.checkout-panel-head,
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.selected-product-card {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

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

.checkout-info-grid p {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.checkout-info-grid strong {
  color: #f7efff;
}

.checkout-section {
  display: grid;
  gap: 10px;
}

.checkout-section h4 {
  margin: 0;
  font-size: 15px;
}

.product-tip-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.product-tip-heading {
  display: block;
  color: #fbf7ff;
  font-size: 24px;
  line-height: 1.18;
}

.product-tip-line {
  display: block;
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.product-tip-gap {
  display: block;
  height: 8px;
}

.checkout-total {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 58px);
  border-bottom: 1px solid var(--border);
}

.page-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.two-column-page,
.order-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: start;
  gap: 28px;
}

.sticky-panel {
  position: sticky;
  top: 92px;
}

.checkout-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.selected-plan {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  color: #ede2ff;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: rgba(8, 5, 15, 0.72);
  color: var(--text);
}

input:focus,
textarea:focus {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

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

.process-grid article,
.steps-row article,
.trust-grid article {
  padding: 22px;
}

.steps-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 11px;
  background: rgba(168, 85, 247, 0.22);
  color: #f3dcff;
  font-weight: 950;
}

.steps-row span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 950;
}

.process-grid p,
.steps-row p,
.trust-grid p,
.faq-item p,
.hero-card p,
.plan-card p,
.selected-plan p {
  color: var(--muted);
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-section {
  padding-top: 92px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.compare-card {
  position: relative;
  min-height: 640px;
  padding: 58px 54px;
  border-radius: 22px;
}

.compare-card.recommended {
  border-color: rgba(236, 119, 217, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.compare-card.official {
  opacity: 0.74;
  background: rgba(255, 255, 255, 0.045);
}

.compare-card em {
  position: absolute;
  top: -20px;
  left: 50%;
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-style: normal;
  font-weight: 900;
  transform: translateX(-50%);
}

.compare-card h3 {
  margin-bottom: 42px;
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
}

.compare-list {
  display: grid;
  gap: 26px;
}

.compare-list p {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  align-items: baseline;
}

.compare-list span {
  color: var(--muted-2);
  font-size: 18px;
}

.compare-list strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.5;
}

.compare-card.recommended .compare-list strong {
  color: #f8efff;
}

.process-section {
  padding-top: 116px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.process-timeline::before {
  position: absolute;
  top: 46px;
  right: 17%;
  left: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 119, 217, 0.54), transparent);
  content: "";
}

.process-timeline article {
  position: relative;
  text-align: center;
}

.process-timeline article > div {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  border: 1px solid rgba(236, 119, 217, 0.48);
  border-radius: 18px;
  color: #f1b6ff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(168, 85, 247, 0.2), rgba(236, 119, 217, 0.08));
  box-shadow:
    0 20px 46px rgba(123, 58, 237, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.process-icon .icon-svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.9;
}

.process-timeline article > span {
  position: absolute;
  top: -14px;
  right: calc(50% - 56px);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 950;
  z-index: 1;
}

.process-timeline h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.process-timeline p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
}

.home-faq-list {
  width: min(760px, 100%);
  margin: 0 auto;
}

.home-faq-list .faq-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.home-faq-list .faq-item button {
  min-height: 64px;
  padding: 0 24px;
  font-size: 18px;
}

.home-faq-list .faq-item button::after {
  float: right;
  color: var(--muted-2);
  content: "⌄";
}

.site-cta {
  padding-top: 96px;
  padding-bottom: 116px;
}

.site-cta-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 119, 217, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.07);
}

.site-cta-card h2 {
  margin-bottom: 18px;
}

.site-cta-card p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 20px;
}

.site-cta-card .button {
  min-width: 260px;
  min-height: 64px;
  border-radius: 14px;
  font-size: 20px;
}

.faq-section {
  padding-top: 92px;
}

.lookup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 16px;
}

.lookup-card,
.order-help,
.guide-step,
.order-result-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(7, 4, 14, 0.28);
}

.lookup-card,
.order-help {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.query-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.query-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.query-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #d946ef);
}

.lookup-result {
  min-height: 112px;
  padding: 20px;
  color: var(--muted);
}

.order-result-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--muted);
}

.order-result-card strong {
  color: var(--text);
}

.delivery-box {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.delivery-box code {
  color: #ecfeff;
  white-space: pre-wrap;
}

.customer-service-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.customer-service-toggle {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 46px rgba(168, 85, 247, 0.45);
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.customer-service-panel {
  position: absolute;
  right: 0;
  bottom: 92px;
  width: min(360px, calc(100vw - 36px));
  max-height: min(580px, calc(100vh - 140px));
  overflow-y: auto;
  padding: 20px;
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  background: rgba(20, 12, 34, 0.96);
  box-shadow: 0 24px 80px rgba(7, 4, 14, 0.62);
  transform: translateY(10px) scale(0.96);
  transform-origin: right bottom;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(18px);
}

.customer-service-float.open .customer-service-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.customer-service-panel h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.customer-service-panel p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

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

.customer-service-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.customer-service-card img {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.customer-service-card div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.customer-service-card strong,
.customer-service-card span,
.customer-service-card small {
  overflow-wrap: anywhere;
}

.customer-service-card strong {
  font-size: 18px;
}

.customer-service-card span {
  color: var(--text);
  font-weight: 800;
}

.customer-service-card small {
  color: var(--muted);
}

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

.guide-step {
  min-height: 250px;
  padding: 24px;
}

.guide-step span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 950;
}

.guide-step p {
  color: var(--muted);
}

.guide-step a {
  color: #f2ddff;
  font-weight: 900;
}

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

.lookup-result strong {
  color: var(--text);
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
}

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

.final-cta {
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 32px clamp(18px, 10vw, 160px);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-2);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-copyright {
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .purchase,
  .product-showcase,
  .two-column-page,
  .order-page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .plans-grid,
  .product-plan-grid,
  .process-grid,
  .feature-strip,
  .hero-benefits,
  .why-grid,
  .trust-grid,
  .comparison-grid,
  .process-timeline,
  .steps-row,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .home-hero-actions {
    margin-bottom: 44px;
  }

  .comparison-grid {
    gap: 24px;
  }

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

  .process-timeline::before {
    display: none;
  }

  .sticky-panel {
    position: static;
  }

  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .lookup-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
  }
}

@media (max-width: 560px) {
  .section,
  .section-band {
    width: calc(100vw - 40px);
  }

  .section {
    padding: 58px 0;
  }

  .section-band {
    padding: 24px 14px;
    border-radius: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .customer-service-float {
    right: 14px;
    bottom: 14px;
  }

  .customer-service-toggle {
    width: 66px;
    height: 66px;
    font-size: 16px;
  }

  .customer-service-panel {
    bottom: 82px;
    padding: 16px;
  }

  .customer-service-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .customer-service-card img {
    width: 88px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .home-hero strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .home-hero p {
    font-size: 17px;
  }

  .home-hero-actions .button,
  .site-cta-card .button {
    width: 100%;
    min-width: 0;
  }

  .hero-benefits article,
  .why-grid article,
  .compare-card,
  .site-cta-card {
    padding: 24px 18px;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .section-title h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .section-title p {
    font-size: 16px;
  }

  .compare-list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-timeline {
    gap: 36px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.08;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .trust-row span {
    min-width: 0;
    text-align: center;
  }

  .product-card-head,
  .selected-product-card,
  .checkout-info-grid {
    grid-template-columns: 1fr;
  }

  .product-card-visual {
    width: 100%;
    max-width: 96px;
  }

  .product-price-line,
  .checkout-panel-head,
  .checkout-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-text,
  .section-copy,
  .section-heading p {
    font-size: 15px;
    line-height: 1.62;
    word-break: break-all;
  }

  .hero-card,
  .hero-dashboard,
  .checkout-card,
  .checkout-panel,
  .product-purchase-card,
  .plan-card,
  .lookup-result,
  .lookup-card,
  .order-help,
  .guide-step,
  .hero-benefits article,
  .feature-strip article,
  .why-grid article,
  .compare-card,
  .process-timeline article,
  .site-cta-card,
  .comparison-grid article,
  .steps-row article,
  .process-grid article,
  .trust-grid article,
  .faq-item {
    width: 100%;
    min-width: 0;
  }

}
