/* ==========================================================================
   Autosoft Shujaa — Notion-inspired Design System
   ========================================================================== */

/* ------- Reset & Base ------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light theme (default) */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f6f3;
  --bg-hover: #efefef;
  --bg-tertiary: #f1f1ef;
  --border-light: #e8e7e4;
  --border-medium: #d9d8d6;

  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #9b9b9b;
  --text-link: #0f6eaf;
  --text-link-hover: #0a5a8f;

  --accent-blue: #2383e2;
  --accent-blue-bg: #e8f0fe;
  --accent-green: #0f7b4e;
  --accent-green-bg: #e6f4ea;
  --accent-red: #d32f2f;
  --accent-orange: #e1622e;

  /* Sidebar (Notion dark sidebar) */
  --sidebar-bg: #fbfbfa;
  --sidebar-hover: #efefef;
  --sidebar-active: #e8e7e4;
  --sidebar-width: 240px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.08);

  --transition: 150ms ease;
}

/* ------- Dark mode ------- */
[data-theme="dark"] {
  --bg-primary: #191919;
  --bg-secondary: #202020;
  --bg-hover: #2a2a2a;
  --bg-tertiary: #252525;
  --border-light: #2e2e2e;
  --border-medium: #3a3a3a;

  --text-primary: #e0e0e0;
  --text-secondary: #999999;
  --text-tertiary: #666666;
  --text-link: #5baeff;
  --text-link-hover: #80c4ff;

  --accent-blue-bg: #1a2d4a;
  --accent-green-bg: #1a3a2a;

  --sidebar-bg: #191919;
  --sidebar-hover: #252525;
  --sidebar-active: #2e2e2e;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--text-link-hover); }

/* ------- Sidebar ------- */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border-light);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 100;
  transition: transform 200ms ease;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-sm) var(--space-md);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  user-select: none;
  text-decoration: none;
}
.sidebar-logo .logo-icon {
  background: url('../assets/logo-mark.svg') center / contain no-repeat;
  display: inline-block;
  font-size: 0;
  height: 32px;
  width: 32px;
}
.sidebar-logo img { flex: 0 0 auto; }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 7px var(--space-sm);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 460;
  transition: background var(--transition), color var(--transition);
}
.sidebar-nav a:hover {
  background: var(--sidebar-hover);
  color: var(--text-primary);
}
.sidebar-nav a.active {
  background: var(--sidebar-active);
  color: var(--text-primary);
  font-weight: 530;
}
.sidebar-nav a .nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.sidebar-divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-sm) 0;
}

.sidebar-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: var(--space-sm) var(--space-sm) 2px;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 7px var(--space-sm);
  border: none;
  background: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--font-sans);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.theme-toggle:hover {
  background: var(--sidebar-hover);
  color: var(--text-primary);
}

/* ------- Main Content ------- */
.main {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-lg) var(--space-2xl);
}

.page-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.page-title .page-icon {
  font-size: 28px;
}
.page-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 2px;
}

.page-content {
  max-width: 900px;
  padding: var(--space-2xl);
  width: 100%;
}

/* ------- Cards ------- */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-medium);
}
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Notion-style property rows */
.properties {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
}
.property {
  display: flex;
  padding: 4px 0;
  font-size: 14px;
}
.property-label {
  color: var(--text-tertiary);
  min-width: 140px;
  flex-shrink: 0;
}
.property-value {
  color: var(--text-primary);
}

/* ------- Hero Section ------- */
.hero {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}
.hero-icon {
  font-size: 56px;
  margin-bottom: var(--space-md);
}
.hero-logo { display: block; margin: 0 auto var(--space-md); }
.hero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}
.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 520;
  font-family: var(--font-sans);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover {
  background: var(--bg-hover);
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
}
.btn-primary {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
}
.btn-primary:hover {
  background: #1a73d2;
  color: #fff;
}

/* ------- Grid Layouts ------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ------- Product Card ------- */
.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-medium);
}
.product-card .product-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
  display: block;
}
.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.product-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.product-card .store-links {
  display: flex;
  gap: var(--space-sm);
}

