:root {
  --bg: #09111f;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --bg-soft: #0f1a2f;
  --panel: #131f38;
  --panel-2: #182746;
  --line: #2b3a5d;
  --text: #edf3ff;
  --muted: #9eb0d1;
  --primary: #5ea3ff;
  --primary-strong: #2f7df0;
  --accent: #44d7b6;
  --danger: #ff7e94;
  --warning: #ffc76b;
  --success: #67e7a0;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

/* ─── Vazirmatn font (locally bundled for Iranian intranet) ─── */
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Header branding logo */
.site-logo {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  background: radial-gradient(circle at top, #13254a 0, var(--bg) 38%);
  color: var(--text);
  line-height: 1.8;
  max-width: 100%;
  padding-inline: var(--safe-left, 0px) var(--safe-right, 0px);
  overflow-x: hidden;
}

body {
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
}

body.nav-open,
body.compare-open {
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  inset-inline-start: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea, [role="menuitem"]):focus-visible {
  outline: 2px solid rgba(94, 163, 255, 0.85);
  outline-offset: 3px;
}

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

.site-main {
  min-height: auto;
}

/* ─── Site Banner ─────────────────────────────────────── */
.site-banner {
  position: relative;
  width: 100%;
  padding: 8px 0;
  background: linear-gradient(135deg, rgba(47, 125, 240, 0.18), rgba(68, 215, 182, 0.12)), rgba(15, 26, 47, 0.95);
  border-bottom: 1px solid rgba(94, 163, 255, 0.18);
  z-index: 48;
  overflow: hidden;
}

.site-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(94, 163, 255, 0.06) 0%, rgba(68, 215, 182, 0.08) 50%, rgba(94, 163, 255, 0.06) 100%);
  pointer-events: none;
}

.site-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
}

.site-banner-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-banner-icon img,
.site-banner-icon.site-banner-icon-default svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-banner-icon-default {
  color: var(--accent);
}

.site-banner-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(10, 18, 34, 0.98), rgba(8, 14, 24, 0.94)),
    rgba(9, 17, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 40px rgba(2, 8, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nav-shell {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.12rem;
  font-weight: 700;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 18px;
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #09111f;
  font-weight: 900;
}

.nav-panel {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-inline-start: 0;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav a,
.nav-phone,
.menu-trigger,
.cart-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 14px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
}

.site-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current="page"],
.nav-phone:hover,
.menu-trigger:hover,
.cart-chip:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.06);
}

.site-nav a.active {
  background: rgba(94, 163, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(94, 163, 255, 0.14);
}

.site-nav a[aria-current="page"] {
  background: rgba(94, 163, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(94, 163, 255, 0.14);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-inline-start: auto;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav-shell {
    gap: 14px;
  }

  .nav-panel {
    gap: 12px;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 10px 11px;
    font-size: 0.94rem;
  }

  .nav-actions .btn-sm,
  .nav-actions .cart-chip,
  .nav-actions .menu-trigger {
    padding: 10px 12px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.btn:disabled,
.btn.is-disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-sm {
  padding: 10px 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 25px rgba(47, 125, 240, 0.22);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  margin: 0;
}

.nav-overlay,
.mobile-nav-head {
  display: none;
}

.nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-nav-copy {
  display: grid;
  gap: 4px;
}

.mobile-nav-copy strong {
  font-size: 1.05rem;
}

.mobile-nav-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(94, 163, 255, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
}

.menu-wrap {
  position: relative;
}

.menu-trigger {
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.avatar-chip {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #07111d;
  font-weight: 700;
}

.menu-panel {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 10px);
  min-width: 190px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.menu-wrap.open .menu-panel {
  display: grid;
}

.menu-panel a {
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
}

.menu-panel a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
}

.cart-chip span {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #08101c;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.14);
}

.footer-card h3,
.footer-card h4 {
  margin: 0 0 14px;
}

.footer-card p {
  margin: 0;
}

.footer-links a,
.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-links a:hover,
.contact-list a:hover {
  color: var(--text);
  border-color: rgba(94, 163, 255, 0.2);
  background: rgba(94, 163, 255, 0.08);
}

.enamad-trust-badge {
  display: block;
  line-height: 0;
}

.enamad-trust-badge a {
  display: block;
  min-height: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.enamad-trust-badge img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* aispacedev.ir only — compact placement in footer bar */
.enamad-trust-badge--subtle {
  flex: 0 0 auto;
  max-width: 86px;
  margin-inline-start: auto;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.enamad-trust-badge--subtle:hover {
  opacity: 1;
}

.enamad-trust-badge--subtle img {
  max-width: 86px;
}

@media (max-width: 640px) {
  .footer-bottom-row .enamad-trust-badge--subtle {
    margin-inline-start: 0;
    max-width: 72px;
  }

  .enamad-trust-badge--subtle img {
    max-width: 72px;
  }
}

.alerts-wrap {
  padding-top: 12px;
}

.alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid transparent;
}

.alert.success {
  background: rgba(103, 231, 160, 0.12);
  border-color: rgba(103, 231, 160, 0.3);
}

.alert.error,
.alert.danger {
  background: rgba(255, 126, 148, 0.12);
  border-color: rgba(255, 126, 148, 0.3);
}

.alert.warning {
  background: rgba(255, 199, 107, 0.12);
  border-color: rgba(255, 199, 107, 0.3);
}

.alert.info {
  background: rgba(94, 163, 255, 0.12);
  border-color: rgba(94, 163, 255, 0.3);
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid,
.split-grid,
.dashboard-grid,
.stats-grid,
.plans-grid,
.cards-grid,
.footer-grid,
.two-col,
.detail-grid {
  display: grid;
  gap: 24px;
}

.hero-grid,
.split-grid,
.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  justify-items: stretch;
}

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

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

.dashboard-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.two-col {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: start;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1,
.section-head h2,
.dashboard-head h1 {
  margin: 0 0 12px;
  line-height: 1.35;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.lead,
.page-hero p,
.section-head p,
.muted,
.card-meta,
.empty-note {
  color: var(--muted);
}

.hero-actions,
.inline-actions,
.pill-list,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card,
.panel,
.plan-card,
.feature-card,
.testimonial,
.domain-card,
.dashboard-card,
.side-card,
.form-card,
.list-card,
.ticket-message,
.stat-card,
.empty-state,
.payment-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.dashboard-card,
.form-card,
.list-card,
.side-card,
.payment-card,
.ticket-message {
  padding: 24px;
}

.plan-card,
.feature-card,
.testimonial,
.domain-card,
.stat-card,
.empty-state {
  padding: 22px;
}

.stat-card strong,
.money-value,
.price-main {
  font-size: 1.7rem;
  display: block;
  margin-top: 8px;
}

.section {
  padding: 26px 0 54px;
}

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

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-card.popular {
  border-color: var(--primary);
}

.pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  width: fit-content;
}

.pill {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.pill-primary {
  background: rgba(94, 163, 255, 0.15);
  color: var(--primary);
}

.pill-accent {
  background: rgba(68, 215, 182, 0.15);
  color: var(--accent);
}

.status-success {
  background: rgba(103, 231, 160, 0.14);
  color: var(--success);
}

.status-review,
.status-pending {
  background: rgba(255, 199, 107, 0.14);
  color: var(--warning);
}

.status-info {
  background: rgba(94, 163, 255, 0.14);
  color: var(--primary);
}

.status-danger {
  background: rgba(255, 126, 148, 0.14);
  color: var(--danger);
}

.status-muted {
  background: rgba(158, 176, 209, 0.12);
  color: var(--muted);
}

.feature-list,
.check-list,
.simple-list,
.footer-links,
.contact-list,
.sidebar-links {
  display: grid;
  gap: 10px;
}

code {
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.feature-icon,
.emoji {
  font-size: 1.8rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-sub {
  color: var(--muted);
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-weight: 700;
}

.field-group {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

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

label {
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(94, 163, 255, 0.2);
  border-color: var(--primary);
}

.helptext,
.errorlist,
.field-error {
  color: var(--danger);
  font-size: 0.92rem;
}

.errorlist {
  margin: 8px 0 0;
  padding-inline-start: 18px;
}

.form-hint {
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: 56px 0 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.breadcrumbs span::before {
  content: "/";
  margin-inline: 8px;
}

.breadcrumbs span:first-child::before {
  content: "";
  margin: 0;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs > span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.auth-shell {
  width: min(520px, 100%);
  margin: 36px auto 70px;
}

.dashboard-shell {
  padding: 34px 0 60px;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-links a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}

.sidebar-links a:hover,
.sidebar-links a.active,
.sidebar-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.dashboard-head,
.card-head,
.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.stack {
  display: grid;
  gap: 18px;
}

.order-items,
.message-thread {
  display: grid;
  gap: 14px;
}

.order-item,
.ticket-row,
.transaction-row {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.ticket-message.user {
  margin-inline-start: 80px;
}

.ticket-message.admin {
  margin-inline-end: 80px;
}

.domain-result.available {
  border-color: rgba(103, 231, 160, 0.3);
}

.domain-result.unavailable {
  border-color: rgba(255, 126, 148, 0.3);
}

.copy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.payment-card,
.payment-card + .form-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92)),
    rgba(15, 23, 42, 0.94);
  border-color: rgba(148, 163, 184, 0.16);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.payment-card::before {
  content: "🔒 پرداخت امن و قابل پیگیری";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.08));
  color: #d1fae5;
  font-weight: 700;
  box-sizing: border-box;
  font-size: 0.98rem;
}

.payment-card .section-head,
.payment-card + .form-card .section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.payment-card .section-head h1,
.payment-card + .form-card .section-head h2 {
  margin: 0;
}

.payment-card .section-head p,
.payment-card + .form-card .section-head p {
  margin: 0;
}

.payment-card .stack {
  gap: 20px;
}

.payment-card .stack > .panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 16px;
  border-color: rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.payment-card .stack > .panel:hover,
.payment-card + .form-card:hover {
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow: 0 20px 44px rgba(2, 8, 23, 0.32);
}

.payment-card .stack > .panel:nth-child(1) {
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.9)) padding-box,
    linear-gradient(135deg, rgba(16, 185, 129, 0.6), rgba(52, 211, 153, 0.12), rgba(16, 185, 129, 0.36)) border-box;
}

.payment-card .stack > .panel:nth-child(1)::before {
  content: "🔒";
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.18);
  box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.24);
  font-size: 20px;
  line-height: 1;
}

.payment-card .stack > .panel:nth-child(1) .card-meta:first-child {
  color: #86efac;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-card .stack > .panel:nth-child(1) .money-value {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #34d399;
  text-shadow: 0 10px 30px rgba(16, 185, 129, 0.22);
}

.payment-card .stack > .panel:nth-child(1) .card-meta:last-child {
  margin-top: 10px;
  color: #a7f3d0;
  font-weight: 600;
  font-size: 0.94rem;
}

.payment-card .stack > .panel:nth-child(2) {
  padding: 24px;
  border-color: rgba(59, 130, 246, 0.18);
  background: linear-gradient(135deg, #1e3a5f, #0f2744);
  box-shadow: 0 18px 40px rgba(7, 15, 29, 0.34);
}

.payment-card .stack > .panel:nth-child(2)::after {
  content: "";
  position: absolute;
  inset: auto -20px -28px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 72%);
  pointer-events: none;
}

.payment-card .stack > .panel:nth-child(2) .card-meta {
  color: rgba(219, 234, 254, 0.82);
}

.payment-card .stack > .panel:nth-child(2) .card-meta:first-child {
  margin-bottom: 16px;
  font-weight: 700;
}

.payment-card .stack > .panel:nth-child(2) .copy-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-card .stack > .panel:nth-child(2) #card-number {
  direction: ltr;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #eff6ff;
  text-shadow: 0 6px 18px rgba(15, 23, 42, 0.28);
}

.payment-card .stack > .panel:nth-child(2) .copy-chip .btn {
  min-height: 42px;
  padding: 6px 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  color: #eff6ff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.payment-card .stack > .panel:nth-child(2) .copy-chip .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.34);
  filter: brightness(1.04);
}

.payment-card .stack > .panel:nth-child(2) .card-meta:last-child {
  margin-top: 16px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8fafc;
  font-weight: 700;
}

.payment-card .stack > .panel:nth-child(2) .card-meta:last-child::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.92) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.92) 0 28%, transparent 29%),
    rgba(255, 255, 255, 0.12);
  flex: 0 0 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.payment-card .stack > .panel:nth-child(3) h3 {
  margin: 0 0 18px;
}

.payment-card .stack > .panel:nth-child(3) .check-list {
  counter-reset: payment-steps;
  gap: 0;
}

.payment-card .stack > .panel:nth-child(3) .check-list li {
  position: relative;
  padding: 0;
  padding-inline-start: 68px;
  padding-bottom: 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #dbeafe;
}

.payment-card .stack > .panel:nth-child(3) .check-list li + li {
  margin-top: 6px;
}

.payment-card .stack > .panel:nth-child(3) .check-list li::before {
  counter-increment: payment-steps;
  content: counter(payment-steps);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  color: #eff6ff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.payment-card .stack > .panel:nth-child(3) .check-list li::after {
  content: "";
  position: absolute;
  inset-inline-start: 20px;
  top: 44px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.45), rgba(96, 165, 250, 0));
}

.payment-card .stack > .panel:nth-child(3) .check-list li:last-child {
  padding-bottom: 0;
}

.payment-card .stack > .panel:nth-child(3) .check-list li:last-child::after {
  display: none;
}

.payment-card + .form-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-card + .form-card .section-head::after {
  display: none;
}

.payment-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.14);
  color: #fde68a;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.timer-icon {
  font-size: 1rem;
}

.timer-label {
  color: #f8fafc;
  font-weight: 700;
}

.timer-value {
  min-width: 58px;
  text-align: center;
  direction: ltr;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.payment-timer.is-warning {
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.22);
  color: #fecaca;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.18);
  animation: paymentTimerWarning 1.2s ease-in-out infinite;
}

.payment-timer.is-expired {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  box-shadow: none;
  animation: none;
}

.payment-card + .form-card form {
  display: grid;
  gap: 20px;
}

.payment-card + .form-card .field-group {
  gap: 8px;
  margin-bottom: 0;
}

.payment-card + .form-card label {
  margin-bottom: 0;
  color: #e2e8f0;
  font-weight: 700;
}

