/* ═══════════════════════════════════════
   EASYWORKS AI — v6
   8px spacing scale: 4 8 12 16 24 32 48 64 80 96
   ═══════════════════════════════════════ */

:root {
  --bg: #0e0a1a;
  --bg2: #15102a;
  --surface: #1a1330;
  --surface2: #221a3d;
  --border: rgba(59,130,246,0.10);
  --border-h: rgba(59,130,246,0.22);
  --text: #eef2fb;
  --dim: #60a5fa;
  --muted: #8a99b8;
  --accent: #3b82f6;
  --accent-dim: rgba(59,130,246,0.10);
  --accent-mid: rgba(59,130,246,0.22);
  --primary: #2563eb;
  --cyan: #7dd3fc;
  --cyan-dim: rgba(125,211,252,0.10);
  --cyan-mid: rgba(125,211,252,0.22);
  --amber: #22d3ee;
  --green: #3b82f6;
  --grad: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --font: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(59,130,246,0.35); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-mid { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,11,22,0.6);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled { background: rgba(7,11,22,0.92); box-shadow: 0 1px 24px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon-img {
  width: 32px; height: 32px; border-radius: 7px;
  flex-shrink: 0; transition: transform 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(59,130,246,0.25);
}
.logo:hover .logo-icon-img { transform: scale(1.06); }
.hero-icon-img {
  width: 64px; height: 64px; border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 32px rgba(59,130,246,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  margin-right: 4px;
}
.logo-wordmark {
  font-family: var(--font); font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.logo-ai {
  background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 600;
}
.logo-tracked, .brand-tracked {
  font-family: var(--font); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.brand-tracked {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.hero-brand { gap: 22px; margin-bottom: 40px; }
.hero-icon-img {
  width: 84px; height: 84px;
  border-radius: 18px;
}
@media (max-width: 600px) {
  .hero-icon-img { width: 64px; height: 64px; border-radius: 14px; }
  .hero-brand { gap: 16px; margin-bottom: 28px; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font); font-size: 0.84rem; font-weight: 500;
  color: var(--dim); padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  font-weight: 600 !important; padding: 8px 20px !important;
  border-radius: 8px !important; margin-left: 8px;
  transition: all 0.25s var(--ease) !important;
}
.nav-cta:hover { box-shadow: 0 2px 16px rgba(59,130,246,0.4) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 6px; padding: 8px;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px; background: var(--dim);
  border-radius: 2px; transition: all 0.35s var(--ease); transform-origin: center;
}
.hamburger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  padding: 12px 24px; border-radius: var(--r-sm);
  border: none; cursor: pointer; transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-lg { padding: 16px 32px; font-size: 0.95rem; border-radius: var(--r-md); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 20px rgba(59,130,246,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-accent:hover { box-shadow: 0 4px 32px rgba(59,130,246,0.45); transform: translateY(-2px); }
.btn-glass {
  background: rgba(255,255,255,0.06); color: var(--dim);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.btn-glass:hover { color: var(--text); border-color: var(--border-h); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 64px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grain {
  position: absolute; inset: 0; opacity: 0.3; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(59,130,246,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(34,211,238,0.22) 0%, transparent 60%),
    linear-gradient(160deg, rgba(7,11,22,0.92) 0%, rgba(7,11,22,0.78) 35%, rgba(7,11,22,0.55) 100%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: 1;
  background:
    radial-gradient(circle 600px at 80% 20%, rgba(37,99,235,0.55), transparent 60%),
    radial-gradient(circle 500px at 15% 70%, rgba(34,211,238,0.35), transparent 60%),
    radial-gradient(circle 400px at 60% 90%, rgba(59,130,246,0.4), transparent 60%);
  filter: blur(40px);
  animation: meshFloat 18s ease-in-out infinite alternate;
}
@keyframes meshFloat {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(2%,-2%) scale(1.05); }
  100% { transform: translate(-2%,1%) scale(1.02); }
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  opacity: 0.5; z-index: 1;
  mix-blend-mode: screen;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

.hero-layout { position: relative; z-index: 4; padding: 96px 24px; }
.hero-content { max-width: 600px; }

.hero-brand {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.brand-mark {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #22d3ee 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(59,130,246,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}
.brand-mark-sm { width: 44px; height: 44px; border-radius: 12px; }
.brand-mark-sm svg { width: 20px; height: 20px; }
.brand-name {
  font-family: var(--font); font-weight: 800; font-size: 1.8rem;
  letter-spacing: -0.04em;
}
.brand-ai { color: var(--cyan); font-weight: 600; }

.hero h1 {
  font-family: var(--font); font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.h1-accent {
  background: linear-gradient(135deg, #7dd3fc 0%, #22d3ee 50%, #7dd3fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 32px rgba(34,211,238,0.3));
}
.brand-ai {
  background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-body { font-size: 1.08rem; color: var(--dim); line-height: 1.7; max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* ═══ HERO ENGINES — 4 separate product chips, single line ═══ */
.hero-engines {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 36px;
  padding: 0 4px 4px 0;
  background: none;
  border: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}
.hero-engines::-webkit-scrollbar { display: none; }
.he-name { flex-shrink: 0; }
.he-dot { display: none; }
.he-name {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(0.74rem, 0.95vw, 0.92rem);
  letter-spacing: -0.005em;
  padding: 9px 14px 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(59,130,246,0) 100%);
  border: 1px solid var(--gborder);
  color: var(--gend);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  animation: heFadeIn 0.55s var(--ease) forwards;
}
.he-name::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gstart), var(--gend));
  box-shadow: 0 0 10px var(--glow);
  flex-shrink: 0;
  animation: heDotPulse 2.6s ease-in-out infinite;
}
@keyframes heDotPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15);  }
}
.he-name:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(59,130,246,0.14) 0%, rgba(34,211,238,0.06) 100%);
  border-color: var(--gend);
  box-shadow: 0 8px 24px var(--glow);
  color: var(--ink);
}
.he-1 { --gstart: #7dd3fc; --gend: #22d3ee; --glow: rgba(34,211,238,0.35); --gborder: rgba(34,211,238,0.30); animation-delay: 0.1s; }
.he-2 { --gstart: #3b82f6; --gend: #7dd3fc; --glow: rgba(59,130,246,0.35); --gborder: rgba(59,130,246,0.30); animation-delay: 0.18s; }
.he-3 { --gstart: #9fb3d1; --gend: #7dd3fc; --glow: rgba(240,171,252,0.35); --gborder: rgba(240,171,252,0.30); animation-delay: 0.26s; }
.he-4 { --gstart: #b794f4; --gend: #22d3ee; --glow: rgba(183,148,244,0.35); --gborder: rgba(183,148,244,0.30); animation-delay: 0.34s; }
@keyframes heFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .hero-engines { gap: 8px; }
  .he-name { font-size: 0.78rem; padding: 9px 14px 9px 12px; gap: 8px; }
  .he-name::before { width: 6px; height: 6px; }
}

/* ═══ HERO KICKER (under H1) ═══ */
.hero-kicker {
  font-family: var(--font);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 500;
  color: var(--dim);
  letter-spacing: -0.01em;
  margin: -8px 0 28px;
  max-width: 540px;
}
.hk-accent {
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-style: italic;
}

/* ═══ HERO TAGLINE (new) ═══ */
.hero-tagline {
  font-size: 1.18rem; line-height: 1.55;
  color: var(--text); max-width: 540px;
  margin-bottom: 32px; font-weight: 400;
}
.hero-tagline-dim {
  display: block; color: var(--dim);
  font-size: 0.95rem; margin-top: 6px;
}

/* ═══ HERO PRODUCT CARDS (legacy, kept hidden) ═══ */
.hero-products {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 0 32px;
}
.hp-card {
  position: relative;
  padding: 20px 20px 18px;
  background: linear-gradient(160deg, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}
.hp-card:hover {
  border-color: var(--border-h);
  background: linear-gradient(160deg, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0.04) 100%);
  transform: translateY(-2px);
}
.hp-feature {
  background: linear-gradient(160deg, rgba(59,130,246,0.18) 0%, rgba(34,211,238,0.06) 100%);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 10px 40px rgba(59,130,246,0.18);
}
.hp-feature::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, transparent 30%, rgba(34,211,238,0.12) 100%);
  pointer-events: none;
}
.hp-tag {
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  z-index: 2;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e879f9'><path d='M12 2l2.6 6.4L21 9.3l-4.9 4.4 1.4 6.5L12 17l-5.5 3.2 1.4-6.5L3 9.3l6.4-.9L12 2z'/></svg>") no-repeat center / contain;
  filter: drop-shadow(0 0 6px rgba(34,211,238,0.6));
  font-size: 0;
  color: transparent;
}
.hp-card h3 {
  font-family: var(--font); font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.hp-card p {
  font-size: 0.82rem; line-height: 1.5;
  color: var(--dim);
  position: relative; z-index: 1;
}
@media (max-width: 760px) {
  .hero-products { grid-template-columns: 1fr; max-width: 480px; }
}

/* ═══ PRODUCTS GRID ═══ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.product-card {
  position: relative;
  background: linear-gradient(165deg, rgba(59,130,246,0.06) 0%, rgba(7,11,22,0) 60%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 320px at 100% 0%, rgba(59,130,246,0.12), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.product-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(59,130,246,0.18);
}
.product-card:hover::before { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }
.product-featured {
  background: linear-gradient(165deg, rgba(59,130,246,0.14) 0%, rgba(34,211,238,0.04) 100%), var(--surface);
  border-color: rgba(59,130,246,0.32);
  box-shadow: 0 12px 60px rgba(59,130,246,0.16);
}
.product-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 18px;
  margin-bottom: 24px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-icon {
  width: 100%; height: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 32px rgba(59,130,246,0.32), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-icon { transform: scale(1.05) rotate(-2deg); }
.product-meta {
  position: absolute; top: 28px; right: 28px;
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.product-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.18em;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  padding: 4px 9px; border-radius: 4px;
  text-transform: uppercase;
}
/* Glowing star — Most popular */
.product-star {
  display: inline-flex; align-items: center; gap: 6px;
}
.product-star svg {
  width: 22px; height: 22px;
  filter: drop-shadow(0 0 8px rgba(34,211,238,0.7));
  animation: starPulse 2.6s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(34,211,238,0.55)); transform: rotate(0); }
  50% { filter: drop-shadow(0 0 14px rgba(34,211,238,0.95)); transform: rotate(8deg); }
}
.ps-text {
  font-family: var(--mono); font-size: 0.58rem;
  font-weight: 500; letter-spacing: 0.18em;
  color: #7dd3fc;
  text-transform: uppercase;
}
.product-price {
  font-family: var(--font); font-size: 0.78rem;
  color: var(--dim); line-height: 1.35;
  font-weight: 500;
}
.product-price .pp-mo { font-size: 0.68rem; color: var(--muted); }
.product-card h3 {
  font-family: var(--font); font-weight: 700;
  font-size: 1.6rem; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.product-pitch {
  font-size: 0.94rem; line-height: 1.55;
  color: var(--dim);
  margin-bottom: 24px;
}
.product-includes {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.product-includes li {
  font-size: 0.86rem; line-height: 1.45;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.product-includes li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.product-footnote {
  font-size: 0.72rem; color: var(--muted);
  margin-top: 12px; font-style: italic;
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-meta { position: static; flex-direction: row; align-items: center; margin-top: -8px; margin-bottom: 16px; }
}

/* ═══ BUNDLE BAND ═══ */
.bundle-band {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  border-radius: 24px;
  background:
    radial-gradient(circle 400px at 80% 50%, rgba(34,211,238,0.18), transparent 70%),
    radial-gradient(circle 350px at 20% 50%, rgba(37,99,235,0.22), transparent 70%),
    linear-gradient(135deg, rgba(59,130,246,0.10), rgba(7,11,22,0.6));
  border: 1px solid rgba(59,130,246,0.32);
  box-shadow: 0 16px 80px rgba(59,130,246,0.18);
  position: relative;
  overflow: hidden;
}
.bb-mark img {
  width: 88px; height: 88px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}
.bb-copy { display: flex; flex-direction: column; gap: 6px; }
.bb-label {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.22em; color: var(--accent);
  font-weight: 600;
}
.bb-copy h3 {
  font-family: var(--font); font-weight: 700;
  font-size: 2rem; line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.bb-accent {
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bb-copy p { font-size: 0.92rem; color: var(--dim); }
.bb-pricing {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
  text-align: right;
}
.bb-price-row {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font);
}
.bb-price {
  font-weight: 700; font-size: 1.5rem;
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.bb-mo {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--dim); font-weight: 500;
}
.bb-pricing .btn { margin-top: 8px; }
@media (max-width: 900px) {
  .bundle-band { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .bb-copy { align-items: center; }
  .bb-pricing { align-items: center; text-align: center; }
}

/* ═══ ON-SITE BAND ═══ */
.onsite-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.18);
  background: linear-gradient(165deg, rgba(59,130,246,0.10) 0%, rgba(7,11,22,0.5) 100%);
  box-shadow: 0 24px 100px rgba(59,130,246,0.18);
  position: relative;
}
.onsite-photo {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.onsite-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.onsite-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 50%, rgba(7,11,22,0.6) 100%),
    radial-gradient(ellipse at center, rgba(59,130,246,0.20), transparent 70%);
}
.onsite-copy {
  padding: 56px 56px 56px 64px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 28px;
}
.onsite-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 6px 0 0;
}
.onsite-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dim);
  max-width: 460px;
}
.onsite-body strong { color: var(--text); }
.onsite-pillars {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 4px;
}
.pillar {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 16px 18px;
  background: rgba(59,130,246,0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.pillar:hover {
  border-color: var(--border-h);
  background: rgba(59,130,246,0.10);
  transform: translateX(4px);
}
.pillar-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  padding-top: 2px;
}
.pillar-text {
  display: flex; flex-direction: column; gap: 2px;
}
.pillar-text strong {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pillar-text span {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.4;
}
.onsite-copy .btn { align-self: flex-start; margin-top: 8px; }
@media (max-width: 880px) {
  .onsite-band { grid-template-columns: 1fr; }
  .onsite-photo { min-height: 320px; }
  .onsite-copy { padding: 40px 28px; }
}

/* ═══ STACK BUILDER ═══ */
.stack-builder {
  margin-top: 48px;
  padding: 44px 48px;
  border-radius: 28px;
  background:
    radial-gradient(circle 500px at 80% 20%, rgba(34,211,238,0.16), transparent 70%),
    radial-gradient(circle 400px at 15% 80%, rgba(37,99,235,0.18), transparent 70%),
    linear-gradient(160deg, rgba(59,130,246,0.10), rgba(7,11,22,0.55));
  border: 1px solid rgba(59,130,246,0.28);
  box-shadow: 0 20px 100px rgba(59,130,246,0.18);
  position: relative;
  overflow: hidden;
}
.sb-head { margin-bottom: 28px; max-width: 720px; }
.sb-label {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.22em; color: var(--accent);
  font-weight: 600; margin-bottom: 12px;
}
.sb-head h3 {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 8px;
}
.sb-head p { color: var(--dim); font-size: 0.95rem; }

.sb-engines {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
}
.sb-engine {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(59,130,246,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
}
.sb-engine:hover {
  border-color: var(--border-h);
  background: rgba(59,130,246,0.08);
  transform: translateY(-1px);
}
.sb-engine input { display: none; }
.sb-check {
  width: 22px; height: 22px;
  border: 1.5px solid rgba(59,130,246,0.4);
  border-radius: 7px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
  grid-row: span 2;
}
.sb-check::after {
  content: ''; position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 11px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease);
}
.sb-engine input:checked ~ .sb-check {
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(34,211,238,0.45);
}
.sb-engine input:checked ~ .sb-check::after { transform: rotate(45deg) scale(1); }
.sb-engine input:checked ~ .sb-name { color: var(--text); }
.sb-name {
  font-family: var(--font); font-weight: 600;
  font-size: 1rem; color: var(--dim);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.sb-cost {
  font-family: var(--mono); font-size: 0.74rem;
  color: var(--muted);
  grid-column: 2;
}

.sb-summary {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.sb-tier { margin-bottom: 24px; }
.sb-tier-label {
  display: block;
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.18em; color: var(--muted);
  margin-bottom: 10px;
}
.sb-tier-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sb-tier-step {
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  text-align: center;
  padding: 10px 14px;
  background: rgba(59,130,246,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.sb-tier-step.active {
  background: linear-gradient(135deg, rgba(59,130,246,0.22), rgba(34,211,238,0.12));
  border-color: rgba(34,211,238,0.4);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(59,130,246,0.25);
}
.sb-tier-step.passed { color: var(--dim); border-color: rgba(59,130,246,0.18); }

.sb-totals {
  display: flex; flex-direction: column; gap: 10px;
}
.sb-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font);
}
.sb-row-strike { color: var(--muted); font-size: 0.86rem; }
.sb-row-strike span:last-child { text-decoration: line-through; opacity: 0.6; }
.sb-row-discount { color: var(--accent); font-size: 0.88rem; font-weight: 500; }
.sb-row-total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 1.05rem;
  color: var(--text);
}
.sb-total-num {
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
}
.sb-custom-note {
  font-size: 0.78rem; color: var(--dim);
  margin-top: 12px; font-style: italic;
}
.sb-cta { margin-top: 24px; align-self: flex-start; display: inline-flex; }

@media (max-width: 720px) {
  .stack-builder { padding: 32px 24px; }
  .sb-engines { grid-template-columns: 1fr; }
  .sb-tier-bar { grid-template-columns: 1fr; }
  .sb-row { flex-wrap: wrap; gap: 4px; }
}

/* ═══ PRODUCT SUBPAGE — HERO ═══ */
.psub-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.psub-hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 700px at 80% 20%, rgba(37,99,235,0.40), transparent 60%),
    radial-gradient(circle 500px at 15% 80%, rgba(34,211,238,0.25), transparent 60%);
  z-index: 0;
  filter: blur(40px);
  pointer-events: none;
}
.psub-hero > .container { position: relative; z-index: 1; }
.psub-back {
  display: inline-block;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.psub-back:hover { color: var(--accent); }
.psub-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
}
.psub-hero-icon img {
  width: 200px; height: 200px;
  border-radius: 36px;
  box-shadow: 0 24px 80px rgba(59,130,246,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.psub-hero-copy h1 {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.035em;
  color: var(--text); margin-bottom: 12px;
}
.psub-tagline {
  font-family: var(--font); font-size: 1.3rem; font-weight: 500;
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.3;
}
.psub-pitch {
  font-size: 1.05rem; line-height: 1.6;
  color: var(--dim); max-width: 560px;
  margin-bottom: 32px;
}
.psub-meta {
  display: flex; gap: 20px; align-items: center;
  margin-bottom: 32px;
  padding: 16px 22px;
  background: rgba(59,130,246,0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: fit-content;
}
.psub-price {
  display: flex; align-items: baseline; gap: 6px;
}
.psub-price-num {
  font-family: var(--font); font-weight: 700; font-size: 1.4rem;
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.psub-price > span:last-child {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--dim);
}
.psub-divider {
  width: 1px; height: 24px;
  background: var(--border);
}
.psub-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .psub-hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .psub-hero-icon img { width: 120px; height: 120px; border-radius: 24px; }
  .psub-hero { padding: 110px 0 60px; }
}

/* ═══ PRODUCT SUBPAGE — DEMO VIDEO ═══ */
.psub-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.22);
  box-shadow: 0 30px 100px rgba(59,130,246,0.18);
  aspect-ratio: 16 / 9;
  background: #0e0a1a;
}
.psub-video-el {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.psub-video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.18), rgba(7,11,22,0.6) 70%);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.psub-video.playing .psub-video-overlay { opacity: 0; }
.psub-video-play {
  background: none; border: none; cursor: pointer;
  pointer-events: auto;
  filter: drop-shadow(0 6px 24px rgba(34,211,238,0.6));
  transition: transform 0.3s var(--ease);
}
.psub-video-play:hover { transform: scale(1.06); }
.psub-video-coming {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--ink); letter-spacing: 0.05em;
  background: rgba(7,11,22,0.6);
  backdrop-filter: blur(8px);
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(59,130,246,0.32);
}
.psub-video-coming a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  pointer-events: auto;
}

/* ═══ PRODUCT SUBPAGE — FEATURE STACK ═══ */
.pf-stack {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 48px;
}
.pf-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 320px;
  transition: all 0.4s var(--ease);
}
.pf-block:nth-child(even) { direction: rtl; }
.pf-block:nth-child(even) > * { direction: ltr; }
.pf-block:hover {
  border-color: var(--border-h);
  box-shadow: 0 20px 80px rgba(59,130,246,0.18);
  transform: translateY(-2px);
}
.pf-img-wrap {
  position: relative;
  overflow: hidden;
}
.pf-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pf-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(7,11,22,0.5) 100%);
}
.pf-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 44px;
  gap: 12px;
}
.pf-text h3 {
  font-family: var(--font); font-weight: 700;
  font-size: 1.6rem; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.pf-text p {
  font-size: 1rem; line-height: 1.6;
  color: var(--dim);
}
@media (max-width: 760px) {
  .pf-block { grid-template-columns: 1fr; min-height: 0; }
  .pf-block:nth-child(even) { direction: ltr; }
  .pf-img-wrap { aspect-ratio: 16/9; }
  .pf-text { padding: 28px 24px; }
}

/* ═══ PRODUCT SUBPAGE — HOW IT WORKS ═══ */
.ph-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ph-step {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
}
.ph-step:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(59,130,246,0.18);
}
.ph-num {
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.18em; color: var(--accent);
  font-weight: 600; margin-bottom: 12px;
}
.ph-step h4 {
  font-family: var(--font); font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 8px;
}
.ph-step p {
  font-size: 0.9rem; line-height: 1.55;
  color: var(--dim);
}
@media (max-width: 880px) {
  .ph-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ph-grid { grid-template-columns: 1fr; }
}

/* ═══ INDUSTRY CHIPS ═══ */
.ind-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 32px;
}
.ind-chip {
  font-family: var(--font); font-size: 0.92rem; font-weight: 500;
  padding: 12px 20px;
  background: rgba(59,130,246,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: all 0.25s var(--ease);
  cursor: default;
}
.ind-chip:hover {
  border-color: rgba(34,211,238,0.45);
  background: rgba(59,130,246,0.14);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.25);
}