/* ------- Legal / Policy Pages ------- */
.policy-content {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}
.policy-content h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.policy-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}
.policy-content h2:first-of-type {
  border-top: none;
  margin-top: var(--space-lg);
  padding-top: 0;
}
.policy-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.policy-content p {
  margin-bottom: var(--space-md);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
}
.policy-content ul, .policy-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}
.policy-content li {
  margin-bottom: var(--space-sm);
  font-size: 15px;
  line-height: 1.6;
}
.policy-content .last-updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}
.policy-content a {
  word-break: break-all;
}

/* ------- Contact Form ------- */
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 520;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-bg);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ------- Footer ------- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: var(--space-lg) var(--space-2xl);
  margin-top: auto;
}
.footer-content {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-brand {
  font-size: 13px;
  color: var(--text-tertiary);
}
.footer-links {
  display: flex;
  gap: var(--space-md);
}
.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* ------- Mobile Menu ------- */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: relative;
}
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 200ms ease;
}
.mobile-menu-btn span::before { top: -5px; }
.mobile-menu-btn span::after { top: 5px; }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 99;
}

/* ------- Emoji list bullets ------- */
.emoji-list {
  list-style: none;
  padding: 0;
}
.emoji-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 15px;
}
.emoji-list li .list-emoji {
  flex-shrink: 0;
  width: 24px;
}

