/* ============================================================
   WixStore Apps HUB — DESIGN SYSTEM
   ============================================================ */
:root {
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-accent-ring: rgba(37, 99, 235, 0.3);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --text-inverse-muted: rgba(255, 255, 255, 0.68);

  --surface-white: #ffffff;
  --surface-light: #f8fafc;
  --surface-border: #e2e8f0;
  --surface-dark: #0f172a;
  --surface-dark-soft: #1e293b;
  --surface-dark-card: rgba(255, 255, 255, 0.04);

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 52px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-30: 120px;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .10), 0 2px 4px -1px rgba(0, 0, 0, .06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .10), 0 4px 6px -2px rgba(0, 0, 0, .05);
  --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, .18);
  --shadow-accent: 0 4px 16px rgba(37, 99, 235, 0.28);

  --t-fast: 150ms ease;
  --t-base: 200ms ease;
  --t-slow: 300ms ease;

  --container-max: 1140px;
  --header-height: 68px;
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   SKIP NAV
   ============================================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-2) var(--sp-4);
  background: var(--color-accent);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: top var(--t-fast);
}

.skip-nav:focus {
  top: var(--sp-2);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: var(--color-accent);
  color: var(--text-inverse);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.38);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--color-accent-ring);
  outline-offset: 2px;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-inverse);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.btn-ghost svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.btn--lg {
  padding: 14px var(--sp-8);
  font-size: var(--text-base);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-ring);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header__title {
  font-size: clamp(1.75rem, 3.5vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.028em;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
}

.section-header__sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
}

.section-header--dark .section-header__title {
  color: var(--text-inverse);
}

.section-header__sub--light {
  color: var(--text-inverse-muted);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
}

.section-label--light {
  color: #60a5fa;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.site-header--scrolled {
  border-color: var(--surface-border);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: 100%;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.header-image {
  height: 58px;
  width: auto;
  display: block;
}

.site-header__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.site-header__logo-mark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: white;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex: 1;
  justify-content: center;
}

.site-header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.site-header__nav-link:hover {
  color: var(--text-primary);
}

.site-header__cta {
  flex-shrink: 0;
}

/* ---- Hamburger toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  flex-shrink: 0;
  transition: background var(--t-fast);
}

.nav-toggle:hover {
  background: var(--surface-light);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile CTA inside nav — hidden on desktop */
.site-header__nav-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-3) var(--sp-4) var(--sp-5);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--t-base), transform var(--t-base), visibility 0s var(--t-base);
  }

  .site-header__nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity var(--t-base), transform var(--t-base), visibility 0s;
  }

  .site-header__nav-link {
    display: block;
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
  }

  .site-header__nav-link:hover {
    background: var(--surface-light);
    color: var(--text-primary);
  }

  .site-header__nav-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--sp-3);
    padding-top: var(--sp-3);
    border-top: 1px solid var(--surface-border);
  }
}

@media (max-width: 480px) {
  /* site-header__cta already hidden at 768px */
}

/* ============================================================
   HERO
   ============================================================ */
.hub-hero {
  background: var(--surface-dark);
  padding-block: var(--sp-24) var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(37, 99, 235, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 85%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(16, 163, 74, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.hub-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: var(--sp-6);
}

.hub-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

.hub-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-inverse);
  margin-bottom: var(--sp-5);
}

.hub-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-hero__sub {
  font-size: var(--text-lg);
  color: var(--text-inverse-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}

.hub-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hub-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #93c5fd;
  margin-bottom: var(--sp-6);
}

