/* ============================================
   FollowUpAI.ai - Multi-Page Website Styles
   Clean, Light, Impactful Design
   ============================================ */

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

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #d1fae5;
  --primary-bg: #ecfdf5;
  --accent: #6366f1;
  --accent-light: #eef2ff;
  --dark: #111827;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --bg-warm: #fefce8;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; }
button,
input,
select,
textarea { font: inherit; }

.container {
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
}

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hide translatable copy until boot/i18n apply (avoids EN flash on navigation) */
html.i18n-pending [data-i18n],
html.i18n-pending [data-i18n-html],
html.i18n-pending [data-i18n-placeholder],
html.i18n-pending [data-i18n-aria-label],
html.i18n-pending [data-i18n-alt],
html.i18n-pending [data-i18n-title] {
  visibility: hidden;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lang-dropdown {
  position: relative;
  margin-right: 4px;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 108px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lang-dropdown-toggle:hover {
  border-color: rgba(16, 185, 129, 0.45);
}

.lang-dropdown.is-open .lang-dropdown-toggle {
  border-color: var(--primary, #10b981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.lang-dropdown-icon {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.lang-dropdown.is-open .lang-dropdown-icon {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  min-width: 140px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.lang-dropdown-menu[hidden] {
  display: none !important;
}

.lang-dropdown-menu li {
  margin: 0;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.lang-dropdown-menu li:hover {
  background: var(--primary-bg, #ecfdf5);
  color: var(--primary-dark, #047857);
}

.lang-dropdown-menu li.is-active {
  background: var(--primary-bg, #ecfdf5);
  color: var(--primary-dark, #047857);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-accent:hover {
  background: #4f46e5;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
}

.btn-ghost:hover {
  background: var(--primary-bg);
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}

/* ---- HERO ---- */
.hero {
  padding: 48px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-chat-demo {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  font-size: 13px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.chat-nav {
  display: flex;
  gap: 4px;
}

.nav-tab {
  padding: 5px 12px;
  border-radius: 6px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  cursor: default;
}

.nav-tab.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.chat-search {
  font-size: 12px;
  color: var(--text-lighter);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
}

.chat-body {
  display: flex;
  min-height: 360px;
}

.chat-sidebar {
  width: 140px;
  padding: 12px;
  border-right: 1px solid var(--border);
  background: var(--bg-soft);
}

.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-lighter);
  margin-bottom: 10px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-light);
  cursor: default;
  transition: background var(--transition);
}

.channel-item.active {
  background: #fff;
  color: var(--text);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.channel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.channel-dot.green {
  background: var(--primary);
}

.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-thread-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
}

.thread-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.ai-toggle {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.toggle-switch {
  width: 28px;
  height: 16px;
  border-radius: 999px;
  background: var(--border);
  position: relative;
  transition: background var(--transition);
}

.toggle-switch.on {
  background: var(--primary);
}

.toggle-switch.on::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.chat-messages {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.message.customer {
  flex-direction: row;
}

.message.ai {
  flex-direction: row;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.message.customer .avatar {
  background: #dbeafe;
}

.message.ai .avatar {
  background: var(--primary-light);
}

.bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
}

.message.customer .bubble {
  background: var(--bg-soft);
  color: var(--text);
  border-top-left-radius: 4px;
}

.message.ai .bubble {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: var(--dark);
  border-top-left-radius: 4px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  max-width: 680px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 8px 14px;
  margin-top: 24px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.hero-point .check {
  width: 22px;
  height: 22px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.hero-point-nowrap > span:not(.check) {
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: -0.01em;
}

/* Hero Card / Dashboard Preview */
.hero-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.dashboard-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}

.dashboard-panel:last-child { margin-bottom: 0; }

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-bg);
  color: var(--primary-dark);
  border: 1px solid var(--primary-light);
}

.badge-live {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

.workflow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text);
}

.workflow-row:last-child { border-bottom: none; }

.workflow-row .channel {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 3px 8px;
  border-radius: 6px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.metric-label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ---- SECTIONS ---- */
section { padding: 48px 0; }

.compact-section { padding: 48px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--dark);
  line-height: 1.15;
}

.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.65;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CARDS ---- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

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

/* ---- FEATURES SECTION ---- */
.featured-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.featured-section:has(.products-grid) {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--primary-bg) 42%, #ffffff 100%);
  border-top-color: var(--border-light);
  border-bottom-color: var(--border-light);
}

.feature-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.feature-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-detail-list {
  display: grid;
  gap: 20px;
}

.feature-detail-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}

.feature-detail-row .card-icon {
  margin-bottom: 0;
}

.feature-detail-row h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* ---- STEPS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
}

.step-connector {
  position: absolute;
  top: 49px;
  right: -12px;
  color: var(--primary-light);
  font-size: 18px;
  z-index: 1;
}

.step-card:last-child .step-connector { display: none; }

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--primary);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 32px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
}

.stat-item .stat-label {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ---- PRICING ---- */
.pricing-section {
  background: var(--bg-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.price-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.price-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-bg) 0%, white 40%);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.price-card.popular:hover {
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.plan-desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-light);
  min-height: 40px;
}

.plan-price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price .amount {
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
}

.plan-price .period {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.plan-features {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: grid;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  list-style: none;
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.plan-footer {
  margin-top: 24px;
  padding-top: 20px;
}

.plan-footer .btn { width: 100%; }

/* ---- OTHER PRODUCTS ---- */
.other-products {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--primary-bg) 42%, #ffffff 100%);
  border-top: 1px solid var(--border);
  padding: 48px 0 56px;
}

.products-rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.products-grid--top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.products-grid--top .product-item {
  max-width: 100%;
}

.products-grid--bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

a.product-item:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

a.product-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.product-item-soon {
  cursor: default;
}

.product-item-soon:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-item-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(209, 250, 229, 0.55) 48%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border-light);
}

.product-item-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 108px;
  padding: 16px 14px;
  text-align: center;
}