/* ------- Stats Row ------- */
.stats-row {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.stat-card {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.stat-number {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-blue);
}
.stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ------- Callout Box ------- */
.callout {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--accent-blue-bg);
  margin-bottom: var(--space-md);
  font-size: 14px;
}
.callout .callout-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ------- SEO landing sections and editorial content ------- */
.section-block {
  margin-top: var(--space-2xl);
}
.section-block > h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}
.eyebrow {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cta-panel {
  align-items: center;
  background: var(--accent-blue-bg);
  border: 1px solid var(--accent-blue);
  border-radius: var(--radius-lg);
  display: flex;
  gap: var(--space-lg);
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding: var(--space-lg);
}
.cta-panel span { color: var(--text-secondary); font-size: 14px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}
.article-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: inherit;
  display: block;
  padding: var(--space-xl);
  text-decoration: none;
}
.article-card:hover { border-color: var(--accent-blue); box-shadow: var(--shadow-hover); }
.article-card h2 { font-size: 19px; line-height: 1.35; margin: 8px 0; }
.article-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.article-meta { color: var(--text-tertiary); font-size: 12px; }
.article-content {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 16px;
  line-height: 1.75;
  padding: var(--space-2xl);
}
.article-content h1 { font-size: 38px; line-height: 1.15; letter-spacing: -.03em; margin: 10px 0 16px; }
.article-content h2 { font-size: 25px; line-height: 1.3; margin: 36px 0 10px; }
.article-content h3 { font-size: 19px; margin: 24px 0 8px; }
.article-content p, .article-content ul, .article-content ol { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content li { margin-bottom: 8px; }
.article-content .lead { color: var(--text-secondary); font-size: 19px; }
.article-content a { text-decoration: underline; }
.article-note { background: var(--accent-blue-bg); border-left: 4px solid var(--accent-blue); padding: 16px 18px; margin: 24px 0; }
.breadcrumbs { color: var(--text-tertiary); font-size: 13px; margin-bottom: var(--space-md); }
.breadcrumbs a { color: var(--text-secondary); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.process-step { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: var(--space-lg); }
.process-step > span { color: var(--accent-blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.process-step h3 { font-size: 17px; margin: 10px 0 6px; }
.process-step p { color: var(--text-secondary); font-size: 14px; }
.faq-list { border-bottom: 1px solid var(--border-light); }
.faq-list details { background: var(--bg-primary); border: 1px solid var(--border-light); border-bottom: 0; padding: 0 var(--space-lg); }
.faq-list details:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.faq-list summary { cursor: pointer; font-weight: 600; padding: var(--space-md) 28px var(--space-md) 0; position: relative; }
.faq-list summary::after { content: '+'; color: var(--accent-blue); font-size: 22px; position: absolute; right: 0; top: 10px; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { color: var(--text-secondary); font-size: 14px; padding: 0 0 var(--space-md); }
.error-page { align-items: flex-start; display: flex; flex-direction: column; justify-content: center; margin: auto; max-width: 720px; min-height: 100vh; padding: var(--space-2xl); }
.error-page h1 { font-size: 42px; letter-spacing: -.03em; line-height: 1.15; margin: 14px 0; }
.error-page > p:not(.eyebrow) { color: var(--text-secondary); font-size: 18px; margin-bottom: var(--space-lg); }


/* ------- Responsive ------- */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay.open {
    display: block;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .main {
    margin-left: 0;
  }
  .page-header {
    padding: var(--space-lg) var(--space-md);
    padding-top: 56px;
  }
  .page-content {
    padding: var(--space-lg) var(--space-md);
    max-width: 100%;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: var(--space-xl) var(--space-md);
  }
  .hero h1 {
    font-size: 26px;
  }
  .policy-content {
    padding: var(--space-lg);
  }
  .stats-row {
    flex-direction: column;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .article-content { padding: var(--space-lg); }
  .article-content h1 { font-size: 30px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   2026 Brand Refresh — professional studio layout
   ========================================================================== */
:root {
  --brand-navy: #0f172a;
  --brand-navy-soft: #17233d;
  --brand-blue: #2563eb;
  --brand-blue-dark: #1d4ed8;
  --brand-teal: #0d9488;
  --brand-teal-light: #5eead4;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-hover: #eff6ff;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-link: #1d4ed8;
  --text-link-hover: #0f766e;
  --accent-blue: var(--brand-blue);
  --accent-blue-bg: #eff6ff;
  --accent-green: var(--brand-teal);
  --sidebar-width: 0px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, .08);
  --shadow-hover: 0 20px 48px rgba(15, 23, 42, .12);
}

[data-theme="dark"] {
  --bg-primary: #111827;
  --bg-secondary: #0b1220;
  --bg-tertiary: #172033;
  --bg-hover: #172b48;
  --border-light: #243047;
  --border-medium: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --text-link: #60a5fa;
  --text-link-hover: #5eead4;
  --accent-blue-bg: #172554;
  --sidebar-bg: #0f172a;
}

body { display: block; padding-top: 80px; }

.sidebar {
  align-items: center;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
  border: 0;
  border-bottom: 1px solid rgba(226,232,240,.9);
  bottom: auto;
  display: flex;
  flex-direction: row;
  height: 80px;
  inset: 0 0 auto 0;
  overflow: visible;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  width: 100%;
  z-index: 100;
}
[data-theme="dark"] .sidebar { background: rgba(15,23,42,.94); }

.sidebar-logo {
  flex: 0 0 auto;
  font-size: 17px;
  gap: 11px;
  margin-right: auto;
  padding: 0;
}
.sidebar-logo img, .sidebar-logo .logo-icon { height: 40px; width: 40px; }
.sidebar-nav { flex: 0 0 auto; flex-direction: row; gap: 4px; }
.sidebar-nav a { border-radius: 999px; font-size: 14px; font-weight: 600; padding: 10px 14px; }
.sidebar-nav a .nav-icon { display: none; }
.sidebar-nav a.active { background: #eff6ff; color: var(--brand-blue-dark); }
[data-theme="dark"] .sidebar-nav a.active { background: #172554; color: #93c5fd; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  font: 600 14px/1.4 var(--font-sans);
  gap: 7px;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle:focus-visible { background: var(--bg-hover); color: var(--text-primary); outline: none; }
.nav-dropdown-toggle.active { background: #eff6ff; color: var(--brand-blue-dark); }
.nav-dropdown-chevron { font-size: 14px; line-height: 1; transition: transform 160ms ease; }
.nav-dropdown-menu {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
  display: grid;
  gap: 3px;
  left: 50%;
  min-width: 330px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 12px);
  transform: translate(-50%, 0);
  z-index: 200;
}
.nav-dropdown-menu[hidden] { display: none; }
.nav-dropdown-menu::before { content: ''; height: 14px; inset: -14px 0 auto; position: absolute; }
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu a { align-items: center; border-radius: 13px; display: flex; justify-content: flex-start; padding: 12px 14px; }
.nav-dropdown-menu a:hover { background: #f8fafc; transform: none; }
.nav-dropdown-menu a.active { background: #eff6ff; }
.nav-dropdown-menu a span { color: var(--brand-navy); font-size: 14px; font-weight: 750; }
.nav-dropdown-menu a small { display: none; }
.nav-dropdown-menu .nav-service-featured { background: linear-gradient(135deg,#eff6ff,#ecfeff); border: 1px solid #bae6fd; margin-bottom: 3px; }
.nav-dropdown-menu .nav-service-featured span { color: var(--brand-blue-dark); }
.nav-dropdown-menu .nav-services-all { border-top: 1px solid var(--border-light); border-radius: 0 0 12px 12px; margin-top: 4px; padding-top: 14px; }
.nav-dropdown-menu .nav-services-all span { color: var(--brand-blue); }
.sidebar > .sidebar-divider,
.sidebar > .sidebar-section-title,
.sidebar > .sidebar-nav:nth-of-type(2) { display: none; }
.sidebar-footer { border: 0; margin: 0 0 0 8px; padding: 0; }
.theme-toggle { border: 1px solid var(--border-light); border-radius: 999px; font-size: 0; height: 40px; justify-content: center; padding: 0; width: 40px; }
.theme-toggle span { font-size: 17px; }

.main { margin-left: 0; min-height: calc(100vh - 80px); }
.page-header { background: var(--bg-primary); padding: 30px max(24px, calc((100vw - 1120px) / 2)); }
.page-home .page-header { display: none; }
.page-home .page-content { padding-top: 48px; }
.page-title { font-size: 24px; }
.page-title .page-icon { display: none; }
.page-content { margin: 0 auto; max-width: 1180px; padding: 56px 30px 80px; }

.hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #132b50 62%, #0f4c52 100%);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(15,23,42,.2);
  color: #fff;
  margin-bottom: 48px;
  overflow: hidden;
  padding: 84px 56px;
  position: relative;
}
.hero::before, .hero::after { border-radius: 50%; content: ''; position: absolute; pointer-events: none; }
.hero::before { background: rgba(37,99,235,.22); height: 420px; right: -130px; top: -240px; width: 420px; }
.hero::after { background: rgba(13,148,136,.16); bottom: -230px; height: 380px; right: 40px; width: 380px; }
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(42px, 6vw, 68px); line-height: 1.04; margin-left: auto; margin-right: auto; max-width: 850px; }
.hero p { color: #dbeafe; font-size: 19px; max-width: 720px; }
.hero .eyebrow { color: var(--brand-teal-light); }
.hero-logo { filter: drop-shadow(0 14px 20px rgba(0,0,0,.22)); height: 82px; width: 82px; }
.hero .btn { border-color: rgba(255,255,255,.24); }
.hero .btn:not(.btn-primary) { background: rgba(255,255,255,.08); color: #fff; }
.hero .btn:not(.btn-primary):hover { background: rgba(255,255,255,.16); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.capability-strip { align-items: center; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin: 34px auto 0; max-width: 820px; padding-top: 24px; }
.capability-strip span { color: #dbeafe; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-kicker { color: var(--brand-blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; margin-bottom: 14px; text-transform: uppercase; }
.home-final-cta { margin-top: 70px; }

.btn { border-radius: 999px; font-weight: 700; padding: 11px 20px; }
.btn-primary { background: linear-gradient(135deg, var(--brand-blue), #2879ef); box-shadow: 0 10px 22px rgba(37,99,235,.24); }
.btn-primary:hover { background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue)); transform: translateY(-1px); }

.card, .product-card, .article-card, .policy-content, .article-content {
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}
.card, .product-card, .article-card { padding: 26px; }
.card:hover, .product-card:hover, .article-card:hover { border-color: #bfdbfe; transform: translateY(-3px); }
.card, .product-card, .article-card, .btn { transition: all 180ms ease; }
.card-title { color: var(--brand-navy); font-size: 17px; }
[data-theme="dark"] .card-title { color: #f8fafc; }
.grid-2, .grid-3, .blog-grid { gap: 20px; }
.section-block { margin-top: 72px; }
.section-block > h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; max-width: 760px; }
.eyebrow { color: var(--brand-teal); }

.stats-row { gap: 20px; }
.stat-card { border: 0; border-radius: 18px; box-shadow: var(--shadow-sm); padding: 26px; }
.stat-number { color: var(--brand-blue); }
.process-step { border: 0; box-shadow: var(--shadow-sm); padding: 26px; }
.process-step > span { color: var(--brand-teal); }
.cta-panel { background: linear-gradient(135deg,#eff6ff,#ecfeff); border: 1px solid #bae6fd; border-radius: 22px; padding: 28px 32px; }
[data-theme="dark"] .cta-panel { background: linear-gradient(135deg,#172554,#12333b); border-color: #155e75; }
.faq-list details { border-color: var(--border-light); padding-left: 22px; padding-right: 22px; }
.faq-list summary { font-size: 16px; padding-bottom: 19px; padding-top: 19px; }

.policy-content, .article-content { border: 0; border-radius: 24px; box-shadow: var(--shadow-md); padding: clamp(28px, 6vw, 64px); }
.article-content h1 { font-size: clamp(36px, 6vw, 56px); }
.article-card h2 { color: var(--text-primary); }
.article-card h3 { color: var(--text-primary); font-size: 20px; line-height: 1.3; margin: 12px 0 10px; }
.article-meta { color: var(--brand-teal); font-weight: 700; }
.section-heading-row { align-items: end; display: flex; gap: 24px; justify-content: space-between; margin-bottom: 22px; }
.section-heading-row h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 0; }
.text-link { color: var(--brand-blue-dark); flex: 0 0 auto; font-weight: 700; }
.blog-preview-grid { grid-template-columns: repeat(3, 1fr); }
.callout { border: 1px solid #bfdbfe; border-radius: 14px; padding: 18px; }
.product-launch-panel { background: linear-gradient(135deg, var(--brand-navy), #17365f); border-radius: 26px; color: #dbeafe; padding: clamp(32px, 6vw, 64px); }
.product-launch-panel h2 { color: #fff; font-size: clamp(32px, 5vw, 48px); margin: 8px 0 16px; max-width: 700px; }
.product-launch-panel > p:not(.eyebrow) { font-size: 17px; line-height: 1.75; max-width: 760px; }
.launch-platforms { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.launch-platforms span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; font-size: 14px; font-weight: 700; padding: 9px 16px; }
.product-launch-panel .launch-note { color: #93c5fd; font-size: 14px; }
.portfolio-intro { margin-bottom: 34px; max-width: 820px; }
.portfolio-intro h2 { font-size: clamp(34px, 5vw, 54px); line-height: 1.08; margin: 8px 0 16px; }
.portfolio-intro > p:not(.eyebrow) { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
.portfolio-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portfolio-card { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 24px; box-shadow: var(--shadow-md); overflow: hidden; }
.portfolio-card-wide { grid-column: 1 / -1; }
.portfolio-visual { background: var(--brand-navy); display: block; overflow: hidden; position: relative; }
.portfolio-visual::after { background: linear-gradient(180deg, transparent 48%, rgba(15,23,42,.7)); content: ''; inset: 0; pointer-events: none; position: absolute; }
.portfolio-visual img { aspect-ratio: 1.91 / 1; display: block; height: auto; object-fit: cover; transition: transform 300ms ease; width: 100%; }
.portfolio-card:hover .portfolio-visual img { transform: scale(1.025); }
.portfolio-open { bottom: 16px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .02em; position: absolute; right: 18px; z-index: 1; }
.portfolio-body { padding: 30px; }
.portfolio-body h2 { font-size: 30px; margin: 14px 0 10px; }
.portfolio-body > p { color: var(--text-secondary); line-height: 1.7; }
.portfolio-body .btn { margin-top: 20px; }
.portfolio-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio-meta span { background: var(--accent-blue-bg); border-radius: 999px; color: var(--brand-blue-dark); font-size: 12px; font-weight: 800; padding: 7px 11px; }
[data-theme="dark"] .portfolio-meta span { color: #93c5fd; }
.portfolio-note { font-size: 13px; margin-top: 12px; }
.featured-work-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.featured-work-card { border-radius: 22px; color: #fff; min-height: 270px; overflow: hidden; padding: 34px; position: relative; transition: transform 180ms ease, box-shadow 180ms ease; }
.featured-work-card::after { border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ''; height: 220px; position: absolute; right: -70px; top: -80px; width: 220px; }
.featured-work-card:hover { box-shadow: var(--shadow-hover); color: #fff; transform: translateY(-4px); }
.featured-work-game { background: linear-gradient(145deg, #d946ef, #7c3aed 60%, #312e81); }
.featured-work-fintech { background: linear-gradient(145deg, #0f172a, #12384c 58%, #0f766e); }
.featured-work-habit { background: linear-gradient(145deg, #173c2d, #2f654e 58%, #6f8f6b); }
.featured-work-luku { background: linear-gradient(145deg, #4a2032, #8d3a5a 58%, #c94e7b); }
.featured-work-atpesa { background: linear-gradient(145deg, #1e160f, #6b3b23 55%, #df6836); }
.featured-work-partyxs { background: linear-gradient(145deg, #160b22, #731f69 55%, #ff5b64); }
.featured-work-card .work-type { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.featured-work-card h3 { color: #fff; font-size: 34px; margin: 38px 0 10px; }
.featured-work-card p { color: rgba(255,255,255,.82); line-height: 1.65; max-width: 470px; }
.featured-work-card strong { bottom: 30px; color: #fff; position: absolute; }
.footer-brand a { color: #cbd5e1; }
.footer-brand a:hover { color: var(--brand-teal-light); }

.site-footer { background: var(--brand-navy); border: 0; color: #cbd5e1; padding: 34px max(24px, calc((100vw - 1120px) / 2)); }
.footer-content { max-width: none; }
.footer-brand, .footer-links a { color: #94a3b8; }
.footer-links a:hover { color: var(--brand-teal-light); }

@media (max-width: 900px) {
  body { padding-top: 0; }
  .sidebar { align-items: stretch; bottom: 0; flex-direction: column; height: auto; min-height: 100vh; padding: 22px; top: 0; width: min(320px, 88vw); }
  .sidebar-logo { margin: 0 0 22px; }
  .sidebar-nav { flex-direction: column; }
  .sidebar-nav a { border-radius: 10px; padding: 12px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { border-radius: 10px; font-size: 14px; justify-content: space-between; padding: 12px; width: 100%; }
  .nav-dropdown-menu {
    border: 0;
    border-left: 2px solid #dbeafe;
    border-radius: 0;
    box-shadow: none;
    gap: 2px;
    left: auto;
    margin: 3px 0 4px 12px;
    min-width: 0;
    overflow: hidden;
    padding: 7px 0 7px 8px;
    position: static;
    transform: none;
    width: calc(100% - 12px);
  }
  .nav-dropdown-menu a { border-radius: 9px; padding: 10px 11px; }
  .nav-dropdown-menu a small { display: none; }
  .nav-dropdown-menu .nav-service-featured { margin: 0; }
  .sidebar-footer { margin: auto 0 0; }
  .theme-toggle { font-size: 13px; padding: 8px 14px; width: auto; }
  .mobile-menu-btn { display: flex; }
  .page-header { padding-top: 60px; }
  .hero { padding: 60px 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .portfolio-grid, .featured-work-grid { grid-template-columns: 1fr; }
  .portfolio-card-wide { grid-column: auto; }
}

@media (max-width: 600px) {
  .page-content { padding: 34px 18px 60px; }
  .hero { border-radius: 20px; padding: 48px 18px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 17px; }
  .process-grid, .grid-2, .grid-3, .blog-grid { grid-template-columns: 1fr; }
  .section-block { margin-top: 54px; }
  .stats-row { display: grid; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 10px; }
}

/* ------- Website Care & Digital Operations ------- */
.promise-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.promise-card { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 20px; box-shadow: var(--shadow-sm); padding: 26px; }
.promise-card h3 { color: var(--brand-navy); font-size: 19px; margin: 12px 0 8px; }
.promise-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
[data-theme="dark"] .promise-card h3 { color: #f8fafc; }
.promise-number { align-items: center; background: var(--accent-blue-bg); border-radius: 12px; color: var(--brand-blue); display: inline-flex; font-size: 12px; font-weight: 800; height: 36px; justify-content: center; width: 36px; }
.pricing-grid { align-items: stretch; display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-card { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 24px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; padding: 30px; position: relative; }
.pricing-card-featured { border: 2px solid var(--brand-blue); }
.pricing-badge { background: var(--brand-blue); border-radius: 999px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .07em; padding: 7px 12px; position: absolute; right: 22px; text-transform: uppercase; top: 22px; }
.pricing-name { color: var(--brand-teal); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pricing-price { color: var(--brand-navy); font-size: clamp(34px, 5vw, 46px); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; margin: 14px 0 6px; }
[data-theme="dark"] .pricing-price { color: #f8fafc; }
.pricing-price small { color: var(--text-secondary); font-size: 14px; font-weight: 600; letter-spacing: 0; }
.pricing-summary { color: var(--text-secondary); margin-bottom: 22px; }
.pricing-card ul { border-top: 1px solid var(--border-light); list-style: none; margin: 0 0 24px; padding: 20px 0 0; }
.pricing-card li { color: var(--text-secondary); font-size: 14px; line-height: 1.5; margin-bottom: 10px; padding-left: 24px; position: relative; }
.pricing-card li::before { color: var(--brand-teal); content: '\2713'; font-weight: 900; left: 0; position: absolute; }
.pricing-card .btn { align-self: flex-start; margin-top: auto; }
.scope-note { background: var(--bg-primary); border-left: 4px solid var(--brand-teal); border-radius: 0 16px 16px 0; box-shadow: var(--shadow-sm); color: var(--text-secondary); margin-top: 24px; padding: 22px 24px; }
.scope-note strong { color: var(--text-primary); }
.service-strip { align-items: center; background: linear-gradient(135deg, #ecfeff, #eff6ff); border: 1px solid #bae6fd; border-radius: 24px; display: flex; gap: 24px; justify-content: space-between; margin-top: 36px; padding: 30px; }
[data-theme="dark"] .service-strip { background: linear-gradient(135deg, #12333b, #172554); border-color: #155e75; }
.service-strip h3 { font-size: 24px; margin-bottom: 6px; }
.service-strip p { color: var(--text-secondary); max-width: 720px; }

/* ------- Individual service pages ------- */
.service-catalog-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-catalog-card { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-height: 300px; padding: 30px; transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.service-catalog-card:hover { border-color: #93c5fd; box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-catalog-card h3 { color: var(--brand-navy); font-size: 25px; line-height: 1.2; margin: 15px 0 12px; }
.service-catalog-card p { color: var(--text-secondary); line-height: 1.7; }
.service-catalog-card > strong { color: var(--brand-blue); font-size: 14px; margin-top: auto; padding-top: 22px; }
.service-catalog-label { color: var(--brand-teal); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.service-catalog-price { border-top: 1px solid var(--border-light); color: var(--text-primary); font-size: 14px; font-weight: 750; margin-top: 12px; padding-top: 16px; }
.service-catalog-featured { background: linear-gradient(145deg,#eff6ff,#ecfeff); border-color: #93c5fd; grid-column: 1 / -1; min-height: 0; }
.service-catalog-featured ul { color: var(--text-secondary); display: grid; gap: 8px 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; margin: 14px 0 0; padding: 0; }
.service-catalog-featured li { padding-left: 20px; position: relative; }
.service-catalog-featured li::before { color: var(--brand-teal); content: '\2713'; font-weight: 900; left: 0; position: absolute; }
.service-hero h1 { max-width: 900px; }
.service-intro { scroll-margin-top: 110px; }
.service-detail-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-detail-grid .card h3 { color: var(--brand-navy); font-size: 21px; margin: 16px 0 9px; }
.service-detail-grid .card p { color: var(--text-secondary); line-height: 1.7; margin: 0; }
.service-card-icon { align-items: center; background: var(--accent-blue-bg); border-radius: 12px; color: var(--brand-blue); display: inline-flex; font-size: 12px; font-weight: 850; height: 38px; justify-content: center; width: 38px; }
.service-price-panel { align-items: center; background: linear-gradient(135deg,#f8fafc,#eff6ff); border: 1px solid #dbeafe; border-radius: 26px; display: flex; gap: 34px; justify-content: space-between; padding: clamp(28px,5vw,50px); }
.service-price-panel > div { max-width: 760px; }
.service-price-panel h2 { color: var(--brand-navy); font-size: clamp(28px,4vw,40px); margin: 6px 0 14px; }
.service-price-panel p:last-child { color: var(--text-secondary); line-height: 1.75; margin-bottom: 0; }
.service-price-panel .btn { flex: 0 0 auto; }
.related-services { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.related-services a { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 8px; padding: 22px; transition: transform 160ms ease, border-color 160ms ease; }
.related-services a:hover { border-color: #93c5fd; transform: translateY(-2px); }
.related-services strong { color: var(--brand-navy); font-size: 16px; }
.related-services span { color: var(--text-secondary); font-size: 13px; line-height: 1.55; }
.article-content .source-note { border-top: 1px solid var(--border-light); color: var(--text-tertiary); font-size: 13px; margin-top: 34px; padding-top: 20px; }
.article-content .source-note a { color: var(--text-secondary); }
.article-service-cta { background: linear-gradient(135deg, #eff6ff, #ecfeff); border: 1px solid #bae6fd; border-radius: 18px; margin-top: 32px; padding: 24px; }
[data-theme="dark"] .article-service-cta { background: linear-gradient(135deg, #172554, #12333b); border-color: #155e75; }
.article-service-cta h2 { font-size: 24px; margin: 0 0 8px; }
.article-service-cta p { margin-bottom: 14px; }
.article-service-cta .btn { text-decoration: none; }
.related-links { border-top: 1px solid var(--border-light); margin-top: 34px; padding-top: 24px; }
.related-links h2 { font-size: 22px; margin: 0 0 12px; }
.related-links ul { margin-bottom: 0; }

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .pricing-grid, .promise-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 26px 22px; }
  .service-strip { align-items: flex-start; flex-direction: column; }
  .service-catalog-grid, .service-detail-grid, .related-services { grid-template-columns: 1fr; }
  .service-catalog-featured { grid-column: auto; }
  .service-catalog-featured ul { grid-template-columns: 1fr; }
  .service-price-panel { align-items: flex-start; flex-direction: column; }
}

/* ------- Primary website-care positioning ------- */
.primary-offer { margin-top: 56px; }
.plan-ladder { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 22px; }
.plan-card { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: 18px; box-shadow: var(--shadow-sm); color: var(--text-primary); display: flex; flex-direction: column; min-height: 150px; padding: 22px; }
.plan-card:hover { border-color: #93c5fd; box-shadow: var(--shadow-hover); color: var(--text-primary); transform: translateY(-3px); }
.plan-card span { color: var(--brand-teal); font-size: 11px; font-weight: 800; letter-spacing: .07em; line-height: 1.4; min-height: 32px; text-transform: uppercase; }
.plan-card strong { color: var(--brand-navy); font-size: 25px; letter-spacing: -.03em; line-height: 1.1; margin-top: auto; }
[data-theme="dark"] .plan-card strong { color: #f8fafc; }
.plan-card small { color: var(--text-secondary); font-size: 12px; margin-top: 5px; }
.plan-card-featured { background: linear-gradient(145deg, var(--brand-navy), #17365f); border-color: var(--brand-blue); }
.plan-card-featured span { color: var(--brand-teal-light); }
.plan-card-featured strong { color: #fff; }
.plan-card-featured small { color: #cbd5e1; }

@media (max-width: 1000px) {
  .plan-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .plan-ladder { grid-template-columns: 1fr; }
  .plan-card { min-height: 130px; }
}
