/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  overflow-x: hidden;
  cursor: none;
}

/* ── Cursor ────────────────────────────────────────────────────────────── */
.cursor {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: transform .08s, opacity .2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; width: 5px; height: 5px;
  background: #fff; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
body.ch .cursor { transform: translate(-50%,-50%) scale(1.7); opacity:.5; }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px; height: 60px;
  display: flex; align-items: center;
  transition: background .3s, backdrop-filter .3s;
}
.nav.scrolled { background: rgba(10,10,10,.85); backdrop-filter: blur(16px); }
.nav-inner { width: 100%; display: flex; align-items: center; gap: 32px; justify-content: flex-end; }
.nav-links { display: flex; gap: 32px; list-style: none; }

/* Language toggle */
.lang-toggle { display: flex; align-items: center; gap: 6px; }
.lang-sep { font-size: 12px; color: rgba(255,255,255,.2); }
.lang-btn {
  background: none; border: none; cursor: pointer; padding: 4px 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.3); transition: color .2s; font-family: inherit;
}
.lang-btn.active { color: #fff; }
.lang-btn:hover  { color: rgba(255,255,255,.7); }
.nav-link { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); text-decoration: none; letter-spacing: .02em; transition: color .2s; }
.nav-link:hover { color: #fff; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 6px; font-size: 14px; font-weight: 500;
  text-decoration: none; letter-spacing: .01em; transition: all .2s; cursor: pointer; border: none;
}
.btn-nav   { padding: 8px 18px; font-size: 13px; background:#fff; color:#000; }
.btn-nav:hover { background: #e0e0e0; }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #e0e0e0; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.7); }
.btn-ghost:hover { color: #fff; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; }
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-full { width: 100%; justify-content: center; }

/* ── Container ─────────────────────────────────────────────────────────── */
.container { width: 100%; padding: 0 72px; }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #0a0a0a;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 120px 72px 80px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 400; letter-spacing: .1em;
  color: rgba(255,255,255,.45); text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #d41a1a; flex-shrink: 0; }

.hero-title {
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 900; letter-spacing: -6px; line-height: 1;
  margin-bottom: 20px; color: #fff;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6;
  color: rgba(255,255,255,.5); margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 72px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 400; letter-spacing: .08em; color: rgba(255,255,255,.3); text-transform: uppercase;
}
.scroll-track { width: 36px; height: 1px; background: rgba(255,255,255,.15); position: relative; overflow: hidden; }
.scroll-thumb {
  position: absolute; left: 0; top: 0; width: 12px; height: 1px; background: rgba(255,255,255,.5);
  animation: scrollThumb 2.2s ease-in-out infinite;
}
@keyframes scrollThumb { 0%,100%{left:0;} 50%{left:calc(100% - 12px);} }

/* ── Marquee ───────────────────────────────────────────────────────────── */
.marquee-outer {
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06); padding: 18px 0;
  background: #0a0a0a;
}
.marquee-track {
  display: inline-flex; gap: 0; animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span { font-size: 14px; font-weight: 400; letter-spacing: .08em; color: rgba(255,255,255,.3); padding: 0 28px; text-transform: uppercase; }
.marquee-track .sep { padding: 0; color: rgba(255,255,255,.12); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Sections ──────────────────────────────────────────────────────────── */
.section { padding: 120px 0; }
.section-alt { background: #060606; padding: 120px 0; }

/* Section headers — alineados a izq / der / centro */
.section-header {
  padding: 0 72px; margin-bottom: 72px;
}
.sh-left  { text-align: left; }
.sh-right { text-align: right; }
.sh-center { text-align: center; }

.section-eyebrow {
  font-size: 12px; font-weight: 400; letter-spacing: .1em;
  color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: 16px;
  display: block;
}
.section-h {
  font-size: clamp(36px, 4.5vw, 72px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.05;
}
.section-h em { font-style: italic; font-weight: 200; }
.section-h.nowrap { white-space: nowrap; }
.section-sub { font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 48px; max-width: 540px; }
.sh-center .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-64px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(64px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-line {
  display: block; overflow: hidden;
  clip-path: inset(0 0 110% 0);
  transition: clip-path .9s cubic-bezier(.16,1,.3,1);
}
.reveal-line.visible { clip-path: inset(0 0 -10% 0); }

.delay-1 { transition-delay: .12s !important; }
.delay-2 { transition-delay: .24s !important; }
.delay-3 { transition-delay: .38s !important; }

/* ── Product SAMBA full-width ──────────────────────────────────────────── */
.product-full {
  position: relative; overflow: hidden;
  margin: 0 72px 80px; border-radius: 16px;
  min-height: 480px; display: flex; align-items: flex-end;
}
.product-full-bg {
  position: absolute; inset: 0; z-index: 0; transform-origin: center; transition: transform .6s ease;
}
.product-full:hover .product-full-bg { transform: scale(1.03); }
.product-full-inner {
  position: relative; z-index: 1; padding: 56px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 60%, transparent 100%);
  width: 100%;
}

.product-full-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.product-full-name { font-size: clamp(56px, 7vw, 96px); font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 12px; }
.product-full-tag { font-size: 18px; font-weight: 300; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.product-full-desc { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.55); max-width: 600px; margin-bottom: 24px; }

.product-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.product-chips span {
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
}
.product-full-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Product status badges */
.pstatus {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.pstatus.available { background: rgba(74, 222, 128, .12); color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
.pstatus.beta      { background: rgba(251, 191, 36, .12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.pstatus.alpha     { background: rgba(147, 51, 234, .12); color: #c084fc; border: 1px solid rgba(147,51,234,.25); }
.pstatus.wip       { background: rgba(100,100,100,.15);   color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); }

/* ── Products grid — fila única, misma altura ───────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.products-row {
  grid-template-columns: repeat(4, 1fr); align-items: stretch;
}
.product-card {
  position: relative; overflow: hidden; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column;
}
.pcard-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .7;
  transition: transform .6s ease, opacity .3s;
}
.product-card:hover .pcard-bg { transform: scale(1.04); opacity: 1; }
.pcard-body {
  position: relative; z-index: 1; padding: 32px;
  display: flex; flex-direction: column; flex: 1;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.55) 100%);
}
.pcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pinitial {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
}
.pinitial.zazk    { background: rgba(52,211,153,.12); color: #34d399; border: 1px solid rgba(52,211,153,.25); }
.pinitial.bossa   { background: rgba(96,165,250,.12);  color: #60a5fa; border: 1px solid rgba(96,165,250,.25); }
.pinitial.magentic{ background: rgba(167,139,250,.12); color: #a78bfa; border: 1px solid rgba(167,139,250,.25); }
.pinitial.soda    { background: rgba(251,146,60,.12);  color: #fb923c; border: 1px solid rgba(251,146,60,.25); }

.pname  { font-size: 32px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 6px; }
.ptitle { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.5); margin-bottom: 14px; font-style: italic; }
.pdesc  { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.55); margin-bottom: 20px; flex: 1; }
.pfeats { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.pfeats li {
  font-size: 13px; color: rgba(255,255,255,.45);
  padding-left: 16px; position: relative;
}
.pfeats li::before {
  content: '→'; position: absolute; left: 0;
  color: rgba(255,255,255,.2); font-size: 11px;
}

/* ── Animated backgrounds ──────────────────────────────────────────────── */
.samba-bg {
  background: radial-gradient(ellipse at 30% 50%, rgba(180,20,20,.35) 0%, rgba(100,10,10,.18) 50%, transparent 80%),
              radial-gradient(ellipse at 80% 80%, rgba(220,40,40,.15) 0%, transparent 60%);
  animation: bgBreath 8s ease-in-out infinite;
}
.zazk-bg {
  background: radial-gradient(ellipse at 70% 30%, rgba(20,180,100,.28) 0%, rgba(10,100,60,.12) 50%, transparent 80%);
  animation: bgBreath 9s ease-in-out infinite;
}
.bossa-bg {
  background: radial-gradient(ellipse at 30% 70%, rgba(20,80,200,.28) 0%, rgba(10,40,120,.12) 50%, transparent 80%);
  animation: bgBreath 7s ease-in-out infinite;
}
.magentic-bg {
  background: radial-gradient(ellipse at 60% 40%, rgba(120,20,200,.28) 0%, rgba(80,10,140,.12) 50%, transparent 80%);
  animation: bgBreath 10s ease-in-out infinite;
}
.soda-bg {
  background: radial-gradient(ellipse at 40% 60%, rgba(200,80,10,.28) 0%, rgba(140,50,5,.12) 50%, transparent 80%);
  animation: bgBreath 8.5s ease-in-out infinite;
}
@keyframes bgBreath {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.05); }
}

/* ── SBL home block ────────────────────────────────────────────────────── */
.sbl-section { background: #060606; }
.sbl-home-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sbl-home-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 20px;
  padding: 5px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 100px;
}
.badge-dot-green { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.sbl-home-title {
  font-size: clamp(32px, 4vw, 60px); font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 16px;
}
.sbl-home-title em { font-style: italic; font-weight: 200; }
.sbl-home-desc { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.5); margin-bottom: 28px; max-width: 480px; }
.sbl-home-stats { display: flex; gap: 32px; margin-bottom: 28px; }
.shs { display: flex; flex-direction: column; gap: 4px; }
.shs-n { font-size: 18px; font-weight: 900; letter-spacing: -1px; }
.shs-l { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .04em; text-transform: uppercase; }
.sbl-home-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mini comparison table */
.sbl-comp-mini {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; overflow: hidden;
}
.scm-header {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.25); padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.scm-row {
  display: grid; grid-template-columns: 70px 90px 100px 1fr auto;
  gap: 0; padding: 10px 16px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.04); font-size: 13px;
}
.scm-row:last-child { border-bottom: none; }
.scm-row.scm-sbl { background: rgba(255,255,255,.04); }
.scm-name { font-weight: 700; }
.scm-sbl .scm-name { color: #fff; }
.scm-lat  { color: rgba(255,255,255,.6); font-size: 12px; }
.scm-bw   { color: rgba(255,255,255,.4); font-size: 12px; }
.scm-feat { color: rgba(255,255,255,.4); font-size: 12px; }
.scm-lic  { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.3); text-align: right; }
.scm-lic.open { color: #4ade80; }
.scm-sbl .scm-lat  { color: #fff; font-weight: 600; }

@media (max-width: 960px) {
  .sbl-home-block { grid-template-columns: 1fr; gap: 40px; }
  .scm-row { grid-template-columns: 60px 80px 1fr auto; }
  .scm-bw, .scm-feat { display: none; }
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; gap: 4px;
  justify-content: center; margin-bottom: 56px;
  background: rgba(255,255,255,.04); border-radius: 8px; padding: 4px; width: fit-content;
  margin-left: auto; margin-right: auto;
}
.toggle-btn {
  padding: 9px 22px; border-radius: 6px; font-size: 13px; font-weight: 500;
  background: transparent; border: none; color: rgba(255,255,255,.45); cursor: pointer;
  transition: all .2s; display: flex; align-items: center; gap: 8px;
}
.toggle-btn.active { background: rgba(255,255,255,.1); color: #fff; }
.save-badge {
  font-size: 10px; background: rgba(74,222,128,.15); color: #4ade80;
  padding: 2px 7px; border-radius: 4px; font-weight: 600; letter-spacing: .03em;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch;
}
.pricing-card {
  border: 1px solid rgba(255,255,255,.08); border-radius: 12px;
  padding: 36px 28px; position: relative; background: rgba(255,255,255,.02);
  transition: border-color .25s, background .25s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.pricing-featured { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.plan-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: #fff; color: #000; padding: 4px 12px; border-radius: 4px; white-space: nowrap;
}
.plan-label { font-size: 13px; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.45); text-transform: uppercase; margin-bottom: 12px; }
.plan-price { font-size: 48px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.plan-freq  { font-size: 14px; color: rgba(255,255,255,.35); margin-top: 4px; margin-bottom: 28px; }
.plan-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 28px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  font-size: 13px; padding-left: 20px; position: relative;
  color: rgba(255,255,255,.6);
}
.plan-features li::before { position: absolute; left: 0; font-size: 12px; }
.plan-features .yes::before { content: '✓'; color: #4ade80; }
.plan-features .no::before  { content: '–'; color: rgba(255,255,255,.2); }
.plan-features .no  { color: rgba(255,255,255,.2); }
.plan-features .hl  { color: #fbbf24; }
.plan-features .hl::before { content: '★'; color: #fbbf24; font-size: 10px; top: 1px; }

/* ── License ───────────────────────────────────────────────────────────── */
.license-row {
  display: flex; align-items: center; gap: 64px; flex-wrap: wrap;
}
.license-title { flex-shrink: 0; }
.license-title .section-eyebrow { margin-bottom: 8px; }
.license-title .section-h { font-size: clamp(28px, 3vw, 48px); }
.license-form-wrap { flex: 1; }
.license-form {
  display: flex; gap: 12px; flex-wrap: nowrap; align-items: center;
}
.license-input {
  flex: 1; min-width: 240px; padding: 13px 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 7px;
  color: #fff; font-size: 14px; font-family: 'Inter', monospace; letter-spacing: .04em;
  outline: none; transition: border-color .2s;
}
.license-input:focus { border-color: rgba(255,255,255,.3); }
.license-input::placeholder { color: rgba(255,255,255,.2); }
.license-select {
  padding: 13px 14px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12); border-radius: 7px;
  color: rgba(255,255,255,.7); font-size: 14px; cursor: pointer;
  outline: none; appearance: none; padding-right: 32px;
}
.license-result {
  margin-top: 20px; padding: 14px 18px; border-radius: 7px; font-size: 14px; line-height: 1.5;
}
.license-result.ok  { background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2); color: #4ade80; }
.license-result.err { background: rgba(239,68,68,.08);  border: 1px solid rgba(239,68,68,.2);  color: #f87171; }

/* ── Notify ────────────────────────────────────────────────────────────── */
.notify-center {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.notify-center .section-sub { margin-left: auto; margin-right: auto; }
.notify-form { display: flex; gap: 12px; max-width: 440px; }
.notify-input {
  flex: 1; padding: 13px 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 7px;
  color: #fff; font-size: 14px; outline: none; transition: border-color .2s;
}
.notify-input:focus { border-color: rgba(255,255,255,.3); }
.notify-input::placeholder { color: rgba(255,255,255,.2); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,.07); padding: 56px 0 40px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 72px; margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}
.footer-brand { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding: 0 72px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .section-h.nowrap { white-space: normal; }
}
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section-header { padding: 0 24px; }
  .hero-content { padding: 80px 24px 60px; }
  .hero-title { letter-spacing: -4px; }
  .product-full { margin: 0 24px 56px; }
  .product-full-inner { padding: 32px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .license-row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .license-form { flex-wrap: wrap; }
  .footer-top, .footer-bottom { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .hero-scroll { left: 24px; }
}
@media (max-width: 600px) {
  .products-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(36px, 10vw, 64px); letter-spacing: -2px; }
  .footer-nav { gap: 16px; }
  .license-form { flex-wrap: wrap; }
}
