/* ============================================================
   Magnify Call Accounting Online — Global Stylesheet
   Design: BrainHerd product family (Lato, navy/blue/cyan)
   Variation of vm2email / Elocube visual language
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --navy:          #0D1F38;
  --navy-mid:      #1B3A6B;
  --navy-light:    #2A4A7F;
  --blue:          #2563EB;
  --blue-hover:    #1D4ED8;
  --blue-light:    #3B82F6;
  --cyan:          #06B6D4;
  --cyan-light:    #22D3EE;
  --white:         #FFFFFF;
  --off-white:     #F8FAFC;
  --light-blue:    #EFF6FF;
  --border:        #E2E8F0;
  --border-dark:   #1E3A5F;
  --text-dark:     #0F172A;
  --text-body:     #334155;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;
  --success:       #10B981;
  --gradient:      linear-gradient(135deg, #0D1F38 0%, #1B3A6B 100%);
  --gradient-blue: linear-gradient(135deg, #1B3A6B 0%, #2563EB 100%);
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.16);
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --max-w:         1160px;
  --nav-h:         68px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
}
.display {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
.subhead {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
}
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.text-center { text-align: center; }
.text-white, .dark-section h1, .dark-section h2, .dark-section h3,
.dark-section h4, .dark-section p, .dark-section .subhead {
  color: var(--white);
}
.dark-section .subhead { color: rgba(255,255,255,0.75); }
.dark-section .label { color: var(--cyan-light); }
.text-muted { color: var(--text-muted); }
.text-blue { color: var(--blue); }
.text-cyan { color: var(--cyan); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.dark-section { background: var(--gradient); }
.dark-section-flat { background: var(--navy); }
.light-section { background: var(--off-white); }
.blue-tint { background: var(--light-blue); }
.white-section { background: var(--white); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
}
.btn-cyan:hover {
  background: var(--cyan-light);
  transform: translateY(-1px);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: none; }
.nav-logo-text {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--light-blue);
}
.nav-links a.active { color: var(--blue); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-login:hover { color: var(--blue); background: var(--light-blue); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--light-blue); color: var(--blue); }
.nav-mobile .mobile-actions {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--gradient);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 540px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}
.hero .subhead { margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Page hero (sub-pages) ────────────────────────────────── */
.page-hero {
  background: var(--gradient);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .subhead { margin: 0 auto; }

/* ── Section headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .label { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header .subhead { margin: 0 auto; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--light-blue);
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.65; }

/* ── Dashboard mockup ─────────────────────────────────────── */
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 520px;
  width: 100%;
}
.dash-topbar {
  background: #1a2d4a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FEBC2E; }
.dash-dot.green { background: #28C840; }
.dash-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-family: monospace;
}
.dash-body {
  display: grid;
  grid-template-columns: 48px 1fr;
  height: 320px;
}
.dash-sidebar {
  background: #0D1F38;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.dash-sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-sidebar-item.active { background: var(--blue); }
.dash-sidebar-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.6); }
.dash-sidebar-item.active svg { fill: white; }
.dash-main {
  background: #f8fafc;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dash-kpi {
  background: white;
  border-radius: 6px;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
}
.dash-kpi-label { font-size: 0.55rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-kpi-val { font-size: 1.1rem; font-weight: 900; color: var(--navy); line-height: 1.2; }
.dash-kpi-val.blue { color: var(--blue); }
.dash-kpi-val.cyan { color: var(--cyan); }
.dash-chart-area {
  flex: 1;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-chart-title { font-size: 0.6rem; font-weight: 700; color: var(--text-dark); }
.dash-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: 4px;
}
.dash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--blue);
  opacity: 0.7;
  transition: opacity 0.2s;
  min-height: 4px;
}
.dash-bar:nth-child(even) { background: var(--cyan); opacity: 0.6; }
.dash-bar:hover { opacity: 1; }
.dash-table-area {
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.dash-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 5px 10px;
  font-size: 0.6rem;
  border-bottom: 1px solid #f1f5f9;
}
.dash-table-row.header { background: #f8fafc; font-weight: 700; color: var(--text-muted); }
.dash-table-row .num { text-align: right; font-weight: 700; color: var(--text-dark); }

/* ── Benefits Band ────────────────────────────────────────── */
.benefits-band {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid var(--border-dark);
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  align-items: center;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-check svg { width: 11px; height: 11px; fill: var(--navy); }

/* ── Feature alternate rows ───────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-content .label { margin-bottom: 12px; display: block; }
.feature-content h2 { margin-bottom: 16px; }
.feature-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}
.feature-content .dark-section p { color: rgba(255,255,255,0.75); }
.feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text-body);
}
.feature-list .dark-section li { color: rgba(255,255,255,0.85); }
.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%230D1F38' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.feature-visual {
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 1px solid var(--border);
}
.feature-visual.dark-vis {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.feature-icon-big {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 48px rgba(37,99,235,0.3);
}
.feature-icon-big svg { width: 60px; height: 60px; }

/* ── AI Spotlight ─────────────────────────────────────────── */
.ai-spotlight {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.ai-spotlight::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ai-spotlight::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ai-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ai-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.ai-queries {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}
.ai-query {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.ai-query:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cyan);
}
.ai-query-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-query-icon svg { width: 16px; height: 16px; fill: white; }
.ai-query-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 18px);
  right: calc(16.67% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  opacity: 0.3;
}
.step {
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.pricing-toggle-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-toggle-label.active { color: var(--text-dark); }
.toggle-track {
  width: 48px;
  height: 26px;
  background: var(--border);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-track.on { background: var(--blue); }
.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-track.on .toggle-thumb { transform: translateX(22px); }
.save-badge {
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  transform: translateY(-6px);
}
.pricing-card.featured:hover { transform: translateY(-9px); }
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-tier { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; }
.pricing-ext { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; display: block; }
.pricing-price { margin-bottom: 4px; line-height: 1; }
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.pricing-amount .dollar { font-size: 1.2rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-annual-note { font-size: 0.75rem; color: var(--cyan); font-weight: 700; margin-bottom: 24px; min-height: 18px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--blue); font-weight: 900; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 52px;
  font-size: 0.875rem;
}
.compare-table th {
  padding: 14px 16px;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  border-bottom: 2px solid var(--border-dark);
}
.compare-table th:first-child { text-align: left; border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table th.highlight { color: var(--cyan); }
.compare-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.compare-table td:first-child { text-align: left; font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--light-blue); }
.compare-table .check-y { color: var(--blue); font-weight: 900; font-size: 1rem; }
.compare-table .check-n { color: var(--text-light); font-size: 1rem; }
.compare-table th.col-featured, .compare-table td.col-featured {
  background: rgba(37,99,235,0.06);
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--blue); }
.faq-question.open { color: var(--blue); }
.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.15s;
}
.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--blue);
}
.faq-chevron svg { width: 12px; height: 12px; fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; }
.faq-question.open .faq-chevron svg { stroke: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 800px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.925rem;
}
.faq-answer p + p { margin-top: .75rem; }
.faq-answer ol, .faq-answer ul { color: var(--text-muted); font-size: .925rem; line-height: 1.9; }

