/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #111113;
  --surface:    #1a1a1e;
  --surface2:   #222228;
  --border:     rgba(255,255,255,.08);
  --border2:    rgba(255,255,255,.13);
  --text:       #f0f0f2;
  --muted:      #6b6b7a;
  --accent:     #f0c419;
  --accent2:    #00aaff;
  --deck-a:     #f0c419;
  --deck-b:     #00aaff;
  --deck-c:     #ff7700;
  --deck-d:     #aa44ff;
  --radius:     10px;
  --radius-lg:  16px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Typography ───────────────────────────────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
h3 { font-size: 1rem; font-weight: 600; line-height: 1.3; }

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(17,17,19,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.nav-logo-dot {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.06); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.lang-active { color: var(--accent); }
.lang-sep    { color: var(--border2); }
.lang-link   { color: var(--muted); transition: color .15s; }
.lang-link:hover { color: var(--text); }

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .15s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: rgba(17,17,19,.97);
  padding: 8px 24px 20px;
}
.nav-mobile.open { display: flex; }

.nav-mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.nav-mobile-link:last-of-type { border-bottom: none; }
.nav-mobile-link:hover { color: var(--text); }

.nav-mobile-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

/* anchor offset for sticky nav */
section[id] { scroll-margin-top: 60px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(240,196,25,.07) 0%,
    rgba(0,170,255,.04) 45%,
    transparent 70%);
  pointer-events: none;
}

.hero-eyebrow { margin-bottom: 20px; }

.hero h1 { margin-bottom: 24px; }

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #ffdf6b 50%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: opacity .15s, transform .15s;
}
.hero-cta:hover { opacity: .88; transform: translateY(-1px); }

.hero-cta-arrow {
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Hero stats strip ─────────────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.hero-stat {
  padding: 12px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.hero-stat span {
  font-size: 11px;
  color: var(--muted);
}

/* ── Vinyl record ─────────────────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.7));
}

.vinyl-record {
  width: 100%;
  height: 100%;
  display: block;
  animation: vinylSpin 4s linear infinite;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Deck color strip ─────────────────────────────────────────────────────── */
.deck-strip {
  display: flex;
  gap: 4px;
  margin-top: 60px;
}

.deck-strip-bar {
  height: 3px;
  border-radius: 2px;
  flex: 1;
}

/* ── Differentiators ──────────────────────────────────────────────────────── */
.differentiators { background: var(--surface); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.diff-item {
  background: var(--surface2);
  padding: 40px 36px;
  transition: background .15s;
}
.diff-item:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.diff-item:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.diff-item:hover { background: #27272e; }

.diff-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
  opacity: .55;
  margin-bottom: 14px;
}

.diff-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.diff-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── For who ──────────────────────────────────────────────────────────────── */
.forwho { background: var(--surface); }

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.forwho-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s, background .15s;
}
.forwho-card:hover { border-color: var(--border2); background: #1e1e22; }

.forwho-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .65;
  margin-bottom: 10px;
}

.forwho-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.forwho-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── Compat strip ─────────────────────────────────────────────────────────── */
.compat-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
}

.compat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
  flex-shrink: 0;
}

.compat-badge {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 11px;
  background: var(--surface);
  white-space: nowrap;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { background: var(--bg); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--surface2);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent); }

.faq-item summary::after {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: .4;
  transition: transform .2s, opacity .2s;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  opacity: .65;
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--accent);
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.howitworks { background: var(--bg); }

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 4px;
}

.hiw-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 52px;
}
.hiw-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border2), var(--border));
}

.hiw-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s;
}
.hiw-step:hover { border-color: var(--border2); }

.hiw-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
  opacity: .65;
  margin-bottom: 14px;
}
.hiw-step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.hiw-step p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── Features ─────────────────────────────────────────────────────────────── */
.features { background: var(--surface); }

.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.feature-card {
  background: var(--surface2);
  padding: 28px;
  position: relative;
  transition: background .15s;
}
.feature-card:hover { background: #27272e; }

.feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.feature-card code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--accent);
}