/* ═══ RELATED PRODUCTS ═══ */
.rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.rp-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px; align-items: center;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.rp-card:hover {
  border-color: rgba(34,211,238,0.4);
  background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(7,11,22,0));
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(59,130,246,0.2);
}
.rp-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(59,130,246,0.32);
}
.rp-body h4 {
  font-family: var(--font); font-weight: 600;
  font-size: 1.05rem; letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 4px;
}
.rp-body p {
  font-size: 0.82rem; line-height: 1.4;
  color: var(--dim);
}
.rp-arrow {
  font-size: 1.2rem; color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.rp-card:hover .rp-arrow { transform: translateX(4px); }
@media (max-width: 880px) {
  .rp-grid { grid-template-columns: 1fr; }
}

/* ═══ PROCESS — CONNECTED TIMELINE ═══ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.tl-line {
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.5;
  z-index: 0;
}
.tl-step {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.tl-node {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1330, #221a3d);
  border: 1.5px solid rgba(59,130,246,0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(59,130,246,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
  font-family: var(--mono); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.06em;
  background-clip: padding-box;
  margin-bottom: 28px;
  position: relative;
}
.tl-node::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.18), transparent 65%);
  z-index: -1;
}
.tl-node span {
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tl-card {
  width: 100%;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.tl-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(59,130,246,0.18);
}
.tl-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tl-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.tl-card:hover .tl-img img { transform: scale(1.06); }
.tl-card h3 {
  font-family: var(--font); font-weight: 600;
  font-size: 1.15rem; letter-spacing: -0.015em;
  color: var(--text);
  padding: 18px 18px 6px;
  text-align: left;
}
.tl-card p {
  font-size: 0.88rem; line-height: 1.5;
  color: var(--dim);
  padding: 0 18px 22px;
  text-align: left;
}
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl-line { display: none; }
}
@media (max-width: 520px) {
  .timeline { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ═══ CALL BUTTON ═══ */
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-call svg { color: var(--accent); }

/* ═══ 100% SATISFACTION GUARANTEE CREST ═══ */
.guarantee-crest {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(59,130,246,0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 24px 0 8px;
}
.gc-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(34,211,238,0.4));
}
.gc-text { display: flex; flex-direction: column; gap: 2px; }
.gc-text strong {
  font-family: var(--font); font-weight: 600;
  font-size: 0.95rem; color: var(--text);
}
.gc-text span {
  font-size: 0.82rem; color: var(--dim); line-height: 1.45;
}

