/* ==========================================
   moneymood – Main Stylesheet
   ========================================== */

/* Typography – Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Custom Properties */
:root {
  --color-navy: #0d2137;
  --color-navy-mid: #1a3a5c;
  --color-teal: #00d4aa;
  --color-teal-dark: #00b896;
  --color-blue: #2563eb;
  --color-sky: #ecfdf5;
  --color-bg: #f8fafc;
  --color-white: #ffffff;
  --color-text: #1a2e4a;
  --color-text-mid: #4a5e7a;
  --color-text-light: #7a8fa6;
  --color-border: #d8dfe9;
  --color-border-light: #eaeff5;
  --color-success: #10b981;
  --color-error: #ef4444;

  --color-info-bg: #f0f9ff;
  --color-info-border: #bae6fd;
  --color-info-text: #0369a1;
  --color-info-heading: #0c4a6e;
  --color-warn-bg: #fffbeb;
  --color-warn-border: #fde68a;
  --color-warn-text: #92400e;
  --color-warn-heading: #78350f;
  --color-success-bg: #f0fdf4;
  --color-success-border: #bbf7d0;
  --color-success-text: #166534;
  --color-success-heading: #14532d;
  --color-danger-bg: #fef2f2;
  --color-danger-border: #fca5a5;
  --color-danger-text: #dc2626;
  --color-positive-bg: #e6faf8;
  --color-negative-bg: #fef2f2;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.04);

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;

  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.3; }
h4 { font-size: 1.1rem; line-height: 1.35; }
h5 { font-size: 0.95rem; }
p { color: var(--color-text-mid); line-height: 1.75; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }
.section-lg  { padding: 120px 0; }
.section-alt { background: var(--color-bg); }

/* ==========================================
   Navigation
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

/* Make container fill the nav so nav-inner height:100% works correctly */
.nav .container {
  height: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-mid);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-navy);
  background: var(--color-bg);
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-mid);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-link:hover {
  color: var(--color-navy);
  background: var(--color-bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-ghost {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-mid);
  transition: color var(--transition), background var(--transition);
}
.btn-ghost:hover { color: var(--color-navy); background: var(--color-bg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a:active {
  background: var(--color-bg);
  transform: scale(0.98);
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-mid);
}
.mobile-menu a:hover { background: var(--color-bg); color: var(--color-navy); }
.mobile-divider { height: 1px; background: var(--color-border-light); margin: 8px 0; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 4px; }
.mobile-menu .btn-primary { color: var(--color-white); }
.mobile-menu .btn-outline { color: var(--color-navy); border-color: var(--color-border); }

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.25);
}
.btn-primary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 212, 170, 0.2);
}
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(13, 33, 55, 0.2);
}
.btn-navy:hover {
  background: var(--color-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 33, 55, 0.35);
}
.btn-navy:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 4px rgba(13, 33, 55, 0.2);
}
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-navy); background: var(--color-bg); }
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn:disabled, .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-lg  { padding: 16px 36px; font-size: 1rem; font-weight: 700; border-radius: var(--radius-md); }
.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ==========================================
   Hero
   ========================================== */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(155deg, #edf5ff 0%, #f7f9fc 55%, #e6faf8 100%);
}
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.hero-trust-sep { margin: 0 4px; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-visual { position: relative; }

/* ==========================================
   Page Headers
   ========================================== */
.page-header {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(155deg, #edf5ff 0%, #f7f9fc 100%);
  text-align: center;
}
.page-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ==========================================
   Cards
   ========================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card:active { transform: translateY(-1px); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.card-icon-teal   { background: rgba(0, 212, 170, 0.12); }
.card-icon-blue   { background: rgba(37, 99, 235, 0.08); }
.card-icon-navy   { background: rgba(13, 33, 55, 0.07); }
.card-icon-green  { background: rgba(16, 185, 129, 0.1); }
.card-icon-purple { background: rgba(108, 67, 189, 0.1); }
.card-icon-orange { background: rgba(255, 152, 0, 0.1); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.9rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ==========================================
   Trust / CDR
   ========================================== */
.trust-banner {
  background: var(--color-navy);
  padding: 64px 0;
}
.trust-banner h2 { color: white; margin-bottom: 12px; }
.trust-banner .lead { color: rgba(255,255,255,0.72); max-width: 520px; }
.trust-banner.text-center .lead { margin: 0 auto; }

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.trust-item { text-align: center; }
.trust-item-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}
.trust-item h4 { color: white; font-size: 1rem; margin-bottom: 8px; }
.trust-item p { font-size: 0.85rem; color: rgba(255,255,255,0.62); }

.cdr-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  margin-top: 24px;
}
.cdr-inline span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.cdr-inline strong { color: white; font-size: 0.88rem; }

/* ==========================================
   Steps
   ========================================== */
.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.35);
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.875rem; }

