:root {
  --bg: #fbfcff;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --soft: #f4f7fb;
  --line: #e3e9f2;
  --blue: #0b73df;
  --blue-dark: #075fb8;
  --orange: #ff6b12;
  --green: #16a668;
  --red: #cf2f3a;
  --shadow: 0 18px 46px rgba(15, 32, 56, 0.1);
  --radius: 8px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  src: url("/assets/fonts/fontawesome/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("/assets/fonts/fontawesome/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

.fa-brands,
.fa-solid {
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-style: normal;
  line-height: 1;
}

.fa-brands { font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.fa-solid { font-family: "Font Awesome 6 Free"; font-weight: 900; }
.fa-instagram::before { content: "\f16d"; }
.fa-facebook::before { content: "\f09a"; }
.fa-tiktok::before { content: "\e07b"; }
.fa-youtube::before { content: "\f167"; }
.fa-x-twitter::before { content: "\e61f"; }
.fa-linkedin::before { content: "\f08c"; }
.fa-whatsapp::before { content: "\f232"; }
.fa-telegram::before { content: "\f2c6"; }
.fa-twitch::before { content: "\f1e8"; }
.fa-discord::before { content: "\f392"; }
.fa-pinterest::before { content: "\f0d2"; }
.fa-reddit::before { content: "\f1a1"; }
.fa-snapchat::before { content: "\f2ab"; }
.fa-threads::before { content: "\e618"; }
.fa-bolt::before { content: "\f0e7"; }

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #fbfcff 420px, #ffffff 100%);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.promo-bar {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 20px;
  color: #fff;
  background: linear-gradient(100deg, #9333ea 0%, #d22a91 52%, #ff3d34 100%);
  font-size: 14px;
  font-weight: 850;
}

.promo-bar a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.13);
}

.promo-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0;
}

.promo-icon::before {
  content: "\2726";
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 0 max(28px, calc((100vw - 1360px) / 2 + 28px));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(227, 233, 242, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: 235px;
  min-width: 210px;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  font-size: 13px;
  font-weight: 700;
  scrollbar-width: none;
}

.site-header nav::-webkit-scrollbar { display: none; }

.site-header nav a {
  color: #1e2b3f;
  padding: 10px 0;
}

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

.mobile-platform-menu {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.cart-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d4e2f2;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  font-size: 0;
  box-shadow: 0 8px 18px rgba(15, 32, 56, 0.04);
}

.cart-link::before {
  content: "";
  width: 18px;
  height: 16px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  box-shadow: inset 0 5px 0 -3px currentColor;
}

.login-link {
  color: #1e2b3f;
  font-size: 14px;
  font-weight: 800;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(11, 115, 223, 0.18);
}

.btn.secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: #c9dcf4;
}

.btn.checkout {
  width: 100%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 107, 18, 0.24);
}

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

main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px 70px;
}

.hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 640px;
  align-items: center;
  gap: 70px;
  min-height: 460px;
  padding: 56px 0 34px;
}

.hero h1,
.product-hero h1,
.tool-page h1,
.admin-page h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 strong,
.product-hero h1 strong { color: var(--blue); }

.hero p,
.product-hero p,
.tool-page > p,
.admin-page > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
  max-width: 760px;
}

.trust-row span {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 92px;
  padding: 8px 10px;
  color: #1d2a3b;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #d8e8fb;
  border-radius: 10px;
  color: var(--blue);
  font-size: 18px;
}

.trust-row span:nth-child(1)::before { content: "\2713"; }
.trust-row span:nth-child(2)::before { content: "\21bb"; }
.trust-row span:nth-child(3)::before { content: "30"; }
.trust-row span:nth-child(4)::before { content: "24"; }

.trust-row.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 760px; }

.network-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.panel-title {
  margin: 0 0 22px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 850;
}

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

.network-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 166px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.network-card::before {
  content: attr(data-code);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 4px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b73df, #24c6dc);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.network-card[href*="instagram"]::before,
.network-card.active[href*="instagram"]::before { background: linear-gradient(135deg, #f43470, #783bff); }
.network-card[href*="tiktok"]::before { background: #101828; }
.network-card[href*="youtube"]::before { background: #f01822; }

.network-card span {
  font-size: 20px;
  font-weight: 850;
}

.network-card small {
  max-width: 140px;
  color: var(--muted);
  font-size: 13px;
}

.network-card.active {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(11, 115, 223, 0.55), 0 12px 28px rgba(11, 115, 223, 0.12);
}

.rating-strip {
  margin-top: 18px;
  padding: 14px 10px 0;
  color: #475467;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.rating-strip::before {
  content: "*****";
  margin-right: 10px;
  color: #ff8a00;
  letter-spacing: 0;
}

.live-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  min-height: 64px;
  margin: 8px 0 36px;
  padding: 0 20px;
  background: #eaf4ff;
  border: 1px solid #d4e8ff;
  border-radius: var(--radius);
  color: #1d2a3b;
  white-space: nowrap;
  font-size: 14px;
}

.live-strip strong {
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

.live-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #18b26b;
}

.live-strip b {
  font-weight: 900;
}

.conversion-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -16px 0 38px;
}

.conversion-band article {
  display: grid;
  gap: 7px;
  min-height: 102px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 56, 0.06);
}

.conversion-band strong {
  color: #17243a;
  font-size: 16px;
  line-height: 1.15;
}

.conversion-band span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin: 0 6px;
  border: 1px solid rgba(18, 36, 58, 0.12);
  border-radius: 2px;
  vertical-align: -1px;
  box-shadow: 0 1px 2px rgba(15, 32, 56, 0.08);
}

.flag.es {
  background: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.purchase-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 640px;
  min-height: 58px;
  margin: 8px auto 22px;
  color: #24324a;
  font-size: 14px;
  font-weight: 850;
}

.proof-stars {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.proof-stars span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #35c985;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.proof-delivery {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  color: #08664a;
  background: #dff8ed;
}

.proof-delivery::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #19cf84;
  box-shadow: 0 0 0 6px rgba(25, 207, 132, 0.13);
}

