/* ═══════════════════════════════════════════════
   KLOZY — Global Styles
   ═══════════════════════════════════════════════ */

:root {
  --bg: #080c10;
  --surface: #0d1219;
  --surface2: #131b24;
  --border: rgba(255,255,255,0.07);
  --accent: #00e5c3;
  --accent2: #0090ff;
  --accent3: #7c5cfc;
  --text: #e8f0f8;
  --muted: #6b7a8d;
  --card: rgba(255,255,255,0.04);
  --r: 14px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px;
  letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text);
}
.logo-k {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #080c10; flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-ghost {
  padding: 8px 18px; border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); background: transparent; font-family: 'DM Sans', sans-serif;
  font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn-primary {
  padding: 9px 20px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #080c10; border: none; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .3s;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 24px 60px; text-align: center; position: relative; overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.b1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,229,195,.1) 0%, transparent 70%);
  top: -100px; left: -120px; animation: drift 9s ease-in-out infinite alternate;
}
.b2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,144,255,.09) 0%, transparent 70%);
  bottom: 20px; right: -100px; animation: drift 11s ease-in-out infinite alternate-reverse;
}
.b3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,92,252,.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(32px,26px); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px 5px 8px;
  background: rgba(0,229,195,.08); border: 1px solid rgba(0,229,195,.2);
  border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--accent);
  margin-bottom: 28px;
}
.bdot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 7vw, 84px); font-weight: 800;
  line-height: 1.0; letter-spacing: -2px; max-width: 900px;
}
.grad {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin-top: 24px; font-size: clamp(15px, 2vw, 19px);
  color: var(--muted); max-width: 560px; line-height: 1.65;
}
.hero-btns { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  padding: 15px 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #080c10; border: none; font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.btn-hero:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,229,195,.22); }
.btn-hero-g {
  padding: 14px 28px; border-radius: 10px; border: 1px solid var(--border);
  background: transparent; color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 15px; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.btn-hero-g:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.hero-note { margin-top: 14px; font-size: 12px; color: var(--muted); }

/* ── DASHBOARD PREVIEW ─────────────────────── */
.preview-wrap {
  margin-top: 56px; width: 100%; max-width: 980px; border-radius: var(--r);
  border: 1px solid rgba(0,229,195,.18); overflow: hidden;
  box-shadow: 0 0 80px rgba(0,229,195,.06), 0 40px 80px rgba(0,0,0,.5);
}
.pbar {
  padding: 11px 16px; background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.wdot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.wr { background: #ff5f57; } .wy { background: #febc2e; } .wg { background: #28c840; }
.ptitle {
  margin-left: 8px; font-size: 11px; color: var(--muted);
  font-family: 'Syne', sans-serif; font-weight: 600;
}
.db {
  display: grid; grid-template-columns: 170px 1fr 210px;
  height: 400px; font-size: 11px; background: var(--surface2); overflow: hidden;
}
.dbs {
  background: var(--surface); border-right: 1px solid var(--border);
  padding: 14px 10px; display: flex; flex-direction: column; gap: 2px; overflow: hidden;
}
.dbl {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; gap: 6px; padding: 6px 8px; margin-bottom: 10px;
}
.dblk {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #080c10; flex-shrink: 0;
}
.dsec { font-size: 8px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding: 7px 8px 3px; font-weight: 600; }
.dbn { padding: 6px 8px; border-radius: 6px; color: var(--muted); display: flex; align-items: center; gap: 7px; font-size: 11px; }
.dbn.on { background: rgba(0,229,195,.1); color: var(--accent); }
.dbdg { margin-left: auto; background: var(--accent2); color: white; font-size: 8px; padding: 1px 4px; border-radius: 100px; font-weight: 600; }
.dbdg.r { background: #ff4b4b; }
.dbm { padding: 14px; overflow: hidden; }
.dbtop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dbt { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; }
.dbs2 { font-size: 9px; color: var(--muted); margin-top: 2px; }
.dbsm { padding: 4px 10px; background: rgba(0,229,195,.1); border: 1px solid rgba(0,229,195,.25); border-radius: 6px; font-size: 9px; color: var(--accent); font-weight: 600; white-space: nowrap; }
.dbst { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin-bottom: 12px; }
.dbsc { background: var(--card); border: 1px solid var(--border); border-radius: 7px; padding: 9px; }
.dslbl { font-size: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.dsval { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin: 3px 0 2px; }
.dsd { font-size: 8px; color: var(--accent); }
.dbph { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dbpt { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 11px; }
.dbc { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.dbch { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; font-size: 8px; text-transform: uppercase; letter-spacing: .4px; font-weight: 600; }
.cdot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.dbcn { background: rgba(255,255,255,.08); border-radius: 3px; padding: 1px 4px; font-size: 8px; }
.dbcd { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 6px; padding: 7px; margin-bottom: 5px; }
.dbnm { font-weight: 500; font-size: 10px; margin-bottom: 2px; }
.dbtx { color: var(--muted); font-size: 8px; line-height: 1.4; margin-bottom: 4px; }
.dbsc2 { font-size: 9px; font-weight: 600; color: var(--accent); }
.paid { display: inline-block; padding: 1px 5px; background: rgba(0,229,195,.1); color: var(--accent); border-radius: 3px; font-size: 7px; font-weight: 700; }
.dbr { background: var(--surface); border-left: 1px solid var(--border); padding: 12px; display: flex; flex-direction: column; gap: 11px; overflow: hidden; }
.dbrh { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; margin-bottom: 5px; }
.dbrb { background: rgba(0,229,195,.07); border: 1px solid rgba(0,229,195,.14); border-radius: 7px; padding: 8px; font-size: 9px; line-height: 1.5; color: #cde8e0; }
.dbrb strong { color: var(--accent); }
.dbhi { display: flex; align-items: center; gap: 7px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.dbhi:last-child { border-bottom: none; }
.dbav { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; }
.dhn { font-size: 9px; font-weight: 500; } .dhs { font-size: 8px; color: var(--muted); }
.pt { margin-left: auto; font-size: 7px; padding: 2px 5px; border-radius: 3px; font-weight: 700; white-space: nowrap; }
.tg { background: rgba(0,144,255,.15); color: var(--accent2); }
.ig { background: rgba(124,92,252,.15); color: var(--accent3); }
.dc { background: rgba(88,101,242,.15); color: #8899ff; }
.dbtb { background: rgba(255,99,99,.07); border: 1px solid rgba(255,99,99,.14); border-radius: 6px; padding: 7px; font-size: 9px; line-height: 1.5; color: #ffb3b3; }

/* ── PLATFORM CARDS ────────────────────────── */
.plat-sect { padding: 56px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.plat-inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.plat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 600; }
.plat-cards { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.plat-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 24px;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .2s, transform .2s; min-width: 170px;
}
.plat-card:hover { border-color: rgba(255,255,255,.15); transform: translateY(-2px); }
.plat-ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.plat-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.plat-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── PAIN SECTION ──────────────────────────── */
.pain-sect { padding: 88px 24px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; max-width: 960px; margin-left: auto; margin-right: auto; }
.pain-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.pain-emoji { font-size: 32px; margin-bottom: 14px; }
.pain-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.3px; }
.pain-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.pain-fix { margin-top: 12px; font-size: 13px; color: var(--accent); font-weight: 500; }

/* ── SECTIONS ──────────────────────────────── */
section { padding: 88px 24px; }
.container { max-width: 1080px; margin: 0 auto; }
.tc { text-align: center; }
.slbl { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.stitle { font-family: 'Syne', sans-serif; font-size: clamp(28px,4.5vw,52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.ssub { margin-top: 14px; font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.6; }
.mx { margin-left: auto; margin-right: auto; }

/* ── FEATURES ──────────────────────────────── */
.fgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 52px; }
.fc { background: var(--bg); padding: 32px 28px; transition: background .2s; }
.fc:hover { background: var(--surface); }
.fi { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.ft { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.3px; }
.fd { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── INTEGRATIONS ──────────────────────────── */
.int-sect { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.int-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 52px; }
.int-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px 18px; text-align: center; transition: border-color .2s, transform .2s; }
.int-card:hover { border-color: rgba(255,255,255,.15); transform: translateY(-2px); }
.int-ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 12px; }
.int-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.int-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }
.int-tag { display: inline-block; margin-top: 8px; padding: 2px 8px; background: rgba(0,229,195,.1); border: 1px solid rgba(0,229,195,.2); border-radius: 100px; font-size: 10px; color: var(--accent); font-weight: 600; }

/* ── HOW IT WORKS ──────────────────────────── */
.hwrp { max-width: 840px; margin: 52px auto 0; }
.hw { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.hw:last-child { border-bottom: none; }
.hn { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: rgba(255,255,255,.08); line-height: 1; padding-top: 4px; }
.htt { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.3px; }
.hd { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PRICING ───────────────────────────────── */
.prss { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prc { max-width: 480px; margin: 52px auto 0; background: var(--bg); border: 1px solid rgba(0,229,195,.25); border-radius: 20px; padding: 48px 44px; position: relative; box-shadow: 0 0 70px rgba(0,229,195,.07); }
.prbdg { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--accent), var(--accent2)); color: #080c10; font-size: 11px; font-weight: 700; padding: 5px 18px; border-radius: 100px; white-space: nowrap; font-family: 'Syne', sans-serif; }
.prpl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.prprice { font-family: 'Syne', sans-serif; font-size: 76px; font-weight: 800; letter-spacing: -3px; line-height: 1; margin: 14px 0 3px; }
.prprice sup { font-size: 32px; vertical-align: top; margin-top: 14px; display: inline-block; }
.prprice span { font-size: 20px; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.prtag { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pr-divider { height: 1px; background: var(--border); margin: 20px 0; }
.prfl { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.prfl li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.4; }
.chk { width: 18px; height: 18px; border-radius: 50%; background: rgba(0,229,195,.1); border: 1px solid rgba(0,229,195,.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--accent); font-size: 10px; }
.prbtn { display: block; width: 100%; text-align: center; padding: 16px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #080c10; border: none; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; }
.prbtn:hover { opacity: .87; transform: translateY(-1px); }
.prgr { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ── COMPARISON TABLE ──────────────────────── */
.cmp-sect { padding: 88px 24px; }
.cmp-intro { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.cmp-intro p { margin-top: 14px; font-size: 16px; color: var(--muted); line-height: 1.6; }
.cwrp { max-width: 980px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cwrp table { width: 100%; border-collapse: collapse; min-width: 700px; }
.cwrp thead tr:first-child th { padding: 0; background: var(--surface); border-bottom: none; }
.th-company { padding: 16px 14px 12px; text-align: center; border-bottom: 1px solid var(--border); vertical-align: bottom; }
.th-company:first-child { text-align: left; min-width: 210px; }
.company-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; display: block; margin-bottom: 4px; }
.company-tag { font-size: 10px; font-weight: 400; color: var(--muted); display: block; font-family: 'DM Sans', sans-serif; }
.klozy-col { background: rgba(0,229,195,.05) !important; border-left: 2px solid rgba(0,229,195,.3) !important; border-right: 2px solid rgba(0,229,195,.3) !important; }
.klozy-col .company-name { color: var(--accent); }
.klozy-top { border-top: 2px solid rgba(0,229,195,.3) !important; }
.klozy-bot td.klozy-col { border-bottom: 2px solid rgba(0,229,195,.3) !important; }
.cwrp td { padding: 11px 14px; font-size: 12px; border-bottom: 1px solid var(--border); color: var(--muted); text-align: center; white-space: nowrap; }
.cwrp tr:last-child td { border-bottom: none; }
.cwrp td:first-child { text-align: left; color: var(--text); white-space: normal; font-size: 13px; font-weight: 400; }
.cwrp tr:hover td { background: rgba(255,255,255,.012); }
.cat-row td { background: rgba(255,255,255,.018) !important; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding: 10px 14px 5px; font-weight: 600; text-align: left !important; }
.yes { color: var(--accent); font-size: 16px; font-weight: 700; }
.no { color: rgba(255,255,255,.15); font-size: 16px; }
.prt { color: #ff9f43; font-size: 10px; font-weight: 600; line-height: 1.4; }
.pbad { color: #ff6b6b; font-weight: 600; font-size: 11px; line-height: 1.6; }
.pgood { color: var(--accent); font-weight: 700; font-size: 12px; line-height: 1.5; }
.cnote { text-align: center; margin-top: 14px; font-size: 12px; color: var(--muted); }

/* ── TESTIMONIALS ──────────────────────────── */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1080px; margin: 52px auto 0; }
.tc2 { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: border-color .2s, transform .2s; }
.tc2:hover { border-color: rgba(0,229,195,.2); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 12px; margin-bottom: 12px; letter-spacing: 2px; }
.ttxt { font-size: 13px; color: var(--text); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.tauth { display: flex; align-items: center; gap: 10px; }
.tav { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.tnm { font-weight: 500; font-size: 13px; }
.trl { font-size: 11px; color: var(--muted); }

/* ── CTA ───────────────────────────────────── */
.ctss { text-align: center; padding: 110px 24px; position: relative; overflow: hidden; }
.ctgl { position: absolute; width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(0,229,195,.07) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.ctss h2 { font-family: 'Syne', sans-serif; font-size: clamp(32px,5vw,64px); font-weight: 800; letter-spacing: -2px; line-height: 1.05; max-width: 680px; margin: 0 auto 18px; }
.ctss p { font-size: 17px; color: var(--muted); margin-bottom: 40px; }

/* ── FOOTER ────────────────────────────────── */
footer {
  padding: 44px 48px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.flinks { display: flex; gap: 22px; flex-wrap: wrap; }
.flinks a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.flinks a:hover { color: var(--text); }
.fcpy { font-size: 13px; color: var(--muted); }


/* ═══════════════════════════════════════════════
   SUBPAGE STYLES
   ═══════════════════════════════════════════════ */

/* ── PAGE HERO (shared subpage header) ─────── */
.page-hero {
  padding: 140px 24px 64px;
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero .blob { opacity: .6; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; color: var(--muted); max-width: 520px;
  margin: 0 auto; line-height: 1.65;
}

/* ── LEGAL PAGES (terms, privacy) ──────────── */
.legal-content {
  max-width: 740px; margin: 0 auto;
  padding: 64px 24px 88px;
}
.legal-content h2 {
  font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700;
  letter-spacing: -.5px; margin: 48px 0 16px; color: var(--text);
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px;
}
.legal-content ul {
  list-style: none; padding: 0; margin-bottom: 20px;
}
.legal-content ul li {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 6px 0 6px 22px; position: relative;
}
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .5;
}
.legal-content .effective-date {
  display: inline-block; padding: 6px 16px;
  background: rgba(0,229,195,.06); border: 1px solid rgba(0,229,195,.15);
  border-radius: 8px; font-size: 13px; color: var(--accent);
  margin-bottom: 32px; font-weight: 500;
}
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ── CONTACT PAGE ──────────────────────────── */
.contact-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  padding: 64px 24px 88px;
}
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form-wrap h3 {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 14px; transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg); }

.contact-info-side h3 {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 24px;
}
.info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 16px;
}
.info-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-card h4 {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px;
}
.info-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.faq-mini { margin-top: 40px; }
.faq-mini h3 {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
}
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  padding: 18px 20px; font-size: 14px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q span { font-size: 18px; transition: transform .3s; color: var(--muted); }
.faq-item.open .faq-q span { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px; font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ── BLOG PAGE ─────────────────────────────── */
.blog-content { max-width: 1080px; margin: 0 auto; padding: 64px 24px 88px; }
.blog-featured {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
  margin-bottom: 56px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden;
}
.blog-featured-img {
  min-height: 300px;
  background: linear-gradient(135deg, rgba(0,229,195,.12), rgba(0,144,255,.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.blog-featured-body { padding: 36px 36px 36px 0; display: flex; flex-direction: column; justify-content: center; }
.blog-tag {
  display: inline-block; padding: 3px 12px;
  background: rgba(0,229,195,.1); border: 1px solid rgba(0,229,195,.2);
  border-radius: 100px; font-size: 11px; color: var(--accent); font-weight: 600;
  margin-bottom: 14px; width: fit-content;
}
.blog-featured-body h2 {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 12px;
}
.blog-featured-body p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.blog-meta { font-size: 12px; color: var(--muted); }

.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.blog-cat-btn {
  padding: 6px 16px; border-radius: 100px; font-size: 13px;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.blog-cat-btn:hover, .blog-cat-btn.active {
  border-color: var(--accent); color: var(--accent); background: rgba(0,229,195,.06);
}

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 56px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: border-color .2s, transform .2s;
  text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { border-color: rgba(0,229,195,.2); transform: translateY(-3px); }
.blog-card-img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.blog-card-body { padding: 22px; }
.blog-card-body h3 {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: -.3px; margin-bottom: 8px; line-height: 1.3;
}
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.blog-newsletter {
  background: var(--surface); border: 1px solid rgba(0,229,195,.18);
  border-radius: 18px; padding: 48px; text-align: center;
  box-shadow: 0 0 60px rgba(0,229,195,.04);
}
.blog-newsletter h3 {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -1px; margin-bottom: 10px;
}
.blog-newsletter p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none;
}
.newsletter-form input:focus { border-color: var(--accent); }

/* ── AUTH PAGES (login, signup) ─────────────── */
.auth-wrap {
  min-height: 100vh; display: flex;
}
.auth-panel {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 80px 40px 40px;
}
.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 {
  font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800;
  letter-spacing: -1px; margin-bottom: 8px;
}
.auth-card > p {
  font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.6;
}
.auth-card .form-group { margin-bottom: 18px; }
.auth-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.auth-row label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); cursor: pointer;
}
.auth-row input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer;
}
.auth-row a { font-size: 13px; color: var(--accent); text-decoration: none; }
.auth-row a:hover { text-decoration: underline; }
.auth-submit {
  display: block; width: 100%; padding: 15px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #080c10; border: none; font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .2s; text-align: center; text-decoration: none;
}
.auth-submit:hover { opacity: .88; transform: translateY(-1px); }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--muted); }
.auth-footer a { color: var(--accent); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.auth-note { margin-top: 16px; font-size: 12px; color: var(--muted); text-align: center; }

.auth-side {
  flex: 1; background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; position: relative; overflow: hidden;
}
.auth-side-content { position: relative; z-index: 1; max-width: 380px; }
.auth-side-content h2 {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px;
}
.auth-side-content .benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.benefit-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.benefit-item h4 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 3px;
}
.benefit-item p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.auth-side .blob { opacity: .4; }

.platform-select { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.platform-opt {
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: 13px; cursor: pointer; transition: all .2s;
}
.platform-opt:hover, .platform-opt.selected {
  border-color: var(--accent); color: var(--accent); background: rgba(0,229,195,.06);
}

/* ── 404 PAGE ──────────────────────────────── */
.not-found-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 24px 60px; position: relative; overflow: hidden;
}
.not-found-code {
  font-family: 'Syne', sans-serif;
  font-size: clamp(100px, 20vw, 200px); font-weight: 800;
  letter-spacing: -6px; line-height: 1;
  background: linear-gradient(135deg, rgba(0,229,195,.15), rgba(0,144,255,.15));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.not-found-wrap h1 {
  font-family: 'Syne', sans-serif; font-size: clamp(24px, 4vw, 40px);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 12px;
}
.not-found-wrap p {
  font-size: 16px; color: var(--muted); max-width: 420px; line-height: 1.65; margin-bottom: 32px;
}
.not-found-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  footer { padding: 32px 20px; }
  .db { grid-template-columns: 150px 1fr; }
  .dbr { display: none; }
  .dbst { grid-template-columns: repeat(2,1fr); }
  .fgrid { grid-template-columns: repeat(2,1fr); }
  .tgrid { grid-template-columns: repeat(2,1fr); }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .int-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 28px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .auth-side { display: none; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-cta .btn-ghost { display: none; }
  section { padding: 60px 16px; }
  .hero { padding: 80px 16px 40px; }
  .fgrid { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(2,1fr); }
  .db { grid-template-columns: 1fr; }
  .dbs { display: none; }
  .dbst { grid-template-columns: repeat(2,1fr); }
  .prc { padding: 40px 22px; }
  .hw { grid-template-columns: 44px 1fr; gap: 14px; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 16px; }
  .plat-cards { flex-direction: column; width: 100%; }
  .plat-card { width: 100%; }
  .b1, .b2, .b3 { width: 240px; height: 240px; }
  .page-hero { padding: 110px 16px 48px; }
  .legal-content { padding: 40px 16px 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-newsletter { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; }
  .auth-panel { padding: 80px 20px 40px; }
  .contact-grid { padding: 40px 16px 60px; }
}

/* ── Mobile nav overlay ────────────────────── */
.mobile-nav {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(8,12,16,.97); backdrop-filter: blur(20px);
  z-index: 190; display: none; flex-direction: column;
  padding: 32px 24px; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 16px 0; font-size: 18px;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .mob-cta { display: flex; gap: 10px; margin-top: 20px; }
