/* ============================================
   MatterMind Marketing Site — site.css
   ============================================ */

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

:root {
  --primary: #008B8B;
  --primary-light: #20B2AA;
  --primary-dark: #006666;
  --primary-glow: rgba(0, 139, 139, 0.15);
  --accent: #C8A04A;
  --accent-light: #E8C668;
  --accent-bg: rgba(200, 160, 74, 0.08);
  --text: #1a1a2e;
  --text-secondary: #555770;
  --text-muted: #8b8da3;
  --bg-white: #ffffff;
  --bg-light: #f7f8fc;
  --bg-subtle: #f0f2f8;
  --border: #e2e4ed;
  --border-light: #eef0f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.03);
  --shadow-lift: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(0, 139, 139, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --container: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary); }

/* --- Skip Nav --- */
.skip-nav {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 14px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-nav:focus {
  left: 0;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.97);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.02em;
}
.nav-logo span {
  font-family: var(--font);
  font-weight: 700;
  color: var(--primary);
}
.nav-links {
  display: none;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width var(--transition-smooth);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}
.nav-login {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.nav-login:hover {
  color: var(--primary);
}
.nav-cta {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn-primary {
  display: block;
  text-align: center;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-login { display: block; }
  .nav-cta { display: block; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
  min-height: 44px;
  position: relative;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #005050);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 139, 139, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--bg-white);
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
  min-height: 44px;
  letter-spacing: 0.01em;
}
.btn-secondary:hover {
  background: var(--primary-glow);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-dark);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* --- Sections --- */
section {
  padding: 80px 0;
}
.bg-light {
  background: var(--bg-light);
}
.bg-gradient {
  background: linear-gradient(135deg, #004d4d 0%, var(--primary-dark) 25%, var(--primary) 50%, var(--primary-light) 75%, #26c6b0 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bg-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bg-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bg-gradient h2,
.bg-gradient p,
.bg-gradient .section-subtitle {
  color: #fff;
}
.bg-gradient .btn-primary {
  background: #fff;
  color: var(--primary-dark);
}
.bg-gradient .btn-primary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.bg-gradient .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.bg-gradient .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
}

/* --- Typography --- */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header--left {
  text-align: left;
}
.section-header--left .section-subtitle {
  margin-left: 0;
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  background: none;
  padding: 0 0 0 20px;
  border-radius: 0;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* --- Cards --- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  padding: 36px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

/* --- Grid helpers --- */
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 28px; }
.grid-4 { display: grid; gap: 24px; }

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

/* --- Hero --- */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.hero h1 {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 24px auto 0;
  border-radius: 2px;
}
.hero p {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 20px;
  opacity: 0.92;
}
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.bg-gradient .hero-note { color: rgba(255,255,255,0.7); }

/* Hero CSS Kanban */
.hero-visual {
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.kanban-mockup {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.kanban-col {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 180px;
}
.kanban-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.8;
  color: #fff;
}
.kanban-card {
  background: rgba(255,255,255,0.97);
  color: var(--text);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform var(--transition-fast);
}
.kanban-card:hover {
  transform: translateY(-1px);
}
.kanban-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}
.kanban-wip {
  font-weight: 700;
  color: var(--primary-dark);
}
.kanban-wip.high { color: #d35400; }
.kanban-wip.low { color: #27ae60; }

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

/* --- Trust bar --- */
.trust-bar {
  padding: 24px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .trust-sep { display: none; }
  .trust-items { gap: 12px 24px; }
}

/* --- Pain points --- */
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.pain-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Pain point card hover: border change + shadow, no lift */
.pain-grid .card {
  transition: box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.pain-grid .card:hover {
  transform: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
/* Pain grid: first card spans 2 columns on desktop */
@media (min-width: 1024px) {
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pain-grid > .card:first-child {
    grid-column: 1 / 3;
  }
}
/* Section border-top separator */
.section-border-top {
  border-top: 1px solid var(--border-light);
}

/* --- Feature blocks (alternating) --- */
.feature-block {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.feature-block:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr 1fr;
  }
  .feature-block.reverse .feature-text { order: 2; }
  .feature-block.reverse .feature-visual { order: 1; }
}

.feature-text h3 {
  margin-bottom: 12px;
}
.feature-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.feature-bullets {
  list-style: none;
  padding: 0;
}
.feature-bullets li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 16px;
  color: var(--text-secondary);
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  opacity: 0.6;
}

.feature-visual {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
}

/* CSS Illustrations for features */
.css-illustration {
  width: 100%;
}

/* Mini dashboard illustration */
.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}
.mini-kpi {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast);
}
.mini-kpi:hover {
  transform: translateY(-2px);
}
.mini-kpi-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.mini-kpi-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Mini planner illustration */
.mini-planner {
  width: 100%;
}
.planner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast);
}
.planner-item:hover {
  transform: translateX(4px);
}
.planner-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.planner-check.done {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  position: relative;
}
.planner-check.done::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* Mini integration illustration */
.mini-integration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.integration-box {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--border-light);
}
.integration-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}
.integration-arrow::before {
  content: '';
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 1px;
}