.proof-time,
.proof-pay {
  color: #475467;
  padding-left: 20px;
  border-left: 1px solid #d8e1ec;
}

.product-hero .crumb,
.hero-mini-card { display: none; }

.landing-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
}

.landing-title::before {
  content: attr(data-platform-code);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #f43470, #783bff);
  font-size: 12px;
  font-weight: 900;
}

.landing-title h1,
.landing-title h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.order-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.steps {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 0;
  padding-top: 14px;
}

.steps span {
  position: relative;
  min-height: 78px;
  padding: 0 0 0 44px;
  border: 0;
  background: transparent;
  color: #667085;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}

.steps span::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e7edf6;
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.steps { counter-reset: step; }

.steps span::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 34px;
  bottom: 8px;
  width: 2px;
  background: #e7edf6;
}

.steps span:last-child::after { display: none; }
.steps span.active { color: var(--blue); }
.steps span.active::before { background: var(--blue); color: #fff; }
.steps span:hover,
.steps span:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateX(2px);
}
.steps span[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .55;
}
.steps span[aria-disabled="true"]:hover,
.steps span[aria-disabled="true"]:focus-visible {
  transform: none;
}

.order-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.builder-card,
.summary-card,
.tool-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15, 32, 56, 0.08);
}

.builder-card {
  display: flex;
  flex-direction: column;
}

.lookup-section { order: 1; }
.media-section { order: 2; }
.quantity-section { order: 3; }
.extras-section { order: 4; }

.builder-section {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.builder-section:last-child { border-bottom: 0; }

.section-label {
  margin-bottom: 18px;
  color: #1d2a3b;
  font-size: 16px;
  font-weight: 850;
}

.tier-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}

.tier,
.preset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #1d2a3b;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.tier {
  min-height: 40px;
  padding: 0 18px;
  box-shadow: 0 8px 18px rgba(15, 32, 56, 0.04);
}

.tier.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.preset {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 104px;
  padding: 18px 10px;
  background: #fff;
}

.preset em {
  align-self: start;
  padding: 4px 7px;
  border-radius: 5px;
  background: #fff4ec;
  color: #cf5208;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.preset span {
  font-size: 20px;
  line-height: 1;
}

.preset small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.preset.active {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue), 0 12px 24px rgba(11, 115, 223, 0.12);
}

.preset.active em {
  background: #e8f2ff;
  color: var(--blue-dark);
}

.preset.active small { color: var(--blue-dark); }

.quantity-control {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: #1d2a3b;
  font-size: 14px;
  font-weight: 800;
}

.quantity-control input,
.lookup-row input,
.manual-url input,
.summary-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d4dce8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

#quantityRange {
  width: 100%;
  margin-top: 18px;
  accent-color: var(--blue);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid #dfe8f5;
  border-radius: var(--radius);
  background: #f8fbff;
}

.benefit-strip span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.benefit-strip strong {
  color: #1d2a3b;
  font-size: 12px;
}

.benefit-strip small {
  color: var(--muted);
  font-size: 11px;
}

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

.lookup-row.wide { margin: 22px 0; }

.help-text,
.secure-note {
  color: var(--muted);
  font-size: 13px;
}

.profile-result { margin-top: 16px; }

.pending-confirmation {
  border-color: #b8d5ff;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.confirm-account-box {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #c9dcf5;
  border-radius: 8px;
  background: #fff;
}

.confirm-account-box strong {
  color: #0f172a;
  font-size: 16px;
}

.confirm-account-box p {
  margin: 0;
  color: #53627a;
}

.confirm-account-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.confirmed-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 10px;
  padding: 0 9px;
  border-radius: 999px;
  background: #e3f8ef;
  color: #08754d;
  font-size: 11px;
  font-weight: 900;
  vertical-align: middle;
}

.private-block strong {
  display: block;
  margin-bottom: 4px;
}

.profile-loading {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #d7e6f7;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #f8fbff, #ffffff, #f8fbff);
}

.profile-loading span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(110deg, #e8f1fb 8%, #ffffff 18%, #e8f1fb 33%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.profile-loading strong {
  display: block;
  color: #102033;
  font-size: 14px;
}

.profile-loading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-loading-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.profile-loading-steps em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #0f5132;
  background: #e9fbe9;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.profile-loading-steps em::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}

@keyframes shimmer {
  to { background-position-x: -200%; }
}

.profile-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.profile-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5a7a 0%, #8a45ff 48%, #0b73df 100%);
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.76);
}

.profile-card strong { display: block; }
.profile-card p { margin: 6px 0; color: var(--muted); }

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #1d2a3b;
  font-size: 13px;
  font-weight: 750;
}

.followers-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.followers-stat b {
  font-weight: 950;
}

.boost-followers-btn {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #b9d8ff;
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 115, 223, 0.08);
}

.boost-followers-btn:hover,
.boost-followers-btn:focus-visible {
  background: var(--blue);
  color: #fff;
}

.alert-box {
  padding: 14px;
  border: 1px solid #f1c4c8;
  border-radius: var(--radius);
  background: #fff4f5;
  color: #8c1f28;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-height: 180px;
}

.media-grid.empty {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 30px;
  border: 1px dashed #cbd6e4;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--muted);
  text-align: center;
}

.media-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(135deg, hsl(var(--media-hue, 335) 92% 62%) 0%, #8a45ff 50%, #0b73df 100%);
  cursor: pointer;
}

.media-item img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.media-item.has-image img { opacity: 1; }