/* ==========================================
   Split Sections
   ========================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
@supports (grid-template-columns: 1fr) {
  .split-section.reverse { direction: ltr; }
  .split-section.reverse > *:first-child { order: 2; }
  .split-section.reverse > *:last-child { order: 1; }
}
.split-content h2 { margin-bottom: 18px; }
.split-content p { margin-bottom: 14px; }

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-mid);
}
.feature-list-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.14);
  color: var(--color-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  font-weight: 800;
}

/* ==========================================
   Visual Mockup Elements
   ========================================== */
.mockup-wrapper {
  background: linear-gradient(145deg, #e8f0fe, #e6faf8);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.mockup-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  margin-bottom: 12px;
}
.mockup-card:last-child { margin-bottom: 0; }
.mockup-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.mockup-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
}
.mockup-change { font-size: 0.8rem; color: var(--color-teal); font-weight: 600; margin-top: 4px; }
.mockup-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--color-border-light);
  margin-top: 14px;
  overflow: hidden;
}
.mockup-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.875rem;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-row-label { color: var(--color-text-mid); }
.mockup-row-value { font-weight: 600; color: var(--color-navy); }
.mockup-row-value.positive { color: var(--color-teal); }
.mockup-row-value.negative { color: var(--color-error); }

/* ==========================================
   Stats
   ========================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat { text-align: center; }
.stat-value {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-value .accent { color: var(--color-teal); }
.stat-label { font-size: 0.9rem; color: var(--color-text-mid); }

/* ==========================================
   Infrastructure & Partnerships
   ========================================== */
.infra-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.infra-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 40px 36px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.infra-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.infra-card-primary {
  border-color: rgba(0, 212, 170, 0.25);
  background: linear-gradient(160deg, #f0fdfb 0%, var(--color-white) 60%);
}
.infra-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.infra-icon-cdr {
  background: rgba(0, 212, 170, 0.1);
  color: var(--color-teal-dark);
}
.infra-icon-services {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
}
.infra-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.infra-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.infra-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.infra-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}
.infra-point-check {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.1);
  color: var(--color-teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.infra-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.infra-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}
.infra-badge svg { color: var(--color-teal-dark); flex-shrink: 0; }

.infra-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.infra-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.infra-service:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}
.infra-service-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-blue);
  display: flex; align-items: center; justify-content: center;
}
.infra-services-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .infra-split { grid-template-columns: 1fr; }
  .infra-card { padding: 28px 22px; }
  .infra-services-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Organisation Callout
   ========================================== */