/* Mini kanban for feature section */
.mini-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.mini-kanban-col {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.mini-kanban-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.mini-kanban-card {
  background: var(--bg-light);
  border-radius: var(--radius-xs);
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 500;
  border-left: 3px solid var(--primary);
  transition: transform var(--transition-fast);
}
.mini-kanban-card:hover {
  transform: translateX(2px);
}

/* --- How it works --- */
.steps {
  display: grid;
  gap: 32px;
  counter-reset: step;
  position: relative;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.67% + 28px);
    right: calc(16.67% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-glow), var(--primary), var(--primary-glow));
    z-index: 0;
    opacity: 0.3;
  }
}
.step {
  text-align: center;
  counter-increment: step;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 139, 139, 0.2);
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 139, 139, 0.15);
}
.step h3 { margin-bottom: 8px; }
.step p {
  color: var(--text-secondary);
  font-size: 16px;
}
.step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-glow);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 139, 139, 0.1);
}

/* --- Pricing --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.pricing-toggle span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.pricing-toggle span.active {
  color: var(--text);
}
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.toggle-switch.active {
  background: var(--primary);
}
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: left 0.3s;
  box-shadow: var(--shadow-sm);
}
.toggle-switch.active::after {
  left: 27px;
}
.save-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-glow);
  padding: 4px 12px;
  border-radius: 20px;
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  padding: 48px;
  text-align: center;
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
}
.pricing-card .price {
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-card .price-period {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-card .price-note {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Seat calculator */
.seat-calc {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.seat-calc label {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.seat-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
  margin: 16px 0;
}
.seat-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 139, 139, 0.3);
  transition: transform var(--transition-fast);
}
.seat-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.seat-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 139, 139, 0.3);
}
.calc-breakdown {
  text-align: left;
  margin-top: 16px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}
.calc-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

/* --- Testimonials --- */
.testimonial-card {
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-stars {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  min-height: 44px;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--primary-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.3s;
  border-radius: 50%;
  background: var(--bg-light);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  border-radius: 1px;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--primary-glow);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--primary);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  margin-bottom: 16px;
}
.cta-section p {
  margin-bottom: 36px;
  font-size: 18px;
  opacity: 0.9;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 16px;
}
.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-glow);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  text-align: center;
}
.checklist-grid {
  display: grid;
  gap: 0 40px;
}
@media (min-width: 640px) {
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Comparison table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table thead th {
  background: var(--primary-dark);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.comparison-table thead th:first-child {
  background: var(--bg-light);
  color: var(--text);
}
.comparison-table tbody th {
  font-weight: 600;
  background: var(--bg-light);
}
.comparison-table .check { color: var(--primary); font-weight: 700; }
.comparison-table .x { color: var(--text-muted); }
.comparison-highlight {
  background: rgba(0,139,139,0.03);
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  color: var(--text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,139,139,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-error {
  font-size: 13px;
  color: #d35400;
  margin-top: 4px;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #d35400;
}
.form-group.error .form-error { display: block; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

/* Contact sidebar */
.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}
.contact-info-card h3 {
  margin-bottom: 16px;
}
.contact-info-item {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
}
.contact-info-item strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}
.demo-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.demo-card h3 { color: #fff; margin-bottom: 8px; }
.demo-card p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 15px; }
.demo-card .btn-primary {
  background: #fff;
  color: var(--primary-dark);
}

/* --- Legal pages --- */
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 80px;
}
.legal-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-toc {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  margin-bottom: 40px;
  border: 1px solid var(--border-light);
}
.legal-toc h2 {
  font-size: 16px;
  margin-bottom: 12px;
}
.legal-toc ol {
  padding-left: 20px;
}
.legal-toc li {
  padding: 4px 0;
  font-size: 15px;
}
.legal-toc a {
  color: var(--text-secondary);
}
.legal-toc a:hover { color: var(--primary-dark); }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 16px;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}
.legal-content table th,
.legal-content table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
}
.legal-content table th {
  background: var(--bg-light);
  font-weight: 600;
}
.legal-content strong { color: var(--text); }

