/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --blue:        #1a6fc4;
  --blue-dark:   #125299;
  --blue-light:  #e8f1fb;
  --amber:       #f5a623;
  --amber-dark:  #c4831a;
  --navy:        #0d1f3c;
  --navy-mid:    #1b2f5e;
  --surface:     #ffffff;
  --surface-alt: #f4f6f9;
  --text:        #1a2332;
  --muted:       #6b7a8e;
  --border:      #dde3ec;
  --risk-high:   #dc2626;
  --risk-med:    #d97706;
  --risk-low:    #16a34a;
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Override Brevo Style uses this https://sibforms.com/forms/end-form/build/sib-styles.css */
/* .sib-form {
  padding: 0px !important
} */

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Navbar ───────────────────────────────────────────────── */
.rc-navbar {
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  height: 62px;
}
.rc-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}
.rc-navbar .navbar-brand img { width: 34px; height: 34px; }
.rc-navbar .nav-link {
  color: rgba(255,255,255,0.72) !important;
  font-weight: 500;
  font-size: 1.0rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.15s;
}
.rc-navbar .nav-link:hover,
.rc-navbar .nav-link.active { color: #fff !important; }
.rc-navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.4);
  background-color: rgba(255,255,255,0.12);
}
.rc-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
  .rc-navbar .navbar-collapse {
    background: rgba(13, 31, 60, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 1rem 1rem;
    margin: 0 -12px;
  }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-amber {
  background-color: var(--amber);
  border: 2px solid var(--amber);
  color: var(--navy);
  font-weight: 700;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 0.95rem;
  transition: background-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-amber:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-blue {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 0.95rem;
  transition: background-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-blue:hover {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 0.95rem;
  transition: border-color 0.2s, background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}
.btn-nav-login {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-radius: 5px;
  padding: 6px 18px;
  font-size: 0.87rem;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-nav-login:hover { border-color: #fff; color: #fff; }
.btn-nav-trial {
  background: var(--amber);
  border: none;
  color: var(--navy);
  font-weight: 700;
  border-radius: 5px;
  padding: 7px 18px;
  font-size: 0.87rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-nav-trial:hover { background: var(--amber-dark); color: var(--navy); }

/* ── Sections ─────────────────────────────────────────────── */
.section-py { padding: 30px 0; }
@media (max-width: 768px) { .section-py { padding: 56px 0; } }

.section-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}
.section-eyebrow.amber { color: var(--amber); }
.section-eyebrow.lg { font-size: 1.0rem; letter-spacing: 1.5px; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.white { color: #fff; }

.section-sub {
  font-size: 1.03rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.78;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(150deg, #0a1628 0%, #0d1f3c 50%, #122a52 100%);
  min-height: 30vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom:65px;
 
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 60% 30%, rgba(26,111,196,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.hero-title .accent { color: var(--amber); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.hero-trust {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.75rem;
}
.hero-prehook {
  font-size: 1rem;
  /* font-style: italic; */
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.25rem;
}
.hero-prehook .accent { color: var(--amber); }

/* ── Page Header (non-hero pages) ─────────────────────────── */
.page-header {
  background: linear-gradient(150deg, #0a1628 0%, #0d1f3c 100%);
  padding: 40px 0 42px;
  text-align: center;
}

/* ── Mock UI Cards ────────────────────────────────────────── */
.mock-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.06), 0 20px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s;
  font-size: 0.72rem;
}
.mock-card:hover { transform: translateY(-5px); }
.mock-card.featured { box-shadow: 0 8px 40px rgba(26,111,196,0.28); transform: scale(1.04); }
.mock-card.featured:hover { transform: scale(1.04) translateY(-5px); }

.mock-titlebar {
  background: var(--navy);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-brand-name {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-dot.active { background: var(--amber); }

.mock-body { padding: 12px; }
.mock-page-title { font-weight: 700; font-size: 0.82rem; color: var(--navy); margin-bottom: 8px; }

.mock-stat-row { display: flex; gap: 6px; margin-bottom: 10px; }
.mock-stat {
  flex: 1;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 8px;
}
.mock-stat-lbl { font-size: 0.58rem; color: var(--muted); margin-bottom: 2px; }
.mock-stat-val { font-size: 0.95rem; font-weight: 800; color: var(--navy); }
.mock-stat-val.blue  { color: var(--blue); }
.mock-stat-val.red   { color: var(--risk-high); }

.mock-bar {
  background: var(--navy);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  margin-top: 8px;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--surface-alt);
}
.mock-row:last-child { border-bottom: none; }
.mock-row-left { display: flex; align-items: center; gap: 6px; }
.mock-icon {
  width: 24px; height: 24px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.mock-name { font-weight: 600; font-size: 0.68rem; line-height: 1.3; }
.mock-sub  { font-size: 0.58rem; color: var(--muted); }
.mock-days { font-size: 0.62rem; color: var(--muted); white-space: nowrap; margin-right: 5px; }
.mock-days strong { color: var(--text); font-weight: 700; }

.risk-badge {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.risk-high   { background: var(--risk-high);  color: #fff; }
.risk-medium { background: var(--risk-med);   color: #fff; }
.risk-low    { background: var(--risk-low);   color: #fff; }

.mock-footer-bar {
  background: var(--navy);
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 8px;
  color: #fff;
  font-size: 0.64rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── Feature cards ────────────────────────────────────────── */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(26,111,196,0.12);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-card h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 0;
}
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.72; margin: 0; }

/* ── Pricing cards ────────────────────────────────────────── */
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(26,111,196,0.12);
  transform: translateY(-3px);
}
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 4px 24px rgba(26,111,196,0.2); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin: 0 0 4px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.pricing-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; }
.pricing-price .per { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-limits {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}
.pricing-limit {
  flex: 1;
  background: var(--surface-alt);
  border-radius: 7px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pricing-limit-val { font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-limit-lbl { font-size: 0.8rem; color: var(--muted); line-height: 1; }
.pricing-divider { border-color: var(--border); margin: 18px 0; }
.pricing-features {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.87rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* ── Steps ────────────────────────────────────────────────── */
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #1a2f52 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,111,196,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.rc-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.52);
  padding: 56px 0 32px;
}
.rc-footer a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.15s; }
.rc-footer a:hover { color: #fff; }
.rc-footer .footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.rc-footer .footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 14px;
}
.rc-footer .footer-link { display: block; font-size: 0.87rem; margin-bottom: 8px; }
.rc-footer .footer-divider { border-color: rgba(255,255,255,0.1); margin: 32px 0 20px; }
.rc-footer .footer-copy { font-size: 0.8rem; }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.67; flex: 1; }
.blog-card-date { font-size: 0.74rem; color: var(--muted); margin-top: 12px; }
.blog-card-more { font-size: 0.84rem; font-weight: 600; color: var(--blue); margin-top: 10px; text-decoration: none; }

.blog-post-content { max-width: 760px; margin: 0 auto; }
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 { color: var(--navy); margin-top: 2rem; margin-bottom: 0.75rem; }
.blog-post-content p { line-height: 1.82; margin-bottom: 1.25rem; }
.blog-post-content img { max-width: 100%; border-radius: 8px; margin: 1.5rem 0; }
.blog-post-content a { color: var(--blue); }
.blog-post-content blockquote {
  border-left: 4px solid var(--blue);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}
.blog-post-content code {
  background: var(--surface-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}
.blog-post-content pre {
  background: var(--navy);
  color: #e2e8f0;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/* ── Forms ────────────────────────────────────────────────── */
.rc-form-control {
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  display: block;
  margin-bottom: 4px;
}
.rc-form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.1);
}
.rc-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

/* ── Security / dark feature cards ───────────────────────── */
.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
}

/* ── Prose (privacy / terms) ─────────────────────────────── */
.prose-section { font-size: 0.92rem; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.prose-section h2 { font-family: 'DM Sans', system-ui, sans-serif; font-size: 1.03rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

/* ── Utilities ────────────────────────────────────────────── */
.bg-surface-alt { background-color: var(--surface-alt); }
.bg-navy         { background-color: var(--navy); }
.text-navy        { color: var(--navy); }
.text-blue        { color: var(--blue); }
.text-amber       { color: var(--amber); }
.text-muted-rc    { color: var(--muted); }

/* ── App Window Mockups ───────────────────────────────────── */
.app-window {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 11px;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #e8eaed;
  line-height: 1.4;
}
.app-chrome {
  background: #2c2c2e;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.chrome-dot  { width: 12px; height: 12px; border-radius: 50%; }
.chrome-dot.red    { background: #ff5f57; }
.chrome-dot.yellow { background: #febc2e; }
.chrome-dot.green  { background: #28c840; }
.chrome-url {
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 3px 12px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-frame {
  display: flex;
  height: 380px;
  overflow: hidden;
}
.app-sidebar {
  width: 160px;
  min-width: 160px;
  background: #252b38;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #333b4d;
  overflow: hidden;
}
.app-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-bottom: 1px solid #333b4d;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
}
.app-sidebar-brand img { width: 20px; height: 20px; flex-shrink: 0; }
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: #adb5bd;
  font-size: 10.5px;
  font-weight: 500;
  white-space: nowrap;
}
.app-nav-item.active {
  background: #323a4a;
  color: #fff;
  border-left: 3px solid #0d6efd;
  padding-left: 9px;
}
.app-sidebar-spacer { flex: 1; }
.app-sidebar-user {
  padding: 8px 12px;
  border-top: 1px solid #333b4d;
  color: #6b7a8e;
  font-size: 10px;
}
.app-main {
  flex: 1;
  background: #e8eaed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-topbar {
  background: #fff;
  border-bottom: 1px solid #dee2e6;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.app-page-title { font-weight: 700; font-size: 12px; color: #1a2332; }
.app-content { padding: 12px 14px; overflow: hidden; flex: 1; }
.app-stat-row { display: flex; gap: 8px; margin-bottom: 12px; }
.app-stat-card {
  flex: 1;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px 10px;
}
.app-stat-label { font-size: 9px; color: #6c757d; margin-bottom: 3px; }
.app-stat-value { font-size: 16px; font-weight: 800; color: #1a2332; line-height: 1; }
.app-stat-value.blue    { color: #0d6efd; }
.app-stat-value.danger  { color: #dc3545; }
.app-stat-value.warning { color: #fd7e14; }
.app-stat-value.success { color: #198754; }
.app-table-wrap {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.app-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.app-table th {
  background: #fff;
  border-bottom: 2px solid #dee2e6;
  padding: 5px 8px;
  text-align: left;
  color: #6c757d;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  white-space: nowrap;
}
.app-table td {
  padding: 5px 8px;
  border-bottom: 1px solid #f1f3f5;
  background: #fff;
  color: #1a2332;
  white-space: nowrap;
}
.app-table tr:last-child td { border-bottom: none; }
.app-section-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  margin: 8px 0 5px;
}
.app-badge {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.app-badge.high   { background: #dc3545; color: #fff; }
.app-badge.medium { background: #ffc107; color: #1a2332; }
.app-badge.low    { background: #198754; color: #fff; }
.contact-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  vertical-align: middle;
}
.contact-dot.green  { background: #198754; }
.contact-dot.yellow { background: #ffc107; }
.contact-dot.red    { background: #dc3545; }
.lob-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.app-kanban { display: flex; gap: 8px; height: 100%; overflow: hidden; }
.app-kanban-col {
  flex: 1;
  background: #f1f3f5;
  border-radius: 6px;
  padding: 7px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.app-kanban-header {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.app-kanban-count {
  background: rgba(0,0,0,0.1);
  border-radius: 99px;
  padding: 1px 5px;
  font-size: 8.5px;
}
.app-kanban-card {
  background: #fff;
  border-radius: 5px;
  padding: 7px 8px;
  margin-bottom: 5px;
  border-left: 3px solid #dee2e6;
}
.app-kanban-card.urgency-red    { border-left-color: #dc3545; }
.app-kanban-card.urgency-orange { border-left-color: #fd7e14; }
.app-kanban-card.urgency-yellow { border-left-color: #ffc107; }
.app-kanban-client { font-weight: 700; font-size: 10px; color: #1a2332; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-kanban-sub    { font-size: 9px; color: #6c757d; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-kanban-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.app-import-steps {
  display: flex;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
}
.app-import-step {
  flex: 1;
  padding: 7px 4px;
  text-align: center;
  font-size: 9px;
  color: #6c757d;
  border-right: 1px solid #dee2e6;
  font-weight: 500;
}
.app-import-step:last-child { border-right: none; }
.app-import-step.active { background: #0d6efd; color: #fff; font-weight: 700; }
.app-import-step.done   { background: #d1e7dd; color: #198754; font-weight: 600; }
.feature-list-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.feature-list-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.feature-list-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Responsive: Mobile App Mockup Fixes ────────────────── */

/* Tablet + mobile: hide the sidebar in feature-page mock UIs.
   This frees the full frame width for the main content area. */
@media (max-width: 991.98px) {
  .app-sidebar { display: none; }
}

@media (max-width: 767px) {
  /* Remove vertical offsets — they look broken when cards stack vertically */
  .app-window { transform: none !important; }

  /* Allow horizontal scrolling inside the mock frame so tables and
     kanban boards are not just clipped / crushed */
  .app-frame {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Lift the inner overflow clipping so content can exceed the frame width
     and trigger the frame's horizontal scroll */
  .app-main    { overflow: visible; min-width: 440px; }
  .app-content { overflow: visible; }
  .app-table-wrap { overflow: visible; }

  /* Kanban: show only first 2 columns (Upcoming + Contacted) on mobile.
     Columns 3 (Renewed) and 4 (Lapsed) are hidden — all 4 show on desktop. */
  .app-kanban-col:nth-child(n+3) { display: none; }

  /* Stat cards: wrap to 2×2 on very narrow frames */
  .app-stat-row  { flex-wrap: wrap; }
  .app-stat-card { flex: 0 0 calc(50% - 4px); }
}

/* ── Cookie Consent Bar ───────────────────────────────────── */
#rc-cookie-bar {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  z-index: 1080;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  padding: 0.85rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.rc-cookie-text {
  font-size: 0.875rem;
  color: #1a2332;
  line-height: 1.5;
}
.rc-cookie-text a {
  color: #1a2332;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rc-cookie-text a:hover { color: #000; }
.rc-cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.rc-cookie-btn {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.rc-cookie-btn:hover { opacity: 0.85; }
.rc-cookie-btn-accept {
  background: var(--amber);
  color: var(--navy);
}