.payment-card + .form-card input,
.payment-card + .form-card select,
.payment-card + .form-card textarea,
.payment-card + .form-card .form-control {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: #f8fafc;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.payment-card + .form-card input::placeholder,
.payment-card + .form-card textarea::placeholder,
.payment-card + .form-card .form-control::placeholder {
  color: #94a3b8;
}

.payment-card + .form-card input:focus,
.payment-card + .form-card select:focus,
.payment-card + .form-card textarea:focus,
.payment-card + .form-card .form-control:focus {
  border-color: rgba(59, 130, 246, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 12px 28px rgba(37, 99, 235, 0.12);
}

.payment-card + .form-card .btn-primary {
  width: 100%;
  min-height: 56px;
  padding: 14px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ecfdf5;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(5, 150, 105, 0.28);
}

.payment-card + .form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(5, 150, 105, 0.34);
}

.payment-card + .form-card .btn-primary:disabled,
.payment-card + .form-card .btn-primary.is-disabled {
  cursor: not-allowed;
  filter: grayscale(0.3);
  opacity: 0.65;
  box-shadow: none;
  transform: none;
}

.payment-card + .form-card::after {
  content: "پرداخت امن  •  تایید سریع  •  پشتیبانی 24/7  •  ضمانت بازگشت وجه";
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.06));
  color: #d1fae5;
  text-align: center;
  line-height: 1.9;
  font-weight: 700;
}

.payment-expiry-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

.payment-expiry-modal[hidden] {
  display: none;
}

.payment-expiry-modal__dialog {
  width: min(460px, 100%);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.18);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 24px 56px rgba(2, 8, 23, 0.34);
  text-align: center;
}

.payment-expiry-modal__dialog strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
  color: #fecaca;
}

.payment-expiry-modal__dialog p {
  margin: 0;
  color: #cbd5e1;
}

.order-expired-panel {
  text-align: center;
}

.order-expired-panel h1 {
  margin: 14px 0 10px;
}

.order-expired-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(239, 68, 68, 0.16);
  background: rgba(239, 68, 68, 0.06);
}

.order-expired-meta strong {
  font-size: 1.18rem;
}

@keyframes paymentTimerPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.12);
  }

  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }
}

@keyframes paymentTimerWarning {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.18);
  }

  50% {
    transform: scale(1.01);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

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

.pricing-hero {
  padding-bottom: 18px;
}

.pricing-hero-shell p,
.product-summary .lead {
  max-width: 760px;
}

.pricing-hero-shell {
  display: grid;
  gap: 22px;
  max-width: 100%;
  overflow: visible;
}

/* Products page: cleaner hero, focused trust badges, and no overflow */
.products-page {
  overflow-x: hidden;
  max-width: 100vw;
}

.products-page .pricing-hero {
  padding: 34px 0 18px;
}

.products-page .pricing-hero-card {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 24px;
  border: 1px solid rgba(112, 156, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(94, 163, 255, 0.22), rgba(15, 23, 42, 0.2) 42%, rgba(68, 215, 182, 0.16)),
    rgba(11, 20, 39, 0.92);
  box-shadow:
    0 28px 60px rgba(2, 8, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
}

/* Decorative gradients stay subtle and out of the reading path */
.products-page .pricing-hero-card::before,
.products-page .pricing-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.products-page .pricing-hero-card::before {
  inset: auto auto -70px -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(94, 163, 255, 0.2) 0%, rgba(94, 163, 255, 0) 70%);
}

.products-page .pricing-hero-card::after {
  inset: -40px -10px auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(68, 215, 182, 0.16) 0%, rgba(68, 215, 182, 0) 72%);
}

.products-page .pricing-hero-card > * {
  position: relative;
  z-index: 1;
}

.products-page .pricing-hero-card h1 {
  margin: 0;
  max-width: 720px;
  max-inline-size: 100%;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: balance;
}

/* Hero trust badges become stronger, icon-led chips */
.products-page .products-metric-strip {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.products-page .metric-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(16, 24, 42, 0.86);
  box-shadow:
    0 18px 36px rgba(2, 8, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.products-page .metric-badge::after {
  content: "";
  position: absolute;
  inset: auto auto -30px -10px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.products-page .metric-badge:nth-child(1) {
  border-color: rgba(94, 163, 255, 0.28);
  box-shadow:
    0 18px 40px rgba(47, 125, 240, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.products-page .metric-badge:nth-child(2) {
  border-color: rgba(76, 214, 255, 0.28);
  box-shadow:
    0 18px 40px rgba(56, 189, 248, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.products-page .metric-badge:nth-child(3) {
  border-color: rgba(68, 215, 182, 0.32);
  box-shadow:
    0 18px 40px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.products-page .metric-badge > div {
  min-width: 0;
}

.products-page .metric-badge strong,
.products-page .metric-badge span {
  display: block;
}

.products-page .metric-badge strong {
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-weight: 800;
  color: #f8fbff;
}

.products-page .metric-badge span {
  color: rgba(228, 238, 255, 0.82);
  font-size: 0.88rem;
}

.products-page .metric-icon {
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(94, 163, 255, 0.82), rgba(47, 125, 240, 0.38));
  box-shadow:
    0 16px 28px rgba(47, 125, 240, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.products-page .metric-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
  transform-box: fill-box;
  transform-origin: center;
  overflow: visible;
}

.products-page .metric-badge:nth-child(1) .metric-icon svg {
  transform: translate(-49%, -50%);
}

.products-page .metric-badge:nth-child(2) .metric-icon svg {
  transform: translate(-50%, -49%);
}

.products-page .metric-badge:nth-child(3) .metric-icon svg {
  transform: translate(-50%, -49%);
}

.products-page .metric-badge:nth-child(2) .metric-icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.82), rgba(14, 165, 233, 0.38));
  box-shadow:
    0 16px 28px rgba(14, 165, 233, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.products-page .metric-badge:nth-child(3) .metric-icon {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.9), rgba(16, 185, 129, 0.42));
  box-shadow:
    0 16px 28px rgba(16, 185, 129, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.premium-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 215, 182, 0.24) 0%, rgba(68, 215, 182, 0) 72%);
  pointer-events: none;
}

.metric-strip,
.purchase-highlights {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.metric-strip {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card-small,
.purchase-highlight,
.detail-stat,
.detail-feature-card,
.use-case-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
}

.metric-card-small {
  padding: 18px 20px;
}

.metric-card-small strong,
.purchase-highlight strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.metric-card-small span,
.pricing-meta-row,
.resource-item span,
.purchase-highlight span,
.detail-stat span,
.detail-feature-card p,
.detail-list span,
.use-case-card p,
.faq-answer p {
  color: var(--muted);
}

.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: 0.25s ease;
}

.segment-chip:hover,
.segment-chip.active {
  color: var(--text);
  border-color: rgba(94, 163, 255, 0.32);
  background: rgba(94, 163, 255, 0.12);
  box-shadow: 0 10px 24px rgba(47, 125, 240, 0.16);
}

.pricing-grid,
.product-hero-grid,
.overview-grid,
.use-cases-grid,
.faq-layout {
  display: grid;
  gap: 24px;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  justify-items: center;
  align-items: stretch;
  max-width: 100%;
}

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

/* Products page tabs live inside the hero and need better touch handling */
.products-page .pricing-toolbar {
  margin: 0;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 163, 255, 0.3) transparent;
}

.products-page .segment-control {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
  overflow-y: hidden;
  contain: paint;
  touch-action: pan-x;
  padding-bottom: 4px;
}

.products-page .segment-chip {
  width: auto;
  max-width: max-content;
  min-width: 0;
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 46px;
  padding-inline: 18px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.products-page .segment-chip.active {
  border-color: rgba(94, 163, 255, 0.42);
  background: linear-gradient(135deg, rgba(47, 125, 240, 0.26), rgba(94, 163, 255, 0.16));
  box-shadow:
    0 14px 30px rgba(47, 125, 240, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Product cards on the listing page stay roomy and never overflow */
.products-page {
  --product-card-gap: clamp(16px, 1.7vw, 20px);
  --product-card-padding: clamp(18px, 1.95vw, 22px);
  --product-panel-radius: 20px;
  --product-price-panel-padding: clamp(11px, 0.95vw, 14px);
  --product-stack-gap: clamp(12px, 1vw, 14px);
  --product-cluster-gap: 8px;
  --product-title-size: clamp(1.34rem, 1.75vw, 1.5rem);
  --product-copy-size: 0.95rem;
  --product-price-size: clamp(1.62rem, 2vw, 1.78rem);
  --product-price-meta-size: 0.78rem;
}

.products-page .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
  padding: 0;
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.products-page .pricing-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: var(--product-card-gap);
  padding: var(--product-card-padding);
  border-radius: var(--product-panel-radius);
  text-align: start;
  overflow: visible;
}

.products-page .price-stack {
  order: 30;
  align-self: flex-start;
  width: min(100%, 260px);
  max-width: 260px;
  gap: 8px;
  padding: var(--product-price-panel-padding);
  border-radius: calc(var(--product-panel-radius) - 6px);
  background:
    linear-gradient(145deg, rgba(94, 163, 255, 0.08), rgba(68, 215, 182, 0.035)),
    rgba(10, 19, 35, 0.56);
  border: 1px solid rgba(94, 163, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  direction: rtl;
  justify-items: start;
  text-align: start;
}

.products-page .pricing-card.featured .price-stack {
  background:
    linear-gradient(145deg, rgba(94, 163, 255, 0.11), rgba(68, 215, 182, 0.06)),
    rgba(10, 19, 35, 0.62);
  border-color: rgba(94, 163, 255, 0.14);
  box-shadow:
    0 10px 18px rgba(47, 125, 240, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.products-page .pricing-card-head,
.products-page .resource-grid,
.products-page .plan-fit-strip,
.products-page .benefit-strip,
.products-page .card-cta,
.products-page .pricing-card-divider,
.products-page .pricing-card-footnote {
  min-width: 0;
}

.products-page .pricing-card-head {
  order: 10;
  display: grid;
  gap: var(--product-stack-gap);
}

.products-page .resource-grid {
  order: 20;
}

.products-page .pricing-card-divider {
  order: 25;
  margin: 0;
}

.products-page .plan-fit-strip {
  order: 40;
}

.products-page .benefit-strip {
  order: 50;
}

.products-page .card-cta {
  order: 60;
  display: grid;
  gap: 14px;
  margin-top: var(--product-cluster-gap);
  padding-top: var(--product-cluster-gap);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}

.products-page .pricing-card-footnote {
  order: 70;
}

.products-page .pricing-card-kicker,
.products-page .pricing-badges,
.products-page .pricing-meta-row,
.products-page .benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--product-cluster-gap);
}

.products-page .pricing-card-head p,
.products-page .resource-item span,
.products-page .plan-fit-item span {
  overflow-wrap: anywhere;
}

.products-page .price-stack {
  gap: var(--product-stack-gap);
  padding-top: var(--product-price-panel-padding);
}

.products-page .price-display {
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px 10px;
}

.products-page .resource-grid {
  margin-top: var(--product-cluster-gap);
  gap: var(--product-stack-gap);
}

.products-page .plan-fit-strip {
  gap: var(--product-stack-gap);
}

.products-page .pricing-card-footnote {
  padding-top: var(--product-cluster-gap);
  justify-content: flex-start;
  text-align: start;
  font-size: 0.84rem;
  gap: var(--product-cluster-gap) var(--product-stack-gap);
  line-height: 1.58;
}

.products-page .card-cta-actions,
.products-page .card-cta-purchase {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
}

.products-page .card-cta-purchase {
  justify-content: flex-end;
}

.products-page .card-cta-link,
.products-page .card-cta-link-primary,
.products-page .card-purchase-form,
.products-page .card-purchase-form .btn-block {
  width: 100%;
}

.products-page .card-purchase-form {
  display: grid;
  gap: 12px;
}

.products-page .card-cta-link,
.products-page .card-cta-link-primary,
.products-page .card-purchase-form .btn-block {
  justify-content: center;
}
.products-page .card-cta .btn,
.products-page .card-cta form .btn {
  min-height: 46px;
}

.products-page .pricing-card-head h2 {
  font-size: var(--product-title-size);
  line-height: 1.35;
}

.products-page .pricing-card-head p {
  font-size: var(--product-copy-size);
  line-height: 1.74;
}

.products-page .pricing-tier-label,
.products-page .pricing-saving-pill,
.products-page .spotlight-badge,
.products-page .pill,
.products-page .benefit-chip,
.products-page .pricing-meta-row span {
  font-size: 0.82rem;
}

.products-page .pricing-tier-label,
.products-page .pricing-saving-pill,
.products-page .spotlight-badge,
.products-page .pill,
.products-page .benefit-chip {
  padding: 6px 10px;
}

.products-page .pricing-meta-row span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  line-height: 1.45;
}

.products-page .price-prefix {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
}

.products-page .price-currency,
.products-page .price-cycle {
  font-size: var(--product-price-meta-size);
  line-height: 1.5;
}

.products-page .price-amount {
  font-size: var(--product-price-size);
  line-height: 1;
  font-weight: 740;
  text-shadow: none;
}

.products-page .price-saving {
  gap: 6px 8px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.products-page .resource-item,
.products-page .plan-fit-item {
  padding: 14px 15px;
  border-radius: 16px;
  text-align: start;
}

.products-page .resource-item > div,
.products-page .plan-fit-item {
  min-width: 0;
}

.products-page .resource-item > div {
  display: grid;
  gap: 4px;
}

.products-page .resource-item strong,
.products-page .plan-fit-item strong {
  font-size: 0.97rem;
}

.products-page .resource-item span,
.products-page .plan-fit-item span {
  font-size: 0.85rem;
  line-height: 1.68;
}

.products-page .plan-fit-item strong {
  margin-bottom: 6px;
}

.products-page .spec-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
}

.pricing-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  min-height: 100%;
  max-width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(19, 31, 56, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-card[id] {
  scroll-margin-top: 108px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  border: 1px solid transparent;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(94, 163, 255, 0.18);
}

.pricing-card.featured {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(94, 163, 255, 0.38);
  background:
    linear-gradient(160deg, rgba(94, 163, 255, 0.18), rgba(68, 215, 182, 0.06) 45%, rgba(255, 255, 255, 0.03)),
    rgba(19, 31, 56, 0.96);
  box-shadow: 0 24px 60px rgba(27, 97, 212, 0.24), 0 0 0 1px rgba(94, 163, 255, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 30px 68px rgba(27, 97, 212, 0.3);
}

.pricing-card-bg {
  position: absolute;
  inset: -35% auto auto -15%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 163, 255, 0.2) 0%, rgba(94, 163, 255, 0) 70%);
  z-index: 0;
}

.pricing-card.featured .pricing-card-bg {
  background: radial-gradient(circle, rgba(68, 215, 182, 0.18) 0%, rgba(94, 163, 255, 0) 74%);
}

.pricing-card-glow {
  position: absolute;
  inset: auto -60px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 126, 148, 0.14) 0%, rgba(255, 126, 148, 0) 70%);
  z-index: 0;
}

.pricing-card.featured .pricing-card-glow {
  background: radial-gradient(circle, rgba(94, 163, 255, 0.28) 0%, rgba(94, 163, 255, 0) 72%);
}

.pricing-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-tier-label,
.pricing-saving-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
}

.pricing-tier-label {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.pricing-saving-pill {
  background: rgba(68, 215, 182, 0.12);
  color: #aef3df;
}

.pricing-card.featured .pricing-tier-label {
  background: linear-gradient(135deg, rgba(94, 163, 255, 0.22), rgba(68, 215, 182, 0.16));
  border-color: rgba(94, 163, 255, 0.2);
}

.pricing-card-head h2,
.product-summary h1 {
  margin: 0;
  line-height: 1.3;
}

.pricing-card-head {
  display: grid;
  gap: 12px;
}

.pricing-card-head h2 {
  font-size: 1.5rem;
  margin-top: 4px;
}

.product-summary h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.product-summary {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
}

.product-summary .lead {
  margin: 0;
}

.pricing-card-head p {
  margin: 2px 0 0;
  color: var(--muted);
}

.pricing-badges,
.pricing-meta-row,
.benefit-strip,
.hero-micro-stats,
.feature-pill-list,
.card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-micro-stats {
  margin-top: -2px;
}

.feature-pill-list {
  margin-top: 4px;
}

.pricing-meta-row span,
.mini-stat {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.spotlight-badge,
.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 199, 107, 0.28), rgba(255, 126, 148, 0.18));
  color: #ffe5b6;
  border: 1px solid rgba(255, 199, 107, 0.22);
  font-size: 0.84rem;
  font-weight: 700;
}

.always-on-badge {
  background: linear-gradient(135deg, rgba(68, 215, 182, 0.28), rgba(94, 163, 255, 0.18));
  color: #dffcf3;
  border-color: rgba(68, 215, 182, 0.24);
}

.location-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(94, 163, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: rgba(228, 238, 255, 0.84);
}

.location-flag {
  font-size: 0.95rem;
  line-height: 1;
}

.price-stack {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.price-prefix {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.price-display {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.price-currency,
.price-cycle {
  color: var(--muted);
  font-size: 1rem;
}

.price-amount {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.product-price-display .price-amount {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.price-saving {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(68, 215, 182, 0.09);
  color: var(--accent);
  font-size: 0.92rem;
}

.price-saving span {
  color: #b4f5e3;
}

.pricing-card-divider {
  height: 1px;
  margin: 4px 0 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(94, 163, 255, 0.34), rgba(255, 255, 255, 0.03));
}

.resource-grid,
.product-spec-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

.resource-grid {
  margin-top: 6px;
}

.resource-grid,
.product-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-item,
.detail-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.resource-item strong,
.detail-stat strong,
.detail-feature-card strong,
.use-case-card h3 {
  display: block;
  margin-bottom: 4px;
}

.resource-item span,
.detail-stat span {
  font-size: 0.92rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.location-card-flag {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(94, 163, 255, 0.18), rgba(68, 215, 182, 0.18));
  font-size: 1.2rem;
}

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

.location-card strong {
  margin-bottom: 3px;
}

.location-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.spec-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(94, 163, 255, 0.12);
  color: var(--primary);
}

.pricing-card-dedicated .spec-icon {
  background: rgba(255, 199, 107, 0.12);
  color: var(--warning);
}

.pricing-card-browser .spec-icon {
  background: rgba(68, 215, 182, 0.12);
  color: var(--accent);
}

.spec-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-chip,
.feature-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-chip.active,
.feature-pill {
  color: var(--text);
  border-color: rgba(68, 215, 182, 0.2);
  background: rgba(68, 215, 182, 0.09);
}

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

.plan-fit-item,
.hero-value-card,
.purchase-note-card,
.launch-step-card,
.enhanced-use-case-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
}

.plan-fit-item {
  padding: 14px 16px;
}

.plan-fit-item strong {
  display: block;
  margin-bottom: 6px;
}

.plan-fit-item span,
.hero-value-card span,
.hero-value-card p,
.purchase-note-card span,
.purchase-note-card p,
.launch-step-card p,
.use-case-meta {
  color: var(--muted);
}

.card-cta {
  margin-top: auto;
  align-items: stretch;
  padding-top: 8px;
}

.card-cta > .btn,
.card-cta form {
  display: flex;
  flex: 1;
}

.card-cta form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.card-cta .field-group {
  margin-bottom: 0;
}

.card-cta form .btn {
  width: 100%;
}

.pricing-card.featured .btn-primary {
  box-shadow: 0 18px 38px rgba(47, 125, 240, 0.32);
}

.pricing-card-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  flex-wrap: wrap;
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.comparison-note {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-compare-toggle,
.mobile-compare-overlay,
.mobile-compare-sheet {
  display: none;
}

body.compare-open {
  overflow: hidden;
}

.product-hero-grid,
.overview-grid,
.faq-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: start;
  gap: clamp(24px, 3vw, 32px);
}

.premium-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(94, 163, 255, 0.18), rgba(255, 255, 255, 0.03) 45%, rgba(68, 215, 182, 0.08)),
    rgba(19, 31, 56, 0.95);
}

.hero-surface-orb {
  position: absolute;
  inset: -90px auto auto -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 163, 255, 0.22) 0%, rgba(94, 163, 255, 0) 70%);
  pointer-events: none;
}