.org-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 56px;
  background: linear-gradient(135deg, #f0fdfb 0%, #edf5ff 100%);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 20px;
}
.org-callout-content { max-width: 640px; }
.org-callout-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.org-callout-content p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
}
.org-callout-action { flex-shrink: 0; }
@media (max-width: 768px) {
  .org-callout {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    gap: 24px;
  }
}
[data-theme="dark"] .org-callout {
  background: linear-gradient(135deg, rgba(0,212,170,0.04) 0%, rgba(37,99,235,0.04) 100%);
  border-color: rgba(0,212,170,0.12);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a4a7a 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.72); max-width: 480px; margin: 16px auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================
   Forms
   ========================================== */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.12);
}
.form-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--color-bg);
}
.form-input::placeholder { color: var(--color-text-light); }
.form-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8fa6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.form-hint { font-size: 0.8rem; color: var(--color-text-light); margin-top: 6px; }
.form-error { font-size: 0.8rem; color: var(--color-error); margin-top: 6px; display: none; }
.form-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0;
  color: var(--color-text-light);
  font-size: 0.85rem;
}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-mid);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-teal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #edf5ff 0%, #f7f9fc 100%);
  padding: 24px;
  padding-top: calc(var(--nav-height) + 32px);
}
.auth-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
}
.auth-card h1 { font-size: 1.8rem; margin-bottom: 8px; }
.auth-card > .auth-sub { color: var(--color-text-mid); margin-bottom: 32px; font-size: 0.925rem; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 0.875rem; color: var(--color-text-mid); }
.auth-footer a { color: var(--color-teal-dark); font-weight: 600; }
.auth-footer a:hover { color: var(--color-teal); }
.auth-trust { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-border-light); }
.auth-trust-items { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.auth-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--color-text-light);
}

/* Feedback messages */
.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: none;
}
.form-msg.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.form-msg.error {
  background: rgba(239, 68, 68, 0.08);
  color: var(--color-danger-text);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: linear-gradient(180deg, #0e2338 0%, #091726 100%);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand h3 { color: white; font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 20px; }
.footer-cdr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
}
.footer-col h4 {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ==========================================
   Accordion
   ========================================== */
.accordion { border: 1px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--color-border-light); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  background: var(--color-white);
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--color-bg); }
.accordion-trigger:focus-visible { outline: 2px solid var(--color-teal); outline-offset: -2px; }
.accordion-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 400; color: var(--color-text-mid);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--color-teal); color: white; transform: rotate(45deg); }
.accordion-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.accordion-item.open .accordion-body { max-height: 400px; padding: 0 24px 20px; }
.accordion-body p { font-size: 0.9rem; }

/* ==========================================
   Info items (contact page)
   ========================================== */
.info-block { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 170, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-item-text h4 { font-size: 0.9rem; margin-bottom: 4px; }
.info-item-text p { font-size: 0.875rem; }

/* ==========================================
   Utility
   ========================================== */
.text-center { text-align: center; }
.text-teal   { color: var(--color-teal); }
.text-white  { color: white; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-teal-dark);
  margin-bottom: 12px;
}
.section-heading { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--color-text-mid); max-width: 560px; }
.section-sub.centered { margin: 0 auto; }

