/* site.css — shared stylesheet for urvault.net */
/* Each page loads this then overrides --primary vars in its own <style> block */

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

:root {
  --bg:             #080f1d;
  --surface:        #0e1c32;
  --surface-alt:    #111f36;
  --border:         #162640;
  --primary:        #2dd4bf;
  --primary-dark:   #0a9e8f;
  --primary-bg:     rgba(45,212,191,0.1);
  --primary-border: rgba(45,212,191,0.3);
  --text:           #e8f0fa;
  --muted:          #7a9fc0;
  --dim:            #2a4a68;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 22px; align-items: center; }

nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.15s; }
nav a:hover { color: var(--text); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nd-trigger {
  display: flex; align-items: center; gap: 4px;
  cursor: pointer; color: var(--muted); font-size: 0.9rem;
  background: none; border: none; font-family: inherit; padding: 0;
}
.nav-dropdown > .nd-trigger::after {
  content: '▾'; font-size: 0.65rem; opacity: 0.55; transition: transform 0.2s;
}
.nav-dropdown:hover > .nd-trigger { color: var(--text); }
.nav-dropdown.mob-open > .nd-trigger { color: var(--text); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  min-width: 210px;
  z-index: 100;
  box-shadow: 0 10px 32px rgba(0,0,0,0.45);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px;
  color: var(--text); font-size: 0.87rem; white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.dm-icon { font-size: 1rem; }
.dropdown-divider { border-top: 1px solid var(--border); margin: 5px 6px; }
.dm-sub { font-size: 0.72rem; color: var(--muted); display: block; margin-top: 1px; }
.dm-coming { font-size: 0.68rem; color: var(--muted); font-style: italic; }

.btn-nav {
  background: var(--primary); color: #080f1d !important;
  padding: 8px 18px; border-radius: 6px;
  font-weight: 700; font-size: 0.87rem;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

/* ── BRAND BANNER ───────────────────────────────────────────────────────── */
.brand-banner {
  display: flex; align-items: center; justify-content: center;
  padding: 52px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.brand-banner img { height: clamp(76px,18vw,130px); width: auto; display: block; }

/* ── PAGE HERO ──────────────────────────────────────────────────────────── */
.hero {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 80px 24px 60px; max-width: 840px; margin: 0 auto;
}
.hero-product {
  padding: 64px 24px 48px;
  max-width: 860px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-product img.hero-logo { height: clamp(56px,14vw,100px); width: auto; margin-bottom: 28px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-bg); color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px;
}
.badge::before { content: '●'; font-size: 0.5rem; }
h1 {
  font-size: clamp(2.2rem,6vw,3.5rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
h1 .accent { color: var(--primary); }
.subtitle {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.7; max-width: 600px; margin-bottom: 40px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Two-tone wordmark helper (used in body copy when not using a logo img) */
.wm-ur  { font-weight: 300; color: #e8f0fa; }
.wm-brand { font-weight: 700; color: var(--primary); }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  font-size: 0.97rem; font-weight: 600; text-decoration: none;
  transition: all 0.15s; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--primary); color: #080f1d; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary-border); }
.btn-ghost:hover { background: var(--primary-bg); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ── SECTION COMMON ─────────────────────────────────────────────────────── */
.section-label {
  text-align: center; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.section-title { text-align: center; font-size: 1.85rem; font-weight: 700; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 40px; font-size: 0.95rem; line-height: 1.65; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-wrap { padding: 72px 24px; max-width: 1100px; margin: 0 auto; width: 100%; }
.section-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── HOW IT WORKS ───────────────────────────────────────────────────────── */
.how { padding: 72px 24px; max-width: 900px; margin: 0 auto; width: 100%; }
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #080f1d;
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── PLATFORM STRIP ─────────────────────────────────────────────────────── */
.platform-strip {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px;
}
.platform-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; max-width: 960px; margin: 0 auto;
}
.platform-item {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 12px 22px; position: relative; text-align: center;
}
.platform-item + .platform-item::before {
  content: ''; position: absolute; left: 0; top: 22%; height: 56%;
  width: 1px; background: var(--border);
}
.platform-icon { font-size: 1.55rem; }
.platform-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.platform-item.coming .platform-icon { opacity: 0.38; }
.platform-item.coming .platform-name { color: var(--muted); }
.platform-badge {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em;
  background: var(--primary-bg); color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 1px 6px; border-radius: 8px; white-space: nowrap;
  text-transform: uppercase;
}

/* ── FEATURES / CARDS ───────────────────────────────────────────────────── */
.features { padding: 72px 24px; }
.features-inner { max-width: 1060px; margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; transition: border-color 0.2s;
}
.card:hover { border-color: var(--primary-border); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card .card-tag {
  display: inline-block; margin-top: 10px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em;
  background: var(--primary-bg); color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 2px 9px; border-radius: 10px;
}

/* Pro feature deep-dive cards */
.pro-feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; }
.pro-card {
  background: var(--surface); border: 1px solid rgba(90,180,240,0.15);
  border-radius: 14px; padding: 28px; transition: border-color 0.2s;
}
.pro-card:hover { border-color: rgba(90,180,240,0.35); }
.pro-card-icon { font-size: 1.7rem; margin-bottom: 12px; }
.pro-card h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.pro-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── COMPARE ────────────────────────────────────────────────────────────── */
.compare { padding: 72px 24px; }
.compare-inner { max-width: 1120px; margin: 0 auto; }
.compare-cols {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 40px;
}
.compare-col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
}
.compare-col.featured { border-color: rgba(90,180,240,0.4); }
.compare-col.enterprise-col { border-color: rgba(245,158,11,0.3); }
.featured-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #5ab4f0; color: #080f1d;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.col-logo { height: 26px; width: auto; max-width: 160px; display: block; }
.compare-col-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.compare-col-header h3 { font-size: 1.15rem; font-weight: 700; }
.compare-col-desc {
  font-size: 0.87rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.compare-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.88rem; line-height: 1.55; }
.chk { flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.chk-teal { color: #2dd4bf; }
.chk-blue { color: #5ab4f0; }
.chk-gold { color: #f59e0b; }
.pro-badge, .ent-badge {
  font-size: 0.62rem; font-weight: 800;
  padding: 1px 6px; border-radius: 4px;
  margin-left: 4px; vertical-align: middle; white-space: nowrap;
}
.pro-badge { background: rgba(90,180,240,0.12); color: #5ab4f0; border: 1px solid rgba(90,180,240,0.25); }
.ent-badge { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.25); }
.col-cta { margin-top: auto; }

/* ── STORE BADGES ───────────────────────────────────────────────────────── */
.store-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 20px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.15s, transform 0.15s; min-width: 170px;
}
.store-badge:hover { border-color: var(--primary); transform: translateY(-1px); }
.store-badge.grayed { opacity: 0.45; cursor: default; pointer-events: none; border-style: dashed; }
.sb-icon { font-size: 1.7rem; flex-shrink: 0; }
.sb-text { display: flex; flex-direction: column; }
.sb-pre { font-size: 0.67rem; color: var(--muted); line-height: 1; margin-bottom: 2px; }
.sb-name { font-size: 0.97rem; font-weight: 700; line-height: 1.2; }

/* ── DOWNLOAD CARDS ─────────────────────────────────────────────────────── */
.download { padding: 72px 24px; text-align: center; }
.dl-product-row { max-width: 920px; margin: 0 auto 44px; text-align: left; }
.dl-product-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.dl-product-label img { height: 24px; width: auto; }
.dl-product-label h3 { font-size: 1.05rem; font-weight: 700; }
.dl-product-label .dl-desc { font-size: 0.82rem; color: var(--muted); }
.dl-row-grid { display: flex; gap: 14px; flex-wrap: wrap; }
.dl-card-sm {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 22px;
  min-width: 168px; text-decoration: none; color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
  display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer;
}
.dl-card-sm:hover { border-color: var(--primary); transform: translateY(-2px); }
.dl-card-sm.coming { opacity: 0.45; cursor: default; pointer-events: none; border-style: dashed; }
.dl-icon { font-size: 2rem; margin-bottom: 10px; }
.dl-title { font-weight: 600; font-size: 0.92rem; }
.dl-sub { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.beta-tag {
  display: inline-block; background: var(--primary-bg); color: var(--primary);
  border: 1px solid var(--primary-border); font-size: 0.65rem; font-weight: 800;
  padding: 2px 8px; border-radius: 4px; margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase;
}
.available-tag {
  display: inline-block; background: rgba(74,222,128,0.1); color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3); font-size: 0.65rem; font-weight: 800;
  padding: 2px 8px; border-radius: 4px; margin-top: 8px; letter-spacing: 0.04em; text-transform: uppercase;
}
.soon-tag {
  display: inline-block; background: rgba(122,159,192,0.1); color: var(--muted);
  border: 1px solid rgba(122,159,192,0.2); font-size: 0.65rem; font-weight: 800;
  padding: 2px 8px; border-radius: 4px; margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase;
}
.coming-soon-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary-bg); color: var(--primary);
  border: 1px solid var(--primary-border); padding: 3px 12px;
  border-radius: 20px; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.server-note {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 22px;
  font-size: 0.87rem; color: var(--muted); line-height: 1.65; text-align: left;
  margin-top: 16px;
}
.server-note strong { color: var(--text); }

/* ── ENTERPRISE TEASER ──────────────────────────────────────────────────── */
.enterprise-teaser {
  background: linear-gradient(135deg,#04090f 0%,#0d1100 50%,#04090f 100%);
  border-top: 1px solid rgba(245,158,11,0.2); border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 72px 24px; text-align: center; position: relative; overflow: hidden;
}
.enterprise-teaser::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,rgba(245,158,11,0.06) 0%,transparent 70%);
  pointer-events: none;
}
.enterprise-teaser-inner { position: relative; max-width: 800px; margin: 0 auto; }
.enterprise-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.1); color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.35); padding: 5px 18px;
  border-radius: 20px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; margin-bottom: 24px; text-transform: uppercase;
}
.enterprise-badge::before { content: '🏢'; font-size: 0.85rem; }
.enterprise-teaser h2 {
  font-size: clamp(1.8rem,5vw,2.8rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em;
  background: linear-gradient(90deg,#e8f0fa 0%,#f59e0b 55%,#fbbf24 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.enterprise-teaser p {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
  max-width: 560px; margin: 0 auto 30px;
}
.enterprise-teaser-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg,transparent,#f59e0b,transparent);
  margin: 0 auto 28px; border-radius: 2px;
}
.ent-features-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.ent-pill {
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  color: var(--text); font-size: 0.82rem; padding: 6px 14px; border-radius: 20px;
}
.ent-pill .ep-chk { color: #f59e0b; margin-right: 5px; }

/* ── UPGRADE CALLOUT ────────────────────────────────────────────────────── */
.upgrade-callout {
  background: var(--surface-alt); border: 1px solid var(--primary-border);
  border-radius: 14px; padding: 32px 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  max-width: 860px; margin: 0 auto;
}
.upgrade-callout-text { flex: 1; min-width: 220px; }
.upgrade-callout-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.upgrade-callout-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 40px; color: var(--muted); font-size: 0.85rem; margin-top: auto;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-left img { height: 22px; width: auto; opacity: 0.65; }
.footer-copy { font-size: 0.8rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: var(--text); }

/* ── MODALS ─────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.8); z-index: 200;
  align-items: center; justify-content: center; padding: 16px;
}
.modal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px; max-width: 480px; width: 100%;
}
.modal-box.wide { max-width: 540px; }
.modal-icon { font-size: 2rem; text-align: center; margin-bottom: 10px; }
.modal-title { font-size: 1.15rem; font-weight: 700; text-align: center; margin-bottom: 6px; }
.modal-sub { color: var(--muted); font-size: 0.88em; text-align: center; margin-bottom: 22px; line-height: 1.55; }
.modal-scroll {
  max-height: 290px; overflow-y: auto; border: 1px solid var(--border);
  border-radius: 8px; padding: 14px; margin-bottom: 18px;
  background: var(--bg); font-size: 0.86em; line-height: 1.7; color: var(--text);
}
.modal-scroll p { margin-bottom: 10px; }
.modal-scroll .nda-h { font-weight: 700; margin-bottom: 4px; }
.modal-agree { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.9em; margin-bottom: 20px; }
.modal-agree input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.modal-input {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font-size: 0.95rem; margin-bottom: 10px; outline: none; box-sizing: border-box; font-family: inherit;
}
.modal-input:focus { border-color: var(--primary); }
.modal-error { color: #f87171; font-size: 0.83rem; min-height: 18px; margin-bottom: 10px; }
.modal-btns { display: flex; gap: 10px; justify-content: center; }
.modal-btns button {
  padding: 10px 22px; border-radius: 8px; cursor: pointer;
  font-size: 0.93rem; font-weight: 600; font-family: inherit; transition: all 0.15s;
}
.btn-cancel { border: 1px solid var(--border); background: transparent; color: var(--muted); }
.btn-cancel:hover { border-color: var(--text); color: var(--text); }
.btn-confirm { border: none; background: var(--primary); color: #080f1d; }
.btn-confirm:hover { background: var(--primary-dark); }
.btn-confirm:disabled { opacity: 0.38; cursor: not-allowed; }

/* ── FORM FIELDS ────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.83em; color: var(--muted); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--text); font-size: 0.93rem; box-sizing: border-box;
  outline: none; font-family: inherit; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-status { font-size: 0.85em; min-height: 20px; margin-bottom: 12px; text-align: center; }

/* ── INFO BOXES ─────────────────────────────────────────────────────────── */
.info-box {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary-bg); border: 1px solid var(--primary-border);
  border-radius: 10px; padding: 14px 22px;
  font-size: 0.87rem; color: var(--muted); line-height: 1.5;
  max-width: 640px; text-align: left;
}
.info-box .ib-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── HAMBURGER / RESPONSIVE ─────────────────────────────────────────────── */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--text); font-size: 1.5rem; line-height: 1;
}

@media (max-width: 780px) {
  nav { padding: 14px 20px; position: relative; flex-wrap: wrap; }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    width: 100%; background: var(--bg);
    border-top: 1px solid var(--border); padding: 10px 0 8px; margin-top: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-dropdown > .nd-trigger {
    padding: 10px 4px; font-size: 0.95rem; color: var(--text); width: 100%;
  }
  .nav-dropdown > .nd-trigger { display: flex; justify-content: space-between; }
  .dropdown-menu {
    position: static; display: none; box-shadow: none;
    border: none; background: transparent; padding: 0 0 0 14px; margin: 0; min-width: unset;
  }
  .nav-dropdown.mob-open .dropdown-menu { display: block; }
  .dropdown-menu a { color: var(--muted); padding: 8px 4px; font-size: 0.88rem; }
  .btn-nav { margin-top: 8px; padding: 12px 0; text-align: center; border-radius: 8px; width: 100%; display: block; }
  .hero, .hero-product { padding: 48px 20px 36px; }
  .steps { grid-template-columns: 1fr; }
  .compare-cols { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .dl-row-grid { justify-content: center; }
  .dl-card-sm { min-width: 140px; flex: 1 1 140px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .brand-banner { padding: 32px 20px; }
  .platform-item { padding: 10px 14px; }
  .upgrade-callout { flex-direction: column; text-align: center; }
}
@media (min-width: 781px) and (max-width: 1060px) {
  .compare-cols { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .store-row { flex-direction: column; }
  .store-badge { width: 100%; }
  .cta-row { flex-direction: column; align-items: center; }
}