.purchase-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: clamp(14px, 1.8vw, 18px);
  padding: clamp(18px, 2vw, 22px);
  max-width: 100%;
  align-content: start;
}

.purchase-panel > .eyebrow {
  margin-bottom: -4px;
}

.purchase-panel-headline {
  display: grid;
  gap: 8px;
}

.purchase-panel-headline strong {
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
}

.purchase-panel-headline span {
  color: var(--muted);
  font-size: clamp(0.85rem, 1.4vw, 0.92rem);
}

.purchase-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2px;
  gap: 10px;
}

.purchase-highlight {
  padding: 12px 10px;
  text-align: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.purchase-highlight strong {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.purchase-highlight span {
  font-size: clamp(0.82rem, 1.3vw, 0.88rem);
}

.purchase-note-card {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.purchase-note-card strong {
  display: block;
}

.checkout-list,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.checkout-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.hero-value-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2px;
}

.hero-value-card {
  padding: 16px 18px;
}

.hero-value-card span {
  display: block;
  font-size: 0.92rem;
}

.hero-value-card strong {
  display: block;
  font-size: 1.15rem;
  margin: 6px 0 8px;
}

.hero-value-card p {
  margin: 0;
}

.product-spec-grid {
  margin-top: 2px;
}

.purchase-panel .price-stack {
  padding-top: 0;
  max-width: 100%;
  width: 100%;
  padding: clamp(14px, 2vw, 18px);
  gap: 8px;
}

.purchase-panel .checkout-list {
  margin: 0;
}

.purchase-panel .stack {
  gap: 12px;
}

.purchase-panel .field-group {
  margin-bottom: 0;
}

.purchase-panel .price-display {
  gap: 8px;
}

.purchase-panel .price-amount {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.purchase-panel .price-currency,
.purchase-panel .price-cycle {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
}

.purchase-panel .price-note {
  font-size: clamp(0.82rem, 1.3vw, 0.88rem);
  margin-top: 4px;
}

.purchase-panel .billing-switch {
  padding: 4px;
  margin-bottom: 8px;
}

.purchase-panel .billing-switch-option {
  padding: clamp(9px, 1.5vw, 11px) clamp(16px, 2.5vw, 20px);
  font-size: clamp(0.88rem, 1.4vw, 0.95rem);
}

.detail-feature-card {
  padding: 18px;
}

.detail-feature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}

.detail-feature-card p,
.use-case-card p,
.faq-answer p {
  margin: 0;
}

.detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list strong {
  font-size: 0.96rem;
}

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

.use-case-card {
  padding: 22px;
}

.enhanced-use-case-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(19, 31, 56, 0.88);
}

.use-case-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.use-case-topline > div {
  display: grid;
  gap: 6px;
}

.use-case-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(94, 163, 255, 0.14);
  color: var(--primary);
}

.use-case-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-case-meta {
  font-size: 0.82rem;
}

.launch-steps {
  display: grid;
  gap: 12px;
}

.launch-step-card {
  position: relative;
  padding: 18px;
  padding-inline-start: 76px;
}

.launch-step-number {
  position: absolute;
  inset-inline-start: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 163, 255, 0.14);
  color: var(--primary);
  font-weight: 800;
}

.launch-step-card strong {
  display: block;
  margin-bottom: 8px;
}

.launch-step-card p {
  margin: 0;
}

.faq-item.open {
  border-color: rgba(94, 163, 255, 0.22);
  box-shadow: 0 14px 28px rgba(8, 15, 28, 0.18);
}

.faq-question:hover .faq-icon {
  background: rgba(255, 255, 255, 0.08);
}

.use-case-card h3 {
  margin: 12px 0 8px;
  line-height: 1.45;
}

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

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  padding: 20px;
  gap: 16px;
  font-weight: 700;
  text-align: right;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(94, 163, 255, 0.16);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer[hidden] {
  display: none !important;
}

.enhanced-list li {
  padding: 14px 16px;
}

.empty-state {
  text-align: center;
}

.footer-card p,
.footer-card a,
.footer-card span {
  color: var(--muted);
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 14, 24, 0.92);
}