/* icon bg colors */
.ic-yellow  { background: rgba(240,196,25,.12); }
.ic-blue    { background: rgba(0,170,255,.12); }
.ic-orange  { background: rgba(255,119,0,.12); }
.ic-purple  { background: rgba(170,68,255,.12); }
.ic-green   { background: rgba(52,199,89,.12); }
.ic-red     { background: rgba(255,59,48,.12); }
.ic-teal    { background: rgba(90,200,250,.12); }
.ic-pink    { background: rgba(255,55,95,.12); }

/* ── Feature Tabs ─────────────────────────────────────────────────────────── */
.screenshots { padding-bottom: 72px; }

/* tighten the gap between heading and tabs */
.screenshots .section-header { margin-bottom: 28px; }

.feature-tabs { position: relative; }

/* ── Tab nav ── */
.ftab-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 1px 4px;   /* room for focus ring */
}
.ftab-nav::-webkit-scrollbar { display: none; }

.ftab-btn {
  flex-shrink: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
  font-family: var(--font);
  line-height: 1;
}
.ftab-btn:hover {
  color: var(--text);
  border-color: var(--border2);
  background: #27272e;
}
.ftab-btn.active {
  background: rgba(240,196,25,.1);
  border-color: rgba(240,196,25,.5);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(240,196,25,.15) inset;
}
.ftab-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Progress bar ── */
.ftab-progress {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}
.ftab-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(240,196,25,.6));
  border-radius: 2px;
}

/* ── Panels ── */
.ftab-panels { margin-top: 20px; }

.ftab-panel {
  display: none;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.ftab-panel.active { display: grid; }

/* ── Image ── */
.ftab-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--surface2);
  aspect-ratio: 16 / 10;
  cursor: zoom-in;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
  transition: box-shadow .25s;
}
.ftab-img:hover {
  box-shadow: 0 12px 56px rgba(0,0,0,.65);
}
.ftab-img--portrait {
  aspect-ratio: auto;
  max-height: 480px;
}
.ftab-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s ease;
  pointer-events: none;
}
.ftab-img:hover img { transform: scale(1.02); }

.ftab-zoom-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
/* magnifier icon via CSS */
.ftab-zoom-hint::before {
  content: '';
  display: inline-block;
  width: 13px; height: 13px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba(255,255,255,.6)' stroke-width='1.5' stroke-linecap='round'%3E%3Ccircle cx='6.5' cy='6.5' r='4'/%3E%3Cpath d='M11 11l3 3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ftab-img:hover .ftab-zoom-hint { opacity: 1; }

/* ── Description ── */
.ftab-desc {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ftab-desc-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .7;
  margin-bottom: 10px;
}

.ftab-desc h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.ftab-desc p {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.85;
}

/* divider line left of desc */
.ftab-desc-inner {
  border-left: 2px solid rgba(255,255,255,.12);
  padding-left: 20px;
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }

.lightbox-img-wrap {
  max-width: min(1100px, 90vw);
  max-height: 90dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 90dvh;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.8);
  opacity: 1;
  transition: opacity .15s;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 38px; height: 38px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  width: 46px; height: 46px;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  z-index: 1;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.18); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }


/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  text-align: center;
  padding: 100px 0;
  background: var(--surface);
}

.contact h2 { margin-bottom: 16px; }

.contact p {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, border-color .15s;
}
.contact-link:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22);
}

.contact-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--muted);
}

.contact-promise-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .4;
  flex-shrink: 0;
}

.contact-link-icon {
  width: 18px; height: 18px;
  opacity: .7;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M2 7l10 7 10-7'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12.5px; color: var(--muted); }

.footer-decks {
  display: flex;
  gap: 6px;
}

.footer-deck {
  width: 24px; height: 4px;
  border-radius: 2px;
  opacity: .5;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .vinyl-wrap { width: 220px; height: 220px; }

  .ftab-panel.active {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ftab-desc { padding-top: 0; }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hiw-connector { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 72px 0 56px; }
  .contact { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 1px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat {width: 50%;}
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .diff-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .diff-item:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .forwho-grid { grid-template-columns: 1fr; }
}

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

@media (max-width: 560px) {
  .nav-inner { gap: 12px; }
  h1 { font-size: 2rem; }
  .lightbox-arrow { display: none; }
  .hero-visual { display: none; }
}