.product-item-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.product-item-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px 16px;
  flex: 1;
  background: var(--bg);
}

.product-item-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.25;
}

.product-item .product-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-light);
  font-family: inherit;
  flex: 1;
}

.product-cta {
  text-align: right;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

a.product-item:hover .product-cta {
  color: var(--primary-dark);
  text-decoration: underline;
}

.product-cta-soon {
  align-self: flex-end;
  margin-top: auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-quote::before {
  content: '"';
  font-size: 32px;
  color: var(--primary);
  font-weight: 800;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-author strong {
  color: var(--dark);
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 50%, var(--accent) 100%);
  padding: 48px 0;
}

.cta-box {
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.035em;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box p {
  margin-top: 16px;
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-white {
  background: white;
  color: var(--primary-dark);
  font-weight: 700;
}

.cta-actions .btn-white:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-actions .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ---- ABOUT / COMPANY ---- */
.about-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.about-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.about-card p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}

.about-story-followup {
  margin-top: 16px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mission-card,
.contact-card-centered {
  text-align: center;
}

.icon-display-xl {
  font-size: 40px;
  margin-bottom: 16px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.industry-tag {
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
}

.contact-info-card .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-info-card .detail {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-info-card .detail a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-card .detail a:hover {
  color: var(--primary-dark);
}

.contact-info-card .detail .contact-phone {
  display: block;
  margin-top: 4px;
  color: var(--text-lighter);
  font-size: 13px;
}

/* ---- CONTACT GENERAL ROW ---- */
.contact-general-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-general-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  min-width: 240px;
}

.contact-general-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-general-icon {
  font-size: 28px;
  line-height: 1;
}

.contact-general-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-lighter);
}

.contact-general-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

/* ---- CONTACT TEAM GRID ---- */
.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- CONTACT REGIONS ---- */
.contact-region-block {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 28px;
  margin-bottom: 18px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.contact-region-head {
  max-width: 240px;
}

.contact-region-body {
  min-width: 0;
}

.contact-region-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-region-head h2 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.15;
}

.contact-region-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.contact-office-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-office-stack-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-office-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}

.contact-office-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.contact-office-address {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

.contact-person-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-person-grid-single {
  grid-template-columns: minmax(220px, 320px);
}

.contact-person-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 1px solid #edf2f7;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  transition: all var(--transition);
}

.contact-person-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.contact-person-label {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-person-name {
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.contact-person-meta {
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-lighter);
}

.contact-person-link {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.contact-person-link:hover {
  color: var(--primary-dark);
}

/* ---- FORM ---- */
.form-group {
  margin-bottom: 20px;
}

.form-panel {
  max-width: 640px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-textarea {
  height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

/* ---- INTEGRATION CHIPS ---- */
.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.chip {
  padding: 10px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-bg);
}

/* ---- FAQ ---- */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 800px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
  padding: 20px 0 0;
  margin-bottom: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-social a.x-link:hover {
  background: #1da1f2;
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: invert(1);
  opacity: 0.8;
}

.footer-social a:hover img {
  opacity: 1;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 50%, #f9fafb 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- USE CASES ---- */
.use-case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}

.use-case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.use-case-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- SUPPORT CARDS ---- */
.support-section {
  background: var(--bg-soft);
}

/* ---- NOTE BOX ---- */
.note-box {
  background: var(--bg-warm);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.note-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 10px;
}

.note-box p,
.note-box li {
  font-size: 14px;
  color: #78350f;
  line-height: 1.6;
}

.note-box ul {
  padding-left: 18px;
  margin-top: 10px;
}

.note-box li + li { margin-top: 8px; }

/* ---- EMAIL VERIFY ---- */
.email-verify-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.email-verify-row .form-input {
  flex: 1;
  min-width: 0;
}
.btn-send-code {
  flex-shrink: 0;
  padding: 0 18px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  line-height: 1;
}
.btn-send-code:hover:not(:disabled) {
  background: var(--primary-dark, #15803d);
}
.btn-send-code--disabled,
.btn-send-code:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.code-input-row {
  display: block;
}
.code-hint {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--primary);
}

.code-input-row .form-input {
  width: 100%;
}

.captcha-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.captcha-row .form-input {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
}

.captcha-image-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.captcha-canvas {
  display: block;
  width: 160px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
}

.captcha-refresh-button {
  width: 132px;
  min-width: 132px;
  font-variant-numeric: tabular-nums;
}

#verification-code-group[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .email-verify-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-send-code {
    width: 100%;
  }

  .captcha-row,
  .captcha-image-box {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-canvas {
    width: 100%;
  }

}

.pricing-section.pt-0,
.compact-section.pt-0 {
  padding-top: 0;
}

.section-content-grid {
  display: grid;
  gap: 20px;
}

.text-link-primary {
  color: var(--primary);
  font-weight: 600;
}

.text-link-primary:hover {
  color: var(--primary-dark);
}

.section-intro {
  color: var(--text-light);
}

.centered-container {
  text-align: center;
}

.site-footer-logo {
  color: white;
}

.note-list {
  padding-left: 18px;
  margin-top: 14px;
}

.note-list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.disclaimer-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.disclaimer-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-list.faq-centered {
  margin: 0 auto;
}

.mt-32 {
  margin-top: 32px;
}

.form-submit-full {
  width: 100%;
}

.fine-print {
  text-align: center;
  font-size: 13px;
  color: var(--text-lighter);
  margin-top: 12px;
}

.form-error {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.form-error[hidden] {
  display: none !important;
}

.notice-stack {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(360px, calc(100vw - 32px));
}

.notice {
  position: relative;
  overflow: hidden;
  padding: 16px 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: noticeSlideIn 0.28s ease;
}

.notice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 18px 0 0 18px;
}

.notice-success::before {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.notice-error::before {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.notice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.notice-copy {
  min-width: 0;
}

.notice-title {
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.notice-message {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.notice-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-lighter);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.notice-close:hover {
  background: var(--bg-soft);
  color: var(--dark);
  transform: none;
  box-shadow: none;
}

@keyframes noticeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---- RESPONSIVE ---- */

/* Mobile Navigation */
.nav-links.show {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  gap: 4px;
  animation: slideDown 0.2s ease;
}

.nav-links.show a {
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 15px;
}

.nav-links.show a:hover,
.nav-links.show a.active {
  background: var(--primary-bg);
  color: var(--primary-dark);
}

.nav-links.show a::after { display: none; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-chat-demo { max-width: 560px; margin: 32px auto 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-region-block { grid-template-columns: 1fr; gap: 18px; }
  .contact-region-head { max-width: none; }
  .contact-person-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid--top .product-item {
    flex: 0 0 calc((100% - var(--product-grid-gap)) / 2);
    max-width: calc((100% - var(--product-grid-gap)) / 2);
  }

  .products-grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  section, .compact-section { padding: 32px 0; }
  .hero { padding: 32px 0 28px; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .nav-actions .btn { font-size: 13px; padding: 0 16px; height: 36px; }
  .lang-dropdown { order: -1; }
  .lang-dropdown-toggle { min-width: 96px; font-size: 12px; padding: 0 8px; }
  .chat-sidebar { display: none; }
  .hero-chat-demo { max-width: 100%; }
  .stats-bar { padding: 20px 0; }
  .cta-section { padding: 32px 0; }
  .other-products { padding: 28px 0 32px; }
  .grid-4, .grid-3, .grid-2, .steps, .pricing-grid, .stats-grid,
  .products-grid, .contact-grid, .footer-grid, .hero-points, .metric-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .products-grid--top,
  .products-grid--bottom {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .contact-team-grid { grid-template-columns: 1fr 1fr; }
  .contact-general-row { flex-direction: column; align-items: center; }
  .contact-region-block { padding: 22px 18px; }
  .contact-region-head h2 { font-size: 24px; }
  .contact-region-head p { font-size: 14px; }
  .contact-office-stack-2 { grid-template-columns: 1fr; }
  .contact-person-grid,
  .contact-person-grid-single {
    grid-template-columns: 1fr;
  }
  .hero-card { display: none; }
  .hero-actions { justify-content: center; }
  .hero-points { justify-items: center; }
  .hero-point-nowrap > span:not(.check) { white-space: normal; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-header { padding: 40px 0; }
  .page-header h1 { font-size: 28px; }
  .integration-chips { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .feature-detail-row { grid-template-columns: 1fr; }
  .feature-detail-row .card-icon { margin-bottom: 12px; }
  .plan-price .amount { font-size: 36px; }
  .step-connector { display: none; }
  .notice-stack {
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-soft);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  color: var(--dark);
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