.media-item em {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 4px;
  place-items: center;
  align-content: center;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media-item em small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.media-item.has-image em { display: none; }

.media-item.selected {
  border-color: var(--blue);
  box-shadow: 0 10px 18px rgba(11, 115, 223, 0.16);
}

.media-item span {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue);
  font-weight: 900;
}

.visual-media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  min-height: 0;
}

#analysisSuggestions,
.analysis-suggestions {
  display: grid;
  gap: 12px;
  margin: 14px 0 18px;
}

.analyzer-head {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid #d7e6f7;
  border-radius: var(--radius);
  background: #f7fbff;
}

.analyzer-head span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.analyzer-head strong {
  color: #102033;
  font-size: 14px;
}

.analyzer-list {
  display: grid;
  gap: 10px;
}

.analyzer-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #ffd4ba;
  border-radius: 10px;
  background: #fff8f2;
}

.analyzer-card img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.analyzer-card strong {
  display: block;
  color: #102033;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analyzer-card p {
  margin: 4px 0 0;
  color: #715946;
  font-size: 12px;
}

.analyzer-card button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.media-card {
  overflow: hidden;
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 34, 58, 0.06);
}

.media-card.selected {
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(11, 115, 223, 0.16);
}

.media-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.65), transparent 24%),
    linear-gradient(135deg, hsl(var(--media-hue, 335) 92% 62%) 0%, #8a45ff 50%, #0b73df 100%);
  cursor: pointer;
}

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

.media-kind,
.selected-mark {
  position: absolute;
  z-index: 2;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: #102033;
  font-size: 11px;
  font-weight: 900;
}

.media-kind {
  left: 8px;
  top: 8px;
  padding: 5px 7px;
}