.hub-hero__pill-dot {
  width: 7px;
  height: 7px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hub-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hub-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.trust-badge__icon {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.trust-badge__icon--star {
  fill: #fbbf24;
  stroke: #fbbf24;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
}

/* ============================================================
   WIX TRUST BAR
   ============================================================ */
.wix-bar {
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
  padding-block: var(--sp-3);
}

.wix-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

.wix-bar__label {
  font-size: var(--text-sm);
  color: #15803d;
  font-weight: 500;
}

.wix-bar__platform {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.wix-bar__wix-logo {
  height: 22px;
  width: auto;
  color: #0f172a;
}

.wix-bar__divider {
  width: 1px;
  height: 14px;
  background: #86efac;
}

.wix-bar__note {
  font-size: var(--text-xs);
  color: #16a34a;
  font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding-block: var(--sp-24);
  background: var(--surface-white);
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-section__content {
  max-width: 520px;
}

.about-section__title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}

.about-section__body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.about-section__checks {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.about-section__checks li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-section__checks li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #16a34a;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* About visual */
.about-section__visual {
  position: relative;
  height: auto;
}

.about-card {
  position: absolute;
  background: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}

.about-card span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.about-card strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.about-card--1 {
  top: 20px;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.about-card--2 {
  top: 100px;
  right: 0;
  animation: float 6s ease-in-out infinite 1.5s;
}

.about-card--3 {
  top: 60px;
  left: 20px;
  animation: float 6s ease-in-out infinite 3s;
}

.about-card--4 {
  top: 160px;
  right: 20px;
  animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: var(--sp-1);
}

.about-card__dot--green {
  background: #22c55e;
}

.about-card__dot--orange {
  background: #f97316;
}

.about-card__dot--blue {
  background: #3b82f6;
}

.about-card__dot--violet {
  background: #a855f7;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--surface-dark);
  padding-block: var(--sp-16);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}

.stat-item__value {
  font-size: 46px;
  font-weight: 800;
  color: var(--text-inverse);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-item__value span {
  font-size: 0.65em;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  line-height: 1.4;
}

/* ============================================================
   APPS GRID SECTION
   ============================================================ */
.apps-section {
  padding-block: var(--sp-24);
  background: var(--surface-light);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.apps-grid > li {
  min-width: 0;
  display: flex;
}

/* ── App Card ── */
.app-card {
  background: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.app-card:hover,
.app-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -8px rgba(0,0,0,0.14), 0 4px 16px -4px rgba(0,0,0,0.08);
  outline: none;
}

.app-card:focus-visible {
  box-shadow: 0 20px 48px -8px rgba(0,0,0,0.14), 0 0 0 3px var(--color-accent-ring);
}

/* Per-app hover border colour */
.app-card--age:hover          { border-color: #7c3aed; }
.app-card--rightclick:hover   { border-color: #dc2626; }
.app-card--zipcode:hover      { border-color: #2563eb; }
.app-card--ipblock:hover      { border-color: #ef4444; }
.app-card--exitintent:hover   { border-color: #d97706; }
.app-card--whatsapp:hover     { border-color: #16a34a; }
.app-card--aiseo:hover        { border-color: #0891b2; }
.app-card--messagebar:hover   { border-color: #7c3aed; }

/* ── Top accent bar ── */
.app-card__bar {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

/* ── Preview image area ── */
.app-card__preview {
  height: 180px;
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: block;
}

.app-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
  display: block;
}


.app-card:hover .app-card__preview img {
  transform: scale(1.05);
}

/* ── Card body ── */
.app-card__body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-width: 0;
  overflow: hidden;
}

/* ── Header row: logo + name/tag ── */
.app-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.app-card__logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--surface-light);
  padding: 6px;
  border: 1px solid var(--surface-border);
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.app-card__header-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.app-card__name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.app-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

/* ── Tagline ── */
.app-card__tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* ── Feature bullet list ── */
.app-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.app-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.app-card__features li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Check icon accent per card variant */
.app-card--age .app-card__features li svg        { stroke: #7c3aed; }
.app-card--rightclick .app-card__features li svg  { stroke: #dc2626; }
.app-card--zipcode .app-card__features li svg     { stroke: #2563eb; }
.app-card--ipblock .app-card__features li svg     { stroke: #ef4444; }
.app-card--exitintent .app-card__features li svg  { stroke: #d97706; }
.app-card--whatsapp .app-card__features li svg    { stroke: #16a34a; }
.app-card--aiseo .app-card__features li svg       { stroke: #0891b2; }
.app-card--messagebar .app-card__features li svg  { stroke: #7c3aed; }

/* ── Footer: rating + CTA ── */
.app-card__footer {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: auto;
}

.app-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.app-card__rating-stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.app-card__cta {
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  background: var(--surface-light);
  border: 1px solid var(--surface-border);
  transition: background var(--t-fast), border-color var(--t-fast), gap var(--t-fast);
  white-space: nowrap;
}

.app-card__cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.app-card:hover .app-card__cta {
  background: var(--surface-border);
}

.app-card:hover .app-card__cta svg {
  transform: translateX(3px);
}

/* ── Per-app colour themes ── */
.app-card--age .app-card__bar {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.app-card--age .app-card__preview {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.app-card--age .app-card__tag {
  background: #ede9fe;
  color: #6d28d9;
}

.app-card--age .app-card__cta {
  color: #7c3aed;
}

.app-card--countdown .app-card__bar {
  background: linear-gradient(90deg, #ea580c, #fb923c);
}

.app-card--countdown .app-card__preview {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.app-card--countdown .app-card__tag {
  background: #fff7ed;
  color: #c2410c;
}

.app-card--countdown .app-card__cta {
  color: #ea580c;
}

.app-card--messagebar .app-card__bar {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}

.app-card--messagebar .app-card__preview {
  background: linear-gradient(135deg, #ecfeff, #a5f3fc);
}

.app-card--messagebar .app-card__tag {
  background: #ecfeff;
  color: #0e7490;
}

.app-card--messagebar .app-card__cta {
  color: #0891b2;
}

.app-card--rightclick .app-card__bar {
  background: linear-gradient(90deg, #dc2626, #f87171);
}

.app-card--rightclick .app-card__preview {
  background: linear-gradient(135deg, #fef2f2, #fecaca);
}

.app-card--rightclick .app-card__tag {
  background: #fef2f2;
  color: #b91c1c;
}

.app-card--rightclick .app-card__cta {
  color: #dc2626;
}

.app-card--whatsapp .app-card__bar {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}

.app-card--whatsapp .app-card__preview {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}

.app-card--whatsapp .app-card__tag {
  background: #f0fdf4;
  color: #15803d;
}

.app-card--whatsapp .app-card__cta {
  color: #16a34a;
}

.app-card--zipcode .app-card__bar {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.app-card--zipcode .app-card__preview {
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

.app-card--zipcode .app-card__tag {
  background: #eff6ff;
  color: #1d4ed8;
}

.app-card--zipcode .app-card__cta {
  color: #2563eb;
}

.app-card--ipblock .app-card__bar {
  background: linear-gradient(90deg, #dc2626, #f87171);
}

.app-card--ipblock .app-card__preview {
  background: #0f172a;
}

.app-card--ipblock .app-card__tag {
  background: #fef2f2;
  color: #b91c1c;
}

.app-card--ipblock .app-card__cta {
  color: #ef4444;
}


/* Exit Intent Popup */
.app-card--exitintent .app-card__bar {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}
.app-card--exitintent .app-card__preview {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}
.app-card--exitintent .app-card__tag {
  background: #fffbeb;
  color: #b45309;
}
.app-card--exitintent .app-card__cta {
  color: #d97706;
}

/* WhatsApp Automation */
.app-card--whatsapp .app-card__bar {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.app-card--whatsapp .app-card__preview {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.app-card--whatsapp .app-card__tag {
  background: #f0fdf4;
  color: #15803d;
}
.app-card--whatsapp .app-card__cta {
  color: #16a34a;
}

/* AI SEO */
.app-card--aiseo .app-card__bar {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}
.app-card--aiseo .app-card__preview {
  background: linear-gradient(135deg, #ecfeff, #cffafe);
}
.app-card--aiseo .app-card__tag {
  background: #ecfeff;
  color: #0e7490;
}
.app-card--aiseo .app-card__cta {
  color: #0891b2;
}

/* Message Bar */
.app-card--messagebar .app-card__bar {
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}
.app-card--messagebar .app-card__preview {
  background: linear-gradient(135deg, #faf5ff, #ede9fe);
}
.app-card--messagebar .app-card__tag {
  background: #faf5ff;
  color: #6d28d9;
}
.app-card--messagebar .app-card__cta {
  color: #7c3aed;
}

/* ============================================================
   WIX INTEGRATION SECTION
   ============================================================ */
.wix-section {
  background: var(--surface-dark);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}

.wix-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(37, 99, 235, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.wix-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: var(--sp-12);
}

.wix-step {
  background: var(--surface-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  position: relative;
}

.wix-step__number {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: var(--sp-4);
}

.wix-step__icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.wix-step__icon svg {
  width: 24px;
  height: 24px;
  stroke: #60a5fa;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wix-step__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.wix-step__desc {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  line-height: 1.65;
}

.wix-step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  margin-top: 60px;
}

.wix-step__connector::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.3), rgba(167, 139, 250, 0.3));
  border-radius: 1px;
}

.wix-badge-row {
  display: flex;
  justify-content: center;
}

.wix-badge-box {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  max-width: 620px;
}

.wix-badge-box__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #60a5fa;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wix-badge-box strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--sp-1);
}

.wix-badge-box span {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: var(--surface-white);
  padding-block: var(--sp-24);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.why-card {
  background: var(--surface-light);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: box-shadow var(--t-slow), transform var(--t-slow), border-color var(--t-slow);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-5);
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.why-card__icon--violet {
  background: #ede9fe;
  color: #7c3aed;
}

.why-card__icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.why-card__icon--orange {
  background: #fff7ed;
  color: #ea580c;
}

.why-card__icon--teal {
  background: #ecfeff;
  color: #0891b2;
}

.why-card__icon--red {
  background: #fef2f2;
  color: #dc2626;
}

.why-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.why-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--surface-light);
  padding-block: var(--sp-24);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  font-size: 1rem;
  color: #f59e0b;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--surface-border);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-card__avatar--orange {
  background: #ea580c;
}

.testimonial-card__avatar--violet {
  background: #7c3aed;
}

.testimonial-card__author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-card__author span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--surface-white);
  padding-block: var(--sp-24);
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.faq-section__header {
  text-align: left;
  margin-bottom: 0;
}

.faq-section__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.faq-section__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--surface-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  transition: background var(--t-fast), color var(--t-fast);
}

.faq-item__trigger:hover {
  background: var(--surface-light);
}

.faq-item__trigger[aria-expanded="true"] {
  color: var(--color-accent);
}

.faq-item__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t-base);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 var(--sp-6) var(--sp-5);
  background: var(--surface-light);
}

.faq-item__body p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.hub-cta {
  background: var(--surface-dark);
  padding-block: var(--sp-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hub-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 110%, rgba(37, 99, 235, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hub-cta__inner {
  position: relative;
}

.hub-cta__badge {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}

.hub-cta__badge svg {
  width: 26px;
  height: 26px;
  stroke: #60a5fa;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hub-cta__title {
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  font-weight: 800;
  color: var(--text-inverse);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}

.hub-cta__sub {
  font-size: var(--text-lg);
  color: var(--text-inverse-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}

.hub-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.hub-cta__note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-dark-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-block: var(--sp-16);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.site-footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  max-width: 280px;
}

.site-footer__wix-note {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: #4ade80;
  font-weight: 500;
}

.site-footer__wix-note svg {
  width: 14px;
  height: 14px;
  stroke: #4ade80;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-4);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.site-footer__col ul a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t-fast);
}

.site-footer__col ul a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--sp-5);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.site-footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* stagger within apps-grid and why-grid and testimonials-grid */
.apps-grid .fade-in:nth-child(1),
.why-grid .fade-in:nth-child(1),
.testimonials-grid .fade-in:nth-child(1),
.stats-section__grid .fade-in:nth-child(1) {
  transition-delay: 0ms;
}

.apps-grid .fade-in:nth-child(2),
.why-grid .fade-in:nth-child(2),
.testimonials-grid .fade-in:nth-child(2),
.stats-section__grid .fade-in:nth-child(2) {
  transition-delay: 70ms;
}

.apps-grid .fade-in:nth-child(3),
.why-grid .fade-in:nth-child(3),
.testimonials-grid .fade-in:nth-child(3),
.stats-section__grid .fade-in:nth-child(3) {
  transition-delay: 140ms;
}

.apps-grid .fade-in:nth-child(4),
.why-grid .fade-in:nth-child(4),
.stats-section__grid .fade-in:nth-child(4) {
  transition-delay: 210ms;
}

.apps-grid .fade-in:nth-child(5),
.why-grid .fade-in:nth-child(5) {
  transition-delay: 280ms;
}

.apps-grid .fade-in:nth-child(6),
.why-grid .fade-in:nth-child(6) {
  transition-delay: 350ms;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* apps-grid handled via dedicated breakpoints below */

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

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

  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .about-section__visual {
    height: auto;
  }

  .about-section__content {
    max-width: 100%;
  }

  .wix-steps {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .wix-step__connector {
    display: none;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-hero {
    padding-block: var(--sp-16) var(--sp-12);
  }

  .about-section__visual {
    display: none;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    gap: var(--sp-2);
  }

  .header-image {
    height: 44px;
  }

  /* Wix-native section — mobile */
  .wix-section {
    padding-block: var(--sp-16) var(--sp-12);
  }

  .wix-step {
    text-align: center;
    padding: var(--sp-6);
  }

  .wix-step__icon {
    margin-inline: auto;
  }

  .wix-badge-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-3);
    padding: var(--sp-5);
  }

  .wix-badge-box__icon {
    width: 36px;
    height: 36px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .hub-hero__actions {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hub-hero__actions .btn-primary,
  .hub-hero__actions .btn--lg {
    width: min(260px, 100%);
    justify-content: center;
  }

  .hub-hero__trust {
    flex-direction: column;
    gap: var(--sp-2);
  }

  .trust-divider {
    display: none;
  }

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

  .wix-bar__inner {
    justify-content: flex-start;
  }

  .header-image {
    height: 34px;
  }
}

/* ============================================================
   RESPONSIVE — ADDITIONS (do not touch desktop above 1024px)
   ============================================================ */

/* Fluid hero title — scales with viewport, no JS needed */
.hub-hero__title {
  font-size: clamp(26px, 4.8vw, 48px);
}

/* Fluid stat counter */
.stat-item__value {
  font-size: clamp(28px, 4.2vw, 46px);
}

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  /* Reduce section vertical breathing room */
  .about-section,
  .apps-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .hub-cta {
    padding-block: 72px;
  }

  .wix-section {
    padding-block: 72px;
  }

  /* about-section title can be slightly smaller */
  .about-section__title {
    font-size: clamp(22px, 2.8vw, 32px);
  }
}

/* ---- Tablet portrait / large phone ---- */
@media (max-width: 768px) {
  /* Hero typography */
  .hub-hero__title {
    font-size: 32px;
  }

  .hub-hero__sub {
    font-size: var(--text-base);
    margin-bottom: var(--sp-8);
  }

  /* Section headers */
  .section-header__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-header__sub {
    font-size: var(--text-base);
  }

  /* Stat counters */
  .stat-item__value {
    font-size: 36px;
  }

  .stats-section {
    padding-block: var(--sp-12);
  }

  /* Section padding */
  .about-section,
  .apps-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .hub-cta {
    padding-block: 56px;
  }

  .wix-section {
    padding-block: 56px 48px;
  }

  /* FAQ sidebar heading */
  .faq-section__title {
    font-size: var(--text-2xl);
  }

  .faq-section__sub {
    font-size: var(--text-sm);
  }

  /* CTA sub text */
  .hub-cta__sub {
    font-size: var(--text-base);
    max-width: 100%;
  }

  /* Why cards */
  .why-card {
    padding: var(--sp-6);
  }

  /* Wix steps reduced padding already handled, ensure centering */
  .wix-step__title {
    font-size: var(--text-base);
  }

  /* Footer top padding */
  .site-footer__top {
    padding-block: var(--sp-12);
  }
}

/* ---- Phone ---- */
@media (max-width: 480px) {
  /* Container tighter padding */
  .container {
    padding-inline: var(--sp-4);
  }

  /* Hero */
  .hub-hero__title {
    font-size: 26px;
    letter-spacing: -0.025em;
  }

  .hub-hero__sub {
    font-size: var(--text-sm);
    margin-bottom: var(--sp-6);
  }

  .hub-hero {
    padding-block: var(--sp-12) var(--sp-10);
  }

  /* Stat counters */
  .stat-item__value {
    font-size: 30px;
  }

  .stats-section {
    padding-block: var(--sp-10);
  }

  /* Section headers */
  .section-header__title {
    font-size: 1.5rem;
  }

  .section-header__sub {
    font-size: var(--text-sm);
  }

  /* Section padding */
  .about-section,
  .apps-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .hub-cta {
    padding-block: 44px;
  }

  .wix-section {
    padding-block: 44px 36px;
  }

  /* Section header margin */
  .section-header {
    margin-bottom: var(--sp-8);
  }

  /* App cards — smaller preview on small phones */
  .app-card__preview {
    height: 150px;
  }

  /* Why cards */
  .why-card {
    padding: var(--sp-5);
  }

  /* Testimonials */
  .testimonial-card {
    padding: var(--sp-6);
  }

  /* Wix badge */
  .wix-badge-box {
    padding: var(--sp-4);
  }

  /* Hub CTA button — full usable width */
  .hub-cta__actions .btn-primary {
    width: min(300px, 100%);
    justify-content: center;
  }

  /* Hub CTA sub */
  .hub-cta__sub {
    font-size: var(--text-sm);
    margin-bottom: var(--sp-6);
  }

  /* Footer */
  .site-footer__top {
    padding-block: var(--sp-10);
  }

  .site-footer__bottom-inner {
    text-align: center;
  }

  /* Wix bar */
  .wix-bar__inner {
    gap: var(--sp-2);
  }
}

/* ============================================================
   APPS GRID BREAKPOINTS
   ≥768px   →  3 cols  (3 rows × 3, last row 2)
   480–767px  →  2 cols  (4 rows × 2)
   ≤479px   →  1 col
   ============================================================ */
@media (max-width: 767px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 479px) {
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}