.highlight { color: var(--color-teal); }
.link { color: var(--color-teal-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.link:hover { color: var(--color-teal); }
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; background: rgba(0, 212, 170, 0.1); color: var(--color-teal-dark); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--color-teal);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* Focus visible styles for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

/* Logos strip */
.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.logos-strip-item {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.025em;
}

/* CDR explainer callout box */
.cdr-explainer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cdr-explainer-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.cdr-explainer-body h5 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.cdr-explainer-body p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Animate on scroll */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* Reduced motion – respect user preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================
   Dark Theme
   ========================================== */
[data-theme="dark"] {
  --color-navy: #c8d6e5;
  --color-navy-mid: #a4b4c8;
  --color-bg: #131a24;
  --color-white: #1a2332;
  --color-text: #d4dce8;
  --color-text-mid: #94a3b8;
  --color-text-light: #6b7f96;
  --color-border: #2a3a4e;
  --color-border-light: #1f2e3f;
  --color-sky: #0d2a1f;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.2);

  --color-info-bg: rgba(37, 99, 235, 0.1);
  --color-info-border: rgba(37, 99, 235, 0.25);
  --color-info-text: #93c5fd;
  --color-info-heading: #bfdbfe;
  --color-warn-bg: rgba(245, 158, 11, 0.1);
  --color-warn-border: rgba(245, 158, 11, 0.25);
  --color-warn-text: #fcd34d;
  --color-warn-heading: #fde68a;
  --color-success-bg: rgba(16, 185, 129, 0.1);
  --color-success-border: rgba(16, 185, 129, 0.25);
  --color-success-text: #6ee7b7;
  --color-success-heading: #a7f3d0;
  --color-danger-bg: rgba(239, 68, 68, 0.1);
  --color-danger-border: rgba(239, 68, 68, 0.25);
  --color-danger-text: #f87171;
  --color-positive-bg: rgba(16, 185, 129, 0.1);
  --color-negative-bg: rgba(239, 68, 68, 0.1);
}

[data-theme="dark"] body {
  background: var(--color-bg);
}

[data-theme="dark"] .hero,
[data-theme="dark"] .page-header,
[data-theme="dark"] .auth-page {
  background: linear-gradient(155deg, #0f1a28 0%, #131a24 100%);
}

[data-theme="dark"] .mockup-wrapper {
  background: linear-gradient(145deg, #152030, #0d2a1f);
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #0a1018 0%, #0f1a28 100%);
}
[data-theme="dark"] .infra-card {
  background: var(--color-white);
  border-color: var(--color-border);
}
[data-theme="dark"] .infra-card-primary {
  background: linear-gradient(160deg, rgba(0,212,170,0.04) 0%, var(--color-white) 60%);
  border-color: rgba(0,212,170,0.15);
}
[data-theme="dark"] .infra-badge {
  background: var(--color-bg);
  border-color: var(--color-border);
}
[data-theme="dark"] .infra-service {
  background: var(--color-bg);
  border-color: var(--color-border);
}

[data-theme="dark"] .form-msg.success {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .form-msg.error {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

[data-theme="dark"] .card-icon-teal   { background: rgba(0, 212, 170, 0.15); }
[data-theme="dark"] .card-icon-blue   { background: rgba(37, 99, 235, 0.12); }
[data-theme="dark"] .card-icon-navy   { background: rgba(200, 214, 229, 0.08); }
[data-theme="dark"] .card-icon-green  { background: rgba(16, 185, 129, 0.15); }
[data-theme="dark"] .card-icon-purple { background: rgba(108, 67, 189, 0.15); }
[data-theme="dark"] .card-icon-orange { background: rgba(255, 152, 0, 0.15); }

[data-theme="dark"] .section-alt {
  background: var(--color-bg);
}

[data-theme="dark"] .feature-list-check {
  background: rgba(0, 212, 170, 0.2);
}

[data-theme="dark"] .hero-badge {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.3);
}

[data-theme="dark"] .page-header .badge {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.3);
}

[data-theme="dark"] .tag {
  background: rgba(0, 212, 170, 0.15);
  color: var(--color-teal);
}

[data-theme="dark"] .info-item-icon {
  background: rgba(0, 212, 170, 0.15);
}

[data-theme="dark"] .nav {
  background: #1a2332;
  border-bottom-color: var(--color-border);
}

[data-theme="dark"] .mobile-menu {
  background: #1a2332;
  border-bottom-color: var(--color-border);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-text);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
}

[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

[data-theme="dark"] .accordion-trigger {
  background: var(--color-white);
  color: var(--color-navy);
}
[data-theme="dark"] .accordion-trigger:hover {
  background: var(--color-bg);
}
[data-theme="dark"] .accordion-icon {
  background: var(--color-bg);
}
[data-theme="dark"] .accordion {
  border-color: var(--color-border);
}
[data-theme="dark"] .accordion-item {
  border-bottom-color: var(--color-border);
}

[data-theme="dark"] .link {
  color: var(--color-teal);
}
[data-theme="dark"] .link:hover {
  color: var(--color-teal-dark);
}

[data-theme="dark"] .btn-outline {
  border-color: var(--color-border);
  color: var(--color-text);
}
[data-theme="dark"] .btn-outline:hover {
  border-color: var(--color-text-mid);
  background: var(--color-bg);
}

[data-theme="dark"] .footer {
  background: linear-gradient(180deg, #0a1018 0%, #060d14 100%);
}

[data-theme="dark"] .auth-card {
  border-color: var(--color-border);
}

/* ==========================================
   Responsive
   ========================================== */

/* — Tablet / small laptop — */
@media (max-width: 1024px) {
  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .steps-track::before { display: none; }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-split { gap: 48px; }
  .split-section { gap: 56px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 28px; }
}

/* — Mobile — */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav-logo-text { font-size: 1.25rem; }
  .nav-logo-mark { width: 32px; height: 32px; border-radius: 8px; }
  .nav-logo-mark svg { width: 17px; height: 17px; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-height) + 44px); padding-bottom: 48px; }
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
  .hero p { font-size: 1rem; }
  .hero-trust { flex-wrap: wrap; gap: 6px 12px; }

  /* Layout */
  .split-section { grid-template-columns: 1fr; gap: 36px; }
  .split-section.reverse { direction: ltr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; gap: 20px; }

  /* Cards */
  .card { padding: 24px 20px; }

  /* Trust */
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-banner { padding: 56px 0; }
  .trust-items { margin-top: 44px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* CTA */
  .cta-section { padding: 64px 0; }

  /* Footer */
  .footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Auth */
  .auth-page { padding: 16px; padding-top: calc(var(--nav-height) + 20px); align-items: flex-start; }
  .auth-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Prevent iOS zoom on input focus */
  .form-input,
  .form-select,
  .form-textarea,
  input[type="email"],
  input[type="password"],
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px;
  }

  /* Page header */
  .page-header { padding-top: calc(var(--nav-height) + 36px); padding-bottom: 44px; }
  .page-header p { font-size: 0.975rem; }

  /* Sections */
  .section    { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .section-lg { padding: 72px 0; }
}

/* — Small phones — */
@media (max-width: 540px) {
  /* Hero */
  .hero { padding-top: calc(var(--nav-height) + 32px); padding-bottom: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 5px; }
  .hero-trust-sep { display: none; }

  /* Trust */
  .trust-items { grid-template-columns: 1fr; gap: 16px; }
  .trust-items { margin-top: 36px; }
  .trust-banner { padding: 48px 0; }
  .trust-item-icon { width: 52px; height: 52px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-value { font-size: 2.4rem; }

  /* CTA */
  .cta-section { padding: 52px 0; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Sections */
  .section    { padding: 44px 0; }
  .section-sm { padding: 28px 0; }
  .section-lg { padding: 56px 0; }

  /* Page header */
  .page-header { padding-top: calc(var(--nav-height) + 24px); padding-bottom: 36px; }

  /* Cards */
  .card { padding: 20px 16px; }
  .card-icon { width: 42px; height: 42px; font-size: 1.2rem; margin-bottom: 16px; }

  /* Steps */
  .step-num { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 16px; }

  /* Footer */
  .footer { padding-top: 44px; }
  .footer-grid { gap: 20px; }
  .footer-bottom { gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }

  /* Auth */
  .auth-card { padding: 28px 20px; }
  .auth-trust-items { gap: 12px; }

  /* Accordion */
  .accordion-trigger { padding: 16px 18px; font-size: 0.9rem; }
  .accordion-body { padding: 0 18px; }
  .accordion-item.open .accordion-body { padding: 0 18px 16px; }

  /* Split gap */
  .split-section { gap: 28px; }

  /* Mockup */
  .mockup-wrapper { padding: 20px; }
  .mockup-value { font-size: 1.5rem; }
}

/* — Very small phones (320–400px) — */
@media (max-width: 400px) {
  .container { padding: 0 16px; }

  .auth-page { padding: 12px; padding-top: calc(var(--nav-height) + 12px); }
  .auth-card { padding: 24px 16px; }

  .section    { padding: 40px 0; }
  .section-sm { padding: 24px 0; }
}

/* ==========================================
   Sister Brands (About page)
   ========================================== */

.sister-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sister-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sister-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sister-brand-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.sister-brand-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.sister-brand-card p {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin: 0;
}

[data-theme="dark"] .sister-brand-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="dark"] .sister-brand-card h4 {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .sister-brands-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}