.site-footer .container {
  padding: 38px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-trust-badges {
  justify-content: flex-end;
}

.back-to-top {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #08101c;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
}

.back-to-top.visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hostiny-chat-widget {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 76px;
  z-index: 45;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hostiny-chat-launcher {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #08101c;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.hostiny-chat-launcher[aria-expanded="true"] {
  box-shadow: 0 0 0 3px rgba(94, 163, 255, 0.2), var(--shadow);
}

body.compare-open .hostiny-chat-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.hostiny-chat-panel {
  width: min(340px, calc(100vw - 24px));
  margin-bottom: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}

.hostiny-chat-widget.open .hostiny-chat-panel {
  display: block;
}

.hostiny-chat-panel-head {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  display: grid;
  gap: 4px;
}

.hostiny-chat-panel-head span {
  font-size: 0.88rem;
  opacity: 0.9;
}

.hostiny-chat-panel-body {
  padding: 16px 18px 18px;
}

.hostiny-chat-panel-body p {
  margin-top: 0;
  color: var(--muted);
}

[data-aos] {
  opacity: 1;
  transform: none;
}

.js-enhanced [data-aos] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js-enhanced [data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .pricing-grid,
  .use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-page .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-banner {
    padding: 9px 0;
  }

  .site-banner-text {
    font-size: 0.84rem;
  }

  .products-page .products-metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .products-page .products-metric-strip .metric-badge:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .plans-grid,
  .cards-grid,
  .pricing-grid,
  .stats-grid,
  .footer-grid,
  .hero-grid,
  .split-grid,
  .detail-grid,
  .product-hero-grid,
  .overview-grid,
  .use-cases-grid,
  .faq-layout,
  .two-col,
  .dashboard-grid,
  .field-row,
  .plan-fit-strip,
  .hero-value-strip,
  .resource-grid,
  .product-spec-grid,
  .feature-grid,
  .metric-strip,
  .purchase-highlights {
    grid-template-columns: 1fr;
  }

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

  .nav-shell {
    min-height: 72px;
    justify-content: space-between;
  }

  .brand {
    flex: 1 1 auto;
    justify-content: flex-end;
    max-width: none;
  }

  .brand span:last-child {
    max-width: 160px;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(360px, calc(100vw - 18px));
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-items: stretch;
    justify-items: stretch;
    gap: 16px;
    background:
      linear-gradient(180deg, rgba(18, 31, 56, 0.98), rgba(8, 14, 24, 0.98)),
      rgba(8, 14, 24, 0.98);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 50px rgba(2, 8, 23, 0.35);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 65;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav-panel.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 60;
    background: rgba(3, 8, 18, 0.62);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-overlay.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: grid;
  }

  .mobile-nav-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 8px;
    margin-inline-start: 0;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-height: 48px;
    padding: 13px 16px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
    text-align: right;
  }

  .site-nav a.active {
    border-color: rgba(94, 163, 255, 0.2);
  }

  .nav-actions {
    margin-inline-start: 0;
    display: grid;
    gap: 10px;
  }

  .nav-actions > .btn,
  .nav-actions > .cart-chip,
  .nav-actions > .menu-wrap {
    width: 100%;
  }

  .nav-actions .btn,
  .nav-actions .cart-chip,
  .nav-actions .menu-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .sidebar {
    position: static;
  }

  .purchase-panel {
    position: static;
    gap: 16px;
    max-width: 600px;
    margin-inline: auto;
    padding: clamp(18px, 2.5vw, 22px);
  }

  .purchase-panel > .eyebrow {
    margin-bottom: 0;
  }

  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }

  .pricing-toolbar {
    margin-bottom: 20px;
  }

  /* Tablet: hero tightens, tabs remain tappable, listing becomes easier to scan */
  .products-page .pricing-hero-card {
    gap: 18px;
    padding: 22px;
  }

  .products-page .segment-control {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 10px;
    padding-inline: 2px;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(94, 163, 255, 0.45) transparent;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 2px;
  }

  .products-page .segment-chip {
    flex: 0 0 auto;
    width: auto;
    max-width: max-content;
    min-height: 48px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .segment-control {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .segment-chip {
    width: 100%;
    min-height: 48px;
  }

  .card-cta > .btn,
  .card-cta form,
  .purchase-panel .stack > .btn,
  .purchase-panel .stack > a,
  .purchase-panel .stack > button {
    width: 100%;
  }

  .detail-list li {
    align-items: flex-start;
  }

  .payment-card::before {
    margin-bottom: 18px;
  }

  .payment-card .stack > .panel:nth-child(2) .copy-chip {
    grid-template-columns: 1fr;
  }

  .payment-card .stack > .panel:nth-child(2) .copy-chip .btn {
    width: 100%;
  }

  .menu-trigger {
    justify-content: space-between;
  }

  .menu-panel {
    position: static;
    top: auto;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }

}

@media (max-width: 768px) {
  .products-page {
    padding-bottom: 92px;
    --product-card-gap: 18px;
    --product-card-padding: 18px;
    --product-panel-radius: 18px;
    --product-price-panel-padding: 12px;
    --product-stack-gap: 14px;
    --product-cluster-gap: 8px;
    --product-title-size: clamp(1.14rem, 4.2vw, 1.22rem);
    --product-copy-size: 0.9rem;
    --product-price-size: clamp(1.3rem, 4.6vw, 1.42rem);
    --product-price-meta-size: 0.72rem;
  }

  .products-page .pricing-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--product-card-gap);
    padding: var(--product-card-padding);
    overflow: visible;
  }

  .products-page .pricing-card-bg,
  .products-page .pricing-card-glow {
    display: none;
  }

  .products-page .pricing-card-kicker,
  .products-page .pricing-badges,
  .products-page .pricing-meta-row,
  .products-page .benefit-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--product-cluster-gap);
  }

  .products-page .pricing-card-head,
  .products-page .resource-grid,
  .products-page .price-stack,
  .products-page .pricing-card-divider,
  .products-page .plan-fit-strip,
  .products-page .benefit-strip,
  .products-page .card-cta,
  .products-page .pricing-card-footnote {
    order: unset;
  }

  .products-page .pricing-card-head {
    order: 10;
  }

  .products-page .resource-grid {
    order: 20;
  }

  .products-page .pricing-card-divider {
    order: 25;
  }

  .products-page .price-stack {
    order: 30;
    align-self: stretch;
    width: 100%;
  }

  .products-page .plan-fit-strip {
    order: 40;
  }

  .products-page .benefit-strip {
    order: 50;
  }

  .products-page .card-cta {
    order: 60;
  }

  .products-page .pricing-card-footnote {
    order: 70;
  }

  .products-page .card-cta {
    display: flex;
    flex-direction: column;
    gap: var(--product-stack-gap);
    margin-top: var(--product-cluster-gap);
  }

  .products-page .card-cta,
  .products-page .card-cta form,
  .products-page .card-cta .btn,
  .products-page .card-cta form .btn {
    position: static;
  }

  .products-page .card-cta form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--product-stack-gap);
    margin: 0;
  }

  .products-page .card-cta .field-group,
  .products-page .card-cta .btn,
  .products-page .card-cta form .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-banner {
    padding: 8px 0;
  }

  .site-banner-inner {
    gap: 8px;
  }

  .site-banner-icon {
    width: 20px;
    height: 20px;
  }

  .site-banner-icon img,
  .site-banner-icon.site-banner-icon-default svg {
    width: 20px;
    height: 20px;
  }

  .site-banner-text {
    font-size: 0.82rem;
  }

  .products-page {
    padding-bottom: 92px;
    --product-card-gap: 17px;
    --product-card-padding: 16px;
    --product-panel-radius: 18px;
    --product-price-panel-padding: 11px;
    --product-stack-gap: 13px;
    --product-cluster-gap: 8px;
    --product-title-size: clamp(1.12rem, 4.8vw, 1.18rem);
    --product-copy-size: 0.89rem;
    --product-price-size: clamp(1.24rem, 4.6vw, 1.34rem);
    --product-price-meta-size: 0.7rem;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav-shell {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    font-size: 1.04rem;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .nav-panel {
    width: min(100vw, 360px);
    padding: 18px 14px calc(18px + env(safe-area-inset-bottom));
  }

  .hero {
    padding: 42px 0 28px;
  }

  .page-hero {
    padding: 34px 0 20px;
  }

  .section {
    padding: 22px 0 38px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .inline-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .auth-shell form > .btn[type="submit"],
  .form-card form > .btn[type="submit"],
  .side-card form > .btn[type="submit"],
  .list-card form > .btn[type="submit"] {
    width: 100%;
    min-height: 48px;
  }

  .eyebrow {
    max-width: 100%;
    line-height: 1.7;
  }

  .footer-card {
    padding: 18px;
  }

  .ticket-message.user,
  .ticket-message.admin {
    margin: 0;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dashboard-head,
  .card-head,
  .list-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-head > .btn,
  .list-head > .btn,
  .dashboard-head > a:last-child,
  .list-head > a:last-child {
    width: 100%;
  }

  .hostiny-chat-widget {
    inset-inline-start: 12px;
    bottom: 14px;
  }

  .products-page .hostiny-chat-widget {
    bottom: 92px;
  }

  .pricing-card,
  .panel,
  .hero-card,
  .dashboard-card,
  .form-card,
  .list-card,
  .side-card,
  .payment-card,
  .ticket-message {
    border-radius: 20px;
  }

  .comparison-note,
  .detail-feature-card,
  .use-case-card,
  .metric-card-small {
    padding: 16px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .pricing-hero-shell {
    gap: 18px;
  }

  .product-summary,
  .purchase-panel {
    gap: 14px;
    padding: 18px;
  }

  .hero-micro-stats,
  .feature-pill-list,
  .card-cta,
  .pricing-meta-row {
    gap: 8px;
  }

  .pricing-meta-row span,
  .mini-stat,
  .benefit-chip,
  .feature-pill {
    width: 100%;
    justify-content: center;
  }

  .purchase-highlight,
  .hero-value-card,
  .detail-stat,
  .use-case-card,
  .launch-step-card,
  .purchase-note-card {
    padding: 14px;
  }

  .purchase-highlight {
    padding: 10px 8px;
  }

  .launch-step-card {
    padding: 70px 18px 16px;
  }

  .detail-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .faq-question {
    padding: 18px;
    align-items: flex-start;
  }

  .faq-icon {
    flex: 0 0 34px;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  /* Small phones: reduce hero size, stack cards cleanly, keep touch targets large */
  .products-page .pricing-hero {
    padding-top: 24px;
  }

  .products-page .pricing-hero-card {
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .products-page .pricing-hero-card::before,
  .products-page .pricing-hero-card::after {
    opacity: 0.45;
    transform: scale(0.8);
  }

  .products-page .pricing-hero-card h1 {
    font-size: clamp(1.12rem, 5.4vw, 1.4rem);
    line-height: 1.45;
    letter-spacing: -0.02em;
    max-width: none;
  }

  .products-page .products-metric-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .products-page .metric-badge {
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .products-page .metric-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
  }

  .products-page .segment-control {
    gap: 8px;
    padding-bottom: 2px;
    flex-wrap: nowrap;
  }

  .products-page .segment-chip {
    width: auto;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .products-page .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-page .pricing-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--product-card-gap);
    padding: var(--product-card-padding);
    border-radius: var(--product-panel-radius);
    overflow: visible;
    box-shadow:
      0 18px 34px rgba(2, 8, 23, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .products-page .pricing-card-bg,
  .products-page .pricing-card-glow {
    display: none;
  }

  .products-page .pricing-card-head {
    order: 10;
    display: flex;
    flex-direction: column;
  }

  .products-page .price-stack {
    order: 30;
    align-self: stretch;
    width: 100%;
    margin-top: 0;
    gap: var(--product-stack-gap);
    padding: var(--product-price-panel-padding);
  }

  .products-page .resource-grid {
    order: 20;
    grid-template-columns: 1fr;
    gap: var(--product-stack-gap);
  }

  .products-page .pricing-card-divider {
    order: 25;
  }

  .products-page .card-cta {
    order: 60;
    display: flex;
    flex-direction: column;
    gap: var(--product-stack-gap);
    margin-top: var(--product-cluster-gap);
  }

  .products-page .card-cta,
  .products-page .card-cta form,
  .products-page .card-cta .btn,
  .products-page .card-cta form .btn {
    position: static;
  }

  .products-page .card-cta form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--product-stack-gap);
    margin: 0;
  }

  .products-page .card-cta .field-group {
    width: 100%;
  }

  .products-page .plan-fit-strip {
    order: 40;
    grid-template-columns: 1fr;
    gap: var(--product-stack-gap);
  }

  .products-page .benefit-strip {
    order: 50;
    gap: var(--product-cluster-gap);
  }

  .products-page .pricing-card-footnote {
    order: 70;
  }

  .products-page .pricing-card-kicker,
  .products-page .pricing-badges,
  .products-page .pricing-meta-row,
  .products-page .benefit-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--product-cluster-gap);
  }

  .products-page .pricing-meta-row span {
    width: auto;
    justify-content: flex-start;
  }

  .products-page .benefit-chip {
    width: auto;
  }

  .products-page .pricing-card-head {
    gap: var(--product-stack-gap);
  }

  .products-page .pricing-card-head h2 {
    font-size: var(--product-title-size);
    line-height: 1.3;
  }

  .products-page .pricing-card-head p {
    font-size: var(--product-copy-size);
    line-height: 1.72;
  }

  .products-page .pricing-tier-label,
  .products-page .pricing-saving-pill,
  .products-page .spotlight-badge,
  .products-page .pill,
  .products-page .benefit-chip {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .products-page .price-display {
    gap: 6px 8px;
    align-items: baseline;
    justify-content: flex-start;
  }

  .products-page .price-amount {
    font-size: var(--product-price-size);
  }

  .products-page .price-prefix,
  .products-page .price-currency,
  .products-page .price-cycle {
    font-size: var(--product-price-meta-size);
  }

  .products-page .price-saving {
    width: 100%;
    display: grid;
    gap: 6px;
    justify-items: start;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .products-page .resource-item,
  .products-page .plan-fit-item {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .products-page .resource-item {
    gap: 10px;
  }

  .products-page .resource-item strong,
  .products-page .resource-item span,
  .products-page .plan-fit-item strong,
  .products-page .plan-fit-item span {
    overflow-wrap: anywhere;
  }

  .products-page .spec-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .products-page .card-cta .btn,
  .products-page .card-cta form .btn {
    min-height: 48px;
  }

  .products-page .pricing-card-footnote {
    justify-content: flex-start;
    text-align: start;
    gap: var(--product-cluster-gap) var(--product-stack-gap);
    font-size: 0.84rem;
    padding-top: var(--product-cluster-gap);
  }

  .products-page .comparison-note {
    padding: 16px;
    margin-top: 20px;
    margin-bottom: 88px;
  }

  .products-page .comparison-note .btn {
    width: 100%;
  }

  .segment-control {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 20px;
    gap: 16px;
  }

  .resource-item,
  .plan-fit-item {
    padding: 12px;
  }

  .card-cta {
    flex-direction: column;
  }

  .pricing-card-footnote {
    justify-content: center;
    text-align: center;
  }

  .comparison-note {
    padding: 16px;
  }

  .comparison-note .btn {
    width: 100%;
  }

  .payment-card,
  .payment-card + .form-card {
    padding: 18px;
  }

  .payment-card::before {
    font-size: 0.92rem;
    padding: 12px 14px;
  }

  .payment-card .stack {
    gap: 16px;
  }

  .payment-card .stack > .panel {
    padding: 18px;
  }

  .payment-card .stack > .panel:nth-child(1) .money-value {
    font-size: 32px;
  }

  .payment-card .stack > .panel:nth-child(2) {
    padding-top: 18px;
  }

  .payment-card .stack > .panel:nth-child(2) #card-number {
    font-size: 16px;
    letter-spacing: 2px;
    word-break: break-all;
  }

  .payment-card .stack > .panel:nth-child(3) .check-list li {
    padding-inline-start: 58px;
  }

  .payment-card + .form-card {
    gap: 20px;
  }

  .payment-card + .form-card .section-head::after {
    font-size: 0.88rem;
  }

  .hostiny-chat-launcher {
    width: 50px;
    height: 50px;
    font-size: 1.22rem;
  }

  .mobile-compare-toggle {
    position: fixed;
    inset-inline-start: 74px;
    inset-inline-end: 12px;
    bottom: 16px;
    z-index: 44;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(94, 163, 255, 0.26);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(47, 125, 240, 0.22), rgba(68, 215, 182, 0.14)),
      rgba(10, 18, 34, 0.94);
    box-shadow:
      0 20px 40px rgba(2, 8, 23, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    color: var(--text);
    text-align: right;
    backdrop-filter: blur(20px);
  }

  .mobile-compare-toggle strong,
  .mobile-compare-toggle small {
    display: block;
  }

  .mobile-compare-toggle strong {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .mobile-compare-toggle small {
    color: rgba(228, 238, 255, 0.72);
    font-size: 0.76rem;
  }

  .mobile-compare-toggle-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(94, 163, 255, 0.88), rgba(47, 125, 240, 0.4));
    box-shadow: 0 12px 24px rgba(47, 125, 240, 0.22);
  }

  .mobile-compare-toggle-icon svg,
  .mobile-compare-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-compare-overlay {
    position: fixed;
    inset: 0;
    z-index: 58;
    background: rgba(5, 10, 20, 0.62);
    backdrop-filter: blur(6px);
  }

  .mobile-compare-overlay:not([hidden]) {
    display: block;
  }

  .mobile-compare-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 59;
    display: grid;
    gap: 16px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border: 1px solid rgba(94, 163, 255, 0.16);
    background:
      linear-gradient(160deg, rgba(94, 163, 255, 0.18), rgba(68, 215, 182, 0.08)),
      rgba(8, 16, 31, 0.98);
    box-shadow: 0 -24px 48px rgba(2, 8, 23, 0.34);
    max-width: 100%;
    overflow-x: clip;
    transform: translateY(calc(100% + 24px));
    transition: transform 0.28s ease;
  }

  .mobile-compare-sheet[aria-hidden="false"] {
    transform: translateY(0);
  }

  .mobile-compare-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-compare-head strong,
  .mobile-compare-head span {
    display: block;
  }

  .mobile-compare-head strong {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .mobile-compare-head span {
    color: rgba(228, 238, 255, 0.72);
    font-size: 0.82rem;
  }

  .mobile-compare-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
  }

  .mobile-compare-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 76vw);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 2px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 2px;
    max-width: 100%;
    contain: paint;
    touch-action: pan-x;
  }

  .mobile-compare-card {
    display: grid;
    gap: 14px;
    min-width: 0;
    max-width: 100%;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
      rgba(18, 28, 49, 0.9);
    scroll-snap-align: start;
  }

  .mobile-compare-card.featured {
    border-color: rgba(94, 163, 255, 0.28);
    box-shadow: 0 18px 36px rgba(47, 125, 240, 0.14);
  }

  .mobile-compare-card-top,
  .mobile-compare-price {
    display: grid;
    gap: 4px;
  }

  .mobile-compare-plan {
    font-size: 1rem;
    font-weight: 800;
  }

  .mobile-compare-type,
  .mobile-compare-price span {
    color: rgba(228, 238, 255, 0.72);
    font-size: 0.82rem;
  }

  .mobile-compare-price strong {
    font-size: 1.5rem;
    line-height: 1;
  }

  .mobile-compare-specs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
  }

  .mobile-compare-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-compare-specs span {
    color: rgba(228, 238, 255, 0.72);
    font-size: 0.82rem;
  }

  .mobile-compare-specs strong {
    font-size: 0.9rem;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 76px;
  }

  .responsive-table {
    min-width: 0;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .responsive-table tr + tr {
    margin-top: 12px;
  }

  .responsive-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: right;
  }

  .responsive-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .responsive-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 700;
    text-align: right;
  }
}