.selected-mark {
  right: 8px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.media-card:not(.selected) .selected-mark {
  background: rgba(15, 35, 58, 0.82);
  color: #fff;
}

.media-caption {
  min-height: 44px;
  padding: 10px 10px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.media-controls {
  display: grid;
  gap: 8px;
  padding: 8px;
}

.media-card:not(.selected) .media-controls { display: none; }

.metric-control {
  display: grid;
  gap: 7px;
  color: #1d2a3b;
  font-size: 12px;
  font-weight: 850;
  min-width: 0;
}

.metric-label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-label i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.metric-label i[data-icon]::before { content: attr(data-icon); }

.qty-stepper {
  display: grid;
  grid-template-columns: 28px minmax(58px, 1fr) 28px;
  gap: 4px;
}

.qty-step,
.cart-remove {
  border: 1px solid #d3dfed;
  border-radius: 7px;
  background: #fff;
  color: #16314f;
  font-weight: 950;
  cursor: pointer;
}

.qty-step { min-height: 30px; }

.metric-input {
  min-width: 0;
  height: 30px;
  border: 1px solid #d3dfed;
  border-radius: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.comment-options {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 8px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: #f8fbff;
}

.comment-mode-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.comment-mode-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1d2a3b;
  font-size: 11px;
  font-weight: 850;
}

.comment-mode-row input {
  accent-color: var(--blue);
}

.comment-textarea {
  width: 100%;
  resize: vertical;
  padding: 9px 10px;
  border: 1px solid #d3dfed;
  border-radius: 7px;
  color: #102033;
  font-size: 12px;
  line-height: 1.35;
}

.manual-line-controls { margin-top: 12px; }

.manual-cart-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dbe6f3;
  border-radius: var(--radius);
  background: #f8fbff;
}

.manual-cart-box strong {
  color: #102033;
  font-size: 13px;
}

.manual-cart-box p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.visual-cart {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.visual-cart.empty {
  padding: 14px;
  border: 1px dashed #cbd6e4;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--muted);
  font-size: 13px;
}

.visual-cart.empty p { margin: 0; }

.visual-cart-line {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  background: #fff;
}

.visual-cart-line img,
.cart-thumb-fallback {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-thumb-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f43470, #783bff 52%, #0b73df);
  color: #fff;
  font-weight: 950;
}

.visual-cart-line strong {
  display: block;
  color: #12243a;
  font-size: 12px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-cart-line p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.visual-cart-line p span {
  padding: 3px 6px;
  border-radius: 6px;
  background: #f2f7fd;
}

.cart-tier-select {
  display: inline-grid;
  gap: 5px;
  margin-top: 10px;
  color: #667085;
  font-size: 11px;
  font-weight: 850;
}

.cart-tier-select select {
  min-height: 34px;
  border: 1px solid #cddbeb;
  border-radius: 7px;
  background: #fff;
  color: #172033;
  font-size: 12px;
  font-weight: 850;
}

.cart-remove {
  width: 28px;
  height: 28px;
  color: #c54f05;
}

.cart-line-controls {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.manual-url,
.extras-section label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #1d2a3b;
  font-size: 14px;
  font-weight: 750;
}

.extras-section label {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 10px;
  font-weight: 650;
}

.extras-section input { accent-color: var(--blue); }

.summary-card {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.summary-card h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

.summary-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-card dt {
  float: left;
  color: var(--muted);
  font-size: 13px;
}

.summary-card dd {
  margin: 0 0 0 auto;
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.total-line strong {
  font-size: 32px;
  line-height: 1;
}

.suggestions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.suggestion {
  padding: 12px;
  border: 1px solid #f3d3bd;
  border-radius: var(--radius);
  background: #fff8f2;
}

.suggestion strong {
  display: block;
  color: #c54f05;
  font-size: 13px;
}

.suggestion p {
  margin: 4px 0 0;
  color: #6b5646;
  font-size: 12px;
}

.summary-card input { margin-bottom: 12px; }
.checkout-result { margin-top: 14px; }

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #d9e4f2;
  border-radius: var(--radius);
  background: #fff;
  color: #1d2a3b;
  font-size: 12px;
  font-weight: 800;
}

.payment-options input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  accent-color: var(--blue);
}

.support-card {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #d6e7fb;
  border-radius: var(--radius);
  background: #f5faff;
}

.support-card strong {
  display: block;
  color: #1d2a3b;
  font-size: 13px;
}

.support-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.sales-popups {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.sales-popup {
  position: relative;
  padding: 16px 42px 16px 16px;
  border: 1px solid #b9d8ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 48px rgba(15, 32, 56, 0.18);
  pointer-events: auto;
  animation: popupIn 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sales-popup button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border: 1px solid #d3dfed;
  border-radius: 6px;
  background: #fff;
  color: #c54f05;
  font-weight: 950;
  cursor: pointer;
}

.sales-popup .sales-popup-action {
  position: static;
  width: auto;
  height: 36px;
  margin-top: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b12, #ff985f);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 107, 18, 0.24);
}

.sales-popup span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.sales-popup strong {
  display: block;
  margin-top: 4px;
  color: #102033;
  font-size: 15px;
}

.sales-popup p {
  margin: 6px 0 0;
  color: #526174;
  font-size: 13px;
}

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

.success-box {
  padding: 14px;
  border: 1px solid #bde8d3;
  border-radius: var(--radius);
  background: #f0fff7;
  color: #11623e;
}

.section { padding: 76px 0 0; }

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

.section h2,
.split-band h2,
.content-seo h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0;
}

.section-head p,
.split-band p,
.content-seo p {
  max-width: 620px;
  color: var(--muted);
}

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

.service-grid.compact .service-card {
  min-height: 150px;
}

.service-card,
.feature-row article,
.faq-list details,
.review-grid article,
.trust-band article,
.status-summary article,
.status-line {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.service-card {
  display: grid;
  gap: 12px;
  min-height: 186px;
  padding: 24px;
}

.service-card span { color: var(--blue); font-weight: 850; }
.service-card h3 { margin: 0; font-size: 22px; }
.service-card p { margin: 0; color: var(--muted); }
.service-card strong { align-self: end; color: var(--blue); }

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.trust-band article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px 12px;
  min-height: 104px;
  padding: 18px;
}

.trust-band span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #d8e8fb;
  border-radius: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.trust-band strong { color: #1d2a3b; font-size: 14px; }
.trust-band p { margin: 0; color: var(--muted); font-size: 12px; }

.split-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
  margin-top: 76px;
  padding: 46px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

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

.mock-phone div {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #d9ecff, #fff 50%, #ffd9bf);
}

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

.feature-row article { padding: 22px; }
.feature-row h3 { margin: 0 0 10px; }
.feature-row p { margin: 0; color: var(--muted); }

.review-section .section-head a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

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

.review-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
}

.review-grid div {
  color: #18a957;
  letter-spacing: 0;
}

.review-grid p { margin: 0; color: #344054; font-size: 14px; }
.review-grid strong { align-self: end; color: #1d2a3b; }
.review-grid span { color: var(--muted); font-size: 12px; }

.content-seo { max-width: 1040px; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin-top: 24px;
  align-items: start;
}

.faq-list details { padding: 16px 18px; align-self: start; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 12px 0 0; }

.tool-page,
.admin-page { padding: 68px 0; }

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-topbar h1 { margin: 0 0 10px; }
.admin-topbar p { margin: 0; max-width: 760px; color: var(--muted); }

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.admin-card {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 32, 56, 0.08);
}

.admin-card strong { color: var(--ink); font-size: 18px; }
.admin-card span { color: var(--muted); line-height: 1.45; }

.tool-card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
}

.calculator-card {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.7fr;
  gap: 14px;
  max-width: 920px;
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15, 32, 56, 0.08);
}

.calculator-card label {
  display: grid;
  gap: 8px;
  color: #1d2a3b;
  font-size: 13px;
  font-weight: 850;
}

.calculator-card input,
.calculator-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d4dce8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.calculator-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid #d8e8fb;
  border-radius: var(--radius);
  background: #f5faff;
}

.calculator-result span { color: var(--muted); font-size: 13px; }
.calculator-result strong { font-size: 34px; }
.calculator-result p { grid-column: 1 / -1; margin: 0; color: var(--muted); }

.calculator-card .btn {
  justify-self: start;
}

.admin-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.admin-table th {
  background: #f3f7fc;
  color: #26364f;
}

.status-page { padding: 68px 0; }

.status-page h1 {
  margin: 16px 0 24px;
  font-size: clamp(34px, 5vw, 58px);
}

.status-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.status-summary article {
  padding: 18px;
}

.status-summary span,
.status-line span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.status-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.status-lines {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.status-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
  padding: 20px;
}

.status-line strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.status-line p {
  overflow-wrap: anywhere;
  color: var(--muted);
}

.status-line dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 0;
}

.status-line dt { color: var(--muted); font-size: 12px; }
.status-line dd { margin: 0; text-align: right; font-size: 12px; font-weight: 850; }

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
  padding: 66px 0 34px;
}

.blog-hero h1,
.article-page h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.blog-hero p,
.article-page header p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legacy-kpis,
.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.legacy-kpis span,
.admin-kpis span,
.import-note,
.empty-state {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 56, 0.06);
}

.legacy-kpis strong,
.admin-kpis strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
}

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

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

.blog-card a {
  display: grid;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 32, 56, 0.06);
}

.blog-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.blog-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card strong {
  align-self: end;
  margin-top: 22px;
  color: var(--orange);
}

.article-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 58px 0 20px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 850;
}

.article-page header span,
.article-meta span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.article-content {
  margin-top: 40px;
  color: #1d2a3b;
  font-size: 18px;
  line-height: 1.72;
}

