:root {
  --ink: #1B2033;
  --ink-soft: #2D3348;
  --charcoal: #1C1F26;
  --cm: #252830;
  --cl: #2E323C;
  --graphite: #3A3F4B;
  --steel: #4A5568;
  --slate: #64748B;
  --silver: #94A3B8;
  --mist: #CBD5E1;
  --pearl: #E2E8F0;
  --snow: #F1F5F9;
  --ice: #F8FAFC;
  --white: #FFFFFF;

  /* Abstracta brand colors from logo */
  --ab-blue: #0077C0;
  --ab-blue-deep: #005A94;
  --ab-blue-light: #3B9FE0;
  --ab-orange: #F07D1B;
  --ab-orange-light: #F5993F;
  --ab-green: #7CB829;
  --ab-green-light: #96D044;

  /* UI accents */
  --brand: #0077C0;
  --brand-bright: #0088DD;
  --brand-dim: rgba(0, 119, 192, 0.08);
  --brand-border: rgba(0, 119, 192, 0.15);
  --emerald: #16A34A;
  --emerald-dim: rgba(22, 163, 74, 0.08);
  --coral: #DC2626;
  --coral-dim: rgba(220, 38, 38, 0.08);
  --amber: #CA8A04;
  --amber-dim: rgba(202, 138, 4, 0.08);
}

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

.ct { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.mono { font-family: 'JetBrains Mono', monospace; }
.ey {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ab-blue); margin-bottom: 20px;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--pearl);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-dc {
  width: 32px; height: 32px; background: var(--ab-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 13px; color: var(--white); border-radius: 4px;
}
.logo-text { font-weight: 700; font-size: 18px; color: var(--ink); }
.logo-text span { color: var(--ab-blue); }
.nav-r { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--slate); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--ab-blue); }
.nav-links a.active { color: var(--ab-blue); font-weight: 600; }
.nav-powered {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 12px; border: 1px solid var(--pearl);
  border-radius: 20px; background: var(--snow);
}
.nav-powered-txt {
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--silver);
}
.nav-powered img { height: 20px; }
.btn-cta {
  background: var(--ab-blue); color: var(--white);
  padding: 10px 22px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  text-decoration: none; border: none; border-radius: 6px;
  cursor: pointer; transition: all 0.3s;
}
.btn-cta:hover {
  background: var(--ab-blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,119,192,0.25);
}
.btn-login {
  color: var(--slate); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.3s;
}
.btn-login:hover { color: var(--ab-blue); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-direction: column;
  justify-content: space-between; padding: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile nav menu */
.nav-mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--pearl);
  padding: 20px; z-index: 99; flex-direction: column; gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--ink-soft); text-decoration: none; font-size: 16px;
  font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--pearl);
}
.nav-mobile-menu a:hover { color: var(--ab-blue); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; padding-top: 80px; overflow: hidden;
  background: linear-gradient(170deg, var(--white) 0%, var(--snow) 40%, var(--ice) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,119,192,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 50% at 30% 50%, black, transparent);
}
.hero-accent-1 {
  position: absolute; top: 80px; right: -60px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,125,27,0.06), transparent 60%);
  pointer-events: none;
}
.hero-accent-2 {
  position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,119,192,0.05), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1px solid var(--brand-border);
  background: var(--brand-dim); border-radius: 20px;
  margin-bottom: 28px; animation: fiu 0.8s ease;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--ab-blue);
  border-radius: 50%; animation: pls 2s ease infinite;
}
.hero-badge span {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ab-blue);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px); font-weight: 700;
  line-height: 1.08; color: var(--ink);
  margin-bottom: 24px; animation: fiu 0.8s ease 0.1s both;
}
.hero h1 em { font-style: italic; color: var(--ab-blue); }
.hero-sub {
  font-size: 18px; line-height: 1.7; color: var(--slate);
  max-width: 560px; margin-bottom: 40px;
  animation: fiu 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 14px; align-items: center;
  animation: fiu 0.8s ease 0.3s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ab-blue); color: var(--white);
  padding: 15px 32px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; text-decoration: none;
  border: none; border-radius: 8px; cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--ab-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,192,0.25);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink-soft);
  padding: 15px 32px; font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--pearl);
  border-radius: 8px; cursor: pointer; transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--ab-blue); color: var(--ab-blue);
  background: var(--brand-dim);
}
.hero-metrics {
  display: flex; gap: 40px; margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--pearl);
  animation: fiu 0.8s ease 0.4s both;
}
.hm-v {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-weight: 700; color: var(--ab-blue);
}
.hm-l { font-size: 13px; color: var(--silver); margin-top: 4px; }