@media (hover: none) {
  /* Touch devices: keep cards stable and prevent sticky hover transforms */
  .products-page .pricing-card:hover,
  .products-page .pricing-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 390px) {
  .products-page {
    --product-card-gap: 16px;
    --product-card-padding: 15px;
    --product-price-panel-padding: 10px;
    --product-stack-gap: 12px;
    --product-cluster-gap: 8px;
    --product-title-size: 1.08rem;
    --product-copy-size: 0.86rem;
    --product-price-size: clamp(1.18rem, 4.8vw, 1.28rem);
    --product-price-meta-size: 0.68rem;
  }

  /* Very small phones: remove hero decoration and fully stack trust badges */
  .products-page .pricing-hero-card::before,
  .products-page .pricing-hero-card::after {
    display: none;
  }

  .products-page .products-metric-strip {
    grid-template-columns: 1fr;
  }

  .products-page .pricing-hero-card h1 {
    font-size: 1.08rem;
  }

  .products-page .segment-chip {
    font-size: 0.82rem;
    padding-inline: 11px;
  }

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

  .products-page .pricing-card {
    padding: var(--product-card-padding);
  }

  .products-page .price-amount {
    font-size: var(--product-price-size);
  }

  .mobile-compare-toggle {
    inset-inline-start: 68px;
    inset-inline-end: 10px;
    bottom: 12px;
    padding: 11px 12px;
  }

  .mobile-compare-toggle strong {
    font-size: 0.9rem;
  }

  .mobile-compare-toggle small {
    font-size: 0.72rem;
  }

  .mobile-compare-rail {
    grid-auto-columns: minmax(206px, 82vw);
  }
}

