/* ============================================================
   NovaTech Systems – styles.css
   Dark tech design · Inter · #0a0a0f bg
   ============================================================ */

/* --- Tokens --- */
:root {
  --bg:          #0a0a0f;
  --surface:     #111118;
  --surf-mid:    #18181f;
  --surf-high:   #22222c;
  --surf-bright: #2a2a38;
  --on-surf:     #e8e8f0;
  --muted:       rgba(232,232,240,.45);
  --border:      rgba(255,255,255,.08);
  --border-mid:  rgba(255,255,255,.12);
  --blue:        #4a8cff;
  --blue-dim:    rgba(74,140,255,.15);

  --apex1-c:     #00e0c0;
  --apex2-c:     #a56fff;
  --apex3-c:     #ff6b3d;

  --ff: 'Inter', sans-serif;
  --radius:   12px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow:    0 4px 32px rgba(0,0,0,.6);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.8);
  --tr: .4s cubic-bezier(.22,1,.36,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--on-surf);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff); }

h2, h3 { line-height: 1.15; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; }

/* --- Fade-in --- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,15,.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4a8cff, #00b8ff);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
}
.logo-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--on-surf);
  letter-spacing: -.01em;
}
.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--on-surf);
  background: var(--surf-high);
}
.btn-header {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: opacity .2s, transform .2s;
}
.btn-header:hover { opacity: .85; transform: translateY(-1px); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 8px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--on-surf);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
}
.mobile-nav.open { display: flex; }
.mob-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 8px;
}
.mob-link:hover { background: var(--surf-high); color: var(--on-surf); }
.mob-cta {
  margin-top: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px;
  border-radius: 50px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(74,140,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 80px 0 80px 8vw;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--on-surf);
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(160deg, #e8e8f0 0%, #4a8cff 50%, #00b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.sub-bright { color: rgba(232,232,240,.8); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  transition: opacity var(--tr), transform var(--tr);
  text-decoration: none;
}
.btn-primary:hover { opacity: .85; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--on-surf);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1px solid var(--border-mid);
  transition: background var(--tr), border-color var(--tr);
  text-decoration: none;
}
.btn-ghost:hover { background: var(--surf-high); border-color: var(--blue); }

/* Hero Visual / Laptop */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8vw 80px 0;
}
.hero-laptop-photo {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 100px rgba(0,0,0,.9));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: .85rem;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: .8; }
}

/* ============================================================
   KPI STRIP
   ============================================================ */
.kpi-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 28px;
}
.kpi-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.kpi-item {
  text-align: center;
  padding: 12px 52px;
  flex: 1;
  min-width: 140px;
}
.kpi-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--on-surf);
  line-height: 1;
}
.kpi-suffix {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
}
.kpi-label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.kpi-div {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ============================================================
   CHIPS SECTION — STICKY SCROLL
   ============================================================ */
.chips-section {
  background: var(--bg);
}
.chips-sticky-wrap {
  height: 300vh;
  position: relative;
}
.chips-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 8vw;
  overflow: hidden;
}
/* Background glow for chips section */
.chips-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(74,140,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Section label at top */
.chips-sticky::after {
  content: 'Chip-Vergleich';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Laptop side --- */
.chips-laptop-side {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Laptop-Fotos: komplett wechselndes Bild je Chip */
.chip-photo-wrap {
  display: grid;
  width: 100%;
  max-width: 600px;
}
.clm-screen-img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.85));
  opacity: 0;
  transition: opacity .8s ease;
}
.clm-screen-img.active { opacity: 1; }