/* FAQ category headings (full FAQ page) */
.faq-category { margin-bottom: 52px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-title {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 52px;
  align-items: start;
}
.contact-form-group {
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.form-field input, .form-field textarea, .form-field select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.contact-info-card {
  background: var(--light-blue);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
}
.contact-info-card h3 { margin-bottom: 16px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}
.contact-info-item:first-of-type { border-top: none; }
.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 14px; height: 14px; fill: white; }
.contact-info-detail strong { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.contact-info-detail span { color: var(--text-muted); }
/* Contact info icon — white strokes */
.contact-info-icon svg path, .contact-info-icon svg rect, .contact-info-icon svg line,
.contact-info-icon svg circle { stroke: white !important; fill: none !important; }
/* Label / value helpers */
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 2px; }
.contact-info-value { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.contact-info-value a { color: var(--blue); }
.contact-info-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.contact-info-trial { background: white; border-radius: var(--radius-sm); padding: 20px; margin-top: 4px; }
.contact-info-trial-headline { font-weight: 700; font-size: .95rem; color: var(--text-dark); margin-bottom: 6px !important; }
.contact-info-trial-body { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0 !important; }
.form-required { color: var(--blue); font-weight: 700; }
.contact-form-group { display: flex; flex-direction: column; gap: 0; }

/* ── Login ────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-left {
  background: var(--gradient);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.login-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
}
.login-left-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.login-logo { margin-bottom: 52px; }
.login-left h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.login-left p { color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.login-trust-items { display: flex; flex-direction: column; gap: 14px; }
.login-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.login-trust-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.login-trust-dot svg { width: 11px; height: 11px; fill: var(--navy); }
.login-right {
  background: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
.login-form-wrap h2 { margin-bottom: 8px; }
.login-form-wrap .subhead { margin-bottom: 36px; color: var(--text-muted); font-size: 0.95rem; }
.login-form { display: flex; flex-direction: column; gap: 18px; }
.login-form .form-field label { font-size: 0.875rem; font-weight: 700; }
.login-form .form-field input {
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.login-form .form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.login-forgot {
  font-size: 0.825rem;
  color: var(--blue);
  font-weight: 700;
  text-align: right;
  display: block;
  margin-top: -8px;
  transition: opacity 0.15s;
}
.login-forgot:hover { opacity: 0.75; }
.login-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  font-family: inherit;
  box-shadow: 0 2px 12px rgba(37,99,235,0.3);
}
.login-submit:hover { background: var(--blue-hover); transform: translateY(-1px); }
.login-submit:active { transform: translateY(0); }
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 4px 0;
}
.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.login-signup-link {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.login-signup-link a { color: var(--blue); font-weight: 700; }
.login-error {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ── Footer CTA Band ──────────────────────────────────────── */
.cta-band {
  background: var(--gradient);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.12) 0%, transparent 70%);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-band .subhead { margin: 0 auto 36px; }
.cta-band-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Site Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 28px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }
.footer-legal { display: flex; gap: 20px; }

/* ── Pricing Preview Cards (home) ─────────────────────────── */
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto 36px;
}
.pricing-preview-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pricing-preview-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pricing-preview-card.featured { border-color: var(--blue); }
.pricing-preview-card .tier { font-weight: 900; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 6px; }
.pricing-preview-card .ext-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.pricing-preview-card .amount { font-size: 2rem; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
.pricing-preview-card .amount .dollar { font-size: 1rem; vertical-align: top; margin-top: 5px; display: inline-block; }
.pricing-preview-card .period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

/* ── Miscellaneous ────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.15);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-buttons { justify-content: center; }
  .hero .subhead { max-width: 100%; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-preview { grid-template-columns: 1fr; max-width: 380px; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .login-page { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .login-right { padding: 48px 28px; min-height: 100vh; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band { padding: 56px 0; }
}

@media (max-width: 480px) {
  .benefits-list { gap: 10px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .ai-queries { max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .pricing-toggle { flex-wrap: wrap; justify-content: center; }
}