@media (max-width: 480px) {
  .site-banner-text {
    font-size: 0.78rem;
  }

  .site-banner-icon {
    width: 18px;
    height: 18px;
  }

  .site-banner-icon img,
  .site-banner-icon.site-banner-icon-default svg {
    width: 18px;
    height: 18px;
  }

  .products-page .segment-control {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: clip;
    padding-bottom: 0;
    flex-wrap: wrap;
    scroll-snap-type: none;
  }

  .products-page .segment-chip {
    width: 100%;
    max-width: none;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .products-page .segment-chip:first-child {
    grid-column: 1 / -1;
  }
}

/* ── Product Detail Responsive Improvements ── */

@media (max-width: 980px) {
  .product-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .detail-overview-grid {
    gap: 24px;
  }

  .detail-overview-grid > .stack {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .product-spec-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .purchase-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .purchase-highlight {
    padding: 16px 14px;
    text-align: start;
  }

  .breadcrumbs {
    font-size: 0.84rem;
    gap: 4px;
    margin-bottom: 14px;
  }

  .breadcrumbs a {
    min-height: 32px;
    padding: 4px 10px;
    font-size: 0.82rem;
  }

  .breadcrumbs span::before {
    margin-inline: 4px;
  }

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

  .location-card {
    padding: 12px;
  }

  .hero-value-card {
    padding: 14px;
  }

  .hero-value-card strong {
    font-size: 1.1rem;
  }

  .use-case-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .purchase-panel-headline span {
    font-size: 0.82rem;
  }

  .product-price-display .price-amount {
    font-size: 2rem;
  }

  .detail-feature-card {
    padding: 16px;
  }

  .enriched-use-cases-grid {
    gap: 16px;
  }

  .enhanced-use-case-card {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .product-summary h1 {
    font-size: 1.6rem;
  }

  .product-summary .lead {
    font-size: 0.88rem;
  }

  .hero-micro-stats {
    flex-direction: column;
  }

  .feature-pill {
    font-size: 0.76rem;
    padding: 5px 10px;
  }

  .product-price-display .price-amount {
    font-size: 1.7rem;
  }

  .purchase-panel {
    padding: 16px;
  }

  .launch-step-card {
    padding: 60px 14px 14px;
  }
}

/* ══════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   ══════════════════════════════════════════════════ */

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .purchase-panel {
    position: static;
  }

  .sidebar {
    position: static;
  }

  .dashboard-grid {
    gap: 18px;
  }

  .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-links a {
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  }

  .section-head h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }

  .two-col {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  .section-head h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  }

  .page-hero h1 {
    font-size: clamp(1.2rem, 5vw, 1.7rem);
  }

  .hero {
    padding: 36px 0 24px;
  }

  .page-hero {
    padding: 30px 0 18px;
  }

  .section {
    padding: 20px 0 36px;
  }

  .stat-card {
    padding: 18px;
  }

  .stat-card strong,
  .money-value,
  .price-main {
    font-size: 1.4rem;
  }

  .plan-card {
    padding: 18px;
  }

  .feature-card {
    padding: 18px;
  }

  .testimonial {
    padding: 18px;
  }

  .domain-card {
    padding: 18px;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .hostiny-chat-panel {
    width: min(300px, calc(100vw - 24px));
  }

  .site-footer .container {
    padding: 28px 0;
  }

  .site-footer {
    margin-top: 40px;
  }

  .footer-card {
    padding: 16px;
  }

  .footer-card h3,
  .footer-card h4 {
    font-size: 1.05rem;
  }

  .footer-links a,
  .contact-list a,
  .contact-list span {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .footer-bottom-row {
    padding: 16px 0;
    font-size: 0.85rem;
  }

  .auth-shell {
    margin: 24px auto 50px;
  }

  .form-card,
  .side-card {
    padding: 18px;
  }

  .field-group {
    margin-bottom: 14px;
  }

  input,
  select,
  textarea {
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-radius: 12px;
  }

  .btn-sm {
    padding: 10px 14px;
  }

  .eyebrow {
    font-size: 0.82rem;
    padding: 6px 12px;
  }

  .pill,
  .status-badge {
    font-size: 0.8rem;
    padding: 5px 9px;
  }

  .alert {
    padding: 12px 14px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .comparison-note {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
  }

  .comparison-note .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 16px));
  }

  .hero h1 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    line-height: 1.4;
  }

  .section-head h2 {
    font-size: clamp(1.05rem, 5vw, 1.3rem);
  }

  .page-hero h1 {
    font-size: clamp(1.1rem, 5.5vw, 1.4rem);
  }

  .hero {
    padding: 28px 0 20px;
  }

  .page-hero {
    padding: 24px 0 14px;
  }

  .section {
    padding: 16px 0 30px;
  }

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

  .stat-card {
    padding: 16px;
    text-align: center;
  }

  .stat-card strong {
    font-size: 1.3rem;
  }

  .plans-grid,
  .cards-grid {
    gap: 16px;
  }

  .plan-card,
  .feature-card,
  .testimonial {
    padding: 16px;
    border-radius: 16px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 16px;
  }

  .panel {
    padding: 18px;
    border-radius: 16px;
  }

  .price-line {
    gap: 6px;
  }

  .price-main {
    font-size: 1.3rem;
  }

  .check-list li {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .feature-icon,
  .emoji {
    font-size: 1.5rem;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-question {
    padding: 14px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 14px 14px;
    font-size: 0.88rem;
  }

  .form-card,
  .side-card {
    padding: 16px;
    border-radius: 16px;
  }

  .auth-shell {
    margin: 20px auto 40px;
  }

  .field-row {
    gap: 12px;
  }

  label {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .hostiny-chat-launcher {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .hostiny-chat-panel {
    width: min(280px, calc(100vw - 20px));
    border-radius: 14px;
  }

  .hostiny-chat-panel-head {
    padding: 14px 16px;
  }

  .hostiny-chat-panel-body {
    padding: 14px 16px;
  }

  .hostiny-chat-panel-body p {
    font-size: 0.88rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .breadcrumbs {
    font-size: 0.8rem;
    gap: 4px;
    margin-bottom: 12px;
  }

  .breadcrumbs a {
    min-height: 30px;
    padding: 3px 8px;
    font-size: 0.78rem;
  }

  .breadcrumbs span::before {
    margin-inline: 3px;
    font-size: 0.75rem;
  }

  .site-footer {
    margin-top: 30px;
  }

  .footer-bottom-row {
    font-size: 0.82rem;
    gap: 10px;
  }

  .domain-card {
    padding: 14px;
    border-radius: 14px;
  }

  .card-meta {
    font-size: 0.85rem;
  }

  .dashboard-card {
    padding: 16px;
    border-radius: 16px;
  }

  .dashboard-head h1 {
    font-size: 1.2rem;
  }

  .ticket-message {
    padding: 14px;
    border-radius: 14px;
  }

  .payment-card {
    padding: 16px;
    border-radius: 16px;
  }

  .payment-card::before {
    font-size: 0.88rem;
    padding: 12px 14px;
    margin-bottom: 16px;
  }

  .payment-card .stack > .panel:nth-child(2) #card-number {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .payment-card .stack > .panel:nth-child(2) .copy-chip {
    padding: 14px;
    gap: 10px;
  }

  .payment-expiry-modal__dialog {
    padding: 20px;
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 12px);
  }

  body {
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 1.15rem;
  }

  .section-head h2 {
    font-size: 1.02rem;
  }

  .page-hero h1 {
    font-size: 1.08rem;
  }

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

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .site-logo {
    max-height: 34px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .hero-card,
  .panel,
  .plan-card,
  .feature-card,
  .testimonial,
  .form-card,
  .side-card,
  .dashboard-card,
  .payment-card {
    padding: 14px;
    border-radius: 14px;
  }

  .stat-card strong {
    font-size: 1.15rem;
  }

  .price-main {
    font-size: 1.15rem;
  }

  .check-list li {
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .faq-question {
    padding: 12px;
    font-size: 0.86rem;
  }

  .faq-answer {
    padding: 0 12px 12px;
    font-size: 0.84rem;
  }

  .footer-card {
    padding: 14px;
  }

  .footer-links a,
  .contact-list a,
  .contact-list span {
    padding: 7px 10px;
    font-size: 0.84rem;
  }
}

@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer .footer-bottom {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .back-to-top {
    bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .hostiny-chat-widget {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  @media (max-width: 720px) {
    .hostiny-chat-widget {
      bottom: calc(14px + env(safe-area-inset-bottom));
    }

    .back-to-top {
      bottom: calc(76px + env(safe-area-inset-bottom));
    }
  }

  .mobile-compare-toggle {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
  }

  .site-nav a {
    min-height: 44px;
  }

  .faq-question {
    min-height: 48px;
  }

  .sidebar-links a {
    min-height: 44px;
  }

  .menu-panel a {
    min-height: 44px;
  }

  .segment-chip {
    min-height: 44px;
  }

  .footer-links a,
  .contact-list a {
    min-height: 44px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding: 24px 0 16px;
  }

  .page-hero {
    padding: 20px 0 12px;
  }

  .section {
    padding: 14px 0 28px;
  }

  .site-header {
    position: relative;
  }
}

/* ══════════════════════════════════════════════════
   DEEP RESPONSIVE REFINEMENTS — PASS 2
   Covers: product detail, dashboard, chat admin,
   tables, forms, payment, about/contact,
   overflow, image, and ultra-small screens.
   ══════════════════════════════════════════════════ */

/* ── Global overflow safety ── */

/* ── 980px: Tablet — product detail, dashboard, about/contact ── */
@media (max-width: 980px) {
  /* Product detail: hero becomes single-column, purchase panel unsticks */
  .product-hero-grid,
  .overview-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .purchase-panel {
    position: static;
    top: auto;
  }

  /* Home CTA split-grid */
  .split-grid {
    grid-template-columns: 1fr;
  }

  /* Dashboard: sidebar unsticks, sidebar-links wrap horizontally */
  .sidebar {
    position: static;
  }

  .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Contact two-col */
  .two-col {
    grid-template-columns: 1fr;
  }

  /* Ticket messages: reduce indent on tablet */
  .ticket-message.user {
    margin-inline-start: 40px;
  }

  .ticket-message.admin {
    margin-inline-end: 40px;
  }

  /* Detail feature grid */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Hero value strip */
  .hero-value-strip {
    grid-template-columns: 1fr;
  }

  /* Launch steps cards */
  .launch-step-card {
    padding-inline-start: 68px;
  }
}

/* ── 720px: Small tablet / large phone ── */
@media (max-width: 720px) {
  /* Product detail price panel */
  .purchase-panel {
    padding: 18px;
  }

  .product-price-display .price-amount {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  /* Use cases grid */
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  /* Enhanced use case cards */
  .enhanced-use-case-card {
    padding: 16px;
  }

  .use-case-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Dashboard order items and ticket rows */
  .order-item,
  .ticket-row,
  .transaction-row {
    padding: 14px;
  }

  /* Dashboard head and list head on mobile */
  .dashboard-head,
  .card-head,
  .list-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .dashboard-head h1 {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  }

  /* Checkout list */
  .checkout-list li {
    padding: 10px 12px;
  }

  /* Copy chip full width */
  .copy-chip {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  /* Table wrap scroll hint */
  .table-wrap {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  /* Launch step cards */
  .launch-step-card {
    padding: 60px 16px 16px;
    padding-inline-start: 16px;
  }

  .launch-step-number {
    top: 14px;
    inset-inline-start: 14px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  /* Detail list: stack vertically */
  .detail-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Location cards */
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 12px;
  }

  /* Chat admin pages */
  .chat-messages-container {
    max-height: 60vh;
  }

  .chat-input-area {
    flex-direction: column;
    gap: 8px;
  }

  .chat-input-area textarea {
    min-height: 80px;
  }

  .chat-input-area .btn {
    width: 100%;
  }

  /* Payment timer on mobile */
  .payment-timer {
    width: 100%;
    justify-content: center;
  }
}

/* ── 480px: Phone ── */
@media (max-width: 480px) {
  /* Product detail */
  .purchase-panel {
    padding: 16px;
    border-radius: 16px;
    gap: 16px;
  }

  .purchase-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .purchase-highlight {
    padding: 16px 14px;
    text-align: start;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-stat {
    padding: 12px;
    gap: 10px;
  }

  .spec-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
  }

  .spec-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Use case card */
  .use-case-card {
    padding: 16px;
  }

  .use-case-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
  }

  /* Location cards */
  .location-card-flag {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
  }

  /* Order expired panel */
  .order-expired-panel {
    padding: 20px 16px;
  }

  .order-expired-meta {
    padding: 14px;
  }

  /* Field row stacking already handled at 980px, reinforce */
  .field-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Dashboard card spacing */
  .list-card,
  .side-card {
    padding: 16px;
  }

  /* Domain cards */
  .domain-card {
    padding: 14px;
  }

  .domain-card .dashboard-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Ticket messages: remove margin */
  .ticket-message.user,
  .ticket-message.admin {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  /* Auth shell: tighter margins */
  .auth-shell {
    margin: 18px auto 36px;
  }

  /* Payment expiry modal */
  .payment-expiry-modal {
    padding: 12px;
  }

  .payment-expiry-modal__dialog {
    padding: 18px;
    border-radius: 14px;
  }

  .payment-expiry-modal__dialog strong {
    font-size: 1rem;
  }

  .payment-expiry-modal__dialog p {
    font-size: 0.88rem;
  }

  /* Plan fit strip */
  .plan-fit-strip {
    grid-template-columns: 1fr;
  }

  /* Inline actions on phone: full width */
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inline-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Enriched use cases */
  .enriched-use-cases-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Hero micro-stats and feature pills: stack */
  .hero-micro-stats {
    flex-direction: column;
    gap: 8px;
  }

  .mini-stat {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .feature-pill-list {
    flex-direction: column;
    gap: 6px;
  }

  .feature-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hero card within hero-grid */
  .hero-card {
    padding: 16px;
  }

  /* Section head within home page */
  .section-head p {
    font-size: 0.9rem;
  }

  /* Contact list items */
  .contact-list a,
  .contact-list span {
    font-size: 0.88rem;
    padding: 10px 12px;
  }
}

/* ── 360px: Ultra-small phones ── */
@media (max-width: 360px) {
  .purchase-panel {
    padding: 14px;
    border-radius: 14px;
  }

  .detail-stat {
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .order-item,
  .ticket-row,
  .transaction-row {
    padding: 12px;
    border-radius: 12px;
  }

  .location-card {
    padding: 10px;
    border-radius: 14px;
    gap: 10px;
  }

  .use-case-card {
    padding: 12px;
    border-radius: 14px;
  }

  .launch-step-card {
    padding: 50px 12px 12px;
  }

  .payment-timer {
    padding: 8px 10px;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  .timer-value {
    min-width: 50px;
    font-size: 0.9rem;
  }

  .checkout-list li {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .copy-chip {
    padding: 6px 10px;
  }

  /* Alert compact */
  .alert {
    padding: 10px 12px;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  /* Auth shell */
  .auth-shell {
    margin: 14px auto 28px;
  }

  /* Payment card number on tiny phones */
  .payment-card .stack > .panel:nth-child(2) #card-number {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  /* Enhanced use case card */
  .enhanced-use-case-card {
    padding: 12px;
    border-radius: 14px;
  }

  /* Empty state */
  .empty-state {
    padding: 18px 12px;
  }

  .empty-state h3 {
    font-size: 1rem;
  }
}

/* ── Landscape phones with short viewport ── */
@media (orientation: landscape) and (max-height: 500px) {
  .purchase-panel {
    position: static;
    top: auto;
  }

  .sidebar {
    position: static;
  }

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

  .product-hero-grid,
  .overview-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .nav-panel {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
  }
}

/* ── Ensure iOS doesn't zoom on input focus (min 16px) ── */
@media (max-width: 720px) {
  input,
  select,
  textarea {
    font-size: max(16px, 1em);
  }
}

/* ── Print: basic readability ── */
@media print {
  .site-header,
  .site-footer,
  .back-to-top,
  .hostiny-chat-widget,
  .nav-toggle,
  .nav-overlay,
  .mobile-compare-toggle,
  .mobile-compare-sheet,
  .mobile-compare-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }
}

/* ── Additional mobile polish ── */
@media (max-width: 480px) {
  .hero-card {
    border-radius: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .pill-list {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-bottom-row {
    font-size: 0.82rem;
    padding: 14px 0;
    gap: 8px;
  }

  .testimonial {
    padding: 14px;
    border-radius: 14px;
  }

  .faq-question {
    padding: 14px;
    font-size: 0.92rem;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }
}

@media (max-width: 360px) {
  .hero-actions .btn {
    font-size: 0.88rem;
    padding: 12px 14px;
  }

  .footer-bottom-row {
    font-size: 0.78rem;
  }

  .section-head p {
    font-size: 0.84rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED RESPONSIVENESS — comprehensive mobile/tablet polish
   ═══════════════════════════════════════════════════════════════ */

/* ── Safe-area-aware footer & fixed elements ── */
.site-footer .footer-bottom {
  padding-bottom: var(--safe-bottom, 0px);
}

.back-to-top {
  bottom: calc(18px + var(--safe-bottom, 0px));
}

.hostiny-chat-widget {
  bottom: calc(76px + var(--safe-bottom, 0px));
}

/* ── Smoother nav transitions with GPU promotion ── */
.nav-panel {
  will-change: transform, opacity;
}

.nav-overlay {
  will-change: opacity;
}

/* ── Better breadcrumb wrapping on small screens ── */
.breadcrumbs {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ── Ensure long text never overflows cards ── */
.pricing-card,
.plan-card,
.feature-card,
.hero-card,
.panel,
.dashboard-card,
.form-card,
.list-card,
.side-card,
.stat-card,
.testimonial,
.domain-card,
.ticket-message,
.payment-card,
.empty-state,
.order-item,
.ticket-row,
.transaction-row {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

/* ── Table horizontal scroll indicator ── */
.table-wrap {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 163, 255, 0.3) transparent;
}

/* ── Dropdown overflow prevention ── */
.menu-panel {
  max-height: 70vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ── Sidebar links: ensure adequate touch targets ── */
.sidebar-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ── Chat widget safe area on mobile ── */
@media (max-width: 720px) {
  .hostiny-chat-widget {
    bottom: calc(14px + var(--safe-bottom, 0px));
  }

  .back-to-top {
    bottom: calc(14px + var(--safe-bottom, 0px));
    inset-inline-end: 14px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .hostiny-chat-launcher {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .hostiny-chat-panel {
    width: min(320px, calc(100vw - 20px));
    margin-bottom: 10px;
    border-radius: 16px;
  }
}

/* ── Prevent chat widget & back-to-top overlap ── */
@media (max-width: 480px) {
  .back-to-top {
    bottom: calc(70px + var(--safe-bottom, 0px));
  }
}

/* ── 600-980px Tablet portrait: better intermediate layout ── */
@media (min-width: 601px) and (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-grid > .footer-card:first-child {
    grid-column: 1 / -1;
  }

  .dashboard-shell {
    padding: 24px 0 48px;
  }
}

/* ── Smooth scroll-snap for horizontal scrollers on touch ── */
@media (hover: none) and (pointer: coarse) {
  .segment-control {
    scroll-snap-type: x proximity;
  }

  .segment-chip {
    scroll-snap-align: start;
  }

  .mobile-compare-rail {
    scroll-snap-type: x mandatory;
  }

  .mobile-compare-card {
    scroll-snap-align: center;
  }

  .pricing-card:hover {
    transform: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  }

  .pricing-card.featured:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
  }
}

/* ── Dashboard sidebar horizontal scroll on very narrow tablets ── */
@media (max-width: 980px) {
  .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .dashboard-shell {
    padding: 20px 0 40px;
  }

  .side-card {
    position: static;
  }
}

/* ── Ensure form buttons are full-width on mobile ── */
@media (max-width: 720px) {
  .form-card form > .btn,
  .side-card form > .btn,
  .list-card form > .btn,
  .auth-shell form > .btn,
  .payment-card form > .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .dashboard-head {
    gap: 12px;
  }

  .dashboard-head > div {
    min-width: 0;
  }

  .dashboard-head h1 {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    line-height: 1.4;
  }

  .page-hero {
    padding: 28px 0 18px;
  }

  .page-hero h1 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    line-height: 1.4;
  }

  .page-hero p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .auth-shell {
    width: min(480px, 100%);
  }
}

/* ── 480-720px: mid-phone refinements ── */
@media (min-width: 481px) and (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }
}

/* ── Copy chip responsive ── */
@media (max-width: 480px) {
  .copy-chip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .copy-chip .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Stat cards: prevent text overflow on tiny screens ── */
@media (max-width: 360px) {
  .stat-card strong,
  .money-value,
  .price-main {
    font-size: 1.4rem;
    word-break: break-all;
  }

  .stat-card {
    padding: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 16px));
  }
}

/* ── Payment timer responsive ── */
@media (max-width: 480px) {
  .payment-timer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }
}

/* ── Message thread: better mobile spacing ── */
@media (max-width: 720px) {
  .message-thread {
    gap: 10px;
  }

  .ticket-message {
    padding: 14px;
    border-radius: 16px;
  }

  .ticket-message p {
    line-height: 1.7;
  }
}

/* ── Reduce motion for users who prefer it ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-enhanced [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── High contrast mode support ── */
@media (forced-colors: active) {
  .btn {
    border: 2px solid currentColor;
  }

  .pricing-card,
  .plan-card,
  .feature-card,
  .panel,
  .hero-card {
    border: 2px solid currentColor;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS — restored from previous structured version
   ═══════════════════════════════════════════════════════════════════ */

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #44d7b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section badge ── */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(94, 163, 255, 0.1);
  border: 1px solid rgba(94, 163, 255, 0.2);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── Hero features (check items) ── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-feature-check {
  color: #44d7b6;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── Hero illustration: server rack ── */
.hero-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.server-rack {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(94, 163, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.server-unit {
  background: linear-gradient(180deg, #1a2744, #0f1b30);
  border: 1px solid rgba(94, 163, 255, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.server-lights {
  display: flex;
  gap: 8px;
}
.server-lights .light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.server-lights .light.green { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
.server-lights .light.blue { background: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
.server-lights .light.orange { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.server-lights .light.blink { animation: serverBlink 2s ease-in-out infinite; }
.server-lights .light.delay-1 { animation-delay: 0.5s; }
.server-lights .light.delay-2 { animation-delay: 1s; }

@keyframes serverBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.server-slots {
  display: flex;
  gap: 4px;
}
.server-slots span {
  width: 28px;
  height: 6px;
  background: rgba(94, 163, 255, 0.15);
  border-radius: 2px;
}

/* Floating badges on illustration */
.floating-badge {
  position: absolute;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(94, 163, 255, 0.25);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.badge-uptime {
  top: -10px;
  right: -10px;
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-speed {
  bottom: 50px;
  left: -10px;
  animation: badgeFloat 3s ease-in-out infinite 1.5s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Domain search section ── */
.domain-search-section {
  padding: 0 0 40px;
  margin-top: -20px;
}
.domain-search-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.domain-search-box h3 {
  margin: 0 0 8px;
}
.domain-search-form {
  margin-top: 20px;
}
.domain-input-group {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}
.domain-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  direction: ltr;
  text-align: left;
}
.domain-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.domain-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94, 163, 255, 0.15);
}
.domain-extensions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

/* ── CTA section ── */
.cta-section {
  padding: 60px 0;
}
.cta-box {
  background: linear-gradient(135deg, rgba(94, 163, 255, 0.12), rgba(68, 215, 182, 0.08));
  border: 1px solid rgba(94, 163, 255, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 16px 48px rgba(47, 125, 240, 0.1);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-box h2 {
  margin: 0 0 8px;
}

/* ── Stat counter animation ── */
.stats-animated .stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats-animated .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(94, 163, 255, 0.15);
}

/* ── Lead paragraph ── */
.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── Responsive: hero illustration ── */
@media (max-width: 768px) {
  .hero-illustration {
    display: none;
  }
  .hero-features {
    gap: 10px;
  }
  .hero-feature-item {
    font-size: 0.82rem;
  }
  .domain-input-group {
    flex-direction: column;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-grid .inline-actions {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
    gap: 8px;
  }
  .cta-box {
    padding: 24px;
  }
  .domain-search-box {
    padding: 20px;
  }
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-copy small {
  display: none;
  color: var(--muted);
  font-size: 0.76rem;
}

@media (min-width: 1720px) {
  .brand-copy small {
    display: block;
  }
}

.site-banner-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-banner-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-banner-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.home-hero {
  padding: 34px 0 54px;
}

.home-hero-shell,
.dashboard-quick-grid,
.guest-chat-hero-shell {
  display: grid;
  gap: 24px;
}

.home-hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
}

.home-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 1.5rem + 2vw, 4rem);
  line-height: 1.2;
}

.home-proof-grid,
.hero-curved-grid {
  display: grid;
  gap: 12px;
}

.home-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.home-proof-card,
.dashboard-quick-card,
.hero-curved-panel,
.guest-chat-card,
.dashboard-hero-card,
.dashboard-sidebar-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 30, 54, 0.95), rgba(12, 22, 39, 0.92));
  box-shadow: 0 26px 54px rgba(3, 8, 22, 0.18);
}

.home-proof-card {
  padding: 18px;
  border-radius: 22px;
  display: grid;
  gap: 8px;
}

.home-proof-card strong,
.dashboard-quick-card strong {
  font-size: 1rem;
}

.home-proof-card span,
.dashboard-quick-card span,
.price-note,
.payment-side-info span {
  color: var(--muted);
  font-size: 0.88rem;
}

.home-link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.home-link-row a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero-visual {
  position: relative;
}

.hero-logo-stage {
  position: relative;
  min-height: 540px;
  padding: 48px 32px;
  border-radius: 44px 44px 140px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 18%, rgba(94, 163, 255, 0.28), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(68, 215, 182, 0.24), transparent 30%),
    linear-gradient(160deg, rgba(19, 31, 56, 0.98), rgba(9, 17, 31, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 70px rgba(2, 8, 23, 0.22);
}

.hero-orbit {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: hostinySpin 18s linear infinite;
}

.orbit-one {
  width: 350px;
  height: 350px;
  inset-block-start: 34px;
  inset-inline-start: 72px;
}

.orbit-two {
  width: 460px;
  height: 460px;
  inset-block-start: 14px;
  inset-inline-start: 18px;
  animation-direction: reverse;
  animation-duration: 24s;
}

.hero-logo-core {
  position: absolute;
  inset-inline-start: 134px;
  inset-block-start: 110px;
  width: 240px;
  height: 240px;
  border-radius: 40% 60% 52% 48%;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 52px rgba(12, 24, 47, 0.34);
  animation: hostinyFloat 6s ease-in-out infinite;
}

.hero-logo-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34% 66% 58% 42%;
}

.hero-floating-card {
  position: absolute;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  background: rgba(9, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 5px;
}

.card-primary {
  inset-inline-end: 28px;
  inset-block-start: 76px;
}

.card-secondary {
  inset-inline-start: 34px;
  inset-block-end: 116px;
}

.hero-curved-panel {
  position: absolute;
  inset-inline-end: 28px;
  inset-block-end: 32px;
  width: min(100%, 330px);
  padding: 22px;
  border-radius: 34px 34px 90px 34px;
}

.hero-curved-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.hero-curved-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-curved-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.hero-curved-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.plan-card-topline,
.billing-switch,
.dashboard-identity-strip,
.payment-side-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-home-plans .plan-card {
  padding: 24px;
  border-radius: 26px;
}

.billing-switch {
  padding: 5px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.billing-switch-option {
  border: 0;
  min-width: 96px;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.billing-switch-option.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 125, 240, 0.24);
}

.products-page .pricing-toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.products-page .pricing-card {
  padding: 28px;
  gap: 22px;
}

.products-page .pricing-card-head,
.products-page .price-stack,
.products-page .resource-grid,
.products-page .benefit-strip,
.products-page .card-cta {
  gap: 16px;
}

.products-page .pricing-card-head p {
  min-height: auto;
}

.products-page .resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-page .card-cta {
  grid-template-columns: 1fr;
}

.products-page .card-purchase-form {
  width: 100%;
}

.price-note {
  line-height: 1.8;
}

.detail-billing-switch {
  margin-bottom: 14px;
}

.dashboard-hero-card,
.guest-chat-card,
.premium-payment-card,
.payment-form-card {
  border-radius: 28px;
}

.dashboard-hero-card {
  padding: 28px;
}

.dashboard-hero-actions,
.guest-chat-benefits,
.payment-side-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-layout {
  align-items: start;
}

.dashboard-identity-strip {
  margin-top: 16px;
  color: var(--muted);
}

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

.dashboard-quick-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
}

.dashboard-section-hero,
.dashboard-surface-card {
  border-radius: 28px;
}

.dashboard-summary-grid,
.dashboard-meta-grid {
  display: grid;
  gap: 14px;
}

.dashboard-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.dashboard-summary-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.dashboard-summary-card span,
.dashboard-summary-card small,
.dashboard-meta-grid span,
.dashboard-balance-chip {
  color: var(--muted);
}

.dashboard-summary-card strong {
  font-size: 1.25rem;
}

.dashboard-balance-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(68, 215, 182, 0.08);
  border: 1px solid rgba(68, 215, 182, 0.18);
  color: var(--accent);
  font-weight: 700;
}

.dashboard-sidebar-stack {
  display: grid;
  gap: 18px;
}

.dashboard-highlight-panel,
.dashboard-note-card {
  border-radius: 24px;
}

.dashboard-note-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-note-card strong {
  display: block;
  margin-bottom: 8px;
}

.dashboard-inline-actions {
  width: 100%;
  justify-content: stretch;
}

.dashboard-inline-actions .btn,
.dashboard-fullwidth-form,
.dashboard-fullwidth-form .btn {
  width: 100%;
}

.dashboard-rich-item {
  gap: 16px;
}

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

.dashboard-meta-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-meta-grid strong {
  display: block;
  margin-top: 4px;
}

.dashboard-table-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.table-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(94, 163, 255, 0.12);
  border: 1px solid rgba(94, 163, 255, 0.18);
}

.dashboard-message-thread {
  gap: 16px;
}

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

.dashboard-order-item {
  border-radius: 20px;
}

.dashboard-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.guest-chat-hero {
  padding-bottom: 56px;
}

.guest-chat-hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: start;
}

.guest-chat-benefits {
  margin-top: 18px;
}

.guest-chat-benefits span,
.payment-side-info div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guest-chat-logo {
  border-radius: 24px;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.2);
}

.premium-payment-card .stack > .panel,
.payment-form-card {
  border-radius: 24px;
}

.payment-summary-panel,
.payment-destination-panel,
.payment-trust-panel {
  position: relative;
  overflow: hidden;
}

.payment-summary-panel::before,
.payment-destination-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -30px -30px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(94, 163, 255, 0.14);
  filter: blur(4px);
}

.payment-form-card {
  padding: 28px;
}

@keyframes hostinyFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes hostinySpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .guest-chat-hero-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
    justify-content: space-between;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
    justify-content: flex-end;
  }

  .brand-copy {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(360px, calc(100vw - 18px));
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-items: stretch;
    justify-items: stretch;
    gap: 16px;
    background:
      linear-gradient(180deg, rgba(18, 31, 56, 0.98), rgba(8, 14, 24, 0.98)),
      rgba(8, 14, 24, 0.98);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 50px rgba(2, 8, 23, 0.35);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 65;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav-panel.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 60;
    background: rgba(3, 8, 18, 0.62);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-overlay.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 8px;
    margin-inline-start: 0;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 13px 16px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
    text-align: right;
  }

  .site-nav a.active {
    border-color: rgba(94, 163, 255, 0.2);
  }

  .nav-actions {
    margin-inline-start: 0;
    display: grid;
    gap: 10px;
  }

  .nav-actions > .btn,
  .nav-actions > .cart-chip,
  .nav-actions > .menu-wrap {
    width: 100%;
  }

  .nav-actions .btn,
  .nav-actions .cart-chip,
  .nav-actions .menu-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .menu-trigger {
    justify-content: space-between;
  }

  .menu-panel {
    position: static;
    top: auto;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }
}

@media (max-width: 1140px) and (min-width: 1041px) {
  .home-hero-shell {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    align-items: start;
    gap: 20px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.2rem, 1.5rem + 1.9vw, 3.4rem);
  }

  .hero-logo-stage {
    min-height: 470px;
    padding: 34px 22px;
    border-radius: 38px 38px 108px 38px;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
    inset-block-start: 28px;
    inset-inline-start: 44px;
  }

  .orbit-two {
    width: 388px;
    height: 388px;
    inset-block-start: 12px;
    inset-inline-start: 6px;
  }

  .hero-logo-core {
    inset-inline-start: 92px;
    inset-block-start: 92px;
    width: 210px;
    height: 210px;
  }

  .hero-floating-card {
    min-width: 152px;
    padding: 14px 16px;
  }

  .card-primary {
    inset-inline-end: 18px;
    inset-block-start: 58px;
  }

  .card-secondary {
    inset-inline-start: 22px;
    inset-block-end: 102px;
  }

  .hero-curved-panel {
    inset-inline-end: 18px;
    inset-block-end: 22px;
    width: min(100%, 286px);
    padding: 18px;
  }
}

@media (max-width: 1040px) {
  .home-hero-shell {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .hero-logo-stage {
    min-height: 480px;
  }
}

/* ─── Products desktop: prevent right overflow from RTL/LTR mixups ─── */
.products-page .products-list-section .container {
  overflow-x: clip;
}

.products-page .pricing-grid {
  box-sizing: border-box;
  width: 100%;
  padding-inline: 0;
  margin-inline: 0;
  max-width: min(1320px, 100%);
  margin-inline: auto;
  justify-content: center;
  grid-auto-flow: row;
}

.products-page .pricing-grid > * {
  min-width: 0;
}

@media (min-width: 992px) {
  .products-page .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .brand-copy {
    display: none;
  }

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

  .hero-logo-stage {
    min-height: auto;
    padding: 32px 22px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-logo-core {
    position: relative;
    inset: auto;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .orbit-one,
  .orbit-two {
    display: none;
  }

  .card-primary,
  .card-secondary,
  .hero-curved-panel {
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .products-page .pricing-toolbar,
  .site-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-meta-grid {
    grid-template-columns: 1fr;
  }

  .site-banner-close {
    align-self: center;
  }
}

@media (max-width: 767px) {
  .home-hero-copy h1 {
    font-size: clamp(1.7rem, 1.3rem + 2vw, 2.5rem);
  }

  .hero-curved-grid,
  .products-page .resource-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-hero-actions,
  .payment-side-info {
    flex-direction: column;
  }

  .dashboard-summary-grid,
  .dashboard-quick-grid {
    grid-template-columns: 1fr;
  }

  .payment-form-card,
  .dashboard-hero-card,
  .featured-home-plans .plan-card {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .billing-switch {
    width: 100%;
  }

  .billing-switch-option {
    flex: 1 1 0;
  }

  .site-banner-text {
    font-size: 0.82rem;
  }
}

/* Frontend layout cleanup */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
  width: 100%;
}

.site-footer {
  margin-top: clamp(32px, 5vw, 72px);
}

.inline-actions-center {
  justify-content: center;
}

.section-actions {
  margin-top: 18px;
}

.home-faq-actions,
.auth-switch-note {
  margin-top: 16px;
}

.faq-help-panel {
  margin-top: 24px;
}

.domain-result-card {
  margin-top: 20px;
}

.domain-result-table {
  margin-top: 12px;
}

.payment-card-owner {
  margin-top: 8px;
}

.order-status-meta {
  margin-top: 10px;
}

.cart-summary-actions {
  margin-top: 12px;
}

.featured-home-plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.featured-home-plans .plan-card {
  height: 100%;
}

.cta-actions {
  justify-content: flex-end;
  align-self: center;
}

.contact-main-grid {
  align-items: start;
}

.contact-form-card form,
.contact-overview-card,
.contact-support-card {
  display: grid;
  gap: 16px;
}

.contact-overview-card {
  align-content: start;
}

.contact-overview-note {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(94, 163, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(94, 163, 255, 0.08), rgba(68, 215, 182, 0.05)),
    rgba(255, 255, 255, 0.03);
}

.contact-overview-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-overview-note p,
.contact-support-card p {
  margin: 0;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.contact-support-card {
  height: 100%;
  align-content: start;
}

.support-card-actions {
  margin-top: auto;
}

@media (max-width: 1200px) {
  .featured-home-plans,
  .contact-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .featured-home-plans,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: stretch;
    align-self: stretch;
  }
}

@media (max-width: 720px) {
  .contact-support-grid {
    margin-top: 18px;
    gap: 18px;
  }

  .contact-overview-note {
    padding: 16px;
  }

  .support-card-actions .btn,
  .contact-support-card .btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVENESS & UI ENHANCEMENT PATCH
   ═══════════════════════════════════════════════════════════ */

/* ─── Navbar: prevent overlap/collapse on mid-range screens ─── */
@media (min-width: 981px) and (max-width: 1280px) {
  .nav-shell {
    gap: 10px;
  }

  .nav-panel {
    gap: 8px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.88rem;
    min-height: 42px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn-sm,
  .nav-actions .cart-chip,
  .nav-actions .menu-trigger {
    padding: 8px 10px;
    font-size: 0.88rem;
    min-height: 42px;
  }

  .brand {
    padding: 6px 8px;
    gap: 8px;
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .brand-copy {
    display: none;
  }

  .site-nav a {
    padding: 8px 8px;
    font-size: 0.84rem;
  }
}

/* ─── Mobile nav: ensure clean separation, no overlap ─── */
@media (max-width: 980px) {
  .nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 64px);
    justify-content: flex-start;
    order: 1;
  }

  .nav-toggle {
    order: 2;
    flex-shrink: 0;
  }

  .nav-panel {
    order: 3;
  }
}

/* ─── Product Page: professional billing toggle inside cards ─── */
.pricing-card .card-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  margin: 0 auto 4px;
  width: 100%;
  max-width: 260px;
}

.pricing-card .card-billing-toggle .toggle-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.pricing-card .card-billing-toggle .toggle-label.active-label {
  color: var(--text);
  font-weight: 600;
}

.pricing-card .card-billing-toggle .toggle-track {
  position: relative;
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.pricing-card .card-billing-toggle .toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(47, 125, 240, 0.3);
  transition: inset-inline-start 0.25s ease, transform 0.25s ease;
}

.pricing-card .card-billing-toggle .toggle-track[aria-checked="true"]::after {
  inset-inline-start: 25px;
}

.pricing-card .card-billing-toggle .toggle-track[aria-checked="true"] {
  background: rgba(68, 215, 182, 0.18);
  border-color: rgba(68, 215, 182, 0.28);
}

.pricing-card .card-billing-toggle .toggle-track[aria-checked="true"]::after {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(68, 215, 182, 0.3);
}

/* ─── Products page: better card grid spacing ─── */
.products-page .pricing-grid {
  gap: 24px;
}

.products-page .pricing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-page .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

/* ─── Homepage: enhanced hero section ─── */
.home-hero {
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(28px, 5vw, 56px);
}

.home-hero-copy h1 {
  line-height: 1.35;
  margin-bottom: 12px;
}

.home-hero-copy .lead {
  color: var(--muted);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.08rem);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ─── Homepage: feature cards hover lift ─── */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(94, 163, 255, 0.18);
}

/* ─── Homepage: stat cards pulse ─── */
.stat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

/* ─── CTA section polish ─── */
.cta-box {
  border-radius: 24px;
  overflow: hidden;
}

/* ─── Homepage plan cards: equal height ─── */
.featured-home-plans .plan-card {
  display: flex;
  flex-direction: column;
}

.featured-home-plans .plan-card .inline-actions {
  margin-top: auto;
  padding-top: 12px;
}

/* ─── Chat widget: enhanced styling ─── */
.hostiny-chat-launcher {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hostiny-chat-launcher:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(47, 125, 240, 0.32);
}

.hostiny-chat-launcher:active {
  transform: scale(0.96);
}

.hostiny-chat-panel {
  animation: chatPanelSlideIn 0.25s ease forwards;
}

@keyframes chatPanelSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hostiny-chat-panel-head {
  padding: 18px 20px;
}

.hostiny-chat-panel-head strong {
  font-size: 1.02rem;
}

.hostiny-chat-panel-body {
  padding: 18px 20px 20px;
}

.hostiny-chat-panel-body .inline-actions {
  gap: 10px;
}

/* ─── Better table responsiveness ─── */
@media (max-width: 600px) {
  .responsive-table thead {
    display: none;
  }

  .responsive-table tr {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .responsive-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.9rem;
  }

  .responsive-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted);
    margin-inline-end: 12px;
  }
}

/* ─── Better touch targets on mobile ─── */
@media (max-width: 768px) {
  .btn {
    min-height: 46px;
    padding: 12px 18px;
  }

  .btn-sm {
    min-height: 42px;
    padding: 10px 14px;
  }

  .faq-question {
    min-height: 48px;
    padding: 14px 16px;
  }
}

/* ─── Improved page hero responsiveness ─── */
@media (max-width: 520px) {
  .page-hero h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
    line-height: 1.35;
  }

  .page-hero p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .breadcrumbs {
    font-size: 0.82rem;
  }
}

/* ─── Guest chat page responsiveness ─── */
@media (max-width: 980px) {
  .guest-chat-hero-shell {
    grid-template-columns: 1fr;
  }

  .guest-chat-card {
    order: -1;
  }
}

.guest-chat-benefits span::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.guest-chat-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: contain;
  margin: 0 auto 8px;
}

/* ─── Footer responsiveness ─── */
@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-row {
    text-align: center;
    font-size: 0.84rem;
  }
}

/* ─── Profile form: phone number field ─── */
.phone-field-note {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 0 0;
  line-height: 1.6;
}

.field-group .field-optional-badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  margin-inline-start: 6px;
  vertical-align: middle;
}

/* ─── Smooth page transitions ─── */
.site-main {
  animation: fadeInContent 0.3s ease;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Improved alert styling ─── */
.alert.success {
  background: rgba(103, 231, 160, 0.12);
  border: 1px solid rgba(103, 231, 160, 0.2);
  color: var(--success);
}

.alert.error {
  background: rgba(255, 126, 148, 0.12);
  border: 1px solid rgba(255, 126, 148, 0.2);
  color: var(--danger);
}

.alert.warning {
  background: rgba(255, 199, 107, 0.12);
  border: 1px solid rgba(255, 199, 107, 0.2);
  color: var(--warning);
}

.alert.info {
  background: rgba(94, 163, 255, 0.12);
  border: 1px solid rgba(94, 163, 255, 0.2);
  color: var(--primary);
}

/* ─── Comparison note on products page ─── */
.comparison-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.comparison-note strong {
  display: block;
  margin-bottom: 4px;
}

.comparison-note p {
  margin: 0;
}

@media (max-width: 720px) {
  .comparison-note {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px;
    gap: 14px;
  }

  .comparison-note .btn {
    width: 100%;
  }
}

/* ─── Ultra-small screens (320px) ─── */
@media (max-width: 360px) {
  .container {
    width: calc(100% - 16px);
  }

  .nav-shell {
    min-height: 64px;
    gap: 8px;
    padding: 10px 0;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .brand {
    padding: 4px 6px;
    gap: 6px;
  }

  .site-logo {
    max-height: 32px;
  }

  .form-card {
    padding: 20px 16px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

/* ─── Landscape phone corrections ─── */
@media (orientation: landscape) and (max-height: 440px) {
  .nav-panel {
    height: 100vh;
    height: 100dvh;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

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

/* ─── Print improvements ─── */
@media print {
  .site-header,
  .site-footer,
  .hostiny-chat-widget,
  .back-to-top,
  .nav-toggle,
  .site-banner {
    display: none !important;
  }

  .site-main {
    animation: none;
  }
}

/* ─── Dashboard sidebar responsive ─── */
@media (max-width: 980px) {
  .dashboard-sidebar-card {
    order: -1;
  }

  .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-links a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

/* ═══════════════════════════════════════════════════════════
   FINAL RESPONSIVENESS & UI POLISH — 2025-06
   ═══════════════════════════════════════════════════════════ */

/* ─── Navbar: tighten further for 981-1060px to prevent overlap ─── */
@media (min-width: 981px) and (max-width: 1060px) {
  .site-nav a {
    padding: 7px 6px;
    font-size: 0.82rem;
  }

  .nav-actions .btn-sm {
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  .nav-actions .cart-chip {
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}

/* ─── Pricing card: responsive resource grid ─── */
@media (max-width: 480px) {
  .resource-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .pricing-card-head h2 {
    font-size: 1.1rem;
  }

  .pricing-card-head p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .card-billing-toggle {
    max-width: 100% !important;
  }

  .price-amount {
    font-size: 1.6rem;
  }

  .card-cta {
    flex-direction: column;
    gap: 10px;
  }

  .card-cta .btn,
  .card-cta-link,
  .card-cta-link-primary {
    width: 100%;
    text-align: center;
  }
}

/* ─── Product detail page: purchase panel responsiveness ─── */
@media (max-width: 980px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .purchase-panel {
    position: static;
    width: 100%;
  }

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

@media (max-width: 520px) {
  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-micro-stats {
    flex-direction: column;
    gap: 6px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .feature-pill-list {
    gap: 8px;
  }

  .feature-pill {
    font-size: 0.82rem;
    padding: 6px 12px;
  }

  .hero-value-strip {
    grid-template-columns: 1fr;
  }

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

/* ─── Contact page: full-width form & info on mobile ─── */
@media (max-width: 520px) {
  .field-row {
    flex-direction: column;
    gap: 14px;
  }

  .field-group {
    width: 100%;
  }
}

/* ─── FAQ page: answer readability ─── */
.faq-answer {
  line-height: 1.9;
}

@media (max-width: 520px) {
  .faq-question span {
    font-size: 0.92rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
}

/* ─── Dashboard: profile card on small screens ─── */
@media (max-width: 520px) {
  .dashboard-profile-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .dashboard-avatar {
    margin: 0 auto;
  }

  .wallet-balance-card {
    text-align: center;
  }
}

/* ─── Dashboard: orders table stacking ─── */
@media (max-width: 640px) {
  .dashboard-responsive-table thead {
    display: none;
  }

  .dashboard-responsive-table tr {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dashboard-responsive-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.88rem;
  }

  .dashboard-responsive-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted);
    margin-inline-end: 12px;
    flex-shrink: 0;
  }
}

/* ─── Auth pages: form card max-width ─── */
.auth-shell {
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 520px) {
  .auth-shell {
    max-width: 100%;
  }

  .auth-shell .form-card {
    padding: 20px 16px;
    border-radius: 18px;
  }
}

/* ─── Form controls: consistent focus styling ─── */
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(94, 163, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(94, 163, 255, 0.1);
  outline: none;
}

/* ─── Homepage: gradient text glow on hover ─── */
.gradient-text {
  transition: filter 0.3s ease;
}

h1:hover .gradient-text,
h2:hover .gradient-text {
  filter: brightness(1.15);
}

/* ─── Homepage: section-badge refinement ─── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(94, 163, 255, 0.08);
  border: 1px solid rgba(94, 163, 255, 0.14);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ─── Homepage: proof cards hover ─── */
.home-proof-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  border-color: rgba(94, 163, 255, 0.14);
}

/* ─── Homepage: link row hover ─── */
.home-link-row a {
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-link-row a:hover {
  background: rgba(94, 163, 255, 0.1);
  border-color: rgba(94, 163, 255, 0.2);
  color: var(--text);
  transform: translateY(-1px);
}

/* ─── Homepage: CTA box enhancement ─── */
.cta-box {
  background:
    linear-gradient(135deg, rgba(94, 163, 255, 0.08), rgba(68, 215, 182, 0.06)),
    rgba(18, 30, 54, 0.95);
  border: 1px solid rgba(94, 163, 255, 0.12);
  padding: 32px;
}

.cta-grid {
  gap: 20px;
}

.cta-box h2 {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .cta-box {
    padding: 24px 20px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* ─── Homepage: testimonial cards polish ─── */
.testimonial {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

/* ─── Homepage: plan cards on mobile ─── */
@media (max-width: 520px) {
  .plan-card {
    padding: 20px 16px;
  }

  .plan-card h3 {
    font-size: 1.05rem;
  }

  .price-line {
    gap: 6px;
  }

  .price-main {
    font-size: 1.5rem;
  }
}

/* ─── Products page: metric badges responsive ─── */
@media (max-width: 720px) {
  .products-metric-strip {
    flex-direction: column;
    gap: 10px;
  }

  .metric-badge {
    width: 100%;
  }
}

/* ─── Products page: segment control scroll on narrow screens ─── */
@media (max-width: 520px) {
  .segment-control {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 4px;
  }

  .segment-control::-webkit-scrollbar {
    display: none;
  }

  .segment-chip {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.84rem;
    padding: 8px 12px;
  }
}

/* ─── Products page: mobile compare sheet ─── */
@media (max-width: 720px) {
  .mobile-compare-rail {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ─── Smooth scrolling ─── */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ─── Focus visible ring for accessibility ─── */
:focus-visible {
  outline: 2px solid rgba(94, 163, 255, 0.6);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(94, 163, 255, 0.6);
  outline-offset: 2px;
}

/* ─── Image responsiveness (global safety) ─── */
img {
  max-width: 100%;
  height: auto;
}

/* ─── Text selection styling ─── */
::selection {
  background: rgba(94, 163, 255, 0.3);
  color: #fff;
}

/* ─── Prevent horizontal overflow ─── */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* ─── Better scrollbar styling ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ─── Loading state for buttons ─── */
.btn.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* ─── Ticket detail: message thread on mobile ─── */
@media (max-width: 520px) {
  .ticket-message-card {
    padding: 14px;
  }

  .ticket-message-card p {
    font-size: 0.9rem;
    line-height: 1.85;
  }
}

/* ─── Cart page: items on mobile ─── */
@media (max-width: 640px) {
  .cart-item-card {
    flex-direction: column;
    gap: 12px;
  }

  .cart-item-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cart-item-actions .btn {
    flex: 1;
    text-align: center;
  }
}

/* ─── Payment page: card info on mobile ─── */
@media (max-width: 640px) {
  .payment-card-info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .payment-form-card {
    padding: 20px 16px;
  }
}

/* ─── Wallet page: responsive ─── */
@media (max-width: 520px) {
  .wallet-card {
    padding: 20px 16px;
  }

  .wallet-balance-display {
    font-size: 1.8rem;
  }
}

/* ─── Guest chat auth page: responsive ─── */
@media (max-width: 520px) {
  .guest-chat-card {
    padding: 20px 16px;
  }

  .guest-chat-card h2 {
    font-size: 1.1rem;
  }

  .guest-chat-benefits {
    gap: 10px;
  }
}

/* ─── Enhanced mobile navigation transition ─── */
@media (max-width: 980px) {
  .nav-panel {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s;
  }

  .nav-overlay {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* ─── Safe area insets for notched phones ─── */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .back-to-top {
    bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* ─── High-DPI screen refinements ─── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .pricing-card,
  .feature-card,
  .plan-card,
  .home-proof-card,
  .stat-card,
  .testimonial {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* ═══════════════════════════════════════════════════════════
   FINAL RESPONSIVE POLISH — card grids, hero visual, global
   ═══════════════════════════════════════════════════════════ */

/* ─── Pricing grid: prevent overflow on very small screens ─── */
@media (max-width: 360px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Hero visual: proper flow on tablets (641-980px) ─── */
@media (max-width: 980px) {
  .hero-logo-stage {
    overflow: visible;
  }

  .hero-floating-card {
    min-width: 0;
    border-radius: 18px;
    padding: 14px 18px;
  }

  .hero-curved-panel {
    border-radius: 22px;
    padding: 20px;
  }

  .hero-curved-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

/* ─── Hero visual: stack curved-grid on phones ─── */
@media (max-width: 480px) {
  .hero-logo-core {
    width: 120px;
    height: 120px;
  }

  .hero-curved-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-curved-panel {
    padding: 16px;
  }

  .hero-floating-card {
    padding: 12px 14px;
  }

  .hero-floating-card strong {
    font-size: 0.92rem;
  }
}

/* ─── Plan cards: ensure equal-height flex on all grids ─── */
.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card .inline-actions {
  margin-top: auto;
  padding-top: 12px;
}

/* ─── Pricing cards: flex column for equal-height CTAs ─── */
.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card .card-cta {
  margin-top: auto;
}

/* ─── Feature cards: equal-height flex layout ─── */
.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card p {
  margin-top: auto;
}

/* ─── Homepage hero copy: tighter spacing after text removal ─── */
.home-hero-copy h1 {
  margin-bottom: 20px;
}

.hero-actions {
  margin-bottom: 20px;
}

/* ─── Products page hero: tighter spacing after badge removal ─── */
.products-page .pricing-hero-card h1 {
  margin-bottom: 8px;
}

.products-page .pricing-hero-card > .muted {
  margin-bottom: 16px;
}

/* ─── Tablet: home hero single-column centering ─── */
@media (max-width: 1040px) {
  .home-hero-copy {
    text-align: center;
  }

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

  .home-link-row {
    justify-content: center;
  }

  .home-proof-grid {
    max-width: 480px;
    margin-inline: auto;
  }
}
/* Updated: Wed Apr 29 02:58:39 +0330 2026 */