/* ===== ABSTRACTA BANNER ===== */
.ab-banner {
  padding: 32px 0;
  background: var(--snow);
  border-bottom: 1px solid var(--pearl);
}
.ab-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.ab-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px; background: var(--white);
  border: 1px solid var(--pearl); border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ab-pill-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--silver);
}
.ab-pill img { height: 28px; }
.ab-desc {
  font-size: 14px; color: var(--slate); max-width: 400px;
  line-height: 1.6;
}
.ab-desc strong { color: var(--ink-soft); }

/* ===== PROBLEM ===== */
.section-light { padding: 120px 0; }
.section-alt { padding: 120px 0; background: var(--snow); }

.prob h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  color: var(--ink); line-height: 1.15; max-width: 650px;
  margin-bottom: 56px;
}
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--pearl); border-radius: 12px; overflow: hidden; }
.prob-card { background: var(--white); padding: 36px; }
.prob-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--coral); letter-spacing: 1px; margin-bottom: 14px; opacity: 0.7;
}
.prob-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.prob-card p { font-size: 14px; line-height: 1.65; color: var(--slate); }

/* ===== FEATURES ===== */
.feat-header { text-align: center; margin-bottom: 72px; }
.feat-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 46px); font-weight: 700;
  color: var(--ink); line-height: 1.15; margin-bottom: 16px;
}
.feat-header h2 em { font-style: italic; color: var(--ab-blue); }
.feat-header p { font-size: 17px; color: var(--slate); max-width: 540px; margin: 0 auto; line-height: 1.6; }

.fb {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 24px; border-radius: 12px;
  overflow: hidden; border: 1px solid var(--pearl);
  background: var(--white);
}
.fb:nth-child(even) .ft { order: 2; }
.fb:nth-child(even) .fv { order: 1; }
.ft {
  padding: 52px; display: flex; flex-direction: column;
  justify-content: center;
}
.ftag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border: 1px solid; font-size: 10px;
  font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  width: fit-content; margin-bottom: 20px; border-radius: 4px;
}
.t-ext { border-color: rgba(0,119,192,0.2); color: var(--ab-blue); background: var(--brand-dim); }
.t-ana { border-color: rgba(240,125,27,0.2); color: var(--ab-orange); background: rgba(240,125,27,0.06); }
.t-pol { border-color: rgba(220,38,38,0.2); color: var(--coral); background: var(--coral-dim); }
.t-sco { border-color: rgba(124,184,41,0.2); color: var(--ab-green); background: rgba(124,184,41,0.06); }
.ft h3 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 14px;
}
.ft > p { font-size: 15px; line-height: 1.7; color: var(--slate); margin-bottom: 24px; }
.fl { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fl li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
}
.fl li::before { content: '\2192'; color: var(--ab-blue); font-weight: 700; flex-shrink: 0; }