/* ═══ VIDEO TESTIMONIALS ═══ */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.vt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.vt-card:hover {
  border-color: rgba(34,211,238,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(59,130,246,0.22);
}
.vt-poster {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vt-grad-1 { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 60%, #22d3ee 100%); }
.vt-grad-2 { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #7dd3fc 100%); }
.vt-grad-3 { background: linear-gradient(135deg, #4c1d95 0%, #3b82f6 60%, #7dd3fc 100%); }
.vt-initials {
  font-family: var(--font); font-weight: 700;
  font-size: 5rem; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4));
  position: relative; z-index: 1;
}
.vt-poster::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(7,11,22,0.4) 100%);
}
.vt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  opacity: 0;
  background: rgba(7,11,22,0.45);
  backdrop-filter: blur(2px);
  transition: opacity 0.3s var(--ease);
}
.vt-card:hover .vt-play { opacity: 1; }
.vt-meta {
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 2px;
}
.vt-meta strong {
  font-family: var(--font); font-weight: 600;
  font-size: 1rem; color: var(--text);
}
.vt-meta span { font-size: 0.84rem; color: var(--dim); }
@media (max-width: 880px) { .vt-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vt-grid { grid-template-columns: 1fr; } .vt-initials { font-size: 4rem; } }

/* Modal player */
.vt-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(7,11,22,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  animation: vtFade 0.25s var(--ease);
}
.vt-modal[hidden] { display: none; }
@keyframes vtFade { from { opacity: 0; } to { opacity: 1; } }
.vt-modal-body {
  position: relative;
  width: 100%; max-width: 1100px;
  display: flex; flex-direction: column; gap: 16px;
}
.vt-modal-body video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 30px 100px rgba(59,130,246,0.3);
}
.vt-modal-meta { display: flex; flex-direction: column; gap: 2px; font-family: var(--font); }
.vt-modal-meta strong { font-size: 1.1rem; color: var(--text); font-weight: 600; }
.vt-modal-meta span { font-size: 0.92rem; color: var(--dim); }
.vt-close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(59,130,246,0.18);
  border: 1px solid rgba(59,130,246,0.32);
  color: var(--text);
  font-size: 1.6rem; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
  z-index: 10;
}
.vt-close:hover {
  background: rgba(34,211,238,0.32);
  border-color: rgba(34,211,238,0.55);
  transform: scale(1.06);
}

