/* ============================================================
   CONSENTERA — CSS
   Light / Dark Theme + Full Layout
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --brand-primary: #1186EA;
  --brand-secondary: #002254;
  --brand-accent: #563EC3;
  --brand-gradient: #1186EA;
  --brand-gradient-hero: #1186EA;

  /* Light theme */
  --bg-primary: #F5F7FA;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-nav: #FFFFFF;
  --bg-hero-section: #F0F5FF;
  --bg-dark-section: #002254;
  --text-primary: #0F1123;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-on-dark: #FFFFFF;
  --border-color: #E2E8F0;
  --border-card: #E8EBF5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(17, 134, 234, 0.10);
  --shadow-lg: 0 10px 40px rgba(17, 134, 234, 0.15);
  --badge-bg: #EAF4FE;
  --badge-text: #1186EA;
  --badge-border: #BFDFFB;
  --step-bg: #1186EA;
  --input-bg: #FFFFFF;
  --footer-bg: #F8F9FC;
  --nav-link: #4A5568;
  --hero-stat-bg: #002254;
  --compliance-card-bg: #F7F8FD;
}

[data-theme="dark"] {
  --bg-primary: #0D0E21;
  --bg-secondary: #13142E;
  --bg-card: #181A38;
  --bg-nav: rgba(13, 14, 33, 0.95);
  --bg-hero-section: #0D0E21;
  --bg-dark-section: #002254;
  --text-primary: #F0F2FF;
  --text-secondary: #A0A8C8;
  --text-muted: #6B7280;
  --text-on-dark: #FFFFFF;
  --border-color: #252750;
  --border-card: #252750;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(17, 134, 234, 0.20);
  --shadow-lg: 0 10px 40px rgba(17, 134, 234, 0.25);
  --badge-bg: #1A2B4A;
  --badge-text: #1186EA;
  --badge-border: #1186EA;
  --step-bg: #1186EA;
  --input-bg: #181A38;
  --footer-bg: #070818;
  --nav-link: #A0A8C8;
  --hero-stat-bg: #002254;
  --compliance-card-bg: #13142E;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.display-font { font-family: 'Sora', sans-serif; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { color: var(--text-secondary); }

.gradient-text {
  color: var(--brand-primary);
}

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

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(17,134,234,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(17,134,234,0.45); }
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
.btn-secondary:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
.btn-ghost:hover { background: var(--badge-bg); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.hero {
  padding: 140px 0 80px;
  background: var(--bg-hero-section);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(17,134,234,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-content p { font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.dashboard-card {
  background: var(--hero-stat-bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .dashboard-card { background: #070818; border: 1px solid #252750; }
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-header h4 { color: #fff; font-size: 0.95rem; }
.dashboard-header span { color: #A0A8C8; font-size: 0.8rem; }
.traffic-lights { display: flex; gap: 6px; margin-bottom: 16px; }
.traffic-lights span {
  width: 12px; height: 12px; border-radius: 50%;
}
.tl-red { background: #FF5F57; }
.tl-yellow { background: #FEBC2E; }
.tl-green { background: #28C840; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-item { }
.stat-value { color: #fff; font-size: 1.3rem; font-weight: 800; font-family: 'Sora', sans-serif; }
.stat-label { color: #6B7280; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.stat-change { font-size: 0.72rem; color: #22C55E; margin-top: 2px; }
.stat-change.resolved { color: #1186EA; }
.chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.chart-area { }
.chart-label { color: #6B7280; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--brand-primary);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.bar:hover { opacity: 1; }
.bar.active { background: #1186EA; opacity: 1; }
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.donut-svg { flex-shrink: 0; }
.donut-legend { }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: #6B7280; margin-bottom: 4px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.active { background: #002254; }
.legend-dot.pending { background: #F59E0B; }
.legend-dot.renewed { background: #10B981; }

/* ── Trust Bar ── */
.trust-bar {
  padding: 28px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.trust-scroll {
  display: flex;
  gap: 40px;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}
.trust-scroll span {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  font-size: 0.9rem;
}
.trust-scroll span::before { content: '• '; color: var(--brand-primary); }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Headers ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card-wide {
  grid-column: span 1;
}
.features-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.features-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: 0.9rem; line-height: 1.6; }
.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.feature-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}
.tag-blue { background: #DBEAFE; color: #1D4ED8; }
.tag-green { background: #D1FAE5; color: #065F46; }
.tag-orange { background: #FEF3C7; color: #92400E; }
.tag-red { background: #FEE2E2; color: #991B1B; }
[data-theme="dark"] .tag-blue { background: #1E3A5F; color: #60A5FA; }
[data-theme="dark"] .tag-green { background: #064E3B; color: #34D399; }
[data-theme="dark"] .tag-orange { background: #451A03; color: #FCD34D; }
[data-theme="dark"] .tag-red { background: #450A0A; color: #F87171; }
.check-list { margin-top: 14px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.check-list li::before {
  content: '✓';
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.8rem;
}
.hash-chain {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.hash-block {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-family: monospace;
  font-weight: 600;
}
.hash-sealed { background: #D1FAE5; color: #065F46; }
.hash-current { background: #DBEAFE; color: #1D4ED8; }
[data-theme="dark"] .hash-sealed { background: #064E3B; color: #34D399; }
[data-theme="dark"] .hash-current { background: #1E3A5F; color: #60A5FA; }

/* ── Security Section ── */
.security-section {
  background: var(--bg-dark-section);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.security-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(17,134,234,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.security-section p { color: #B8C6DC; }
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.security-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(17,134,234,0.15);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s;
}
.security-card:hover {
  background: rgba(17,134,234,0.08);
  border-color: rgba(17,134,234,0.4);
  transform: translateY(-3px);
}
.security-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.security-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: rgba(17,134,234,0.18);
  border: 1px solid rgba(17,134,234,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.security-card h3 { color: #fff; margin: 0; font-size: 1.02rem; }
.security-card p { color: #A8B8D0; font-size: 0.88rem; }
.security-section .badge {
  background: rgba(17,134,234,0.15);
  color: #1186EA;
  border: 1px solid rgba(17,134,234,0.35);
}
.security-section .section-header h2 { color: #fff; }
.security-section .section-header .gradient-text {
  color: #1186EA;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

/* ── Compliance Timeline ── */
.compliance-section { background: var(--bg-secondary); }
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--brand-primary);
}
.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  position: relative;
}
.timeline-dot {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  font-family: 'Sora', sans-serif;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-secondary);
}
.timeline-content {
  flex: 1;
  background: var(--compliance-card-bg);
  border: 1.5px solid var(--border-card);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 12px;
}
.timeline-content h3 { margin-bottom: 8px; font-size: 1rem; }
.timeline-content p { font-size: 0.875rem; margin-bottom: 10px; }
.timeline-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--brand-primary);
  font-weight: 600;
}
.timeline-check::before { content: '✓'; }
.global-compliance {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.global-compliance h3 { margin-bottom: 6px; }
.global-compliance p { font-size: 0.875rem; }
.compliance-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.comp-badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
}

/* ── AI Section ── */
.ai-section { background: var(--bg-primary); }
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ai-features { }
.ai-feature-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.ai-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--badge-bg);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 2px;
}
.ai-feature-item h4 { font-size: 1rem; margin-bottom: 6px; }
.ai-feature-item p { font-size: 0.875rem; }
.ai-chat-demo {
  background: #0F1123;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .ai-chat-demo { background: #070818; border: 1px solid #252750; }
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.chat-title { color: #fff; font-weight: 600; font-size: 0.9rem; }
.chat-status { color: #22C55E; font-size: 0.75rem; }
.chat-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  max-width: 85%;
}
.chat-user {
  background: var(--brand-primary);
  color: #fff;
  margin-left: auto;
  border-radius: 14px 14px 4px 14px;
}
.chat-ai {
  background: rgba(255,255,255,0.06);
  color: #E2E8F0;
  border-radius: 14px 14px 14px 4px;
}
.chat-ai ul { padding-left: 0; }
.chat-ai li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #A0A8C8;
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.chat-ai li::before {
  content: '✓';
  color: #22C55E;
  flex-shrink: 0;
}
.chat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(17,134,234,0.2);
  border: 1px solid rgba(17,134,234,0.4);
  border-radius: 8px;
  color: var(--brand-accent);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Onboarding Steps ── */
.onboarding-section { background: var(--bg-secondary); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.step-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border-card);
  margin-bottom: 16px;
  line-height: 1;
}
[data-theme="dark"] .step-num { color: #252750; }
.step-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 0.85rem; }

/* ── Integrations ── */
.integrations-section { background: var(--bg-primary); }
.integrations-hub {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 40px auto 0;
}
.hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(17,134,234,0.4);
}
.hub-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed var(--border-color);
  animation: spin-ring 20s linear infinite;
}
.hub-ring:nth-child(2) { width: 200px; height: 200px; }
.hub-ring:nth-child(3) { width: 290px; height: 290px; animation-direction: reverse; animation-duration: 30s; }
@keyframes spin-ring { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.hub-item {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  text-align: center;
  line-height: 1.2;
}

/* Positions for hub items (polar coords) */
.hub-item:nth-child(4)  { top: calc(50% - 28px - 100px); left: 50%; transform: translateX(-50%); }
.hub-item:nth-child(5)  { top: 50%; right: -4px; transform: translateY(-50%); }
.hub-item:nth-child(6)  { top: calc(50% - 28px + 100px); left: 50%; transform: translateX(-50%); }
.hub-item:nth-child(7)  { top: 50%; left: -4px; transform: translateY(-50%); }
.hub-item:nth-child(8)  { top: calc(50% - 28px - 62px); right: 20px; }
.hub-item:nth-child(9)  { top: calc(50% - 28px - 62px); left: 20px; }
.hub-item:nth-child(10) { top: calc(50% - 28px + 62px); right: 20px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--brand-accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote-icon { font-size: 2rem; color: var(--badge-text); margin-bottom: 14px; line-height: 1; }
.testimonial-text { font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA Section ── */
.cta-section {
  background: #002254;
  padding: 80px 24px;
  text-align: center;
  border-radius: 28px;
  margin: 0 24px 80px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   NAV DROPDOWN
══════════════════════════════════════════════ */


.dropdown-arrow { font-size: 0.7rem; transition: transform 0.2s; }






/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services-section { background: var(--bg-secondary); }

/* Service Tab Bar */
.svc-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.svc-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border-card);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.svc-tab:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.svc-tab.active {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(17,134,234,0.25);
}

/* Service Panels */
.svc-panel { display: none; }
.svc-panel.active { display: block; }

.svc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--badge-bg);
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid var(--badge-border);
}
.svc-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text-primary);
  line-height: 1.3;
}
.svc-content p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

.svc-how { margin-top: 28px; }
.svc-how h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }

.svc-steps { display: flex; flex-direction: column; gap: 12px; }
.svc-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.svc-step .step-num {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-step p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

.svc-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.svc-use-cases span {
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.svc-highlight-box {
  background: var(--badge-bg);
  border-left: 3px solid var(--brand-primary);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 20px;
}
.svc-highlight-box p { margin: 0; color: var(--text-primary); }

/* Sidebar cards */
.svc-sidebar { display: flex; flex-direction: column; gap: 16px; }
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.svc-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 14px; color: var(--text-primary); }
.svc-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.svc-card ul li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.svc-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.8rem;
}
.svc-compliance-note {
  background: rgba(17, 134, 234, 0.06);
  border: 1px solid var(--badge-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.svc-compliance-note span { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════
   DPDP CONSENT FORM ADDITIONS
══════════════════════════════════════════════ */
.dpdp-notice {
  background: rgba(17,134,234,0.05);
  border: 1.5px solid rgba(17,134,234,0.18);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 4px 0 18px;
}
.dpdp-notice-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 14px;
}
.dpdp-notice-text a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.dpdp-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.dpdp-consent-row:last-child { margin-bottom: 0; }
.dpdp-consent-row input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--brand-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.dpdp-consent-row label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  cursor: pointer;
}
.dpdp-consent-row .req { color: #EF4444; margin-left: 2px; }
.optional-tag {
  display: inline-block;
  background: rgba(17,134,234,0.1);
  color: var(--brand-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 50px;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dpdp-ref {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-left: 4px;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   DPDP AI CHATBOT WIDGET
══════════════════════════════════════════════ */
.ce-bot-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #002254;
  border: 3px solid #1186EA;
  box-shadow: 0 6px 24px rgba(17,134,234,0.4);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ce-bot-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(17,134,234,0.55);
}
.ce-bot-bubble.active { border-color: #563EC3; }
.ce-bot-avatar {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 4px;
}
.ce-bot-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #1186EA;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.ce-bot-widget {
  position: fixed;
  bottom: 102px;
  right: 28px;
  width: 360px;
  max-height: 540px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,34,84,0.25);
  z-index: 9998;
  flex-direction: column;
  overflow: hidden;
  animation: botSlideIn 0.25s ease;
}
@keyframes botSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 480px) {
  .ce-bot-widget { width: calc(100vw - 32px); right: 16px; bottom: 96px; }
  .ce-bot-bubble { bottom: 20px; right: 16px; }
}

/* Header */
.ce-bot-header {
  background: #002254;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.ce-bot-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ce-bot-header-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,0.1);
  padding: 2px;
}
.ce-bot-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Sora', sans-serif;
}
.ce-bot-status {
  display: block;
  font-size: 0.72rem;
  color: #4ADE80;
  font-weight: 500;
}
.ce-bot-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.ce-bot-close:hover { background: rgba(255,255,255,0.2); }

/* Messages */
.ce-bot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.ce-bot-messages::-webkit-scrollbar { width: 4px; }
.ce-bot-messages::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.ce-bot-msg {
  max-width: 85%;
  border-radius: 14px;
  padding: 10px 14px;
}
.ce-bot-msg p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: inherit;
}
.ce-bot-msg p a { color: #1186EA; text-decoration: underline; }
.ce-bot-msg.bot {
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.ce-bot-msg.user {
  background: #1186EA;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ce-bot-msg.user p { color: #fff; }

/* Typing dots */
.ce-bot-msg.typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px;
}
.ce-bot-msg.typing span {
  width: 7px; height: 7px;
  background: #1186EA;
  border-radius: 50%;
  display: inline-block;
  animation: botDot 1.2s infinite;
}
.ce-bot-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.ce-bot-msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes botDot {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* Suggestion chips */
.ce-bot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}
.ce-bot-chip {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1.5px solid #1186EA;
  background: transparent;
  color: #1186EA;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.ce-bot-chip:hover {
  background: #1186EA;
  color: #fff;
}

/* Input area */
.ce-bot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}
.ce-bot-input {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.ce-bot-input:focus {
  outline: none;
  border-color: #1186EA;
}
.ce-bot-send {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #1186EA;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.ce-bot-send:hover { background: #002254; }
.ce-bot-footer-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  padding: 6px 14px 10px;
  margin: 0;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ENTERPRISE 5-COLUMN FOOTER
══════════════════════════════════════════════ */




.footer-brand-row .nav-logo { text-decoration: none; }
.footer-brand-row .logo-wordmark { color: #fff; }
.footer-brand-row .logo-era { color: #1186EA; }




@media (max-width: 1100px) {  }
@media (max-width: 700px)  {  }
@media (max-width: 420px)  {  }



.footer-col-ent a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
  line-height: 1.5;
}
.footer-col-ent a:hover { color: #1186EA; }




.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }

.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: #1186EA; }


/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════ */
.ce-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 2px solid #1186EA;
  box-shadow: 0 -8px 40px rgba(0,34,84,0.18);
  z-index: 9990;
  padding: 18px 24px;
  animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.ce-cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.ce-cookie-left { display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 260px; }
.ce-cookie-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.ce-cookie-text strong { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 4px; }
.ce-cookie-text p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.ce-cookie-text a { color: #1186EA; text-decoration: underline; }
.ce-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.ce-cookie-btn { padding: 10px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; white-space: nowrap; }
.ce-cookie-btn.primary { background: #1186EA; color: #fff; border: 1.5px solid #1186EA; }
.ce-cookie-btn.primary:hover { background: #002254; border-color: #002254; }
.ce-cookie-btn.outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-color); }
.ce-cookie-btn.outline:hover { border-color: #1186EA; color: #1186EA; }

/* Cookie Modal */
.ce-cookie-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 9995; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.ce-cookie-modal-inner {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 20px; padding: 36px; max-width: 520px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,34,84,0.25); max-height: 90vh; overflow-y: auto;
}
.ce-cookie-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ce-cookie-modal-header h3 { font-size: 1.2rem; font-weight: 800; margin: 0; }
.ce-cookie-modal-sub { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.ce-cookie-pref-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.ce-cookie-pref-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 12px; }
.ce-cookie-pref-info strong { font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 4px; color: var(--text-primary); }
.ce-cookie-pref-info p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.ce-toggle { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; background: rgba(17,134,234,0.1); color: #1186EA; flex-shrink: 0; }
.ce-toggle.disabled { opacity: 0.5; }
.ce-toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.ce-toggle-switch input { opacity: 0; width: 0; height: 0; }
.ce-toggle-slider { position: absolute; inset: 0; background: var(--border-color); border-radius: 50px; cursor: pointer; transition: 0.2s; }
.ce-toggle-slider:before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.2s; }
.ce-toggle-switch input:checked + .ce-toggle-slider { background: #1186EA; }
.ce-toggle-switch input:checked + .ce-toggle-slider:before { transform: translateX(20px); }
.ce-cookie-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 14px; }
.ce-cookie-modal-note { font-size: 0.74rem; color: var(--text-muted); text-align: center; margin: 0; }

/* ══════════════════════════════════════════════
   CONSISTENT SITE-WIDE COLOR & LOOK REFRESH
══════════════════════════════════════════════ */

/* ── Section alternating bg — clean, consistent ── */
.section { background: #ffffff; }
.section:nth-child(even) { background: #F5F7FA; }
.security-section { background: #002254 !important; }
.ai-section { background: #F0F5FF; }
.compliance-section { background: #ffffff; }
.integrations-section { background: #F5F7FA; }
.contact-section { background: #ffffff; }
.faq-section { background: #F5F7FA; }

/* ── Headings — uniform navy ── */
h1, h2 { color: #002254; }
[data-theme="dark"] h1, [data-theme="dark"] h2 { color: #F0F2FF; }

/* ── Gradient-text = brand blue ── */
.gradient-text { color: #1186EA !important; }

/* ── Badge — consistent across all sections ── */
.badge {
  background: #EAF4FE;
  color: #1186EA;
  border: 1px solid #BFDFFB;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
[data-theme="dark"] .badge {
  background: #1A2B4A;
  color: #1186EA;
  border-color: #1186EA;
}

/* ── Cards — consistent white with soft border ── */
.feature-card, .security-card, .integration-card,
.svc-card, .job-card, .press-card, .res-card,
.contact-form-card, .contact-info-card, .contact-demo-card,
.apply-form-card, .prose-card, .pricing-card, .quiz-card,
.sdf-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(17,134,234,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
[data-theme="dark"] .feature-card,
[data-theme="dark"] .svc-card,
[data-theme="dark"] .job-card,
[data-theme="dark"] .press-card,
[data-theme="dark"] .res-card,
[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .quiz-card,
[data-theme="dark"] .sdf-card {
  background: #181A38;
  border-color: #252750;
}
.feature-card:hover, .svc-card:hover, .job-card:hover,
.press-card:hover, .res-card:hover, .pricing-card:hover {
  box-shadow: 0 6px 28px rgba(17,134,234,0.12);
  transform: translateY(-2px);
}

/* ── Buttons — consistent ── */
.btn {
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 22px;
}
.btn-primary {
  background: #1186EA;
  color: #fff;
  border: none;
  box-shadow: 0 3px 12px rgba(17,134,234,0.28);
}
.btn-primary:hover {
  background: #002254;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0,34,84,0.3);
}
.btn-secondary {
  background: #fff;
  color: #002254;
  border: 1.5px solid #002254;
}
.btn-secondary:hover { background: #002254; color: #fff; }

/* ── Form inputs — uniform ── */
input[type=text], input[type=email], input[type=tel],
input[type=number], select, textarea {
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background: #fff;
  color: #0F1123;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: #1186EA;
  box-shadow: 0 0 0 3px rgba(17,134,234,0.10);
  outline: none;
}
[data-theme="dark"] input[type=text],
[data-theme="dark"] input[type=email],
[data-theme="dark"] input[type=tel],
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: #181A38;
  border-color: #252750;
  color: #F0F2FF;
}

/* ── Page-hero sections (static pages) — uniform ── */
.static-hero, .page-hero {
  background: #F0F5FF;
  border-bottom: 1px solid #DBEAFE;
  padding: 110px 0 56px;
  text-align: center;
}
.static-hero h1, .page-hero h1 { color: #002254; }

/* ── Section-header desc text ── */
.section-desc { color: #4A5568; max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ── Dropdown menu — clean white ── */

[data-theme="dark"] 

[data-theme="dark"] 


/* ── CTA section ── */
.cta-section { background: #002254 !important; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.82); }

/* ── FAQ ── */
.faq-question { color: #002254; font-weight: 600; }
[data-theme="dark"] .faq-question { color: #F0F2FF; }
.faq-question:hover { color: #1186EA; }
.faq-icon { color: #1186EA; }

/* ── Timeline dots ── */
.timeline-dot { background: #1186EA; color: #fff; }

/* ── Step numbers ── */
.step-circle, .sdf-step .step-num,
[class*="step-num"] { background: #1186EA; color: #fff; }

/* ── Trust badges in contact ── */
.trust-icon.shield { background: rgba(17,134,234,0.1); color: #1186EA; }
.trust-icon.lock   { background: rgba(86,62,195,0.1);  color: #563EC3; }
.trust-icon.check  { background: rgba(16,185,129,0.12); color: #059669; }

/* ── Pricing card featured ── */
.pricing-card.featured {
  border-color: #1186EA;
  box-shadow: 0 0 0 2px #1186EA, 0 12px 40px rgba(17,134,234,0.15);
}

/* ── Mobile nav ── */

[data-theme="dark"] 
.mobile-nav a { color: #002254; }
[data-theme="dark"] .mobile-nav a { color: #A0A8C8; }
.mobile-nav a:hover { color: #1186EA; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F5F7FA; }
::-webkit-scrollbar-thumb { background: #1186EA; border-radius: 6px; }



/* ══════════════════════════════════════════════
   CE NAVBAR — OneTrust-inspired clean design
══════════════════════════════════════════════ */
.ce-nav {
  position: fixed;
  top: 16px;
  left: 24px;
  right: 24px;
  transform: none;
  width: auto;
  max-width: none;
  z-index: 1000;
  background: #ffffff;
  border-radius: 60px;
  box-shadow: 0 4px 32px rgba(0,34,84,0.13), 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow 0.3s, top 0.3s;
}
.ce-nav.scrolled {
  top: 8px;
  box-shadow: 0 8px 48px rgba(0,34,84,0.18), 0 2px 8px rgba(0,0,0,0.08);
}
[data-theme="dark"] .ce-nav {
  background: rgba(13,14,33,0.96);
  border-color: #252750;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.ce-nav-inner {
  padding: 0 16px 0 24px;
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
}
@media (max-width: 1100px) { .ce-nav-inner { padding: 0 8px 0 16px; } }

/* ── Logo ── */
.ce-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.ce-nav-logo .logo-img {
  height: 60px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.ce-nav-logo .logo-wordmark { display: none; }
[data-theme="dark"] .ce-nav-logo .logo-wordmark { color: #fff; }
.logo-era { color: #1186EA; }

/* ── Tab List — centered ── */
.ce-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
@media (max-width: 900px) { .ce-nav-tabs { display: none; } }

/* ── Individual Tab ── */
.ce-tab {
  position: relative;
}
.ce-tab-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1A1A2E;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
[data-theme="dark"] .ce-tab-btn { color: #E0E4F0; }
.ce-tab-btn:hover,
.ce-tab:hover .ce-tab-btn {
  color: #1186EA;
  background: #F0F5FF;
}
.ce-tab.nav-tab-active .ce-tab-btn {
  color: #1186EA;
  font-weight: 600;
}
.ce-chevron {
  width: 10px; height: 10px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ce-tab:hover .ce-chevron { transform: rotate(180deg); }

/* ── Dropdown Base ── */
.ce-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,34,84,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.18s ease;
  z-index: 999;
}
[data-theme="dark"] .ce-dropdown {
  background: #181A38;
  border-color: #252750;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.ce-tab.open .ce-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Simple Dropdown (Company, Resources) ── */
.ce-dropdown-simple {
  min-width: 260px;
  padding: 10px;
  left: 0;
  transform: translateY(-8px);
}
.ce-tab.open .ce-dropdown-simple {
  transform: translateY(0);
}

.ce-dd-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.12s;
}
.ce-dd-link:hover { background: #F0F5FF; }
[data-theme="dark"] .ce-dd-link:hover { background: #1E2952; }
.ce-dd-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-right: 8px;
}
.ce-dd-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A1A2E;
  display: block;
}
[data-theme="dark"] .ce-dd-title { color: #F0F2FF; }
.ce-dd-desc {
  font-size: 0.78rem;
  color: #718096;
  display: block;
  line-height: 1.4;
}

/* ── Mega Menu (Product tab) — full width anchored to navbar ── */
.ce-dropdown-mega {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 0;
  padding: 24px 32px;
  min-width: 720px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  border-radius: 0 0 16px 16px;
  border-top: 2px solid #1186EA;
}
/* 4-column: Core Modules | Features | Services | DPDPA CpaaS
   — Use fixed positioning anchored to navbar bottom */
.ce-dropdown-mega-4col {
  grid-template-columns: 1.2fr 0.9fr 0.7fr 0.75fr;
  position: fixed !important;
  top: 96px !important;
  left: 24px !important;
  right: 24px !important;
  width: auto !important;
  max-width: none !important;
  transform: none !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 60px rgba(0,34,84,.18) !important;
}
.ce-tab:hover .ce-dropdown-mega {
  transform: translateX(-50%) translateY(0);
}
.ce-tab.open .ce-dropdown-mega-4col {
  grid-template-columns: 1.2fr 0.9fr 0.7fr 0.75fr;
  position: fixed !important;
  top: 96px !important;
  left: 24px !important;
  right: 24px !important;
  width: auto !important;
  max-width: none !important;
  transform: none !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 60px rgba(0,34,84,.18) !important;
}
.ce-mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
}
.ce-mega-col + .ce-mega-col {
  border-left: 1px solid #E8EDF2;
}
[data-theme="dark"] .ce-mega-col + .ce-mega-col { border-color: #252750; }
.ce-mega-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1186EA;
  margin: 0 0 6px;
  padding: 4px 4px 8px;
  border-bottom: 1.5px solid #EAF4FE;
}
[data-theme="dark"] .ce-mega-heading { border-color: #1E2952; }
.ce-mega-col .ce-dd-link {
  flex-direction: row;
  align-items: center;
  padding: 8px 10px;
  gap: 8px;
}

/* ── Platform Dropdown (3 cards like OneTrust) ── */
.ce-dropdown-platform {
  min-width: 680px;
  padding: 24px;
  left: auto;
  right: 0;
  transform: translateY(-8px);
  border-radius: 20px;
}
.ce-tab.open .ce-dropdown-platform { transform: translateY(0); }
.ce-platform-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1186EA;
  margin: 0 0 16px;
}
.ce-platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ce-platform-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.15s;
  background: #FAFBFF;
}
.ce-platform-card:hover {
  border-color: #1186EA;
  background: #EAF4FE;
  transform: translateY(-2px);
}
[data-theme="dark"] .ce-platform-card {
  background: #1E2952;
  border-color: #252750;
}
[data-theme="dark"] .ce-platform-card:hover {
  border-color: #1186EA;
  background: #1A2B4A;
}
.ce-platform-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #002254;
  display: block;
}
[data-theme="dark"] .ce-platform-card strong { color: #fff; }
.ce-platform-card span {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.5;
}

/* ── Contact Us CTA Button ── */
.ce-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  justify-self: end;
}
.ce-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  background: #1186EA;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(17,134,234,0.35);
}
.ce-contact-btn:hover {
  background: #002254;
  box-shadow: 0 6px 24px rgba(0,34,84,0.4);
  transform: translateY(-1px);
}
.ce-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ce-contact-btn:hover .ce-cta-arrow {
  background: rgba(255,255,255,0.35);
  transform: translateX(2px);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (max-width: 900px) { .hamburger { display: flex; } }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #002254;
  border-radius: 2px;
  transition: all 0.2s;
}
[data-theme="dark"] .hamburger span { background: #F0F2FF; }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 100px; left: 16px; right: 16px; bottom: 16px;
  background: #ffffff;
  overflow-y: auto;
  z-index: 998;
  padding: 8px 0 32px;
  border-top: 3px solid #1186EA;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0,34,84,0.2);
}
[data-theme="dark"] .mobile-nav { background: #0D0E21; border-top-color: #1186EA; }
.mobile-nav.open { display: block; }

.mob-section-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1186EA;
  padding: 14px 24px 6px;
  border-top: 1px solid #E2E8F0;
  margin-top: 6px;
}
[data-theme="dark"] .mob-section-title { border-color: #252750; }
.mob-section-title:first-child { border-top: none; margin-top: 0; }
.mobile-nav a {
  display: block;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: #1A1A2E;
  text-decoration: none;
  transition: all 0.15s;
}
[data-theme="dark"] .mobile-nav a { color: #A0A8C8; }
.mobile-nav a:hover { color: #1186EA; background: #F0F5FF; }
.mob-cta-btn {
  margin: 16px 24px 0;
  padding: 12px 24px !important;
  background: #1186EA;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700 !important;
  text-align: center;
  display: block;
}
.mob-cta-btn:hover { background: #002254 !important; color: #fff !important; }

/* ── Body offset for fixed nav ── */
body { padding-top: 100px; }

/* ══════════════════════════════════════════════
   FOOTER — 5 columns
══════════════════════════════════════════════ */
.footer {
  background: #001A42;
  color: #fff;
  margin-top: 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 700px) { .footer-container { padding: 0 20px; } }

/* ── Top logo strip ── */
.footer-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.footer-logo-word {
  display: none;
}
.footer-logo-era { color: #1186EA; }
.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.65;
}

/* ── 5-column grid ── */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 44px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 1100px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 440px)  { .footer-cols { grid-template-columns: 1fr; } }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-col-head {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.5;
  transition: color 0.15s;
}
.footer-col a:hover { color: #1186EA; }

/* ── Contact column extras ── */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-addr-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-address p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin: 0;
}
.footer-email-link {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.5) !important;
  word-break: break-all;
  margin-bottom: 16px;
}
.footer-email-link:hover { color: #1186EA !important; }
.footer-contact-btn {
  display: inline-flex !important;
  align-items: center;
  padding: 9px 18px !important;
  background: #1186EA;
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.82rem !important;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 4px;
  width: fit-content;
}
.footer-contact-btn:hover { background: #002254 !important; color: #fff !important; }

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: #1186EA; }

/* ══════════════════════════════════════════════
   FAQ PAGE SECTION — Homepage Clean Design
══════════════════════════════════════════════ */
.faq-page-section {
  background: #F0F5FF;
  padding: 80px 0;
}
.faq-page-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-page-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #002254;
  margin: 12px 0 14px;
}
.faq-page-header p {
  font-size: 0.97rem;
  color: #4A5568;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-page-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FAQ Card ── */
.faq-page-grid .faq-item {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17,134,234,0.05);
  transition: box-shadow 0.2s;
}
.faq-page-grid .faq-item:hover {
  box-shadow: 0 4px 18px rgba(17,134,234,0.10);
}
.faq-page-grid .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: #002254;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s, background 0.2s;
}
.faq-page-grid .faq-question:hover {
  color: #1186EA;
  background: #F8FBFF;
}
.faq-page-grid .faq-question[aria-expanded="true"] {
  color: #1186EA;
  background: #F0F5FF;
  border-bottom: 1px solid #DBEAFE;
}
.faq-page-grid .faq-icon {
  font-size: 1.3rem;
  color: #1186EA;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-page-grid .faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-page-grid .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-page-grid .faq-answer p {
  padding: 18px 24px 22px;
  color: #4A5568;
  font-size: 0.91rem;
  line-height: 1.8;
  margin: 0;
}
.faq-page-grid .faq-answer a {
  color: #1186EA;
  text-decoration: underline;
}

/* ══════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   Breakpoints: 768px (tablet), 480px (mobile)
══════════════════════════════════════════════ */

/* ── Global overflow fix ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
*, *::before, *::after {
  box-sizing: border-box;
 
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══ TABLET (max 900px) ══════════════════════ */
@media (max-width: 900px) {

  /* Nav */
  .ce-nav-inner {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }
  .ce-nav-tabs { display: none !important; }
  .hamburger { display: flex !important; }

  /* Hero */
  .hero { padding: 100px 0 52px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-content p { max-width: 100%; }
  .hero-cta { justify-content: center; }

  /* Hero stats */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Security grid */
  .security-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }

  /* Integrations */
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  /* AI section */
  .ai-grid { grid-template-columns: 1fr; }
  .ai-chat-demo { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Platform cards */
  .ce-platform-cards { grid-template-columns: 1fr; }
}

/* ══ MOBILE (max 600px) ══════════════════════ */
@media (max-width: 600px) {

  /* Base spacing */
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Typography */
  h1 { font-size: 1.9rem !important; }
  h2 { font-size: 1.5rem !important; }

  /* Nav */
  .ce-nav { top: 10px; width: calc(100% - 24px); }
  .ce-nav-inner { height: 58px; padding: 0 6px 0 14px; }
  .ce-nav-logo .logo-img { height: 38px; width: auto; max-width: 180px; }
  .logo-wordmark { font-size: 1.1rem; }
  .ce-contact-btn { padding: 8px 14px; font-size: 0.82rem; }
  .ce-contact-btn .ce-cta-arrow { display: none; }
  body { padding-top: 88px; }

  /* Mobile nav */
  .mobile-nav { top: 82px; left: 10px; right: 10px; }

  /* Hero */
  .hero { padding: 72px 0 44px; }
  .hero-grid { gap: 24px; }
  .hero-content h1 { font-size: 1.9rem; line-height: 1.2; }
  .hero-content p { font-size: 0.92rem; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Hero stats — 2 col on mobile */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 0 20px;
  }
  .hero-stat { padding: 14px 10px; }
  .stat-number { font-size: 1.5rem; }

  /* Section headers */
  .section-header { margin-bottom: 32px; }
  .section-desc { font-size: 0.88rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px; }

  /* Security */
  .security-grid { grid-template-columns: 1fr; }
  .security-card { padding: 20px; }

  /* Compliance timeline */
  .timeline-item { gap: 16px; }
  .timeline-dot { width: 44px; height: 44px; font-size: 0.7rem; }
  .timeline::before { left: 22px; }

  /* Steps section */
  .steps-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .contact-info-panel { gap: 12px; }
  .form-row { grid-template-columns: 1fr !important; }

  /* FAQ */
  .faq-list { gap: 10px; }
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-page-grid .faq-question { padding: 16px 18px; font-size: 0.9rem; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 12px; padding: 32px 0 24px; }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
    padding: 28px 0 24px;
  }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { justify-content: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; padding: 32px 0 16px; }
  .pricing-card { padding: 24px 18px; }
  .compare-table-wrap { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }

  /* About / Trust pages */
  .about-hero-stats { gap: 20px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .culture-cards { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }

  /* Industry pages */
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card { padding: 18px; }
  .ipage-layout { grid-template-columns: 1fr; }
  .ipage-sidebar { position: static; }
  .ipage-hero-inner { grid-template-columns: 1fr; }
  .ipage-hero-icon { display: none; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-card { padding: 24px 18px; }
  .ci-card { padding: 18px; }

  /* Service pages */
  .svc-grid { grid-template-columns: 1fr; }
  .svc-hero-inner { grid-template-columns: 1fr; }

  /* Resources */
  .res-grid { grid-template-columns: 1fr; }
  .tour-container { grid-template-columns: 1fr; }
  .gloss-grid { grid-template-columns: 1fr; }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }
  .press-kit-grid { grid-template-columns: 1fr 1fr; }

  /* Careers */
  .apply-grid { grid-template-columns: 1fr; }
  .apply-form-card { padding: 24px 18px; }
  .openings-grid { grid-template-columns: 1fr; }

  /* SDF Calculator */
  .sdf-card { padding: 24px 18px; }
  .sdf-nav { flex-direction: column; }
  .sdf-btn, .sdf-btn-outline { width: 100%; text-align: center; }

  /* Cookie banner */
  .ce-cookie-inner { flex-direction: column; gap: 14px; }
  .ce-cookie-actions { width: 100%; justify-content: stretch; }
  .ce-cookie-btn { flex: 1; text-align: center; }

  /* Bot widget */
  .ce-bot-bubble { bottom: 16px; right: 14px; width: 50px; height: 50px; }
  .ce-bot-widget {
    width: calc(100vw - 16px);
    right: 8px;
    left: 8px;
    bottom: 78px;
    max-height: 70vh;
  }

  /* CTA section */
  .cta-section { margin: 0 12px 48px; border-radius: 18px; padding: 48px 20px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions .btn, .cta-actions a { width: 100%; justify-content: center; }

  /* Simple dropdowns on mobile - prevent overflow */
  .ce-dropdown-simple { position: fixed !important; left: 8px !important; right: 8px !important;
    width: auto !important; top: 60px !important; transform: none !important; }
  /* Mega menu on mobile */
  .ce-dropdown-mega, .ce-dropdown-mega-4col {
  grid-template-columns: 1.2fr 0.9fr 0.7fr 0.75fr;
  position: fixed !important;
  top: 96px !important;
  left: 24px !important;
  right: 24px !important;
  width: auto !important;
  max-width: none !important;
  transform: none !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 60px rgba(0,34,84,.18) !important;
}

  /* Trust centre */
  .tc-pillars-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .tc-intro-inner { grid-template-columns: 1fr; }
  .tc-cert-row { flex-direction: column; align-items: center; }
  .tc-uptime-strip { gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* Partners / Training */
  .partners-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }

  /* Platform integrations */
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  /* Prose card */
  .prose-card { padding: 24px 18px; }
  .rights-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  /* 404 page */
  .err-card { padding: 32px 20px; }
  .err-code { font-size: 5rem; }
  .err-search-wrap { flex-direction: column; }
  .err-search-wrap button { width: 100%; }
}

/* ══ SMALL MOBILE (max 380px) ════════════════ */
@media (max-width: 380px) {
  .logo-wordmark { font-size: 0.95rem; }
  .ce-nav-logo .logo-img { height: 38px; width: auto; max-width: 180px; }
  .ce-contact-btn { padding: 7px 11px; font-size: 0.78rem; }
  .footer-cols { grid-template-columns: 1fr !important; }
  h1 { font-size: 1.6rem !important; }
  h2 { font-size: 1.3rem !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}



/* Accordion item */
.pd-acc-item { border-radius: 10px; overflow: hidden; margin-bottom: 2px; }

.pd-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
  box-sizing: border-box;
}
.pd-acc-btn:hover { background: #F0F5FF; }
.pd-acc-btn.active { background: #EAF4FE; }

.pd-acc-icon {
  font-size: 1rem;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF4FE;
  border-radius: 8px;
  flex-shrink: 0;
}

.pd-acc-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.pd-acc-label strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #002254;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-acc-label small {
  display: block;
  font-size: .72rem;
  color: #718096;
  font-weight: 400;
  white-space: nowrap;
}

.pd-acc-chev {
  width: 12px;
  height: 12px;
  min-width: 12px;
  flex-shrink: 0;
  color: #718096;
  transition: transform .2s;
}
.pd-acc-btn.active .pd-acc-chev {
  transform: rotate(180deg);
  color: #1186EA;
}

/* Sub-items body */
.pd-acc-body {
  display: none;
  padding: 4px 4px 8px 12px;
  border-top: 1px solid #EAF4FE;
  background: #F8FBFF;
  border-radius: 0 0 10px 10px;
}
.pd-acc-body.open { display: block; }
.pd-acc-body .ce-dd-link {
  padding: 8px 10px;
  border-radius: 8px;
  gap: 0;
}
.pd-acc-body .ce-dd-link:hover { background: #EAF4FE; }
.pd-acc-body .ce-dd-title {
  font-size: .83rem;
  font-weight: 600;
  color: #002254;
  white-space: normal;
}
.pd-acc-body .ce-dd-desc {
  font-size: .72rem;
  color: #718096;
}

@media(max-width:600px) {
  .ce-dropdown-product-acc {
    width: calc(100vw - 24px) !important;
    left: 12px !important;
    transform: translateY(-8px) !important;
    top: 82px !important;
  }
  .ce-tab:hover .ce-dropdown-product-acc,
  .ce-tab.open .ce-dropdown-product-acc {
    transform: translateY(0) !important;
  }
}

/* ══ PRODUCT 2-LEVEL FLYOUT MENU ═════════════════════ */
.ce-flyout-wrap {
  display: flex !important;
  padding: 0 !important;
  width: 620px !important;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
}

/* Level 1 — left column */
.flyout-l1 {
  width: 200px;
  min-width: 200px;
  background: #F8FBFF;
  border-right: 1px solid #E2E8F0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flyout-l1-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
.flyout-l1-item:hover,
.flyout-l1-item.active {
  background: #fff;
  box-shadow: 0 1px 6px rgba(17,134,234,.1);
}
.flyout-l1-item.active { border-left: 3px solid #1186EA; padding-left: 9px; }

.flyout-icon { font-size: 1rem; flex-shrink: 0; }

.flyout-l1-text { flex: 1; min-width: 0; }
.flyout-l1-text strong {
  display: block; font-size: .82rem; font-weight: 700;
  color: #002254; white-space: nowrap;
}
.flyout-l1-item.active .flyout-l1-text strong { color: #1186EA; }
.flyout-l1-text small { display: block; font-size: .68rem; color: #718096; }

.flyout-arrow {
  width: 10px; height: 10px; min-width: 10px;
  color: #CBD5E0; flex-shrink: 0;
}
.flyout-l1-item.active .flyout-arrow { color: #1186EA; }

/* Level 2 — right panel */
.flyout-l2 {
  flex: 1;
  padding: 8px;
  overflow-y: auto;
  max-height: 480px;
}

.flyout-panel { display: none; }
.flyout-panel.active { display: block; }

.flyout-panel-title {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #1186EA;
  padding: 6px 10px 8px; margin: 0 0 4px;
  border-bottom: 1px solid #EAF4FE;
}

.flyout-panel .ce-dd-link {
  padding: 9px 10px;
  border-radius: 8px;
}
.flyout-panel .ce-dd-link:hover { background: #F0F5FF; }
.flyout-panel .ce-dd-title { font-size: .85rem; font-weight: 600; color: #002254; }
.flyout-panel .ce-dd-desc { font-size: .73rem; color: #718096; }

/* Mobile — stack vertically */
@media(max-width: 768px) {
  .ce-flyout-wrap {
    flex-direction: column !important;
    width: calc(100vw - 24px) !important;
  }
  .flyout-l1 { width: 100%; border-right: none; border-bottom: 1px solid #E2E8F0; }
  .flyout-l2 { max-height: 300px; }
}