.article-content h2,
.article-content h3 {
  margin: 38px 0 12px;
  color: var(--ink);
  line-height: 1.15;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.article-content a { color: var(--blue); font-weight: 750; }

.article-cta {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid #ffd6bd;
  border-radius: var(--radius);
  background: #fff7f1;
}

.article-cta strong {
  font-size: 22px;
}

.article-cta p {
  margin: 0;
  color: var(--muted);
}

.article-cta .btn {
  justify-self: start;
}

.seo-playbook,
.seo-comparison {
  display: grid;
  gap: 24px;
}

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

.seo-copy-grid article,
.seo-comparison,
.seo-points span {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 56, 0.06);
}

.seo-copy-grid article {
  padding: 24px;
}

.seo-copy-grid h3,
.seo-comparison h2 {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
}

.seo-copy-grid p,
.seo-comparison p {
  margin: 0 0 14px;
  color: #344054;
  font-size: 16px;
  line-height: 1.68;
}

.seo-copy-grid p:last-child,
.seo-comparison p:last-child { margin-bottom: 0; }

.seo-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: #344054;
  line-height: 1.6;
}

.seo-steps strong {
  color: var(--blue);
}

.seo-comparison {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  padding: 30px;
}

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

.seo-points span {
  display: grid;
  gap: 7px;
  padding: 16px;
  box-shadow: none;
}

.seo-points strong {
  color: var(--ink);
  font-size: 16px;
}

.seo-points small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.landing-title p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #526174;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.landing-seo-intro,
.landing-image-band,
.landing-use-cases,
.landing-keyword-cloud,
.landing-faq-depth {
  scroll-margin-top: 110px;
}

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

.landing-research-grid article,
.landing-image-card,
.use-case-grid article,
.landing-keyword-cloud,
.mistake-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 32, 56, 0.07);
}

.landing-research-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.landing-research-grid span,
.use-case-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-research-grid strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.landing-research-grid p,
.use-case-grid p,
.landing-keyword-cloud p {
  margin: 0;
  color: #344054;
  line-height: 1.6;
}

.landing-image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-image-card {
  overflow: hidden;
  margin: 0;
}

.landing-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: #f8fbff;
}

.landing-image-card figcaption {
  min-height: 72px;
  padding: 16px 18px;
  color: #344054;
  font-size: 14px;
  line-height: 1.45;
}

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

.use-case-grid article {
  padding: 22px;
}

.use-case-grid h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.landing-advice {
  align-items: start;
}

.mistake-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px 22px 22px 42px;
  color: #344054;
  line-height: 1.62;
}

.mistake-list strong {
  color: #c54f05;
}

.landing-keyword-cloud {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.landing-keyword-cloud h2 {
  margin: 0 0 12px;
}

.landing-keyword-cloud div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-keyword-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d7e7fb;
  border-radius: 999px;
  background: #f6fbff;
  color: #183b6d;
  font-size: 13px;
  font-weight: 850;
}

.product-review-section .review-grid article {
  min-height: 250px;
}

.legacy-dashboard {
  display: grid;
  gap: 22px;
}

.auth-shell,
.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
  padding: 68px 0 34px;
}

.auth-copy h1,
.account-hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.auth-copy p,
.account-hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.account-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.account-proof span,
.account-kpis article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 32, 56, 0.05);
}

.account-proof strong,
.account-kpis strong {
  color: var(--ink);
  font-size: 18px;
}

.account-proof small,
.account-kpis span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.auth-card,
.account-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.auth-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: #1e2b3f;
  font-size: 13px;
  font-weight: 850;
}

.auth-card input {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #cfdaea;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  font-size: 15px;
}

.auth-card p,
.account-card small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-error {
  padding: 12px 14px;
  border: 1px solid #ffd0d5;
  border-radius: var(--radius);
  background: #fff4f5;
  color: #a11f2c;
  font-size: 13px;
  font-weight: 850;
}

.account-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.account-card strong {
  overflow-wrap: anywhere;
  font-size: 22px;
  line-height: 1.2;
}

.account-card .btn {
  justify-self: start;
}

.account-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 42px;
}

.account-kpis strong {
  font-size: 30px;
}

.account-section {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.account-order-list {
  display: grid;
  gap: 16px;
}

.account-order-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 56, 0.06);
}

.account-order-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-order-top div {
  display: grid;
  gap: 4px;
}

.account-order-top span,
.account-order-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.account-order-top strong {
  color: var(--ink);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.account-order-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #edf2f8;
}

.order-link {
  color: var(--blue);
  font-weight: 900;
}

.order-items-list {
  display: grid;
  gap: 8px;
}

.order-items-list span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e3eaf4;
  border-radius: var(--radius);
  background: #f8fbff;
}