/* ═══ TRUST STRIP ═══ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(59,130,246,0.04), rgba(59,130,246,0));
  padding: 24px 0;
}
.ts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.ts-item {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--dim);
  letter-spacing: -0.005em;
}
.ts-item svg { color: var(--accent); flex-shrink: 0; }
.ts-item strong { color: var(--text); font-weight: 600; }
@media (max-width: 880px) {
  .ts-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ts-item { font-size: 0.84rem; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .ts-row { grid-template-columns: 1fr; }
}

/* ═══ Canadian-owned hero badge ═══ */
.badge-ca {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px 5px 8px;
  background: linear-gradient(135deg, rgba(213,43,30,0.08), rgba(59,130,246,0.05));
  border: 1px solid rgba(213,43,30,0.32);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}
.ca-flag {
  display: inline-flex; align-items: center;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ═══ AESTHETIC POLISH PASS ═══ */
/* Slightly tighter section vertical rhythm */
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* Sharper card shadows (more depth, less haze) */
.product-card,
.bento-card,
.tl-card,
.testimonial,
.psub-video,
.feature-card {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 0 0 1px var(--border),
    0 24px 60px -24px rgba(0,0,0,0.55);
}
.product-card:hover,
.bento-card:hover,
.tl-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(34,211,238,0.32),
    0 32px 80px -24px rgba(59,130,246,0.32);
}

