/* Accfair — editorial commerce system */
:root {
  --ink: #111827;
  --ink-soft: #606a7b;
  --paper: #f5f7fb;
  --surface: #ffffff;
  --white: #ffffff;
  --line: #d9dfeb;
  --line-soft: #e7ebf2;
  --orange: #dce5f8;
  --orange-dark: #9a6a0e;
  --acid: #f2bd45;
  --blue: #3157c8;
  --pink: #eef1f8;
  --mint: #e7edf8;
  --deep-forest: #111827;
  --emerald-depth: #3157c8;
  --soft-ivory: #f5f7fb;
  --muted-stone: #aab2c0;
  --slate-green: #606a7b;
  --fine-divider: #d9dfeb;
  --champagne-gold: #f2bd45;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 18px 45px rgba(17, 24, 39, .12);
  --shadow-sm: 0 8px 22px rgba(17, 24, 39, .10);
  --shadow-lg: 0 28px 70px rgba(8, 15, 31, .22);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 500 16px/1.65 "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open,
body.cart-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible,
a:focus-visible,
input:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
h1, h2, h3, h4, .logo {
  margin-top: 0;
  color: var(--ink);
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.03;
}
p { margin-top: 0; }
::selection { color: var(--ink); background: var(--acid); }

/* Announcement and navigation */
.top-strip {
  color: var(--ink);
  background: var(--acid);
  border-bottom: 2px solid var(--ink);
}
.top-strip-content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.top-strip-item { display: flex; align-items: center; gap: 8px; }
.top-strip-item svg { width: 14px; height: 14px; stroke-width: 2.6; }
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(244, 239, 230, .96);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
}
.navbar.scrolled { box-shadow: 0 5px 0 rgba(23, 19, 15, .16); }
.navbar-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-size: 25px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid) !important;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 10px 50%;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-6deg);
}
.logo-icon svg { display: none; }
.logo-icon::after {
  content: "A";
  font: 900 21px/1 "Archivo Black", sans-serif;
  transform: rotate(6deg);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link,
.dropdown-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover,
.nav-link.active { color: white; background: var(--ink); }
.dropdown-toggle svg { width: 14px; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(1040px, calc(100vw - 40px));
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: .18s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.catalog-searchbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.catalog-searchbar label span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.catalog-searchbar input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xs);
  outline: none;
}
.catalog-searchbar input:focus { background: white; box-shadow: 3px 3px 0 var(--blue); }
.catalog-searchbar p { margin: 0; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.dropdown-grid-services {
  max-height: min(62vh, 550px);
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-right: 5px;
}
.dropdown-section-title {
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dropdown-section-links { display: grid; gap: 2px; }
.dropdown-item { padding: 5px 7px; border-radius: 6px; font-size: 13px; font-weight: 700; }
.dropdown-item:hover { color: white; background: var(--blue); }
.dropdown-view-all {
  display: block;
  margin-top: 18px;
  padding: 12px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xs);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.mobile-menu-btn span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

/* Buttons */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-primary { color: white; background: var(--ink); }
.btn-primary:hover { color: var(--ink); background: var(--acid); }
.btn-secondary { color: var(--ink); background: var(--surface); }

/* New Accfair homepage */
.af-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  background: var(--orange);
  border-bottom: 2px solid var(--ink);
}
.af-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  top: -160px;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.af-hero-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.af-eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.af-hero h1 {
  max-width: 720px;
  margin: 22px 0 24px;
  font-size: clamp(58px, 7.6vw, 104px);
  line-height: .89;
}
.af-hero h1 span { display: block; color: var(--surface); -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--ink); }
.af-hero-lead { max-width: 650px; margin-bottom: 28px; font-size: 18px; font-weight: 700; }
.af-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.af-hero .btn { min-height: 56px; padding-inline: 25px; }
.af-hero .btn-primary { color: var(--ink); background: var(--acid); box-shadow: 5px 5px 0 var(--ink); }
.af-hero .btn-secondary { background: var(--surface); }
.af-mini-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 34px; font-size: 12px; font-weight: 900; }
.af-mini-proof span { display: inline-flex; align-items: center; gap: 7px; }
.af-mini-proof span::before { content: "✓"; width: 21px; height: 21px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; }
.af-market-card {
  position: relative;
  padding: 22px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.af-market-card::before {
  content: "LIVE CATALOG";
  position: absolute;
  top: -18px;
  right: 28px;
  padding: 7px 12px;
  background: var(--blue);
  color: white;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.af-market-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 17px; border-bottom: 2px solid var(--ink); }
.af-market-top strong { font-family: "Archivo Black", sans-serif; font-size: 22px; }
.af-market-top span { padding: 5px 9px; color: #0e6c42; background: var(--mint); border: 1px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 900; }
.af-market-list { display: grid; gap: 10px; margin: 18px 0; }
.af-market-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: transform .16s ease, background .16s ease;
}
.af-market-item:hover { transform: translateX(-5px); background: var(--acid); }
.af-market-icon { width: 43px; height: 43px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-size: 11px; font-weight: 900; }
.af-market-item strong, .af-market-item small { display: block; }
.af-market-item strong { font-size: 14px; }
.af-market-item small { color: var(--ink-soft); font-size: 11px; }
.af-market-price { text-align: right; }
.af-market-price b { display: block; font-family: "Archivo Black", sans-serif; font-size: 18px; }
.af-market-price span { color: var(--ink-soft); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.af-market-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px; color: white; background: var(--ink); border-radius: var(--radius-sm); }
.af-market-footer p { margin: 0; font-size: 11px; }
.af-market-footer strong { display: block; color: var(--acid); font-size: 14px; }
.af-market-footer button { color: var(--ink); background: var(--acid); border: 0; border-radius: 7px; padding: 9px 11px; cursor: pointer; font-size: 11px; font-weight: 900; }
.af-ticker { overflow: hidden; padding: 12px 0; color: white; background: var(--ink); border-bottom: 2px solid var(--ink); }
.af-ticker-track { width: max-content; display: flex; gap: 28px; animation: ticker 30s linear infinite; }
.af-ticker span { display: flex; align-items: center; gap: 28px; font-family: "Archivo Black", sans-serif; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }
.af-ticker span::after { content: "✦"; color: var(--acid); }
@keyframes ticker { to { transform: translateX(-50%); } }

.home-section,
.section-padding,
.pricing-section,
.service-overview-section { padding: 94px 0; }
.home-section:nth-of-type(even),
.pricing-section,
.service-overview-section { background: var(--surface); }
.home-heading,
.section-intro { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.split-home-heading,
.wide-heading { max-width: none; display: grid; grid-template-columns: 1fr .75fr; gap: 48px; align-items: end; text-align: left; }
.section-title { margin: 14px 0 0; font-size: clamp(38px, 4.8vw, 62px); }
.section-description { margin: 0; color: var(--ink-soft); font-weight: 650; }
.af-section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.af-section-head > div { max-width: 720px; }
.af-section-head p { max-width: 440px; margin: 0; color: var(--ink-soft); font-weight: 650; }

.af-category-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-auto-rows: minmax(220px, auto); gap: 18px; }
.af-category-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  transition: transform .18s ease, box-shadow .18s ease;
}
.af-category-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.af-category-card h3 { max-width: 340px; margin: 0; font-size: clamp(27px, 3vw, 42px); }
.af-category-card p { max-width: 380px; margin: 12px 0 0; font-size: 13px; font-weight: 700; }
.af-category-card strong { align-self: flex-start; margin-top: 24px; padding-bottom: 2px; border-bottom: 2px solid currentColor; font-size: 12px; }
.af-category-card::after { content: attr(data-mark); position: absolute; right: -5px; bottom: -36px; font-family: "Archivo Black", sans-serif; font-size: 116px; line-height: 1; opacity: .12; }
.af-category-social { grid-row: span 2; background: var(--pink); }
.af-category-email { background: var(--acid); }
.af-category-ai { background: var(--blue); color: white; }
.af-category-ai h3 { color: white; }
.af-category-creator { grid-column: span 2; background: var(--mint); }
.af-category-business { background: var(--orange); }