/* DARK SCREENSHOT PANELS */
.fv {
  background: var(--charcoal); display: flex; align-items: center;
  justify-content: center; padding: 36px; overflow: hidden;
}
.mu {
  width: 100%; max-width: 420px;
  background: rgba(37,40,48,0.98);
  border: 1px solid rgba(0,119,192,0.12);
  border-radius: 8px; padding: 24px;
}
.mu-h {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mu-t { font-size: 13px; font-weight: 700; color: #CBD5E0; }
.mu-b {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 3px;
}
.b-ok { background: rgba(22,163,74,0.12); color: #4ADE80; }
.b-w { background: rgba(202,138,4,0.12); color: #FACC15; }
.mr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mr-l { font-size: 11.5px; color: #718096; }
.mr-v {
  font-family: 'JetBrains Mono', monospace; font-size: 12.5px;
  color: #CBD5E0; font-weight: 500;
}
.mr-v.pos { color: #4ADE80; }
.mr-v.neg { color: #F87171; }
.mr-v.brc { color: #60A5FA; }
.mr-v.amc { color: #FACC15; }
.mfb {
  margin-top: 16px; padding: 10px;
  border: 1px solid rgba(250,204,21,0.15);
  background: rgba(250,204,21,0.04); border-radius: 4px;
}
.mfb-t {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #FACC15; margin-bottom: 5px;
}
.mfb-x { font-size: 11.5px; color: #CBD5E0; line-height: 1.55; }
.msb {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.msb-l {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: #718096; margin-bottom: 8px;
}
.msb-tr {
  width: 100%; height: 5px; background: #3A3F4B;
  border-radius: 3px; overflow: hidden;
}
.msb-f {
  height: 100%;
  background: linear-gradient(90deg, #F87171, #FACC15, #4ADE80);
  width: 78%; border-radius: 3px;
}
.msb-n {
  font-family: 'Playfair Display', serif; font-size: 38px;
  font-weight: 700; color: #60A5FA; margin-top: 6px;
}
.msb-v { font-size: 12px; font-weight: 600; color: #4ADE80; margin-top: 3px; }

/* ===== WORKFLOW ===== */
.wf-header { text-align: center; margin-bottom: 64px; }
.wf-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  color: var(--ink);
}
.ws { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--pearl); border-radius: 12px; overflow: hidden; }
.wst { background: var(--white); padding: 36px 28px; transition: all 0.3s; }
.wst:hover { background: var(--snow); }
.sn {
  font-family: 'Playfair Display', serif; font-size: 44px;
  font-weight: 800; color: rgba(0,119,192,0.1); line-height: 1;
  margin-bottom: 16px;
}
.wst h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.wst p { font-size: 13px; line-height: 1.6; color: var(--slate); }

/* ===== DASHBOARD ===== */
.dp-header { text-align: center; margin-bottom: 48px; }
.dp-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
}
.dp-header p { font-size: 17px; color: var(--slate); max-width: 540px; margin: 0 auto; }

/* Dark dashboard mock */
.dm {
  background: var(--charcoal); border-radius: 12px;
  overflow: hidden; border: 1px solid rgba(0,119,192,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.dtb {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; background: rgba(0,119,192,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dts { display: flex; gap: 3px; }
.dt {
  padding: 5px 12px; font-size: 11px; font-weight: 600;
  color: #718096; border-radius: 4px; cursor: pointer;
}
.dt.act { background: rgba(0,119,192,0.12); color: #60A5FA; }
.das { display: flex; gap: 6px; }
.dab {
  padding: 5px 12px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1); background: transparent;
  color: #CBD5E0; border-radius: 4px; cursor: pointer;
}
.dab.bra { background: var(--ab-blue); color: var(--white); border-color: var(--ab-blue); }
table.dtl { width: 100%; border-collapse: collapse; }
.dtl thead th {
  padding: 12px 16px; font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #718096;
  text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
}
.dtl tbody td {
  padding: 12px 16px; font-size: 12.5px; color: #CBD5E0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dtl tbody tr { transition: background 0.2s; }
.dtl tbody tr:hover { background: rgba(0,119,192,0.03); }
.dn { font-weight: 600; color: #F1F5F9; }
.dty { font-size: 10.5px; color: #64748B; }
.sp {
  display: inline-block; padding: 2px 8px; font-size: 9px;
  font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 3px;
}
.sp-p { background: rgba(74,222,128,0.1); color: #4ADE80; }
.sp-r { background: rgba(250,204,21,0.1); color: #FACC15; }
.sp-d { background: rgba(248,113,113,0.1); color: #F87171; }
.sp-i { background: rgba(96,165,250,0.1); color: #60A5FA; }
.sc { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.sh { color: #4ADE80; } .sm { color: #FACC15; } .sl { color: #F87171; }

/* ===== COMPARISON ===== */
.cmp-header { text-align: center; margin-bottom: 48px; }
.cmp-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
}
.cmp-header p { font-size: 17px; color: var(--slate); max-width: 540px; margin: 0 auto; }
.ctw { overflow-x: auto; }
table.cpt {
  width: 100%; border-collapse: collapse; min-width: 680px;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--pearl);
}
.cpt thead th {
  padding: 18px; font-size: 13px; font-weight: 700; color: var(--ink);
  text-align: center; border-bottom: 2px solid var(--pearl);
  background: var(--snow);
}
.cpt thead th:first-child {
  text-align: left; color: var(--slate); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.cpt thead th:last-child { background: rgba(0,119,192,0.06); position: relative; }
.cpt thead th:last-child::after {
  content: 'RECOMMENDED'; position: absolute;
  top: 0; left: 0; right: 0; background: var(--ab-blue);
  color: var(--white); font-size: 8px; font-weight: 800;
  letter-spacing: 2px; padding: 3px; text-align: center;
}
.cpt tbody td {
  padding: 12px 18px; font-size: 13px; color: var(--ink-soft);
  text-align: center; border-bottom: 1px solid var(--pearl);
  background: var(--white);
}
.cpt tbody td:first-child { text-align: left; font-weight: 600; color: var(--slate); }
.cpt tbody td:last-child { background: rgba(0,119,192,0.02); }
.ck { color: var(--emerald); font-size: 15px; }
.cx { color: var(--coral); font-size: 15px; opacity: 0.35; }
.cp { color: var(--amber); font-size: 12px; }

/* ===== TESTIMONIALS ===== */
.tes-header { text-align: center; margin-bottom: 48px; }
.tes-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--ink);
}
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--pearl); border-radius: 12px; overflow: hidden; }
.tc { background: var(--white); padding: 36px; position: relative; }
.tc::before {
  content: '\201C'; font-family: 'Playfair Display', serif;
  font-size: 64px; color: var(--ab-blue); opacity: 0.12;
  position: absolute; top: 12px; left: 24px; line-height: 1;
}
.tc-t { font-size: 14.5px; line-height: 1.7; color: var(--slate); margin-bottom: 24px; position: relative; z-index: 1; }
.tc-a { font-weight: 700; font-size: 14px; color: var(--ink); }
.tc-r { font-size: 12px; color: var(--silver); margin-top: 2px; }

/* ===== ROI ===== */
.roi-header { text-align: center; margin-bottom: 48px; }
.roi-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--ink);
}
.rg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--pearl); border-radius: 12px; overflow: hidden; }
.rc { background: var(--white); padding: 36px 28px; text-align: center; transition: all 0.3s; }
.rc:hover { background: var(--snow); }
.rv {
  font-family: 'Playfair Display', serif; font-size: 44px;
  font-weight: 800; color: var(--ab-blue); line-height: 1; margin-bottom: 10px;
}
.rl { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.rd { font-size: 12px; color: var(--slate); line-height: 1.5; }

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0; text-align: center; position: relative;
  background: linear-gradient(170deg, var(--snow), var(--white));
}
.cta-gw {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 500px; height: 350px;
  background: radial-gradient(circle, rgba(0,119,192,0.04), transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px); font-weight: 700;
  color: var(--ink); margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-section h2 em { font-style: italic; color: var(--ab-blue); }
.cta-section > div > p {
  font-size: 17px; color: var(--slate); max-width: 480px;
  margin: 0 auto 40px; line-height: 1.6; position: relative; z-index: 1;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  position: relative; z-index: 1;
}

/* ===== FOOTER ===== */
.ftr {
  padding: 48px 0 28px; border-top: 1px solid var(--pearl);
  background: var(--snow);
}
.ftr-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 1px solid var(--pearl);
}
.ftr-brand { display: flex; flex-direction: column; gap: 14px; }
.ftr-powered { display: flex; align-items: center; gap: 8px; }
.ftr-powered-label {
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--silver);
}
.ftr-powered img { height: 24px; }
.ftr-tagline { font-size: 12px; color: var(--slate); max-width: 280px; line-height: 1.5; }
.ftr-links { display: flex; gap: 48px; }
.ftr-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--silver); margin-bottom: 14px;
}
.ftr-col a {
  display: block; font-size: 13px; color: var(--slate);
  text-decoration: none; margin-bottom: 8px; transition: color 0.3s;
}
.ftr-col a:hover { color: var(--ab-blue); }
.ftr-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.ftr-copy { font-size: 11px; color: var(--silver); }
.ftr-bls { display: flex; gap: 20px; }
.ftr-bls a { font-size: 11px; color: var(--silver); text-decoration: none; transition: color 0.3s; }
.ftr-bls a:hover { color: var(--ab-blue); }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding-top: 80px; padding-bottom: 60px;
  background: var(--snow);
}
.login-card {
  background: var(--white); border: 1px solid var(--pearl);
  border-radius: 12px; padding: 48px 40px; width: 100%; max-width: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.login-card .login-logo { text-align: center; margin-bottom: 32px; }
.login-card .login-logo img { height: 32px; margin-bottom: 8px; }
.login-card h2 {
  font-family: 'Playfair Display', serif; font-size: 28px;
  font-weight: 700; color: var(--ink); text-align: center; margin-bottom: 28px;
}
.login-card .form-group { margin-bottom: 20px; }
.login-card label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 6px;
}
.login-card input[type="email"],
.login-card input[type="password"] {
  width: 100%; padding: 12px 14px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; border: 1px solid var(--pearl);
  border-radius: 6px; background: var(--ice); color: var(--ink);
  transition: border-color 0.3s;
}
.login-card input:focus {
  outline: none; border-color: var(--ab-blue);
  box-shadow: 0 0 0 3px var(--brand-dim);
}
.login-card .forgot-link {
  display: block; text-align: right; font-size: 12px;
  color: var(--ab-blue); text-decoration: none; margin-top: -12px;
  margin-bottom: 24px;
}
.login-card .forgot-link:hover { text-decoration: underline; }
.login-card .btn-primary { width: 100%; justify-content: center; }
.login-card .login-terms {
  margin-top: 20px; font-size: 11px; color: var(--silver);
  text-align: center; line-height: 1.5;
}
.login-card .login-terms a { color: var(--ab-blue); text-decoration: none; }
.login-card .login-terms a:hover { text-decoration: underline; }

/* ===== PLATFORM PAGE ===== */
.page-hero {
  position: relative; padding: 140px 0 80px; overflow: hidden;
  background: linear-gradient(170deg, var(--white) 0%, var(--snow) 40%, var(--ice) 100%);
}
.page-hero .hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,119,192,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 50% at 30% 50%, black, transparent);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 700;
  color: var(--ink); margin-bottom: 16px; line-height: 1.1;
}
.page-hero-content h1 em { font-style: italic; color: var(--ab-blue); }
.page-hero-content p {
  font-size: 18px; color: var(--slate); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 140px 0 80px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: flex-start;
}
.contact-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--ink); margin-bottom: 20px; line-height: 1.1;
}
.contact-info h1 em { font-style: italic; color: var(--ab-blue); }
.contact-info > p {
  font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 40px;
}
.contact-detail { margin-bottom: 20px; }
.contact-detail h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--silver); margin-bottom: 6px;
}
.contact-detail p { font-size: 15px; color: var(--ink-soft); }
.contact-detail a { color: var(--ab-blue); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white); border: 1px solid var(--pearl);
  border-radius: 12px; padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; border: 1px solid var(--pearl);
  border-radius: 6px; background: var(--ice); color: var(--ink);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--ab-blue);
  box-shadow: 0 0 0 3px var(--brand-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; text-align: center; padding: 32px;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 700; color: var(--ink); margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--slate); line-height: 1.6; }

/* ===== DASHBOARD PAGE (Full) ===== */
.dash-page { padding-top: 80px; background: var(--charcoal); min-height: 100vh; }
.dash-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 24px 0;
}
.dash-stat {
  background: rgba(37,40,48,0.98); border: 1px solid rgba(0,119,192,0.1);
  border-radius: 8px; padding: 20px 24px;
}
.dash-stat-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #718096; margin-bottom: 6px;
}
.dash-stat-value {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-weight: 700; color: #F1F5F9;
}
.dash-stat-sub { font-size: 12px; color: #4ADE80; margin-top: 4px; }

.dash-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-toolbar-left { display: flex; gap: 6px; }
.dash-toolbar-right { display: flex; gap: 8px; }

.dash-table-wrap {
  background: rgba(37,40,48,0.98); border: 1px solid rgba(0,119,192,0.1);
  border-radius: 8px; overflow: hidden; margin-top: 16px;
  overflow-x: auto;
}
.dash-table-wrap table.dtl { min-width: 1100px; }

@keyframes fiu { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pls { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 1024px) {
  .fb { grid-template-columns: 1fr; }
  .fb:nth-child(even) .ft { order: 1; }
  .fb:nth-child(even) .fv { order: 2; }
  .ws { grid-template-columns: repeat(2, 1fr); }
  .rg { grid-template-columns: repeat(2, 1fr); }
  .prob-grid { grid-template-columns: 1fr; }
  .tg { grid-template-columns: 1fr; }
  .ftr-top { flex-direction: column; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ct { padding: 0 20px; }
  .nav { padding: 12px 20px; }
  .nav-links, .nav-powered { display: none; }
  .nav-hamburger { display: flex; }
  .hero-metrics { flex-direction: column; gap: 20px; }
  .ws { grid-template-columns: 1fr; }
  .rg { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .ab-inner { flex-direction: column; text-align: center; }
  .ftr-links { flex-direction: column; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
  .login-card { margin: 0 20px; padding: 36px 24px; }
  .dash-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
}