/* Section header: more breathing room */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.overline {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
h2 { line-height: 1.04; letter-spacing: -0.025em; }
.h2-dim {
  background: linear-gradient(135deg, var(--inkDim, #60a5fa), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-sub {
  margin-top: 18px;
  font-size: 1.02rem;
  color: var(--dim);
  line-height: 1.55;
  max-width: 600px;
}
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* Crisper button states */
.btn {
  font-weight: 600;
  border-radius: 12px;
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-accent {
  background: linear-gradient(135deg, #2563eb, #3b82f6 60%, #7dd3fc);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 0 0 1px rgba(34,211,238,0.32),
    0 12px 32px -8px rgba(59,130,246,0.5);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #8b5cf6, #7dd3fc 60%, #22d3ee);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 0 0 1px rgba(34,211,238,0.5),
    0 16px 40px -8px rgba(34,211,238,0.55);
  transform: translateY(-1px);
}
.btn-glass {
  background: rgba(59,130,246,0.06);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-glass:hover {
  background: rgba(59,130,246,0.12);
  border-color: rgba(34,211,238,0.32);
  transform: translateY(-1px);
}

/* Tighter form aesthetics */
input, select, textarea {
  background: rgba(59,130,246,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(34,211,238,0.55);
  background: rgba(59,130,246,0.08);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.18);
}

/* ═══ FOOTER CONTACT ═══ */
.footer-contact {
  display: flex; flex-direction: column;
  gap: 4px; margin-top: 18px;
  font-size: 0.85rem;
}
.footer-contact a {
  color: var(--text); transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact span { color: var(--muted); font-size: 0.78rem; }

/* ═══ BENTO FEATURES GRID ═══ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 48px;
}
.bento-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.4s var(--ease);
  isolation: isolate;
}
.bento-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(59,130,246,0.18);
}
.bento-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.2s var(--ease);
}
.bento-card:hover .bento-img { transform: scale(1.06); }
.bento-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(7,11,22,0.5) 70%, rgba(7,11,22,0.95) 100%),
    radial-gradient(ellipse at top right, rgba(59,130,246,0.18) 0%, transparent 60%);
}
.bento-content {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.bento-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.18em;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  padding: 4px 8px; border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 12px;
}
.bento-content h3 {
  font-family: var(--font); font-weight: 600;
  font-size: 1.4rem; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.bento-content p {
  font-size: 0.92rem; line-height: 1.55;
  color: rgba(245,243,255,0.8);
  max-width: 38ch;
}
.bento-stat {
  display: flex; flex-direction: column;
  align-self: flex-start;
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(59,130,246,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 12px;
}
.bs-num {
  font-family: var(--font); font-weight: 700; font-size: 1.5rem;
  background: linear-gradient(135deg, #7dd3fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.bs-label {
  font-family: var(--mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--dim);
}
/* Bento span variants */
.bento-xl   { grid-column: span 8;  grid-row: span 2; }
.bento-tall { grid-column: span 4;  grid-row: span 2; }
.bento-sm   { grid-column: span 3;  grid-row: span 1; }
.bento-md   { grid-column: span 6;  grid-row: span 1; }
.bento-wide { grid-column: span 6;  grid-row: span 1; }
.bento-xl h3 { font-size: 2rem; }
.bento-xl p { font-size: 1rem; max-width: 44ch; }
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; }
  .bento-xl   { grid-column: span 6; grid-row: span 2; }
  .bento-tall { grid-column: span 6; grid-row: span 1; }
  .bento-sm   { grid-column: span 3; }
  .bento-md   { grid-column: span 6; }
  .bento-wide { grid-column: span 6; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .bento-xl, .bento-tall, .bento-sm, .bento-md, .bento-wide {
    grid-column: span 1; grid-row: span 1;
  }
}

.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  color: var(--muted);
}
.badge svg { color: var(--green); }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.trust-inner {
  display: flex; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.trust-label {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
  padding: 16px 24px; white-space: nowrap;
  border-right: 1px solid var(--border);
}
.trust-scroll { overflow: hidden; flex: 1; padding: 16px 0; }
.trust-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content; padding-left: 24px;
}
.trust-track span {
  font-family: var(--font); font-size: 0.78rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══ SHARED TYPOGRAPHY ═══ */
.overline {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px;
}
h2 {
  font-family: var(--font); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
}
.h2-dim { color: var(--muted); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--dim); max-width: 480px; margin: 0 auto; }

/* ═══ SECTIONS — consistent 96px vertical ═══ */
.section { padding: 96px 0; }
.section-alt {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ═══ PROBLEM ═══ */
.problem-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.problem-text h2 { margin-bottom: 16px; }
.problem-desc { font-size: 0.95rem; color: var(--dim); line-height: 1.7; max-width: 340px; }

.stats { display: flex; flex-direction: column; gap: 12px; }
.stat {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.stat:hover { border-color: var(--border-h); transform: translateX(4px); }

.stat-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: conic-gradient(var(--clr) calc(var(--pct) * 1%), var(--surface2) 0);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.stat-ring::before {
  content: ''; position: absolute;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface);
}
.stat-ring span {
  position: relative; z-index: 1;
  font-family: var(--font); font-size: 0.7rem; font-weight: 700; color: var(--text);
}
.stat-info { display: flex; flex-direction: column; gap: 2px; }
.stat-info strong { font-family: var(--font); font-size: 0.88rem; font-weight: 600; }
.stat-info span { font-size: 0.78rem; color: var(--muted); }

/* ═══ FEATURES — uniform 12px gap ═══ */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.4s var(--ease);
}
.feature-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.feature-hero { grid-column: span 3; display: grid; grid-template-columns: 1.1fr 1fr; }
.feature-hero .feature-img-wrap { height: 100%; min-height: 280px; }
.feature-hero .feature-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.feature-hero h3 { font-size: 1.4rem; margin-bottom: 8px; }
.feature-hero p { font-size: 0.95rem; line-height: 1.7; }

.feature-img-wrap { position: relative; overflow: hidden; }
.feature-img {
  width: 100%; height: 172px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature-hero .feature-img { height: 100%; }
.feature-card:hover .feature-img { transform: scale(1.05); }
.feature-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
}

.feature-body { padding: 20px; }
.feature-body h3 { font-family: var(--font); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.feature-body p { font-size: 0.84rem; color: var(--dim); line-height: 1.6; }

.feature-tag {
  display: inline-block; margin-bottom: 12px;
  padding: 4px 10px; border-radius: 6px;
  background: var(--cyan-dim); border: 1px solid var(--cyan-mid);
  font-family: var(--mono); font-size: 0.64rem; font-weight: 500;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.06em;
}
.feature-stat {
  display: flex; align-items: baseline; gap: 8px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.fs-num { font-family: var(--font); font-size: 1.4rem; font-weight: 700; color: var(--green); }
.fs-label { font-size: 0.78rem; color: var(--muted); }

/* ═══ DASHBOARD ═══ */
.dashboard {
  background: var(--surface); border: 1px solid var(--border-h);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.dash-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--surface2); }
.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:last-child { background: #28c840; }
.dash-url {
  font-family: var(--mono); font-size: 0.68rem; color: var(--muted);
  background: var(--surface); padding: 4px 12px; border-radius: 6px;
  flex: 1; text-align: center;
}

.dash-body { display: grid; grid-template-columns: 172px 1fr; min-height: 300px; }

.dash-sidebar {
  padding: 12px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px;
  font-family: var(--font); font-size: 0.76rem; font-weight: 500;
  color: var(--muted); cursor: default; transition: all 0.2s;
}
.dash-nav-item.active { background: var(--accent-dim); color: var(--text); }
.dash-nav-item svg { flex-shrink: 0; }

.dash-main { padding: 16px; }
.dash-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.dash-metric {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 14px;
}
.dm-label { display: block; font-size: 0.64rem; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.dm-val { font-family: var(--font); font-size: 1.3rem; font-weight: 700; color: var(--text); }
.dm-change { font-family: var(--mono); font-size: 0.64rem; margin-left: 4px; }
.dm-change.up { color: var(--green); }

.dash-chart {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px; margin-bottom: 12px;
  height: 96px; overflow: hidden;
}
.dash-chart svg { width: 100%; height: 100%; }

.dash-activity { display: flex; flex-direction: column; }
.da-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.76rem;
}
.da-row:last-child { border-bottom: none; }
.da-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.da-dot.green { background: var(--green); box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.da-dot.blue { background: var(--accent); box-shadow: 0 0 6px rgba(59,130,246,0.5); }
.da-dot.amber { background: var(--amber); box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.da-text { color: var(--dim); flex: 1; }
.da-time { color: var(--muted); font-family: var(--mono); font-size: 0.64rem; }

/* ═══ STEPS — same 12px gap as features ═══ */
.how-header { margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.35s var(--ease);
}
.step:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.step-img-wrap { position: relative; overflow: hidden; }
.step-img {
  width: 100%; height: 192px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.step:hover .step-img { transform: scale(1.05); }
.step-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 8px;
  background: rgba(7,11,22,0.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  color: var(--accent);
}
.step:nth-child(2) .step-badge { color: var(--cyan); }
.step:nth-child(3) .step-badge { color: var(--green); }
.step-body { padding: 20px; }
.step-body h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.step-body p { font-size: 0.84rem; color: var(--dim); line-height: 1.6; }

/* ═══ RESULTS — same 12px gap ═══ */
.results-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 48px;
}
.result {
  text-align: center; padding: 24px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
}
.result:hover { border-color: var(--border-h); transform: translateY(-2px); }
.r-num, .r-prefix, .r-suffix {
  font-family: var(--font); font-weight: 700; display: inline; line-height: 1;
}
.r-num { font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--accent); }
.r-prefix, .r-suffix { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--accent); }
.result:nth-child(2) .r-num, .result:nth-child(2) .r-prefix, .result:nth-child(2) .r-suffix { color: var(--cyan); }
.result:nth-child(4) .r-num, .result:nth-child(4) .r-suffix { color: var(--cyan); }
.r-label { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--dim); }

/* ═══ TESTIMONIALS — same 12px gap ═══ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: all 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.testimonial:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.t-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.t-quote {
  font-size: 0.9rem; color: var(--dim); line-height: 1.7;
  flex: 1; margin-bottom: 16px; font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.t-avatar {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent-dim), var(--cyan-dim));
  border: 1px solid var(--border-h);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 0.7rem; font-weight: 700;
  color: var(--accent); flex-shrink: 0;
}
.testimonial:nth-child(2) .t-avatar { color: var(--cyan); }
.testimonial:nth-child(3) .t-avatar { color: var(--green); }
.t-info { display: flex; flex-direction: column; }
.t-info strong { font-family: var(--font); font-size: 0.84rem; font-weight: 600; }
.t-info span { font-size: 0.72rem; color: var(--muted); }

/* ═══ VIDEO ═══ */
.video-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; }
.video-desc { font-size: 0.95rem; color: var(--dim); line-height: 1.7; margin-bottom: 24px; max-width: 380px; }
.video-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
  border: 1px solid var(--border-h);
}
.video-placeholder { position: relative; cursor: pointer; aspect-ratio: 16/9; }
.video-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.video-placeholder:hover img { transform: scale(1.04); }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s var(--ease);
}
.video-placeholder:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-duration {
  position: absolute; bottom: 12px; right: 12px;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  font-family: var(--mono); font-size: 0.66rem; color: rgba(255,255,255,0.7);
}

/* ═══ PRICING ═══ */
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }

.price-main {
  background: var(--surface); border: 1px solid var(--accent-mid);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: 0 4px 32px rgba(59,130,246,0.12);
  position: relative;
}
.pm-popular {
  position: absolute; top: -12px; left: 32px;
  padding: 4px 14px; border-radius: 20px;
  background: var(--accent); color: #fff;
  font-family: var(--font); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(59,130,246,0.4);
}
.pm-label {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pm-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pm-dollar { font-family: var(--font); font-size: 2.8rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.pm-period { font-size: 1rem; color: var(--muted); }
.pm-activation { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
.pm-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pm-list { list-style: none; margin-bottom: 24px; }
.pm-list li {
  padding: 8px 0 8px 28px; font-size: 0.86rem; color: var(--dim);
  position: relative;
}
.pm-list li + li { border-top: 1px solid rgba(255,255,255,0.03); }
.pm-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent-mid);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 5L4.5 7L7.5 3' stroke='%233b82f6' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pm-note { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 12px; }

.addons {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
}
.addons h3 { font-family: var(--font); font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; }
.addons-sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; }
.addon-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.addon-row:last-of-type { border-bottom: none; }
.addon-row div { display: flex; flex-direction: column; gap: 2px; }
.addon-row strong { font-family: var(--font); font-size: 0.88rem; font-weight: 600; }
.addon-row span { font-size: 0.76rem; color: var(--muted); }
.addon-row em {
  font-style: normal; font-family: var(--mono); font-size: 0.86rem;
  font-weight: 500; color: var(--text); white-space: nowrap;
}
.addon-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 0.76rem; color: var(--muted);
}

/* ═══ FAQ ═══ */
.faq-list { margin-top: 32px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 8px; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--border-h); }
.faq-item.open { border-color: var(--accent-mid); background: var(--surface); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 20px; background: none; border: none;
  color: var(--text); font-family: var(--font); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+'; font-size: 1.1rem; font-weight: 400; color: var(--muted);
  transition: all 0.35s var(--ease); flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q::after { content: '−'; color: var(--accent); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 20px 16px; font-size: 0.88rem; color: var(--dim); line-height: 1.7; }

/* ═══ CTA + FORM ═══ */
.section-cta {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.cta-header { text-align: center; margin-bottom: 32px; }
.cta-header h2 { margin-bottom: 8px; }
.cta-header p { font-size: 1rem; color: var(--dim); }
.cta-brand { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }

.form { max-width: 520px; margin: 0 auto; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 0.88rem;
  transition: all 0.25s var(--ease); outline: none;
  margin-bottom: 8px;
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent-mid); background: rgba(59,130,246,0.04);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.08);
}
.form select { appearance: none; cursor: pointer; color: var(--muted); }
.form select:valid { color: var(--text); }
.form textarea { resize: vertical; min-height: 72px; }
.form .btn { margin-top: 4px; padding: 14px; font-size: 0.92rem; }

.btn-submit { position: relative; }
.btn-load {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.2); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.5s linear infinite;
}
.btn-submit.loading .btn-label { opacity: 0; }
.btn-submit.loading .btn-load { display: block; position: absolute; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ═══ FOOTER ═══ */
.footer { padding: 48px 0 24px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 32px;
}
.footer-brand p { font-size: 0.84rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 {
  font-family: var(--mono); font-size: 0.64rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 4px;
}
.footer-col a { font-size: 0.86rem; color: var(--dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.7rem; color: var(--muted);
}
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  padding: 4px 10px; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--dim); }

/* ═══ REVEALS — high-end ═══ */
[data-r] {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.16,1,0.3,1),
    transform 1.1s cubic-bezier(0.16,1,0.3,1),
    filter 0.9s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform, filter;
}
[data-r].vis {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
[data-r][data-d="1"] { transition-delay: 0.08s; }
[data-r][data-d="2"] { transition-delay: 0.16s; }
[data-r][data-d="3"] { transition-delay: 0.24s; }
[data-r][data-d="4"] { transition-delay: 0.32s; }

/* Image-specific reveal: scale-in like Apple */
img.bento-img,
img.product-icon,
img.step-img,
img.feature-img,
.hero-photo {
  transition: transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
[data-r] img.bento-img,
[data-r] img.feature-img,
[data-r] img.step-img {
  transform: scale(1.12);
}
[data-r].vis img.bento-img,
[data-r].vis img.feature-img,
[data-r].vis img.step-img {
  transform: scale(1.0);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #22d3ee);
  z-index: 200;
  box-shadow: 0 0 12px rgba(59,130,246,0.7);
  transition: width 60ms linear;
  pointer-events: none;
}

/* Section enter glow — soft purple wash that passes across new sections */
.section { position: relative; }
.section::before {
  content: '';
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 50%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.35;
  pointer-events: none;
}

/* Smooth transform on cards */
.product-card, .bento-card, .testimonial, .step, .feature-card {
  transition:
    transform 0.5s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
    border-color 0.3s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  [data-r] { opacity: 1; transform: none; filter: none; transition: none; }
  .scroll-progress { display: none; }
  .hero-photo, .hero-mesh { animation: none !important; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-layout { padding: 64px 24px; }
  .problem-layout { grid-template-columns: 1fr; gap: 32px; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature-hero { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; max-width: 440px; }
  .results-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .video-layout { grid-template-columns: 1fr; gap: 32px; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); padding: 8px 12px; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(7,11,22,0.97); backdrop-filter: blur(20px);
    padding: 12px; gap: 4px; border-bottom: 1px solid var(--border);
  }
  .nav-links.active a { padding: 12px 16px; }
  .nav-links.active .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; display: block; }
  .hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero-layout { padding: 48px 24px 64px; }
  .brand-mark { width: 44px; height: 44px; border-radius: 12px; }
  .brand-name { font-size: 1.4rem; }

  .section { padding: 64px 0; }
  .section-cta { padding: 64px 0; }
  .section-header { margin-bottom: 32px; }
  .trust-label { display: none; }

  .features { grid-template-columns: 1fr; }
  .feature-hero { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-hero .feature-img-wrap { min-height: 200px; }
  .pricing-layout { grid-template-columns: 1fr; }
  .results-row { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }
  .footer-badges { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .results-row { grid-template-columns: 1fr 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
}

/* ═══ DEMO GALLERY (2x2 product video grid) ═══ */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.demo-card {
  position: relative;
  background: linear-gradient(165deg, rgba(59,130,246,0.06) 0%, rgba(7,11,22,0) 60%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 14px;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.demo-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 320px at 100% 0%, rgba(59,130,246,0.12), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  z-index: 0; pointer-events: none;
}
.demo-card:hover {
  border-color: var(--border-h);
  transform: scale(1.02);
  box-shadow: 0 24px 80px rgba(59,130,246,0.18);
}
.demo-card:hover::before { opacity: 1; }
.demo-card > * { position: relative; z-index: 1; }
.demo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 14px;
  background: #000;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
}
.demo-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 8px 6px;
}
.demo-badge {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.demo-dur {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  padding: 4px 9px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .demo-grid { grid-template-columns: 1fr; gap: 16px; }
  .demo-card { padding: 12px; }
}

/* ════════════════════════════════════════════════════════
   MOBILE PREMIUM POLISH — full sweep, last in cascade
   ════════════════════════════════════════════════════════ */

/* Tighter container padding on small screens */
@media (max-width: 640px) {
  .container, .container-mid { padding: 0 18px; }
}

/* HERO — fix the cutoff + premium scaling */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-layout { padding: 100px 18px 56px; }
  .hero-brand { gap: 14px; margin-bottom: 22px; }
  .hero-icon-img { width: 56px; height: 56px; border-radius: 13px; }
  .brand-tracked { font-size: 1.1rem; letter-spacing: 0.16em; }

  .hero-engines {
    margin-bottom: 22px;
    padding-bottom: 6px;
  }
  .he-name {
    font-size: 0.78rem;
    padding: 8px 12px 8px 11px;
    gap: 7px;
  }
  .he-name::before { width: 6px; height: 6px; }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
  }
  .hero-kicker {
    font-size: 0.95rem;
    margin: -4px 0 18px;
  }
  .hero-tagline {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero-tagline-dim { font-size: 0.85rem; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 22px;
  }
  .hero-actions .btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
    justify-content: center;
    width: 100%;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .badge {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
  .badge-ca { font-size: 0.74rem; }
}

/* Tiny phones */
@media (max-width: 400px) {
  .hero-layout { padding: 92px 16px 44px; }
  .hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .brand-tracked { font-size: 0.96rem; letter-spacing: 0.14em; }
  .hero-icon-img { width: 48px; height: 48px; border-radius: 11px; }
  .he-name { font-size: 0.72rem; padding: 7px 11px 7px 10px; }
}

/* SECTION HEADERS — tighter mobile rhythm */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); line-height: 1.06; }
  .section-sub { font-size: 0.94rem; margin-top: 14px; }
  .overline { font-size: 0.66rem; margin-bottom: 10px; }
}

/* TRUST STRIP — mobile */
@media (max-width: 768px) {
  .trust-strip { padding: 18px 0; }
  .ts-row { gap: 14px; grid-template-columns: 1fr 1fr; }
  .ts-item {
    font-size: 0.78rem;
    gap: 9px;
    padding: 4px 0;
    justify-content: flex-start;
  }
  .ts-item svg { width: 17px; height: 17px; }
}
@media (max-width: 420px) {
  .ts-row { grid-template-columns: 1fr; gap: 10px; }
}

/* PRODUCTS GRID — mobile */
@media (max-width: 768px) {
  .products-grid { gap: 14px; margin-top: 36px; }
  .product-card { padding: 24px 22px; border-radius: 18px; }
  .product-meta {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin: -4px 0 14px;
  }
  .product-card h3 { font-size: 1.35rem; }
  .product-pitch { font-size: 0.9rem; margin-bottom: 18px; }
  .product-includes li { font-size: 0.82rem; }
  .product-icon-wrap { width: 64px; height: 64px; margin-bottom: 18px; border-radius: 14px; }
  .product-icon { border-radius: 14px; }
  .product-star svg { width: 19px; height: 19px; }
  .ps-text { font-size: 0.55rem; }
}

/* STACK BUILDER — mobile */
@media (max-width: 768px) {
  .stack-builder { padding: 28px 20px; border-radius: 22px; margin-top: 32px; }
  .sb-head h3 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .sb-head p { font-size: 0.9rem; }
  .sb-engines { grid-template-columns: 1fr; gap: 10px; margin-bottom: 22px; }
  .sb-engine { padding: 14px 16px; }
  .sb-name { font-size: 0.94rem; }
  .sb-cost { font-size: 0.7rem; }
  .sb-tier-bar { grid-template-columns: 1fr; gap: 6px; }
  .sb-tier-step { padding: 9px 12px; font-size: 0.74rem; text-align: left; }
  .sb-row { font-size: 0.84rem; }
  .sb-row-total { font-size: 0.96rem; padding-top: 14px; }
  .sb-total-num { font-size: 1.25rem; }
  .guarantee-crest { padding: 12px 14px; gap: 10px; margin: 18px 0 6px; }
  .gc-text strong { font-size: 0.86rem; }
  .gc-text span { font-size: 0.74rem; }
  .sb-cta { width: 100%; justify-content: center; }
}

/* ONSITE BAND — mobile */
@media (max-width: 880px) {
  .onsite-band { grid-template-columns: 1fr; border-radius: 22px; }
  .onsite-photo { aspect-ratio: 4 / 3; min-height: 0; }
  .onsite-copy { padding: 28px 22px; gap: 20px; }
  .onsite-copy h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .onsite-body { font-size: 0.96rem; }
  .onsite-pillars { gap: 10px; }
  .pillar { padding: 12px 14px; gap: 14px; }
  .pillar-text strong { font-size: 0.92rem; }
  .pillar-text span { font-size: 0.78rem; }
  .onsite-copy .btn { width: 100%; justify-content: center; }
}

/* BENTO — mobile, full stack */
@media (max-width: 700px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .bento-card { aspect-ratio: 16/10; grid-column: span 1 !important; grid-row: span 1 !important; border-radius: 18px; }
  .bento-content { padding: 22px; }
  .bento-content h3 { font-size: 1.15rem; }
  .bento-xl h3 { font-size: 1.4rem; }
}

/* PROCESS TIMELINE — mobile */
@media (max-width: 880px) {
  .timeline { gap: 16px; margin-top: 40px; }
  .tl-step { gap: 0; }
  .tl-node { width: 52px; height: 52px; font-size: 0.78rem; margin-bottom: 18px; }
  .tl-card h3 { font-size: 1rem; padding: 14px 14px 4px; }
  .tl-card p { font-size: 0.84rem; padding: 0 14px 16px; }
}

/* DEMO VIDEO — mobile */
@media (max-width: 768px) {
  .psub-video { border-radius: 18px; }
  .psub-video-play svg { width: 56px; height: 56px; }
  .psub-video-coming { font-size: 0.72rem; padding: 8px 14px; }
}

/* FAQ — mobile */
@media (max-width: 768px) {
  .faq-q { font-size: 0.96rem; padding: 16px 0; }
  .faq-a p { font-size: 0.9rem; }
}

/* CTA / FORM — mobile */
@media (max-width: 600px) {
  .cta-brand { flex-direction: column; gap: 14px; }
  .cta-header h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-header p { font-size: 0.96rem; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  input, select, textarea { padding: 13px 15px; font-size: 0.96rem; }
  .btn-submit { padding: 16px; font-size: 1rem; min-height: 52px; }
}

/* FOOTER — mobile */
@media (max-width: 768px) {
  .footer { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col { gap: 6px; }
  .footer-bar { flex-direction: column; gap: 10px; align-items: flex-start; text-align: left; padding-top: 20px; }
}

/* SUBPAGE HERO — mobile */
@media (max-width: 768px) {
  .psub-hero { padding: 110px 0 56px; }
  .psub-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .psub-hero-icon img { width: 96px; height: 96px; border-radius: 22px; }
  .psub-hero-copy h1 { font-size: clamp(2.2rem, 8.5vw, 3.4rem); }
  .psub-tagline { font-size: 1.08rem; }
  .psub-pitch { font-size: 0.96rem; margin-bottom: 24px; }
  .psub-meta { flex-wrap: wrap; padding: 12px 16px; gap: 14px; }
  .psub-price-num { font-size: 1.2rem; }
  .psub-cta-row { flex-direction: column; gap: 10px; }
  .psub-cta-row .btn { width: 100%; justify-content: center; }
  .psub-back { font-size: 0.72rem; margin-bottom: 22px; }
}

/* SUBPAGE FEATURE STACK — mobile */
@media (max-width: 768px) {
  .pf-stack { gap: 16px; margin-top: 36px; }
  .pf-block { grid-template-columns: 1fr; min-height: 0; border-radius: 18px; }
  .pf-block:nth-child(even) { direction: ltr; }
  .pf-img-wrap { aspect-ratio: 16/9; }
  .pf-text { padding: 24px 20px; gap: 8px; }
  .pf-text h3 { font-size: 1.25rem; }
  .pf-text p { font-size: 0.9rem; }
}

/* HOW-IT-WORKS GRID — mobile */
@media (max-width: 600px) {
  .ph-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .ph-step { padding: 22px 18px; }
  .ph-step h4 { font-size: 1.05rem; }
  .ph-step p { font-size: 0.86rem; }
}

/* INDUSTRIES CHIPS — mobile */
@media (max-width: 600px) {
  .ind-grid { gap: 8px; margin-top: 26px; }
  .ind-chip { padding: 10px 16px; font-size: 0.82rem; }
}

/* RELATED PRODUCTS — mobile */
@media (max-width: 600px) {
  .rp-grid { gap: 12px; margin-top: 30px; }
  .rp-card { padding: 16px 18px; gap: 14px; grid-template-columns: 50px 1fr auto; }
  .rp-icon { width: 50px; height: 50px; border-radius: 12px; }
  .rp-body h4 { font-size: 0.96rem; }
  .rp-body p { font-size: 0.76rem; }
}

/* TAP TARGETS — never below 44px on mobile */
@media (max-width: 768px) {
  .nav-links.active a { min-height: 44px; display: flex; align-items: center; }
  .hamburger { padding: 12px; min-width: 44px; min-height: 44px; }
  .faq-q { min-height: 48px; display: flex; align-items: center; }
  .sb-engine { min-height: 56px; }
  .he-name { min-height: 36px; }
}

/* Disable parallax + heavy animations on mobile (perf) */
@media (max-width: 768px) {
  .hero-photo, .hero-mesh { animation: none; transform: none !important; }
  .hero-mesh { opacity: 0.6; }
  .scroll-progress { height: 2px; }
}

/* ═══ MOBILE FIX: hero engine chips — 2×2 grid instead of clipped scroll ═══ */
@media (max-width: 700px) {
  .hero-engines {
    flex-wrap: wrap;
    overflow-x: visible;
    width: 100%;
  }
  .he-name {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    padding: 9px 12px;
  }
}
@media (max-width: 360px) {
  .hero-engines { flex-direction: column; }
  .he-name { flex: 1 1 100%; }
}