.starter-pricing-grid,
.home-service-grid,
.home-category-grid,
.usecase-grid,
.why-grid,
.snapshot-grid,
.related-grid,
.packages-grid,
.pricing-card-grid,
.monthly-grid,
.premium-access-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.starter-pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.starter-price-card,
.home-service-card,
.home-category-card,
.usecase-card,
.why-card,
.snapshot-item,
.related-card,
.package-card,
.monthly-card,
.premium-access-card,
.contact-card,
.service-overview-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.starter-price-card:hover,
.home-service-card:hover,
.home-category-card:hover,
.usecase-card:hover,
.related-card:hover,
.package-card:hover,
.monthly-card:hover,
.premium-access-card:hover,
.contact-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.starter-price-card.featured,
.package-card.featured,
.monthly-card.featured,
.premium-access-card.featured { background: #fffbe9; border-color: var(--ink); box-shadow: 5px 5px 0 var(--orange); }
.starter-price-card.featured::before,
.package-card.featured::before,
.monthly-card.featured::before,
.premium-access-card.featured::before {
  content: "Best pick";
  position: absolute;
  top: 15px;
  right: -31px;
  width: 118px;
  padding: 5px 0;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
  transform: rotate(40deg);
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.starter-price-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.starter-badge,
.home-card-kicker,
.monthly-duration { padding: 6px 9px; color: var(--ink); background: var(--acid); border: 1px solid var(--ink); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.service-brand-icon,
.platform-service-logo,
.page-icon,
.contact-icon,
.related-icon,
.blog-empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue) !important;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.page-icon { margin: 0 auto 18px; }
.service-brand-icon::after { content: "A"; font-family: "Archivo Black", sans-serif; font-weight: 900; }
.starter-price-card h3,
.package-name,
.monthly-card h3,
.premium-access-card h3,
.contact-name { margin: 22px 0 10px; font-size: 20px; }
.starter-price,
.package-price { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 18px; }
.starter-price strong,
.package-price-value { font-family: "Archivo Black", sans-serif; font-size: 38px; letter-spacing: -.055em; }
.starter-price span,
.package-price-unit { color: var(--ink-soft); font-size: 11px; font-weight: 750; }
.starter-details { margin: 0 0 20px; }
.starter-details div { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 11px; }
.starter-details dt { color: var(--ink-soft); }
.starter-details dd { margin: 0; text-align: right; font-weight: 850; }
.starter-actions,
.platform-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.starter-view-btn,
.starter-order-btn,
.platform-action-btn { min-height: 42px; padding-inline: 10px; font-size: 11px; }
.package-desc,
.contact-detail { color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.package-features,
.service-overview-list,
.why-list { display: grid; gap: 10px; margin: 20px 0 24px; padding: 0; list-style: none; }
.package-feature,
.service-overview-item { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 12px; font-weight: 650; }
.package-feature svg,
.service-overview-item svg { flex: 0 0 17px; width: 17px; margin-top: 3px; color: var(--orange); stroke-width: 3; }
.package-btn { width: 100%; }

/* Commerce controls inserted by accfair.js */
.commerce-controls { padding-top: 16px; margin-top: auto; border-top: 2px solid var(--ink); }
.commerce-quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.commerce-quantity-copy span,
.commerce-quantity-copy strong { display: block; }
.commerce-quantity-copy span { color: var(--ink-soft); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.commerce-quantity-copy strong { font-size: 12px; }
.quantity-stepper { display: grid; grid-template-columns: 31px 35px 31px; min-height: 34px; border: 2px solid var(--ink); border-radius: 8px; overflow: hidden; }
.quantity-stepper button { color: var(--ink); background: var(--paper); border: 0; cursor: pointer; font-size: 16px; font-weight: 900; }
.quantity-stepper button:hover { color: white; background: var(--blue); }
.quantity-stepper output { display: grid; place-items: center; background: white; border-inline: 2px solid var(--ink); font-size: 12px; font-weight: 900; }
.commerce-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; color: var(--ink-soft); font-size: 10px; font-weight: 800; }
.commerce-total strong { color: var(--ink); font: 900 18px/1 "Archivo Black", sans-serif; }
.commerce-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.commerce-actions .btn { min-height: 43px; padding-inline: 8px; font-size: 10px; }
.add-cart-btn { color: var(--ink); background: var(--acid); }
.add-cart-btn.added { color: white; background: #138e5c; }
.package-card,
.monthly-card,
.premium-access-card { display: flex; flex-direction: column; }
.package-card .package-features,
.monthly-card .package-features,
.premium-access-card .package-features { flex-grow: 1; }
.package-card > .package-btn,
.monthly-card > .package-btn,
.premium-access-card > .package-btn { display: none; }

.cart-trigger {
  position: relative;
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}
.cart-trigger svg { width: 18px; }
.cart-trigger-label { font-size: 11px; }
.cart-count { min-width: 19px; height: 19px; display: grid; place-items: center; color: white; background: var(--orange); border: 1px solid var(--ink); border-radius: 50%; font-size: 9px; }
.cart-count.bump { animation: cart-bump .35s ease; }
@keyframes cart-bump { 50% { transform: scale(1.35) rotate(8deg); } }
.cart-backdrop { position: fixed; inset: 0; z-index: 1890; opacity: 0; visibility: hidden; background: rgba(23, 19, 15, .58); backdrop-filter: blur(4px); transition: .2s ease; }
.cart-backdrop.active { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1900;
  width: min(100%, 460px);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  background: var(--surface);
  border-left: 2px solid var(--ink);
  box-shadow: -12px 0 0 rgba(23, 19, 15, .18);
  transition: transform .25s ease;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 23px; background: var(--acid); border-bottom: 2px solid var(--ink); }
.cart-drawer-head h2 { margin: 0; font-size: 27px; }
.cart-close { width: 40px; height: 40px; display: grid; place-items: center; color: white; background: var(--ink); border: 0; border-radius: 50%; cursor: pointer; font-size: 22px; }
.cart-items { flex: 1; overflow: auto; display: grid; align-content: start; gap: 12px; padding: 20px; }
.cart-empty { padding: 48px 24px; text-align: center; }
.cart-empty-mark { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 18px; background: var(--pink); border: 2px solid var(--ink); border-radius: 50%; font-size: 28px; }
.cart-empty h3 { margin-bottom: 8px; }
.cart-empty p { color: var(--ink-soft); font-size: 13px; }
.cart-item { padding: 15px; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius-sm); }
.cart-item-top { display: grid; grid-template-columns: 1fr auto; gap: 14px; }
.cart-item-name { margin: 0 0 4px; font: 900 14px/1.2 "Archivo Black", sans-serif; }
.cart-item-meta { color: var(--ink-soft); font-size: 10px; font-weight: 750; }
.cart-item-price { font: 900 17px/1 "Archivo Black", sans-serif; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--line-soft); }
.cart-item-stepper { display: inline-flex; align-items: center; border: 1px solid var(--ink); border-radius: 6px; overflow: hidden; }
.cart-item-stepper button,
.cart-item-stepper span { width: 28px; height: 28px; display: grid; place-items: center; border: 0; background: white; font-size: 11px; font-weight: 900; }
.cart-item-stepper button { cursor: pointer; }
.cart-item-stepper button:hover { color: white; background: var(--blue); }
.cart-remove { color: var(--orange-dark); background: none; border: 0; cursor: pointer; font-size: 10px; font-weight: 900; text-decoration: underline; }
.cart-footer { padding: 20px; background: var(--paper); border-top: 2px solid var(--ink); }
.cart-summary-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 12px; }
.cart-summary-row.total { padding-top: 12px; margin-top: 12px; border-top: 2px solid var(--ink); font-size: 15px; font-weight: 900; }
.cart-summary-row.total strong { font-family: "Archivo Black", sans-serif; font-size: 22px; }
.cart-checkout { width: 100%; margin-top: 12px; color: var(--ink); background: var(--acid); }
.cart-note { margin: 11px 0 0; color: var(--ink-soft); text-align: center; font-size: 9px; font-weight: 800; }

/* Product pages and legacy sections */
.pricing-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 30px; }
.pricing-tab { min-height: 44px; padding: 0 17px; color: var(--ink); background: var(--surface); border: 2px solid var(--ink); border-radius: 999px; cursor: pointer; font-size: 12px; font-weight: 900; }
.pricing-tab:hover { background: var(--pink); }
.pricing-tab.active { color: white; background: var(--ink); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: reveal .3s ease; }
.pricing-panel-intro { margin-bottom: 28px; text-align: center; }
.pricing-panel-title { margin-bottom: 7px; font-size: 30px; }
.pricing-panel-description { color: var(--ink-soft); font-weight: 650; }
.pricing-grid-single { grid-template-columns: minmax(0, 440px); justify-content: center; }
.pricing-grid-pair { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
.pricing-grid-triple { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.starter-pricing-note { margin: 25px 0 0; color: var(--ink-soft); text-align: center; font-size: 12px; font-weight: 700; }
.page-header {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  color: var(--ink);
  background: var(--pink);
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.page-header::before {
  content: "AF";
  position: absolute;
  right: 3%;
  top: -65px;
  color: rgba(23, 19, 15, .07);
  font: 900 250px/1 "Archivo Black", sans-serif;
  transform: rotate(7deg);
}
.page-header::after { content: ""; position: absolute; left: -80px; bottom: -125px; width: 260px; height: 260px; background: var(--acid); border: 2px solid var(--ink); border-radius: 50%; }
.page-title { position: relative; z-index: 1; max-width: 940px; margin: 0 auto 17px; font-size: clamp(45px, 6vw, 76px); }
.page-subtitle { position: relative; z-index: 1; max-width: 760px; margin: auto; color: #443d36; font-size: 17px; font-weight: 700; }
.value-strip { color: white; background: var(--ink); border-bottom: 2px solid var(--ink); }
.value-strip-content { min-height: 90px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: center; }
.value-strip-item { display: flex; align-items: center; gap: 11px; padding: 11px; }
.value-strip-item svg { width: 20px; color: var(--acid); stroke-width: 3; }
.value-strip-item strong,
.value-strip-item span { display: block; }
.value-strip-item strong { color: white; font-size: 12px; }
.value-strip-item span { color: #c8bfb4; font-size: 10px; }
.service-overview-grid,
.quality-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.service-overview-grid .service-overview-card:nth-child(4n + 1) { background: var(--acid); }
.service-overview-grid .service-overview-card:nth-child(4n + 2) { background: var(--surface); }
.service-overview-grid .service-overview-card:nth-child(4n + 3) { background: var(--pink); }
.service-overview-grid .service-overview-card:nth-child(4n + 4) { background: var(--mint); }
.service-overview-title,
.quality-copy h2 { font-size: clamp(28px, 3.5vw, 43px); }
.service-overview-text,
.quality-copy p { color: var(--ink-soft); font-weight: 650; }
.quality-grid,
.process-timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-number { width: 36px; height: 36px; display: grid; place-items: center; color: var(--ink); background: var(--acid) !important; border: 2px solid var(--ink); border-radius: 50%; font-weight: 900; }
.ip-country-table-wrap { overflow-x: auto; border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.ip-country-table { width: 100%; min-width: 790px; border-collapse: collapse; background: var(--surface); }
.ip-country-table th { padding: 14px 18px; color: white; background: var(--ink); text-align: left; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ip-country-table td { padding: 17px 18px; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); font-size: 13px; vertical-align: middle; }
.ip-country-table tbody tr:hover { background: #fbf7e8; }
.ip-country-table td:nth-child(4) strong { display: block; color: var(--ink); font: 900 24px/1.15 "Archivo Black", sans-serif; }
.ip-country-code { width: 35px; height: 35px; display: grid; place-items: center; color: white; background: var(--blue); border: 1px solid var(--ink); border-radius: 50%; font-size: 9px; font-weight: 900; }
.ip-country-order { min-width: 108px; padding-inline: 14px; }

.home-snapshot { padding: 28px 0; color: var(--ink); background: var(--acid); border-block: 2px solid var(--ink); }
.home-snapshot .snapshot-item { box-shadow: none; background: transparent; border: 0; border-right: 2px solid var(--ink); border-radius: 0; }
.snapshot-item strong,
.snapshot-item span { display: block; }
.snapshot-item strong { font: 900 33px/1 "Archivo Black", sans-serif; }
.snapshot-item span { margin-top: 7px; font-size: 11px; font-weight: 750; }
.quality-grid article,
.process-timeline article { padding: 23px; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); }
.quality-grid article h3,
.process-timeline article h3 { margin: 12px 0 7px; font-size: 18px; }
.quality-grid article p,
.process-timeline article p,
.home-category-card p,
.home-service-card p,
.usecase-card p,
.why-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.process-timeline article > span,
.usecase-card > div { width: 39px; height: 39px; display: grid; place-items: center; color: white; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; font-size: 10px; font-weight: 900; }
.why-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; padding: 48px; color: white; background: var(--blue); border: 2px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why-panel h2 { color: white; }
.why-panel p { color: #e0e7ff; }
.why-panel .why-list { margin: 0; }
.why-panel .why-list div { padding: 16px 18px; color: var(--ink); background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius-sm); }
.why-panel .why-list strong,
.why-panel .why-list span { display: block; }
.why-panel .why-list span { color: var(--ink-soft); font-size: 12px; }
.home-category-card strong { display: inline-block; margin-top: 18px; color: var(--orange-dark); font-size: 12px; }
.home-service-card h3,
.home-category-card h3,
.usecase-card h3 { margin: 18px 0 9px; font-size: 20px; }
.why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.seo-buying-guide { background: var(--paper); }
.faq-list { max-width: 880px; margin: auto; display: grid; gap: 11px; }
.faq-item { overflow: hidden; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius-sm); }
.faq-question { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 20px; color: var(--ink); background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 900; }
.faq-question:hover { background: var(--acid); }
.faq-question svg { width: 18px; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--ink-soft); transition: max-height .28s ease; }
.faq-answer p { padding: 0 20px 19px; margin: 0; font-weight: 650; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-question { background: var(--acid); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.home-final-cta,
.shore-final-cta,
.orbit-final-cta,
.final-cta { position: relative; overflow: hidden; padding: 82px 0; color: var(--ink); background: var(--orange); border-block: 2px solid var(--ink); text-align: center; }
.home-final-cta h2,
.shore-final-cta h2,
.orbit-final-cta h2,
.final-cta h2 { font-size: clamp(39px, 5vw, 65px); }
.home-final-cta p,
.shore-final-cta p,
.orbit-final-cta p,
.final-cta p { max-width: 680px; margin-inline: auto; color: #3f3028; font-weight: 700; }
.final-cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.cta-btn { min-height: 50px; display: inline-flex; align-items: center; padding: 0 19px; color: var(--ink); background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius-xs); font-weight: 900; }
.cta-btn:hover { color: white; background: var(--ink); }
.contact-card { text-align: center; }
.contact-card .contact-icon { margin: 0 auto; }
.contact-btn { width: 100%; margin-top: 10px; }
.privacy-content { max-width: 940px; margin: auto; }
.privacy-section { padding: 30px; margin-bottom: 17px; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); }
.blog-empty-state { max-width: 700px; margin: auto; padding: 52px; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; }
.blog-empty-icon { margin: 0 auto 20px; }
.blog-empty-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* Footer, floating contacts, modal */
.footer { padding: 70px 0 24px; color: #c9c0b5; background: var(--ink); border-top: 2px solid var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer-brand { min-width: min(100%, 280px); }
.footer .logo { color: white; }
.footer-brand p { max-width: 430px; margin: 18px 0 0; color: #a99f94; font-size: 13px; }
.footer-title { margin-bottom: 18px; color: var(--acid); font-size: 13px; letter-spacing: .02em; }
.footer-links { display: grid; gap: 8px; }
.footer-link { color: #b8afa4; font-size: 13px; font-weight: 650; transition: color .18s ease; }
.footer-link:hover { color: var(--acid); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 21px; border-top: 1px solid #4f4942; }
.footer-copyright { margin: 0; color: #8f877d; font-size: 11px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; }
.footer-social svg { width: 17px; }
.floating-contacts { position: fixed; left: 17px; right: auto; bottom: 17px; z-index: 850; display: grid; gap: 8px; }
.floating-btn { width: 47px; height: 47px; display: grid; place-items: center; color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 3px 3px 0 var(--ink); transition: transform .18s ease; }
.floating-btn:hover { transform: translate(-2px, -2px); }
.floating-btn svg { width: 20px; height: 20px; }
.floating-whatsapp { background: #25d366; }
.floating-telegram { background: #229ed9; }
.floating-email { background: var(--orange); }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  background: rgba(23, 19, 15, .75);
  backdrop-filter: blur(7px);
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  position: relative;
  width: min(100%, 540px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 33px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) rotate(-1deg);
  transition: transform .22s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0) rotate(0); }
.modal-close { position: absolute; top: 17px; right: 17px; width: 39px; height: 39px; display: grid; place-items: center; color: white; background: var(--ink); border: 0; border-radius: 50%; cursor: pointer; }
.modal-close svg { width: 17px; }
.modal-title { margin: 0 50px 7px 0; font-size: 32px; }
.modal-subtitle { color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.order-summary { padding: 14px; margin: 19px 0 0; background: var(--acid); border: 2px solid var(--ink); border-radius: var(--radius-sm); }
.order-summary-label { margin-bottom: 5px; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.order-summary strong { display: block; font-size: 14px; }
.order-summary span { display: block; margin-top: 4px; font-size: 11px; font-weight: 750; }
.modal-options { display: grid; gap: 10px; margin-top: 20px; }
.modal-option { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 13px; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius-sm); transition: transform .18s ease, box-shadow .18s ease; }
.modal-option:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }
.modal-option-icon { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; }
.modal-option-icon svg { width: 21px; }
.modal-option-label,
.modal-option-value { display: block; }
.modal-option-label { font-weight: 900; }
.modal-option-value { color: var(--ink-soft); font-size: 10px; }
.modal-option-arrow svg { width: 17px; color: var(--orange); }
.modal-note { margin: 18px 0 0; color: var(--ink-soft); text-align: center; font-size: 9px; font-weight: 800; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 3000; transform: translate(-50%, 20px); padding: 13px 18px; color: white; background: var(--ink); border: 2px solid var(--acid); border-radius: 999px; opacity: 0; pointer-events: none; font-size: 12px; font-weight: 900; transition: .2s ease; }
.toast.active { opacity: 1; transform: translate(-50%, 0); }
.payment-result-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--orange); }
.payment-result-card { max-width: 640px; padding: 48px; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; }
.payment-result-icon { width: 65px; height: 65px; display: grid; place-items: center; margin: 0 auto 18px; color: white; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; }
.payment-result-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.platform-pricing-section { background: var(--surface); }
.platform-pricing-header { margin-bottom: 34px; }
.platform-pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.platform-service-card { padding: 21px; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); }
.platform-service-logo { margin-bottom: 16px; background: var(--blue) !important; }
.platform-service-name { margin-bottom: 8px; font-size: 17px; }
.platform-price .package-price-value { font-size: 28px; }

@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 1080px) {
  .nav-link { padding-inline: 8px; font-size: 12px; }
  .dropdown-grid-services { grid-template-columns: repeat(4, 1fr); }
  .starter-pricing-grid,
  .platform-pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .af-hero-layout { gap: 38px; }
  .af-category-grid { grid-template-columns: 1fr 1fr; }
  .af-category-social { grid-row: auto; }
  .af-category-creator { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .top-strip-item:nth-child(n+3) { display: none; }
  .top-strip-content { justify-content: center; }
  .mobile-menu-btn { display: block; }
  .mobile-menu-btn.active span:first-child { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 82px 0 auto; max-height: calc(100vh - 82px); overflow: auto; display: none; padding: 16px 20px 28px; background: var(--paper); border-top: 2px solid var(--ink); box-shadow: 0 9px 0 rgba(23,19,15,.15); }
  .nav-links.active { display: block; }
  .nav-links > .nav-link,
  .dropdown-toggle,
  .nav-links > .btn { width: 100%; justify-content: space-between; margin-bottom: 5px; }
  .dropdown { position: static; }
  .dropdown-menu { position: static; width: 100%; max-height: 0; overflow: hidden; display: none; padding: 0; opacity: 1; visibility: visible; transform: none; border: 0; border-radius: 0; box-shadow: none; transition: max-height .28s ease; }
  .dropdown.active .dropdown-menu { display: block; padding: 14px 0; }
  .dropdown:hover .dropdown-menu { transform: none; }
  .catalog-searchbar { grid-template-columns: 1fr; }
  .dropdown-grid-services { max-height: none; grid-template-columns: repeat(2, 1fr); }
  .cart-trigger { margin-left: auto; }
  .af-hero-layout { grid-template-columns: 1fr; }
  .af-market-card { max-width: 660px; transform: none; }
  .split-home-heading,
  .wide-heading,
  .service-overview-grid,
  .quality-layout { grid-template-columns: 1fr; gap: 20px; }
  .why-panel { grid-template-columns: 1fr; }
  .starter-pricing-grid,
  .platform-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid,
  .home-service-grid,
  .home-category-grid,
  .usecase-grid,
  .why-grid,
  .snapshot-grid,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-strip-content { grid-template-columns: repeat(2, 1fr); padding-block: 10px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .top-strip-item:nth-child(n+2) { display: none; }
  .navbar-content { min-height: 72px; }
  .nav-links { top: 72px; max-height: calc(100vh - 72px); }
  .logo { font-size: 20px; }
  .logo-icon { width: 37px; height: 37px; }
  .cart-trigger { min-width: 42px; width: 42px; height: 42px; padding: 0; }
  .cart-trigger-label { display: none; }
  .cart-count { position: absolute; top: -5px; right: -5px; }
  .mobile-menu-btn { width: 42px; height: 42px; }
  .af-hero { padding: 48px 0 50px; }
  .af-hero h1 { font-size: clamp(52px, 17vw, 76px); }
  .af-hero-lead,
  .page-subtitle { font-size: 15px; }
  .af-hero-actions .btn { width: 100%; }
  .af-mini-proof { display: grid; }
  .af-market-card { padding: 14px; border-radius: 20px; box-shadow: 7px 7px 0 var(--ink); }
  .af-market-item { grid-template-columns: auto 1fr; }
  .af-market-price { grid-column: 2; text-align: left; }
  .af-market-footer { align-items: flex-start; flex-direction: column; }
  .af-category-grid { grid-template-columns: 1fr; }
  .af-category-creator { grid-column: auto; }
  .af-section-head { display: block; }
  .af-section-head p { margin-top: 18px; }
  .home-section,
  .section-padding,
  .pricing-section,
  .service-overview-section { padding: 66px 0; }
  .page-header { padding: 64px 0 58px; }
  .page-title { font-size: 42px; }
  .section-title { font-size: 37px; }
  .starter-pricing-grid,
  .platform-pricing-grid,
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid,
  .home-service-grid,
  .home-category-grid,
  .usecase-grid,
  .why-grid,
  .snapshot-grid,
  .related-grid,
  .contact-grid,
  .quality-grid,
  .process-timeline { grid-template-columns: 1fr; }
  .pricing-grid-pair,
  .pricing-grid-triple { grid-template-columns: 1fr; }
  .value-strip-content { grid-template-columns: 1fr; }
  .value-strip-item { border-bottom: 1px solid #4f4942; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-contacts { left: 10px; bottom: 10px; }
  .floating-btn { width: 43px; height: 43px; }
  .modal-content { padding: 27px 18px 21px; border-radius: 20px; }
  .modal-title { font-size: 27px; }
  .modal-option { padding: 10px; }
  .modal-option-value { overflow-wrap: anywhere; }
  .privacy-section,
  .blog-empty-state,
  .payment-result-card { padding: 26px 20px; }
  .why-panel { padding: 29px 20px; }
  .commerce-actions { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; border-left: 0; }
}

/* 2026 catalog refinement — calmer palette, marketplace hero and product tiles */
.top-strip {
  background: #f3c14f;
  border-bottom-color: #d8a72f;
}
.navbar {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
}
.navbar.scrolled { box-shadow: 0 8px 24px rgba(17, 24, 39, .08); }
.logo-icon {
  background: var(--acid) !important;
  border-color: #d39e25;
  border-radius: 12px;
  box-shadow: none;
  transform: none;
}
.logo-icon::after { transform: none; }
.btn { border-width: 1px; border-color: var(--ink); border-radius: 10px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { background: #111827; }
.btn-primary:hover { color: #111827; background: var(--acid); }
.section-label {
  color: #7b5710;
  background: #fff5d9;
  border: 1px solid #ead08f;
}

/* A full-width masthead replaces the former split hero/card composition. */
.af-hero {
  padding: 28px 0 0;
  color: white;
  background:
    radial-gradient(circle at 14% 10%, rgba(75, 111, 191, .34), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(125, 103, 183, .22), transparent 30%),
    #0d1629;
  border-bottom: 0;
}
.af-hero::before {
  width: min(72vw, 920px);
  height: min(72vw, 920px);
  left: 50%;
  right: auto;
  top: -650px;
  transform: translateX(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 0 0 110px rgba(255,255,255,.025), 0 0 0 220px rgba(255,255,255,.018);
  border-radius: 50%;
}
.af-hero-layout { display: block; }
.af-hero-masthead { position: relative; z-index: 1; }
.af-hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  color: #aeb9cd;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.af-hero-copy {
  max-width: 1040px;
  padding: 78px 0 84px;
  margin: 0 auto;
  text-align: center;
}
.af-eyebrow {
  color: #f7d887;
  background: rgba(242, 189, 69, .09);
  border: 1px solid rgba(242, 189, 69, .42);
}
.af-hero h1 {
  max-width: 1000px;
  margin: 26px auto 25px;
  color: white;
  font-size: clamp(54px, 7.6vw, 102px);
  line-height: .94;
  letter-spacing: -.06em;
}
.af-hero h1 span {
  display: block;
  color: #f3c14f;
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.af-hero-lead {
  max-width: 720px;
  margin: 0 auto 31px;
  color: #bec8d9;
  font-size: 17px;
  font-weight: 600;
}
.af-hero-actions { justify-content: center; }
.af-hero .btn { min-height: 54px; padding-inline: 24px; }
.af-hero .btn-primary {
  color: #111827;
  background: #f2bd45;
  border-color: #f2bd45;
  box-shadow: none;
}
.af-hero .btn-primary:hover { background: #ffd36f; }
.af-hero .btn-secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}
.af-hero .btn-secondary:hover { background: rgba(255,255,255,.09); }
.af-hero-quickshop {
  display: grid;
  grid-template-columns: .8fr repeat(4, minmax(0, 1fr));
  background: white;
  border: 1px solid rgba(255,255,255,.16);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -18px 48px rgba(0, 0, 0, .14);
}
.af-quickshop-label,
.af-hero-quickshop a {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}
.af-quickshop-label { display: grid; align-content: center; gap: 2px; background: #f7f8fb; border-radius: 18px 0 0; }
.af-quickshop-label span { color: #95660e; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.af-quickshop-label strong { font-size: 12px; }
.af-hero-quickshop a:last-child { border-right: 0; }
.af-hero-quickshop a:hover { background: #f8f9fc; }
.af-hero-quickshop a > span:last-child,
.af-hero-quickshop strong,
.af-hero-quickshop small { display: block; }
.af-hero-quickshop strong { font-size: 13px; }
.af-hero-quickshop small { margin-top: 2px; color: var(--ink-soft); font-size: 9px; font-weight: 700; }
.af-quickshop-mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: #243b70;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

/* Product catalog cards: 3-up desktop, image-led, compact and easy to scan. */
.home-starter-pricing,
.pricing-section { background: #f5f7fb; }
.starter-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.packages-grid,
.pricing-card-grid,
.monthly-grid,
.premium-access-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.pricing-section .section-intro,
.pricing-panel-intro { max-width: 760px; margin-right: auto; margin-left: 0; text-align: left; }
.pricing-tabs { justify-content: flex-start; }
.pricing-tab {
  color: #4e596b;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(17, 24, 39, .04);
}
.pricing-tab:hover { background: #f7f8fb; border-color: #b8c1d0; }
.pricing-tab.active { color: white; background: #17233a; border-color: #17233a; }
.starter-price-card,
.package-card,
.monthly-card,
.premium-access-card {
  padding: 0 20px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 7px 22px rgba(17, 24, 39, .055);
}
.starter-price-card:hover,
.package-card:hover,
.monthly-card:hover,
.premium-access-card:hover {
  transform: translateY(-4px);
  border-color: #b8c1d0;
  box-shadow: 0 18px 38px rgba(17, 24, 39, .11);
}
.starter-price-card.featured,
.package-card.featured,
.monthly-card.featured,
.premium-access-card.featured {
  background: white;
  border-color: #c7a247;
  box-shadow: 0 9px 25px rgba(17, 24, 39, .08);
}
.starter-price-card.featured::before,
.package-card.featured::before,
.monthly-card.featured::before,
.premium-access-card.featured::before {
  content: "Popular";
  z-index: 3;
  top: 13px;
  right: 13px;
  width: auto;
  padding: 5px 8px;
  color: #111827;
  background: #f3c14f;
  border: 0;
  border-radius: 999px;
  transform: none;
  font-size: 8px;
  line-height: 1;
}
.product-card-visual {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 0 -20px 18px;
  color: white;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.18), transparent 25%),
    linear-gradient(135deg, var(--product-tone), var(--product-tone-2));
  border-radius: 15px 15px 0 0;
}
.product-card-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -118px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255,255,255,.035), 0 0 0 60px rgba(255,255,255,.025);
}
.product-card-status {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: #192238;
  background: #f5cc69;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.product-card-mark {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .33);
  border-radius: 22px;
  font: 900 23px/1 "Archivo Black", sans-serif;
  letter-spacing: -.04em;
  backdrop-filter: blur(8px);
}
.product-card-bundle {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 5px 10px;
  color: #172033;
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}
.catalog-product-card .starter-price-top { display: none; }
.catalog-product-card h3,
.catalog-product-card .package-name { margin: 0 0 6px; font-size: 18px; line-height: 1.2; letter-spacing: -.025em; }
.catalog-product-card .package-desc { min-height: 21px; margin-bottom: 6px; font-size: 11px; }
.catalog-product-card .starter-price,
.catalog-product-card .package-price { margin: 9px 0 13px; }
.catalog-product-card .starter-price strong,
.catalog-product-card .package-price-value { font-size: 32px; }
.catalog-product-card .package-price-unit,
.catalog-product-card .starter-price span { font-size: 10px; }
.catalog-product-card .starter-details { margin-bottom: 15px; }
.catalog-product-card .package-features { margin: 12px 0 17px; }
.catalog-product-card .package-feature svg { color: #b07a11; }
.catalog-product-card .commerce-controls { border-top: 1px solid var(--line); }
.catalog-product-card .quantity-stepper { border: 1px solid #cbd2de; }
.catalog-product-card .quantity-stepper output { border-inline: 1px solid #cbd2de; }
.catalog-product-card .quantity-stepper button { background: #f4f6fa; }
.catalog-product-card .commerce-actions { gap: 7px; }
.catalog-product-card .add-cart-btn { background: #f2bd45; border-color: #d6a42f; }
.catalog-product-card .order-card-btn { background: #17233a; }
.add-cart-btn.added { color: white; background: #3157c8; }
.cart-count { color: white; background: #3157c8; border-color: white; }
.floating-email { background: #3157c8; }
.modal-option-arrow svg { color: #3157c8; }
.package-feature svg,
.service-overview-item svg { color: #b07a11; }

.page-header { background: #e8edf8; border-bottom-color: var(--line); }
.page-header::after { background: #f2bd45; border-color: #d8a72f; }
.value-strip { background: #111827; border-bottom: 0; }
.value-strip-item svg { color: #f2bd45; }
.home-snapshot { background: #f3c14f; border-color: #d8a72f; }
.why-panel { background: #172c55; border: 0; box-shadow: var(--shadow); }
.home-final-cta,
.shore-final-cta,
.orbit-final-cta,
.final-cta { background: #e8edf8; border-color: var(--line); }
.footer-title,
.footer-link:hover { color: #f3c14f; }
.footer-social a { background: #f3c14f; }

@media (max-width: 920px) {
  .af-hero-quickshop { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .af-quickshop-label { grid-column: 1 / -1; min-height: 68px; border-radius: 18px 18px 0 0; }
  .af-hero-quickshop a:nth-child(3),
  .af-hero-quickshop a:nth-child(5) { border-right: 0; }
  .starter-pricing-grid,
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .af-hero { padding-top: 18px; }
  .af-hero-topline { justify-content: center; padding-bottom: 16px; }
  .af-hero-topline span:last-child { display: none; }
  .af-hero-copy { padding: 51px 0 56px; text-align: left; }
  .af-hero h1 { margin: 20px 0; font-size: clamp(45px, 14vw, 66px); }
  .af-hero-lead { margin-left: 0; font-size: 14px; }
  .af-hero-actions { justify-content: flex-start; }
  .af-hero-actions .btn { width: 100%; }
  .af-hero-quickshop { margin-inline: -1px; border-radius: 14px 14px 0 0; }
  .af-quickshop-label { min-height: 58px; border-radius: 14px 14px 0 0; }
  .af-quickshop-label,
  .af-hero-quickshop a { min-height: 76px; padding: 11px 10px; gap: 8px; }
  .af-quickshop-mark { flex-basis: 34px; width: 34px; height: 34px; border-radius: 9px; font-size: 8px; }
  .af-hero-quickshop strong { font-size: 11px; }
  .af-hero-quickshop small { font-size: 8px; }

  .home-starter-pricing .container,
  .pricing-section .container { width: min(calc(100% - 20px), var(--container)); }
  .starter-pricing-grid,
  .platform-pricing-grid,
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid,
  .pricing-grid-pair,
  .pricing-grid-triple { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pricing-grid-single { max-width: calc(50% - 5px); grid-template-columns: minmax(0, 1fr); }
  .pricing-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 2px 1px 9px; scrollbar-width: none; }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .pricing-tab { flex: 0 0 auto; min-height: 39px; padding: 0 13px; font-size: 10px; }
  .pricing-panel-title { font-size: 23px; }

  .starter-price-card,
  .package-card,
  .monthly-card,
  .premium-access-card { padding: 0 11px 12px; border-radius: 12px; }
  .product-card-visual { min-height: 116px; margin: 0 -11px 12px; border-radius: 11px 11px 0 0; }
  .product-card-status { top: 8px; left: 8px; padding: 4px 6px; font-size: 7px; }
  .starter-price-card.featured::before,
  .package-card.featured::before,
  .monthly-card.featured::before,
  .premium-access-card.featured::before { top: 8px; right: 8px; padding: 4px 6px; font-size: 7px; }
  .product-card-mark { width: 50px; height: 50px; border-radius: 15px; font-size: 16px; }
  .product-card-bundle { bottom: 8px; max-width: calc(100% - 12px); padding: 4px 7px; font-size: 7px; }
  .catalog-product-card h3,
  .catalog-product-card .package-name { min-height: 34px; margin-bottom: 4px; font-size: 14px; }
  .catalog-product-card .package-desc { min-height: 34px; margin-bottom: 4px; font-size: 9px; line-height: 1.45; }
  .catalog-product-card .starter-price,
  .catalog-product-card .package-price { display: block; margin: 6px 0 9px; }
  .catalog-product-card .starter-price strong,
  .catalog-product-card .package-price-value { display: block; font-size: 23px; }
  .catalog-product-card .starter-price span,
  .catalog-product-card .package-price-unit { display: block; font-size: 8px; }
  .catalog-product-card .starter-details,
  .catalog-product-card .package-features { display: none; }
  .catalog-product-card .commerce-controls { padding-top: 10px; }
  .catalog-product-card .commerce-quantity-row { display: block; margin-bottom: 8px; }
  .catalog-product-card .commerce-quantity-copy { margin-bottom: 7px; }
  .catalog-product-card .commerce-quantity-copy span { font-size: 7px; }
  .catalog-product-card .commerce-quantity-copy strong { font-size: 9px; }
  .catalog-product-card .quantity-stepper { width: 100%; grid-template-columns: 27px 1fr 27px; min-height: 31px; }
  .catalog-product-card .commerce-total { display: block; margin-bottom: 8px; font-size: 8px; }
  .catalog-product-card .commerce-total strong { display: block; margin-top: 3px; font-size: 15px; }
  .catalog-product-card .commerce-actions { grid-template-columns: 1fr; }
  .catalog-product-card .commerce-actions .btn { min-height: 36px; padding-inline: 4px; font-size: 8px; }
}

/* Final sizing pass: official logos, viewport-fit hero and denser pricing tables. */
.starter-pricing-grid,
.packages-grid,
.pricing-card-grid,
.monthly-grid,
.premium-access-grid {
  width: min(100%, 1080px);
  margin-inline: auto;
  gap: 16px;
}
.catalog-product-card {
  display: flex;
  flex-direction: column;
  padding: 0 16px 15px;
}
.product-card-visual {
  min-height: 118px;
  margin: 0 -16px 13px;
}
.product-card-logo {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(5, 10, 24, .18);
}
.product-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.product-card-logo > span { display: none; color: #17233a; font: 900 19px/1 "Archivo Black", sans-serif; }
.product-card-logo.logo-fallback img { display: none; }
.product-card-logo.logo-fallback > span { display: block; }
.catalog-product-card h3,
.catalog-product-card .package-name { margin-bottom: 4px; font-size: 16px; }
.catalog-product-card .package-desc { min-height: 18px; margin-bottom: 3px; font-size: 10px; }
.catalog-product-card .starter-price,
.catalog-product-card .package-price { margin: 5px 0 9px; }
.catalog-product-card .starter-price strong,
.catalog-product-card .package-price-value { font-size: 28px; }
.catalog-product-card .starter-details,
.catalog-product-card .package-features { display: none; }
.catalog-product-card .commerce-controls { padding-top: 10px; }
.catalog-product-card .commerce-quantity-row { margin-bottom: 7px; }
.catalog-product-card .commerce-total { margin-bottom: 8px; }
.catalog-product-card .commerce-actions .btn { min-height: 38px; }
.catalog-product-card .quantity-stepper { min-height: 31px; grid-template-columns: 28px 32px 28px; }

@media (min-width: 921px) {
  .af-hero {
    height: clamp(480px, calc(100svh - 120px), 650px);
    padding-top: 20px;
  }
  .af-hero > .container,
  .af-hero-layout,
  .af-hero-masthead { height: 100%; }
  .af-hero-masthead { display: grid; grid-template-rows: auto 1fr auto; }
  .af-hero-topline { padding-bottom: 12px; }
  .af-hero-copy { align-self: center; padding: 20px 0 24px; }
  .af-hero h1 { margin: 17px auto 16px; font-size: clamp(50px, 6.2vw, 80px); }
  .af-hero-lead { margin-bottom: 21px; font-size: 15px; }
  .af-hero .btn { min-height: 48px; }
  .af-quickshop-label,
  .af-hero-quickshop a { min-height: 76px; padding: 12px 15px; }
}

@media (max-width: 640px) {
  .af-hero-copy { padding: 36px 0 40px; }
  .af-hero h1 { margin: 17px 0; font-size: clamp(39px, 12.4vw, 54px); }
  .af-hero-lead { margin-bottom: 21px; font-size: 13px; }
  .af-hero .btn { min-height: 46px; }
  .af-quickshop-label { min-height: 48px; }
  .af-quickshop-label,
  .af-hero-quickshop a { min-height: 64px; padding: 8px; }

  .starter-pricing-grid,
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid { gap: 8px; }
  .catalog-product-card { padding: 0 9px 10px; }
  .product-card-visual { min-height: 90px; margin: 0 -9px 9px; }
  .product-card-logo { width: 45px; height: 45px; padding: 7px; border-radius: 13px; }
  .product-card-logo > span { font-size: 14px; }
  .product-card-status { top: 6px; left: 6px; }
  .product-card-bundle { bottom: 6px; }
  .catalog-product-card h3,
  .catalog-product-card .package-name { min-height: 29px; font-size: 12px; line-height: 1.25; }
  .catalog-product-card .package-desc { min-height: 27px; font-size: 8px; }
  .catalog-product-card .starter-price strong,
  .catalog-product-card .package-price-value { font-size: 21px; }
  .catalog-product-card .commerce-quantity-row { display: flex; margin-bottom: 6px; }
  .catalog-product-card .commerce-quantity-copy { margin-bottom: 0; }
  .catalog-product-card .quantity-stepper { width: 74px; grid-template-columns: 23px 28px 23px; min-height: 28px; }
  .catalog-product-card .commerce-total { display: flex; margin-bottom: 6px; }
  .catalog-product-card .commerce-total strong { display: block; margin-top: 0; font-size: 13px; }
  .catalog-product-card .commerce-actions { grid-template-columns: 1fr 1fr; gap: 4px; }
  .catalog-product-card .commerce-actions .btn { min-height: 32px; font-size: 7px; }
}

/* Viewport-safe Services catalog: anchor the large panel to the navbar container,
   not to the narrow Services label, and let short screens scroll the whole panel. */
.navbar-content { position: relative; }

@media (min-width: 921px) {
  .dropdown-services { position: static; }
  .dropdown-menu-services {
    z-index: 20;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100svh - 140px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px;
    transform: translateY(10px);
    scrollbar-width: thin;
    scrollbar-color: #9da8ba transparent;
  }
  .dropdown:hover .dropdown-menu-services,
  .dropdown:focus-within .dropdown-menu-services,
  .dropdown.active .dropdown-menu-services {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-grid-services {
    max-height: none;
    overflow: visible;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px clamp(13px, 1.8vw, 24px);
    padding-right: 0;
  }
  .dropdown-menu-services .catalog-searchbar { margin-bottom: 16px; padding-bottom: 16px; }
  .dropdown-menu-services .dropdown-view-all { margin-top: 15px; }
}

/* Accfair 3D marketplace hero */
.af-hero {
  --scene-rotate-x: 0deg;
  --scene-rotate-y: 0deg;
  --scene-shift-x: 0px;
  --scene-shift-y: 0px;
  isolation: isolate;
  min-height: 0;
  padding: 18px 0 0;
  color: white;
  background:
    radial-gradient(circle at 12% 8%, rgba(69, 105, 205, .34), transparent 31%),
    radial-gradient(circle at 82% 22%, rgba(120, 86, 210, .22), transparent 34%),
    linear-gradient(135deg, #0a1326 0%, #101d38 56%, #0b1428 100%);
  border-bottom: 0;
}
.af-hero::before {
  width: 100%;
  height: 100%;
  inset: 0;
  transform: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: .55;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.af-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -250px;
  border: 1px solid rgba(242, 189, 69, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(242,189,69,.025), 0 0 0 164px rgba(242,189,69,.018);
}
.af-hero-layout { position: relative; display: block; height: 100%; }
.af-hero-masthead { position: relative; z-index: 1; height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.af-hero-topline {
  min-height: 31px;
  padding: 0 0 10px;
  color: #aebad1;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 9px;
}
.af-hero-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding: 18px 0 20px;
}
.af-hero-copy {
  max-width: 690px;
  padding: 0;
  margin: 0;
  text-align: left;
}
.af-hero .af-eyebrow {
  color: #f7d887;
  background: rgba(242, 189, 69, .08);
  border: 1px solid rgba(242, 189, 69, .42);
  box-shadow: inset 0 0 18px rgba(242,189,69,.05);
}
.af-hero h1 {
  max-width: 690px;
  margin: 17px 0 16px;
  color: white;
  font-size: clamp(43px, 5.3vw, 72px);
  line-height: .96;
  letter-spacing: -.055em;
}
.af-hero h1 span {
  display: block;
  color: #f3c14f;
  background: linear-gradient(90deg, #f3c14f, #ffe39b 52%, #f3c14f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: none;
  animation: afHeroShine 7s linear infinite;
}
.af-hero-lead {
  max-width: 610px;
  margin: 0 0 20px;
  color: #c2ccdd;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.af-hero-actions { justify-content: flex-start; gap: 10px; }
.af-hero .btn { min-height: 46px; padding-inline: 20px; }
.af-hero .btn-primary { color: #111827; background: #f2bd45; border-color: #f2bd45; box-shadow: 0 10px 30px rgba(242,189,69,.14); }
.af-hero .btn-primary:hover { background: #ffd36f; }
.af-hero .btn-secondary { color: white; background: rgba(255,255,255,.025); border-color: rgba(255,255,255,.34); }
.af-hero .btn-secondary:hover { background: rgba(255,255,255,.09); }
.af-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  padding: 0;
  margin: 17px 0 0;
  color: #aebad0;
  list-style: none;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .03em;
}
.af-hero-proof li { display: inline-flex; align-items: center; gap: 7px; }
.af-hero-proof li::before { content: ""; width: 5px; height: 5px; background: #f3c14f; border-radius: 50%; box-shadow: 0 0 0 4px rgba(243,193,79,.10); }

.af-hero-scene {
  position: relative;
  min-height: 340px;
  perspective: 1100px;
  transform-style: preserve-3d;
  transform: translate3d(var(--scene-shift-x), var(--scene-shift-y), 0) rotateX(var(--scene-rotate-x)) rotateY(var(--scene-rotate-y));
  transition: transform .22s ease-out;
}
.af-scene-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(-80px);
  background: radial-gradient(circle, rgba(77,115,220,.38), rgba(82,75,177,.14) 42%, transparent 70%);
  filter: blur(8px);
}
.af-scene-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(180,198,239,.20);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.af-scene-orbit-one { width: 92%; aspect-ratio: 1.7; transform: translate(-50%, -50%) rotateX(67deg) rotateZ(-8deg); animation: afOrbitSpin 18s linear infinite; }
.af-scene-orbit-two { width: 73%; aspect-ratio: 1; transform: translate(-50%, -50%) rotateX(72deg) rotateY(18deg); border-color: rgba(243,193,79,.18); }
.af-scene-orbit-one i { position: absolute; width: 8px; height: 8px; background: #f3c14f; border-radius: 50%; box-shadow: 0 0 14px rgba(243,193,79,.8); }
.af-scene-orbit-one i:nth-child(1) { left: 7%; top: 28%; }
.af-scene-orbit-one i:nth-child(2) { right: 8%; top: 62%; width: 5px; height: 5px; background: #8faeff; }
.af-scene-orbit-one i:nth-child(3) { left: 47%; bottom: -4px; width: 4px; height: 4px; background: white; }
.af-scene-card,
.af-scene-float { color: #17233a; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.75); box-shadow: 0 28px 70px rgba(0,0,0,.29), inset 0 1px rgba(255,255,255,.9); backdrop-filter: blur(14px); }
.af-scene-card-main {
  position: absolute;
  z-index: 3;
  width: min(82%, 390px);
  left: 50%;
  top: 50%;
  overflow: hidden;
  border-radius: 19px;
  transform: translate(-50%, -50%) rotateX(4deg) rotateY(-9deg) rotateZ(-1.5deg) translateZ(55px);
  transform-style: preserve-3d;
  animation: afSceneFloat 6s ease-in-out infinite;
}
.af-scene-card-head { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 15px; background: #f6f8fc; border-bottom: 1px solid #e0e5ef; font-size: 9px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.af-scene-card-head strong { display: inline-flex; align-items: center; gap: 5px; color: #316b51; font-size: 7px; }
.af-scene-card-head i { width: 6px; height: 6px; background: #35b77c; border-radius: 50%; box-shadow: 0 0 0 4px rgba(53,183,124,.12); animation: afScenePulse 2s ease-in-out infinite; }
.af-scene-stack { display: grid; gap: 7px; padding: 12px; }
.af-scene-product { min-height: 51px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 7px 9px; background: #f7f9fc; border: 1px solid #e2e6ee; border-radius: 11px; }
.af-scene-product-icon { width: 34px; height: 34px; display: grid; place-items: center; color: white; border-radius: 9px; font-size: 8px; letter-spacing: .02em; }
.af-scene-product-icon-ig { background: linear-gradient(135deg, #8d46da, #ef596f, #f5a63a); }
.af-scene-product-icon-gm { background: linear-gradient(135deg, #4285f4, #e94235); }
.af-scene-product-icon-ai { background: linear-gradient(135deg, #17233a, #4667c6); }
.af-scene-product span,
.af-scene-product strong,
.af-scene-product small { display: block; }
.af-scene-product strong { font-size: 10px; }
.af-scene-product small { margin-top: 2px; color: #7a8496; font-size: 7px; font-weight: 700; }
.af-scene-product em { min-width: 38px; padding: 5px 7px; color: #684c0e; background: #fff1c9; border-radius: 999px; text-align: center; font-size: 7px; font-style: normal; font-weight: 900; }
.af-scene-card-foot { min-height: 43px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 15px; color: #737d8f; background: #f6f8fc; border-top: 1px solid #e0e5ef; font-size: 8px; font-weight: 800; }
.af-scene-card-foot strong { color: #17233a; }
.af-scene-card-foot b { color: #b37d14; font-size: 13px; }
.af-scene-float { position: absolute; z-index: 5; border-radius: 15px; }
.af-scene-float-volume { left: 0; top: 16%; min-width: 126px; padding: 13px 15px; transform: rotateY(10deg) rotateZ(-5deg) translateZ(90px); animation: afSceneDrift 5.4s ease-in-out infinite .35s; }
.af-scene-float-volume span,
.af-scene-float-volume strong,
.af-scene-float-volume small { display: block; }
.af-scene-float-volume span { color: #7b8494; font-size: 7px; font-weight: 900; text-transform: uppercase; }
.af-scene-float-volume strong { margin: 3px 0 0; font: 28px/1 "Archivo Black", sans-serif; }
.af-scene-float-volume small { margin-top: 3px; color: #7b8494; font-size: 7px; font-weight: 700; }
.af-scene-float-support { right: -2%; bottom: 15%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; min-width: 172px; padding: 10px 11px; transform: rotateY(-8deg) rotateZ(3deg) translateZ(105px); animation: afSceneDrift 5.8s ease-in-out infinite .9s reverse; }
.af-scene-avatar { width: 31px; height: 31px; display: grid; place-items: center; color: #17233a; background: #f3c14f; border-radius: 9px; font: 12px/1 "Archivo Black", sans-serif; }
.af-scene-float-support strong,
.af-scene-float-support small { display: block; }
.af-scene-float-support strong { font-size: 9px; }
.af-scene-float-support small { margin-top: 2px; color: #7b8494; font-size: 7px; font-weight: 700; }
.af-scene-float-support > i { width: 7px; height: 7px; background: #35b77c; border-radius: 50%; box-shadow: 0 0 0 4px rgba(53,183,124,.12); }
.af-scene-cube { position: absolute; z-index: 2; right: 2%; top: 8%; width: 42px; height: 42px; transform-style: preserve-3d; transform: rotateX(-22deg) rotateY(38deg) rotateZ(8deg); animation: afCubeTurn 12s linear infinite; }
.af-scene-cube span { position: absolute; inset: 0; background: rgba(243,193,79,.16); border: 1px solid rgba(243,193,79,.48); }
.af-scene-cube span:nth-child(1) { transform: translateZ(21px); }
.af-scene-cube span:nth-child(2) { transform: rotateY(90deg) translateZ(21px); }
.af-scene-cube span:nth-child(3) { transform: rotateX(90deg) translateZ(21px); }

.af-hero-quickshop { grid-template-columns: .78fr repeat(4, minmax(0, 1fr)); border-radius: 15px 15px 0 0; box-shadow: 0 -16px 40px rgba(0,0,0,.15); }
.af-quickshop-label,
.af-hero-quickshop a { min-height: 70px; padding: 10px 14px; }
.af-quickshop-label { border-radius: 15px 0 0; }
.af-quickshop-mark { flex-basis: 36px; width: 36px; height: 36px; border-radius: 10px; }
.af-hero-quickshop strong { font-size: 11px; }
.af-hero-quickshop small { font-size: 8px; }

@keyframes afHeroShine { to { background-position: -200% center; } }
@keyframes afSceneFloat {
  0%, 100% { transform: translate(-50%, -50%) rotateX(4deg) rotateY(-9deg) rotateZ(-1.5deg) translateZ(55px) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(2deg) rotateY(-6deg) rotateZ(-.5deg) translateZ(68px) translateY(-8px); }
}
@keyframes afSceneDrift { 0%, 100% { margin-top: 0; } 50% { margin-top: -10px; } }
@keyframes afScenePulse { 50% { opacity: .48; transform: scale(.75); } }
@keyframes afOrbitSpin { to { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(352deg); } }
@keyframes afCubeTurn { to { transform: rotateX(338deg) rotateY(398deg) rotateZ(368deg); } }

@media (min-width: 921px) {
  .af-hero { height: clamp(480px, calc(100svh - 120px), 680px); }
}

@media (min-width: 921px) and (max-height: 700px) {
  .af-hero-stage { padding-block: 10px 12px; }
  .af-hero-scene { min-height: 300px; }
  .af-hero h1 { margin-block: 12px; font-size: clamp(40px, 5vw, 60px); }
  .af-hero-lead { margin-bottom: 14px; line-height: 1.55; }
  .af-hero-proof { margin-top: 12px; }
  .af-quickshop-label,
  .af-hero-quickshop a { min-height: 62px; padding-block: 7px; }
}

@media (max-width: 920px) {
  .af-hero { height: auto; padding-top: 14px; }
  .af-hero-masthead { display: block; }
  .af-hero-stage { grid-template-columns: 1fr; gap: 4px; padding: 30px 0 15px; }
  .af-hero-copy { max-width: 720px; }
  .af-hero h1 { max-width: 720px; }
  .af-hero-scene { width: min(100%, 620px); min-height: 310px; margin: 0 auto; }
  .af-hero-quickshop { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .af-quickshop-label { grid-column: 1 / -1; min-height: 50px; border-radius: 15px 15px 0 0; }
  .af-hero-quickshop a:nth-child(3),
  .af-hero-quickshop a:nth-child(5) { border-right: 0; }
}

@media (max-width: 640px) {
  .af-hero { padding-top: 10px; }
  .af-hero-topline { justify-content: center; min-height: 26px; padding-bottom: 8px; }
  .af-hero-topline span:last-child { display: none; }
  .af-hero-stage { gap: 0; padding: 25px 0 8px; }
  .af-hero-copy { padding: 0; }
  .af-hero h1 { margin: 14px 0; font-size: clamp(38px, 12.2vw, 55px); }
  .af-hero-lead { margin: 0 0 17px; font-size: 12px; line-height: 1.62; }
  .af-hero-actions { display: grid; grid-template-columns: 1fr; }
  .af-hero-actions .btn { width: 100%; min-height: 43px; }
  .af-hero-proof { gap: 8px 13px; margin-top: 14px; font-size: 8px; }
  .af-hero-scene { min-height: 238px; }
  .af-scene-card-main { width: min(79%, 310px); border-radius: 15px; }
  .af-scene-card-head { min-height: 35px; padding-inline: 10px; font-size: 7px; }
  .af-scene-stack { gap: 5px; padding: 8px; }
  .af-scene-product { min-height: 38px; gap: 7px; padding: 4px 6px; border-radius: 8px; }
  .af-scene-product-icon { width: 27px; height: 27px; border-radius: 7px; font-size: 6px; }
  .af-scene-product strong { font-size: 8px; }
  .af-scene-product small { font-size: 6px; }
  .af-scene-product em { min-width: 31px; padding: 4px 5px; font-size: 6px; }
  .af-scene-card-foot { min-height: 32px; padding-inline: 10px; font-size: 6px; }
  .af-scene-float-volume { left: -3px; top: 14%; min-width: 89px; padding: 9px 10px; border-radius: 11px; }
  .af-scene-float-volume span,
  .af-scene-float-volume small { font-size: 5px; }
  .af-scene-float-volume strong { font-size: 20px; }
  .af-scene-float-support { right: -3px; bottom: 12%; min-width: 125px; gap: 6px; padding: 7px; border-radius: 11px; }
  .af-scene-avatar { width: 24px; height: 24px; border-radius: 7px; font-size: 9px; }
  .af-scene-float-support strong { font-size: 7px; }
  .af-scene-float-support small { font-size: 5px; }
  .af-scene-cube { right: 4%; width: 29px; height: 29px; }
  .af-scene-cube span:nth-child(1) { transform: translateZ(14px); }
  .af-scene-cube span:nth-child(2) { transform: rotateY(90deg) translateZ(14px); }
  .af-scene-cube span:nth-child(3) { transform: rotateX(90deg) translateZ(14px); }
  .af-hero-quickshop { margin-inline: 0; border-radius: 12px 12px 0 0; }
  .af-quickshop-label { display: none; }
  .af-quickshop-label,
  .af-hero-quickshop a { min-height: 58px; padding: 7px 8px; }
  .af-hero-quickshop a:nth-child(2) { border-radius: 12px 0 0; }
  .af-hero-quickshop a:nth-child(3) { border-radius: 0 12px 0 0; }
  .af-quickshop-mark { flex-basis: 30px; width: 30px; height: 30px; border-radius: 8px; font-size: 7px; }
  .af-hero-quickshop strong { font-size: 9px; }
  .af-hero-quickshop small { font-size: 7px; }
}

@media (max-width: 390px) {
  .af-hero-proof li:last-child { display: none; }
  .af-scene-float-volume { display: none; }
}

/* Threads IP-country pricing uses the standard commerce cards instead of a
   wide data table, so every offer remains visible without horizontal scroll. */
.home-threads-ip {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: #edf2fb;
  border-bottom: 1px solid var(--line);
}
.home-threads-ip::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: -220px;
  border: 1px solid rgba(49, 87, 200, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(49,87,200,.025), 0 0 0 144px rgba(49,87,200,.018);
}
.threads-ip-home-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 34px;
}
.threads-ip-home-head .section-title { max-width: 760px; margin: 15px 0 0; }
.threads-ip-availability {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 17px 18px;
  color: #4e596b;
  background: rgba(255,255,255,.78);
  border: 1px solid #cfd8e8;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(17,24,39,.05);
}
.threads-ip-availability p { margin: 0; font-size: 12px; line-height: 1.65; }
.threads-ip-availability strong { display: block; margin-bottom: 2px; color: var(--ink); }
.threads-live-dot { width: 9px; height: 9px; margin-top: 6px; background: #2fac78; border-radius: 50%; box-shadow: 0 0 0 5px rgba(47,172,120,.12); }
.threads-ip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1080px);
  margin-inline: auto;
}
.threads-ip-card { min-width: 0; }
.threads-ip-card .threads-country-code {
  align-self: flex-start;
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 28px;
  padding: 0 8px;
  margin-bottom: 10px;
  color: #fff;
  background: #3157c8;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
}
.catalog-product-card.threads-ip-card .threads-country-code { margin-top: 0; }
.threads-ip-home-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1080px);
  margin: 24px auto 0;
}
.threads-ip-home-foot p { margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 700; }

@media (max-width: 920px) {
  .threads-ip-home-head { grid-template-columns: 1fr; gap: 20px; }
  .threads-ip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .home-threads-ip { padding: 56px 0; }
  .home-threads-ip .container { width: min(calc(100% - 20px), var(--container)); }
  .threads-ip-home-head { margin-bottom: 24px; }
  .threads-ip-home-head .section-title { font-size: 34px; }
  .threads-ip-availability { padding: 13px; }
  .threads-ip-grid { gap: 8px; }
  .threads-ip-card .threads-country-code { min-width: 31px; min-height: 23px; margin-bottom: 7px; font-size: 7px; }
  .threads-ip-home-foot { align-items: stretch; flex-direction: column; }
  .threads-ip-home-foot .btn { width: 100%; }
}

@media (max-width: 340px) {
  .threads-ip-grid { grid-template-columns: 1fr; }
}

/* Mobile pricing comfort pass: retain the compact two-column comparison at
   normal phone widths, but give each card more visual and tap-target space. */
@media (max-width: 640px) {
  .starter-pricing-grid,
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid,
  .threads-ip-grid { gap: 10px; }

  .catalog-product-card {
    padding: 0 11px 13px;
    border-radius: 14px;
  }
  .product-card-visual {
    min-height: 104px;
    margin: 0 -11px 11px;
    border-radius: 13px 13px 0 0;
  }
  .product-card-logo {
    width: 52px;
    height: 52px;
    padding: 8px;
    border-radius: 15px;
  }
  .product-card-logo > span { font-size: 16px; }
  .product-card-status {
    top: 7px;
    left: 7px;
    padding: 4px 7px;
    font-size: 8px;
  }
  .product-card-bundle {
    bottom: 7px;
    padding: 4px 8px;
    font-size: 8px;
  }
  .catalog-product-card h3,
  .catalog-product-card .package-name {
    min-height: 35px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.28;
  }
  .catalog-product-card .package-desc {
    min-height: 31px;
    margin-bottom: 5px;
    font-size: 9px;
    line-height: 1.5;
  }
  .catalog-product-card .starter-price,
  .catalog-product-card .package-price { margin: 7px 0 11px; }
  .catalog-product-card .starter-price strong,
  .catalog-product-card .package-price-value { font-size: 25px; }
  .catalog-product-card .starter-price span,
  .catalog-product-card .package-price-unit { font-size: 9px; }
  .catalog-product-card .commerce-controls { padding-top: 12px; }
  .catalog-product-card .commerce-quantity-copy span { font-size: 8px; }
  .catalog-product-card .commerce-quantity-copy strong { font-size: 10px; }
  .catalog-product-card .quantity-stepper {
    width: 80px;
    min-height: 32px;
    grid-template-columns: 24px 32px 24px;
  }
  .catalog-product-card .quantity-stepper button { font-size: 15px; }
  .catalog-product-card .quantity-stepper output { font-size: 11px; }
  .catalog-product-card .commerce-total {
    margin-bottom: 8px;
    font-size: 9px;
  }
  .catalog-product-card .commerce-total strong { font-size: 15px; }
  .catalog-product-card .commerce-actions { gap: 5px; }
  .catalog-product-card .commerce-actions .btn {
    min-height: 37px;
    padding-inline: 5px;
    font-size: 8px;
  }
  .threads-ip-card .threads-country-code {
    min-width: 35px;
    min-height: 26px;
    margin-bottom: 8px;
    font-size: 8px;
  }
}

@media (max-width: 370px) {
  .catalog-product-card .commerce-quantity-row { display: block; }
  .catalog-product-card .commerce-quantity-copy { margin-bottom: 7px; }
  .catalog-product-card .quantity-stepper { width: 100%; grid-template-columns: 30px 1fr 30px; }
}

@media (max-width: 340px) {
  .starter-pricing-grid,
  .packages-grid,
  .pricing-card-grid,
  .monthly-grid,
  .premium-access-grid,
  .threads-ip-grid,
  .pricing-grid-pair,
  .pricing-grid-triple { grid-template-columns: 1fr; }
  .pricing-grid-single { max-width: none; }
}