/* --- Glass Card side --- */
.chips-card-side {
  flex: 0 0 460px;
}
.glass-card {
  background: rgba(24,24,36,.65);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

/* Chip Icon Buttons */
.chip-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}
.chip-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: .3;
  filter: grayscale(1);
  transition: opacity .5s ease, filter .5s ease, transform .4s ease;
}
.chip-icon.active {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
}
.chip-icon:hover:not(.active) { opacity: .6; filter: grayscale(.4); }
.ci-badge {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  padding: 2px;
}
.ci-inner {
  width: 100%;
  height: 100%;
  background: #0e0e18;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-label {
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .02em;
}
.ci-label b { font-size: .9rem; display: block; }
.ci-name {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

/* Chip Content */
.chip-content-wrap { position: relative; min-height: 280px; }
.chip-content {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .65s cubic-bezier(0.4, 0, 0.2, 1), transform .65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.chip-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.cc-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cc-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--on-surf);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cc-body {
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cc-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cc-specs li {
  background: var(--surf-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.cc-specs li span {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.cc-specs li strong {
  font-size: .92rem;
  font-weight: 700;
  color: var(--on-surf);
}

/* ============================================================
   FEATURES BENTO
   ============================================================ */
.features-section {
  background: var(--surface);
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--on-surf);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--surf-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.bento-card:hover { border-color: var(--border-mid); }
.bento-wide  { grid-column: span 8; }
.bento-narrow { grid-column: span 4; }
.bento-full  { grid-column: span 12; }

.bc-eyebrow {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.bento-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--on-surf);
  margin-bottom: 12px;
  line-height: 1.2;
}
.bento-card p {
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* Display card graphic */
.bc-display-gfx {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 320px; height: 200px;
  background: linear-gradient(135deg, rgba(74,140,255,.15) 0%, rgba(0,184,255,.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74,140,255,.2);
  transform: rotate(-6deg);
  pointer-events: none;
}
.bc-display-gfx::before {
  content: '';
  position: absolute;
  inset: 12px;
  background: linear-gradient(135deg, rgba(74,140,255,.08) 0%, rgba(0,184,255,.04) 100%);
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(74,140,255,.1);
}

/* Battery card */
.bc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 20px;
}
.bc-big-num {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.bc-big-num span { font-size: 2rem; font-weight: 300; color: var(--muted); }

/* Thermal graphic */
.bc-thermo-gfx {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(74,140,255,.4) 0deg 200deg,
    rgba(74,140,255,.05) 200deg 360deg
  );
  filter: blur(8px);
}

/* Ports card */
.bc-port-sub {
  margin-bottom: 24px;
}
.bc-ports {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.bc-port-tag {
  background: var(--surf-bright);
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-surf);
}
.bc-port-gfx {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
  opacity: .3;
}
.bc-port-gfx::before, .bc-port-gfx::after {
  content: '';
  position: absolute;
  width: 10px; height: 24px;
  background: var(--surf-bright);
  border: 1px solid var(--border-mid);
  border-radius: 3px;
  top: -10px;
}
.bc-port-gfx::before { left: 0; }
.bc-port-gfx::after { left: 24px; }

/* Security card */
.bento-full-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.bfl-text { flex: 1; }
.bfl-text h3 { font-size: 2rem; }
.bfl-visual { flex-shrink: 0; }
.novasec-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0deg 260deg, var(--border) 260deg 360deg);
  padding: 6px;
  animation: ring-spin 8s linear infinite;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.novasec-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--surf-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--blue);
  animation: ring-spin 8s linear infinite reverse;
}

/* ============================================================
   SPECS SECTION
   ============================================================ */
.specs-section { background: var(--bg); }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.specs-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table th {
  text-align: left;
  padding: 18px 24px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--surf-mid);
  border-bottom: 1px solid var(--border);
}
.specs-table td {
  padding: 14px 24px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.specs-table td:first-child {
  color: var(--muted);
  font-weight: 400;
  width: 40%;
}
.specs-table td:last-child {
  color: var(--on-surf);
  font-weight: 500;
}
.specs-table tr:last-child td { border-bottom: none; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  text-align: center;
  padding: 140px 28px;
  background: var(--surface);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(74,140,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--on-surf);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-cta {
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-ghost-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--on-surf);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid var(--border-mid);
  transition: background .25s, border-color .25s;
}
.btn-ghost-cta:hover { background: var(--surf-high); border-color: var(--blue); }
.cta-address {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 48px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4a8cff, #00b8ff);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
}
.footer-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--on-surf);
}
.footer-sub {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px;
}
.footer-cols {
  display: flex;
  gap: 48px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}
.footer-col-head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: .85rem;
  color: rgba(232,232,240,.45);
  transition: color .2s;
}
.footer-col a:hover { color: var(--on-surf); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  text-align: center;
  font-size: .78rem;
  color: rgba(232,232,240,.25);
}
.footer-bottom a { color: rgba(232,232,240,.35); }
.footer-bottom a:hover { color: var(--on-surf); }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.escape-disclaimer {
  background: #030303;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.escape-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}
.escape-disclaimer__inner i { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .bento-wide   { grid-column: span 12; }
  .bento-narrow { grid-column: span 6; }
  .chips-sticky { gap: 32px; padding: 80px 5vw; }
  .chip-photo-wrap { max-width: 440px; }
  .chips-card-side { flex: 0 0 380px; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { padding: 100px 5vw 40px; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { padding: 0 5vw 80px; }
  .hero-laptop-photo { max-width: 400px; }
  .chips-sticky { flex-direction: column; gap: 24px; padding: 80px 5vw 40px; }
  .chips-sticky::after { display: none; }
  .chip-photo-wrap { max-width: 360px; }
  .chips-card-side { flex: 0 0 auto; width: 100%; max-width: 440px; }
  .bento-narrow { grid-column: span 12; }
  .specs-grid { grid-template-columns: 1fr; }
  .bento-full-inner { flex-direction: column; gap: 40px; text-align: center; }
  .novasec-ring { width: 100px; height: 100px; }
}

@media (max-width: 768px) {
  .main-nav, .btn-header { display: none; }
  .burger { display: flex; margin-left: auto; }
  .kpi-item { min-width: 50%; }
  .kpi-div { display: none; }
  .glass-card { padding: 28px 24px; }
  .footer-cols { gap: 24px; margin-left: 0; }
}

@media (max-width: 500px) {
  .hero-title { font-size: 3rem; }
  .chips-laptop-side { display: none; }
  .cc-specs { grid-template-columns: 1fr; }
  .bento-card { padding: 28px 24px; }
  .bc-big-num { font-size: 3rem; }
}