.order-items-list b {
  color: #1d2a3b;
  font-size: 13px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.order-items-list em {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.order-items-list small {
  grid-column: 1 / -1;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 52px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 850;
}

.site-footer a { display: block; margin: 8px 0; }

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.payment-badges span {
  margin: 0;
  padding: 4px 7px;
  border: 1px solid #dce7f4;
  border-radius: 5px;
  background: #fff;
  color: #1d2a3b;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .hero,
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .network-panel { max-width: 720px; }
  .order-shell { grid-template-columns: 1fr; }
  .steps {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding-top: 0;
  }
  .steps span {
    min-height: auto;
    padding: 12px 12px 12px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }
  .steps span::before { left: 10px; top: 10px; width: 24px; height: 24px; }
  .steps span::after { display: none; }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .platform-menu-row {
    gap: 14px;
  }
  .platform-dropdown-panel {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 132px;
    width: auto;
    min-width: 0;
    transform: none;
  }
  .header-actions {
    gap: 10px;
  }
  .login-link {
    display: none;
  }
  main { padding: 0 20px 52px; }
  .order-main,
  .split-band,
  .blog-hero,
  .auth-shell,
  .account-hero { grid-template-columns: 1fr; }
  .network-grid,
  .service-grid,
  .feature-row,
  .review-grid,
  .trust-band,
  .conversion-band,
  .landing-research-grid,
  .landing-image-band,
  .use-case-grid,
  .landing-keyword-cloud,
  .blog-grid,
  .blog-grid.compact,
  .status-summary,
  .account-proof,
  .account-kpis,
  .seo-copy-grid,
  .seo-comparison,
  .seo-points,
  .site-footer,
  .faq-list { grid-template-columns: 1fr; }
  .benefit-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .status-line { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .landing-image-card figcaption { min-height: auto; }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 14px 20px;
  }
  .brand {
    width: 210px;
    min-width: 0;
  }
  .site-header nav {
    display: grid;
    grid-column: auto;
    width: 100%;
    gap: 8px;
    padding-bottom: 0;
    overflow: visible;
    font-size: 13px;
  }
  .site-header nav > a {
    display: none;
  }
  .platform-menu-row {
    display: none;
  }
  .mobile-platform-menu {
    position: relative;
    display: block;
    width: 100%;
  }
  .mobile-platform-panel {
    left: 0;
    right: 0;
    top: calc(100% + 10px);
  }
  .platform-dropdown > summary {
    min-height: 32px;
  }
  .landing-title {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 10px 12px;
  }
  .landing-title::before {
    grid-column: 1;
    grid-row: 1;
  }
  .landing-title h1,
  .landing-title h2 {
    grid-column: 2;
    font-size: 32px;
    line-height: 1.08;
  }
  .landing-title p {
    grid-column: 1 / -1;
    max-width: none;
    margin: 4px 0 0;
    font-size: 15px;
    text-align: left;
  }
  .landing-research-grid article,
  .use-case-grid article,
  .landing-keyword-cloud,
  .mistake-list {
    padding: 16px;
  }
  .landing-image-band {
    gap: 14px;
  }
  .landing-keyword-cloud div:last-child {
    gap: 8px;
  }
  .platform-dropdown-panel {
    top: 162px;
    left: 14px;
    right: 14px;
  }
  .header-actions { justify-content: flex-start; }
  .header-cta { min-height: 38px; padding: 0 12px; }
  .hero,
  .product-hero { min-height: auto; padding-top: 38px; }
  .hero h1,
  .product-hero h1,
  .blog-hero h1,
  .article-page h1,
  .tool-page h1,
  .auth-copy h1,
  .account-hero h1,
  .admin-page h1 { font-size: 38px; }
  .hero p,
  .product-hero p,
  .tool-page > p,
  .auth-copy p,
  .account-hero p,
  .admin-page > p { font-size: 16px; }
  .network-panel,
  .split-band,
  .builder-section,
  .summary-card { padding: 20px; }
  .free-trial-band,
  .trial-choice { grid-template-columns: 1fr; }
  .trust-row,
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .network-grid,
  .preset-grid,
  .media-grid:not(.empty) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legacy-kpis,
  .admin-kpis { grid-template-columns: 1fr; }
  .admin-topbar { display: grid; }
  .admin-card-grid { grid-template-columns: 1fr; }
  .calculator-card,
  .calculator-result { grid-template-columns: 1fr; }
  .lookup-row,
  .tier-tabs { grid-template-columns: 1fr; display: grid; }
  .analyzer-card { grid-template-columns: 52px minmax(0, 1fr); }
  .analyzer-card button { grid-column: 1 / -1; }
  .account-order-top { grid-template-columns: 1fr; }
  .comment-mode-row { grid-template-columns: 1fr; }
  .sales-popups {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
  .live-strip { gap: 18px; }
  .conversion-band { margin: -8px 0 28px; }
.site-footer { padding: 36px 20px; }
}

.mega-menu {
  position: relative;
}

.mega-menu > summary {
  list-style: none;
  cursor: pointer;
  color: #1e2b3f;
  padding: 10px 0;
}

.mega-menu > summary::-webkit-details-marker { display: none; }

.mega-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 42px));
  max-height: min(72vh, 680px);
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mega-panel section {
  padding: 14px;
  border: 1px solid #edf1f7;
  border-radius: 8px;
  background: #fbfcff;
}

.mega-panel h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px;
  font-size: 14px;
}