/* --- Blog --- */
.blog-card {
  overflow: hidden;
}
.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.blog-card-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-card-body {
  padding: 28px;
}
.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-glow);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.blog-card-body p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.blog-card-date {
  font-size: 13px;
  color: var(--text-muted);
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  min-height: 44px;
  background: var(--bg-white);
  color: var(--text);
}
.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,139,139,0.1);
}
.waitlist-form button {
  white-space: nowrap;
  flex-shrink: 0;
}
.bg-gradient .waitlist-form input {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.95);
}
.bg-gradient .waitlist-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}
.waitlist-success {
  text-align: center;
  margin-top: 16px;
}
.waitlist-success p {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 17px;
}
.bg-gradient .waitlist-success p {
  color: #fff;
}
.waitlist-error {
  color: #d35400;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
  display: none;
}
@media (max-width: 480px) {
  .waitlist-form {
    flex-direction: column;
  }
}

/* Video embed */
.video-embed {
  max-width: 744px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 744 / 504;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Newsletter */
.newsletter {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  min-height: 44px;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,139,139,0.1);
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* --- Values cards (About) --- */
.value-card {
  text-align: center;
  padding: 40px 28px;
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Value card hover: gentle scale instead of lift */
.value-card:hover {
  transform: scale(1.02);
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 15px; color: var(--text-secondary); }

/* --- About story block --- */
.story-block {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .story-block { grid-template-columns: 1fr 1fr; }
}
.story-visual {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-subtle));
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.story-visual svg {
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Page hero (inner pages) --- */
.page-hero {
  padding: 150px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent), var(--primary));
}
.page-hero h1 {
  max-width: 700px;
  margin: 0 auto;
}
.page-hero p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 19px;
}

/* --- Use-case callout --- */
.use-case {
  background: var(--accent-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 20px;
}
.use-case-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.use-case p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #12121e 100%);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 36px;
  font-size: 15px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent), var(--primary-light), var(--primary));
}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-brand span { font-family: var(--font); font-weight: 700; color: var(--primary-light); }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer li { padding: 5px 0; }
.site-footer a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-fade.visible {
  opacity: 1;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children animation */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Focus rings --- */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-fade, .reveal-left {
    opacity: 1;
    transform: none;
  }
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* --- Alerts mini illustration --- */
.mini-alerts {
  width: 100%;
}
.alert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast);
}
.alert-item:hover {
  transform: translateX(4px);
}
.alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.alert-dot.red { background: #e74c3c; box-shadow: 0 0 6px rgba(231, 76, 60, 0.3); }
.alert-dot.yellow { background: #f39c12; box-shadow: 0 0 6px rgba(243, 156, 18, 0.3); }
.alert-dot.blue { background: var(--primary); box-shadow: 0 0 6px rgba(0, 139, 139, 0.3); }
.alert-text { flex: 1; }
.alert-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Mini team illustration */
.mini-team {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.team-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast);
}
.team-row:hover {
  transform: translateX(4px);
}
.team-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.team-name { font-size: 14px; font-weight: 600; }
.team-role { font-size: 12px; color: var(--text-muted); }
.team-matters {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Stat counter animation --- */
.stat-number {
  display: inline-block;
}