.mega-panel a {
  display: block;
  padding: 6px 0;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.platform-menu-row {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 16px;
  width: min(620px, 45vw);
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.platform-menu-row::-webkit-scrollbar { display: none; }

.platform-dropdown {
  position: relative;
}

.platform-dropdown > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  color: #1e2b3f;
  cursor: pointer;
  white-space: nowrap;
}

.platform-dropdown > summary::-webkit-details-marker { display: none; }

.platform-dropdown[open] > summary {
  color: var(--blue);
}

.platform-dropdown-panel {
  position: fixed;
  top: 124px;
  left: 20px;
  z-index: 40;
  display: grid;
  width: min(300px, calc(100vw - 40px));
  transform: none;
  max-height: min(68vh, 520px);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.platform-dropdown-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.platform-dropdown-panel a:hover,
.platform-dropdown-panel a:focus-visible {
  background: #f2f7ff;
  color: var(--blue);
}

.mobile-platform-menu > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #c9dcf5;
  border-radius: 8px;
  background: #fff;
  color: #1e2b3f;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.mobile-platform-menu > summary::-webkit-details-marker { display: none; }

.mobile-platform-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 60;
  display: grid;
  gap: 14px;
  max-height: min(70vh, 620px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-platform-group {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f8;
}

.mobile-platform-group:last-child { border-bottom: 0; }

.mobile-platform-group strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101828;
}

.mobile-platform-group div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-platform-group a {
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid #e1eaf6;
  border-radius: 7px;
  background: #f8fbff;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
}

.free-trial-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 4px 0 38px;
  padding: 24px 28px;
  border: 1px solid #cae7d9;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0fff7, #ffffff 58%, #eef6ff);
  box-shadow: 0 16px 36px rgba(17, 105, 77, 0.08);
}

.free-trial-band span {
  color: #087f55;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.free-trial-band h2 {
  margin: 4px 0 6px;
  font-size: 26px;
  line-height: 1.1;
}

.free-trial-band p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.trial-limits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trial-limits span {
  padding: 9px 11px;
  border: 1px solid #dce8f6;
  border-radius: 7px;
  background: #fff;
  color: #344054;
  font-size: 12px;
  font-weight: 850;
}

.free-trial-tier-tabs {
  margin-top: 16px;
}

.trial-quality-notice {
  min-height: 0;
  margin-top: 10px;
}

.free-trial-card {
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid #d7e6f7;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.free-trial-card strong {
  color: #102033;
  font-size: 22px;
}

.free-trial-card p,
.free-trial-card small {
  margin: 0;
  color: var(--muted);
}

.free-trial-shell {
  max-width: 1040px;
  margin: 10px auto 56px;
}

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

.trial-choice label {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid #d7e2ef;
  border-radius: 8px;
  background: #fff;
  color: #1d2a3b;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.trial-choice small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.inline-trial-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.network-card i {
  font-size: 22px;
  color: var(--blue);
}

.network-card::before {
  display: none;
}

.product-hero {
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: start;
  gap: 46px;
  min-height: auto;
  padding: 34px 0 18px;
}

.product-hero h1 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.product-hero .trust-row {
  margin-top: 26px;
}

.product-hero .network-panel {
  padding: 22px;
  max-height: 470px;
  overflow: hidden;
}

.product-hero .network-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 355px;
  overflow: auto;
  padding-right: 4px;
}

.product-hero .network-card {
  min-height: 118px;
  padding: 14px 12px;
  gap: 6px;
}

.product-hero .network-card span {
  font-size: 16px;
}

.product-hero .network-card small {
  max-width: 180px;
  font-size: 12px;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 28px;
  }

  .product-hero h1 {
    font-size: 38px;
  }

  .product-hero .network-panel {
    max-height: none;
    overflow: visible;
  }

  .product-hero .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 330px;
    overflow: auto;
  }

  .product-hero .network-card {
    min-height: 116px;
  }

  .product-hero .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-hero.premium-style {
  display: block;
  max-width: 760px;
  min-height: auto;
  margin: 0 auto;
  padding: 26px 0 0;
  text-align: center;
}

.product-hero.premium-style h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.product-hero.premium-style p,
.product-hero.premium-style .trust-row,
.product-hero.premium-style .purchase-trust-card {
  display: none;
}

.purchase-trust-card {
  display: grid;
  gap: 14px;
  align-self: center;
  padding: 24px;
  border: 1px solid #dce6f4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(15, 32, 56, 0.1);
}

.purchase-trust-card strong {
  color: #142135;
  font-size: 22px;
  line-height: 1.12;
}

.purchase-trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  color: #08664a;
  background: #e2f8ef;
  font-size: 14px;
  font-weight: 850;
}

.mini-delivery small {
  color: #1e7e5d;
}

.payment-mini {
  padding: 12px 14px;
  border: 1px solid #e2e9f2;
  border-radius: 8px;
  color: #25344c;
  background: #fbfcff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.product .live-strip {
  display: none;
}

.product .landing-title {
  justify-content: center;
  margin: 6px 0 12px;
}

.product .order-shell {
  max-width: 1020px;
  display: block;
  margin: 10px auto 52px;
}

.product .steps {
  position: static;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 14px;
}

.product .steps span {
  min-height: 38px;
  padding: 10px 14px 10px 42px;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #fff;
}

.product .steps span::before {
  left: 10px;
  top: 8px;
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.product .steps span::after {
  display: none;
}

.product .order-main {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.product .builder-card,
.product .summary-card {
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(18, 31, 56, 0.11);
}

.product .builder-section {
  padding: 26px;
}

.product .builder-card {
  display: flex;
  flex-direction: column;
}

.product .section-label {
  font-size: 18px;
}

.product .lookup-section {
  order: 1;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.product .quantity-section {
  order: 2;
  background: #fff;
}

.product .media-section { order: 3; }
.product .upsell-section { order: 4; }

.product .order-shell:not(.target-confirmed) .quantity-section,
.product .order-shell:not(.target-confirmed) .media-section,
.product .order-shell:not(.target-confirmed) .upsell-section {
  display: none;
}

.product .order-shell:not(.target-confirmed) .summary-card {
  opacity: 0.72;
}

.product .order-shell:not(.target-confirmed) .summary-card dl,
.product .order-shell:not(.target-confirmed) .summary-card .total-line,
.product .order-shell:not(.target-confirmed) .summary-card .suggestions,
.product .order-shell:not(.target-confirmed) .summary-card .coupon-row,
.product .order-shell:not(.target-confirmed) .summary-card .coupon-result,
.product .order-shell:not(.target-confirmed) .summary-card .payment-options,
.product .order-shell:not(.target-confirmed) .summary-card #customerEmail,
.product .order-shell:not(.target-confirmed) .summary-card .wallet-toggle,
.product .order-shell:not(.target-confirmed) .summary-card #checkoutBtn,
.product .order-shell:not(.target-confirmed) .summary-card .secure-note,
.product .order-shell:not(.target-confirmed) .summary-card .support-card {
  display: none;
}

.product .tier-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #d4deeb;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.product .tier {
  min-height: 58px;
  border: 0;
  border-right: 1px solid #d4deeb;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  text-align: left;
}

.product .tier:last-child {
  border-right: 0;
}

.product .tier.active {
  color: #fff;
  background: linear-gradient(135deg, #2f93ff, #4fb4ff);
  outline: 3px solid rgba(11, 115, 223, 0.26);
  outline-offset: -6px;
  box-shadow: inset 0 0 0 3px #fff, 0 12px 26px rgba(11, 115, 223, 0.22);
}

.product .tier[data-tier="premium"],
.product .tier[data-tier="premium"].active {
  color: #fff;
  background: linear-gradient(120deg, #0f172a, #8138ff, #ff6b12, #0f172a);
  background-size: 260% 260%;
  animation: vipShift 4s ease-in-out infinite;
}

.product .tier[data-tier="premium"].active {
  outline: 3px solid rgba(255, 107, 18, 0.45);
  outline-offset: -6px;
  box-shadow: inset 0 0 0 3px #fff, 0 16px 34px rgba(129, 56, 255, 0.34);
}

.product .preset-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 22px 20px 10px;
  border: 1px solid #d4deeb;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.product .preset {
  min-height: 82px;
  border-color: #ccd6e5;
  background: #f8faff;
}

.product .preset.active {
  color: #fff;
  border-color: #ff6b12;
  background: linear-gradient(145deg, #ff7a1b, #ff4c13);
  box-shadow: 0 18px 30px rgba(255, 107, 18, 0.24);
}

.product .preset.active em {
  color: #087f35;
  background: #20ef69;
}

.product .preset.active small,
.product .preset.active span {
  color: #fff;
}

.product .summary-card {
  border-color: #d7e2ef;
}

.product .summary-card h2 {
  font-size: 20px;
}

.product .btn.checkout {
  min-height: 50px;
  background: linear-gradient(135deg, #ff5a1f, #ff9f7c);
  box-shadow: 0 18px 30px rgba(255, 95, 31, 0.28);
}

.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #ff6b12;
  box-shadow: 0 18px 36px rgba(255, 107, 18, 0.34);
}

.floating-cart::before {
  content: "";
  width: 22px;
  height: 18px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 3px 3px 7px 7px;
}

.floating-cart span {
  position: absolute;
  top: -5px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff3d24;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .product-hero.premium-style {
    grid-template-columns: 1fr;
  }

  .purchase-trust-card {
    max-width: 520px;
  }

  .purchase-proof-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .product .order-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .promo-bar {
    justify-content: center;
    gap: 8px;
    min-height: auto;
    padding: 8px 12px;
    overflow: visible;
    white-space: normal;
    text-align: center;
    font-size: 12px;
  }

  .promo-bar a {
    min-height: 28px;
    padding: 0 10px;
  }

  .site-header nav {
    overflow: visible;
  }

  .platform-menu-row {
    display: none;
  }

  .mobile-platform-menu {
    position: relative;
    display: block;
    width: 100%;
  }

  .mobile-platform-panel {
    left: 0;
    right: 0;
    top: calc(100% + 10px);
  }

  .product .steps {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .product .tier-tabs {
    grid-template-columns: 1fr;
  }

  .product .tier {
    border-right: 0;
    border-bottom: 1px solid #d4deeb;
  }

  .product .tier:last-child {
    border-bottom: 0;
  }

  .floating-cart {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

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

.category-card {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 56, 0.06);
}

.category-card i,
.platform-hero-icon {
  font-size: 34px;
  color: var(--blue);
}

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

.platform-hero,
.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
  padding: 58px 0 30px;
}

.platform-hero h1,
.demo-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
}

.platform-hero-icon {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0b73df, #783bff 48%, #ff6b12);
  box-shadow: 0 24px 58px rgba(11, 115, 223, 0.22);
}

.blog-search,
.inline-filter,
.coupon-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-search input,
.coupon-row input,
.inline-filter input,
.invoice-order-card input,
.newsletter-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d7e2ef;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
}

.blog-taxonomy,
.newsletter-box {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chips a {
  padding: 9px 13px;
  border: 1px solid #dce8f6;
  border-radius: 999px;
  font-weight: 800;
  color: var(--blue-dark);
  background: #f6faff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-toc,
.author-box,
.invoice-order-card {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-toc ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.newsletter-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 20px;
  align-items: center;
}

.newsletter-box h2 { margin: 0 0 8px; }

.invoice-order-list {
  display: grid;
  gap: 18px;
}

.invoice-order-card {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 20px;
}

.invoice-order-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.invoice-order-card form .btn,
.invoice-order-card .form-result {
  grid-column: 1 / -1;
}

.coupon-result {
  min-height: 20px;
  font-size: 13px;
  font-weight: 800;
}

.coupon-ok { color: var(--green); }
.coupon-error { color: var(--red); }

.wallet-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 10px 0;
  font-size: 13px;
  font-weight: 800;
  color: #344054;
}

.tier-tabs .tier {
  position: relative;
  overflow: hidden;
}

.tier-tabs .tier[data-tier="premium"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #111827, #783bff, #ff6b12, #111827);
  background-size: 260% 260%;
  animation: vipShift 4s ease-in-out infinite;
  box-shadow: 0 14px 28px rgba(120, 59, 255, 0.22);
}

.tier-tabs .tier[data-tier="premium"]::after {
  content: "VIP";
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 10px;
  font-weight: 900;
}

@keyframes vipShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.upsell-section {
  order: 4;
  border-style: dashed;
  color: var(--muted);
}

.push-prompt {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(340px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.push-prompt p { margin: 4px 0 12px; color: var(--muted); }
.push-prompt > button[aria-label] {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 980px) {
  .mega-panel,
  .category-grid,
  .newsletter-box,
  .platform-hero,
  .demo-hero,
  .invoice-order-card,
  .invoice-order-card form {
    grid-template-columns: 1fr;
  }

  .mega-panel {
    left: 0;
    transform: none;
  }
}
