/* ===================================================
   EXLATHENA — Google + Microsoft Fluent Design System
   Light theme, clean, professional enterprise aesthetic
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f2f2f2;
  --bg-section-alt: #fafbfc;
  --bg-blue-subtle: #e8f0fe;
  --bg-green-subtle: #e6f4ea;
  --bg-red-subtle: #fce8e6;
  --bg-yellow-subtle: #fef9e0;

  /* Text */
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-muted: #9aa0a6;
  --text-white: #ffffff;
  --text-link: #1a73e8;

  /* Google Brand Palette */
  --blue: #1a73e8;
  --blue-dark: #1557b0;
  --blue-hover: #1467d0;
  --blue-mid: #4285f4;
  --green: #34a853;
  --red: #ea4335;
  --yellow: #fbbc04;
  --orange: #fa7b17;
  --purple: #9334e8;
  --teal: #00bcd4;

  /* Microsoft Fluent accent */
  --ms-blue: #0078d4;
  --ms-blue-light: #c5deef;

  /* Borders */
  --border-light: #e8eaed;
  --border-mid: #dadce0;
  --border-dark: #bdc1c6;

  /* Shadows (Material Elevation) */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.1);
  --shadow-sm: 0 1px 3px rgba(60,64,67,0.15), 0 4px 8px rgba(60,64,67,0.08);
  --shadow-md: 0 2px 6px rgba(60,64,67,0.15), 0 8px 24px rgba(60,64,67,0.1);
  --shadow-lg: 0 4px 12px rgba(60,64,67,0.15), 0 16px 48px rgba(60,64,67,0.12);
  --shadow-xl: 0 8px 24px rgba(60,64,67,0.2), 0 32px 64px rgba(60,64,67,0.15);
  --shadow-blue: 0 4px 16px rgba(26,115,232,0.25);
  --shadow-hover: 0 2px 8px rgba(60,64,67,0.15), 0 8px 24px rgba(60,64,67,0.12);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  --transition-fast: all 0.15s ease;

  /* Layout */
  --nav-height: 64px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-blue-subtle);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-hero-primary svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn-hero-primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-mid);
  transition: var(--transition);
  cursor: pointer;
}
.btn-hero-secondary:hover {
  border-color: var(--blue);
  background: var(--bg-blue-subtle);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  border: 1.5px solid var(--border-mid);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--bg-blue-subtle);
  border-color: var(--blue);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 16px;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--blue); }

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

.nav-link {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-light); }
.nav-link.active { color: var(--blue); background: var(--bg-blue-subtle); }
.dropdown-arrow { font-size: 0.7rem; color: var(--text-muted); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 560px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dropdown-heading {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  padding: 0 8px;
}
.dropdown-item {
  display: block;
  padding: 7px 10px;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.dropdown-item:hover {
  color: var(--blue);
  background: var(--bg-blue-subtle);
}

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--bg-white);
  overflow: hidden;
}

/* Hero geometric background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,115,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Google-style colorful blobs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,115,232,0.12), transparent 70%);
  top: -80px; right: 100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(147,52,232,0.08), transparent 70%);
  bottom: 80px; right: -60px;
  animation: orbFloat 14s ease-in-out infinite 2s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(52,168,83,0.07), transparent 70%);
  bottom: -40px; left: 10%;
  animation: orbFloat 10s ease-in-out infinite 4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -15px) scale(1.03); }
  66% { transform: translate(-10px, 10px) scale(0.97); }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-blue-subtle);
  border: 1px solid rgba(26,115,232,0.2);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ExlAthena brand name — "Exl" dark, "Athena" gradient */
.hero-title .brand-exl {
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat-item { text-align: left; }
.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-mid);
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-wrapper { position: relative; }

.hero-dashboard {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-light);
}
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dashboard-dots span:first-child { background: #f87171; }
.dashboard-dots span:nth-child(2) { background: #fbbf24; }
.dashboard-dots span:last-child { background: #4ade80; }
.dashboard-title { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }

.dashboard-body { padding: 20px; }

.dashboard-chart { margin-bottom: 16px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-bottom: 6px;
}
.bar {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: #e8f0fe;
  transition: var(--transition);
}
.bar.active {
  background: linear-gradient(to top, var(--blue), var(--blue-mid));
  box-shadow: 0 2px 8px rgba(26,115,232,0.3);
}
.chart-label { font-size: 0.72rem; color: var(--text-muted); text-align: center; }

.dashboard-metrics { display: flex; flex-direction: column; gap: 8px; }
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}
.metric-name { color: var(--text-secondary); }
.metric-val { font-weight: 600; color: var(--text-primary); }
.metric-val.green { color: var(--green); }
.metric-val.cyan { color: var(--blue); }

/* Floating Mini Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.card-icon-sm { font-size: 1.3rem; }
.card-title-sm { font-size: 0.72rem; color: var(--text-muted); }
.card-value-sm { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }

.card-1 {
  top: -20px; left: -40px;
  animation: floatMini 5s ease-in-out infinite;
}
.card-2 {
  bottom: 30px; right: -40px;
  animation: floatMini 7s ease-in-out infinite 1s;
}
.card-3 {
  top: 50%; right: -50px;
  animation: floatMini 6s ease-in-out infinite 0.5s;
}
@keyframes floatMini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--border-dark);
  border-bottom: 2px solid var(--border-dark);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-by {
  padding: 40px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--border-dark);
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.trust-logo:hover { color: var(--text-muted); }

/* Tech logo style */
.tech-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}
.tech-icon { font-size: 1.1rem; }
.tech-logo:hover { color: var(--text-primary); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 96px 0;
  background: var(--bg-white);
}

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

.service-card {
  position: relative;
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-card.featured {
  border-color: rgba(26,115,232,0.3);
  background: linear-gradient(135deg, rgba(26,115,232,0.03), rgba(147,52,232,0.02));
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 3px 10px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Google-style colorful icon containers */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
  background: var(--bg, #e8f0fe);
  color: var(--clr, var(--blue));
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { transform: scale(1.05); }

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.75rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* SpeakUp special card */
.speakup-card {
  border-color: rgba(229,57,53,0.2);
  background: linear-gradient(135deg, #fff8f8, #fff);
}
.speakup-card:hover {
  border-color: rgba(229,57,53,0.4);
  box-shadow: 0 8px 32px rgba(229,57,53,0.1);
}
.speakup-badge {
  background: linear-gradient(135deg, #e53935, #f57c00) !important;
}
.speakup-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e53935;
  margin: -10px 0 10px;
  letter-spacing: 0.02em;
}
.speakup-link { color: #e53935 !important; }
.speakup-link:hover { color: #c62828 !important; }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  padding: 96px 0;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.solutions-bg { display: none; } /* Not needed in light theme */
.solutions-orb { display: none; }

.solutions-tabs { display: flex; flex-direction: column; gap: 24px; }

.tab-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  width: fit-content;
  margin: 0 auto;
  box-shadow: var(--shadow-xs);
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn:hover { color: var(--text-primary); background: var(--bg-light); }
.tab-btn.active {
  color: var(--blue);
  background: var(--bg-blue-subtle);
  box-shadow: var(--shadow-xs);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 44px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.tab-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.tab-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Product Mockups */
.product-mockup {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-light);
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #4ade80; }
.mockup-body { padding: 16px; }

.mockup-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.kpi-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  text-align: center;
}
.kpi-box.green { border-color: rgba(52,168,83,0.25); background: var(--bg-green-subtle); }
.kpi-box.cyan { border-color: rgba(26,115,232,0.25); background: var(--bg-blue-subtle); }
.kpi-val { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.kpi-lbl { font-size: 0.68rem; color: var(--text-muted); }
.kpi-box.green .kpi-val { color: var(--green); }
.kpi-box.cyan .kpi-val { color: var(--blue); }

.mockup-chart { margin-bottom: 12px; }
.line-chart { height: 80px; }
.line-chart svg { width: 100%; height: 100%; }

.mockup-ai-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: var(--bg-blue-subtle);
  border: 1px solid rgba(26,115,232,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.ai-icon { font-size: 1rem; flex-shrink: 0; }

/* AutoFlow mockup */
.flow-diagram { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.flow-node {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-light);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.flow-node.start { background: var(--bg-green-subtle); color: var(--green); border-color: rgba(52,168,83,0.2); }
.flow-node.ai { background: var(--bg-blue-subtle); color: var(--blue); border-color: rgba(26,115,232,0.2); }
.flow-node.process { background: #f3e8ff; color: var(--purple); border-color: rgba(147,52,232,0.2); }
.flow-node.end { background: var(--bg-green-subtle); color: var(--green); border-color: rgba(52,168,83,0.2); }
.flow-arrow { color: var(--text-muted); font-size: 0.9rem; }
.auto-stats { display: flex; gap: 8px; }
.auto-stat {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.auto-stat span { display: block; font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }
.auto-stat.green { border-color: rgba(52,168,83,0.25); background: var(--bg-green-subtle); }
.auto-stat.green span { color: var(--green); }
.auto-stat.cyan { border-color: rgba(26,115,232,0.25); background: var(--bg-blue-subtle); }
.auto-stat.cyan span { color: var(--blue); }

/* DataShield mockup */
.security-status { display: flex; align-items: center; gap: 20px; }
.score-ring { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.score-ring svg { width: 80px; height: 80px; }
.score-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
}
.score-lbl { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 4px; }
.compliance-list { display: flex; flex-direction: column; gap: 6px; }
.comp-item {
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.comp-item.green { color: var(--green); background: var(--bg-green-subtle); border-color: rgba(52,168,83,0.2); }
.comp-item.yellow { color: #b45309; background: var(--bg-yellow-subtle); border-color: rgba(251,188,4,0.3); }

/* MigrateX mockup */
.migration-progress { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.migration-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.migration-step span {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text-muted);
}
.migration-step.done { color: var(--green); }
.migration-step.done span { background: var(--bg-green-subtle); color: var(--green); border: 1px solid rgba(52,168,83,0.3); }
.migration-step.active { color: var(--blue); border-color: rgba(26,115,232,0.3); background: var(--bg-blue-subtle); }
.migration-step.active span { background: rgba(26,115,232,0.1); color: var(--blue); }

.spinner {
  width: 14px !important; height: 14px !important;
  border: 2px solid rgba(26,115,232,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.migration-stat { text-align: center; }
.mig-pct {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.mig-label { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: 96px 0; background: var(--bg-white); }

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

.industry-card {
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.industry-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.industry-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.industry-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.industry-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.industry-tags span {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-light);
  border: 1px solid var(--border-mid);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 96px 0;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.why-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.why-text p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* Achievement Cards */
.achievement-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.achievement-card {
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.achievement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.achievement-card.purple::before { background: var(--purple); }
.achievement-card.cyan::before { background: var(--ms-blue); }
.achievement-card.green::before { background: var(--green); }
.achievement-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ach-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.ach-label { font-size: 0.82rem; color: var(--text-secondary); }
.ach-icon {
  font-size: 1.6rem;
  position: absolute;
  bottom: 16px; right: 16px;
  opacity: 0.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 96px 0; background: var(--bg-white); }

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

.testimonial-card {
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}
.testimonial-card.featured-testimonial {
  border-color: rgba(26,115,232,0.3);
  background: linear-gradient(135deg, rgba(26,115,232,0.03), rgba(147,52,232,0.02));
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-info strong { display: block; color: var(--text-primary); font-size: 0.9rem; font-weight: 600; }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 1px; }

/* Promise Cards */
.promise-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.promise-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.promise-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-blue-subtle);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 16px;
}
.featured-testimonial .promise-tag {
  background: rgba(26,115,232,0.15);
}

/* Early Adopter Banner */
.early-adopter-banner {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, #e8f0fe 0%, #f3e8ff 100%);
  border: 1.5px solid rgba(26,115,232,0.2);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.early-adopter-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}
.early-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.early-adopter-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.early-adopter-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.early-adopter-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.perk-item {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.perk-item::first-letter {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .early-adopter-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .early-adopter-perks { align-items: center; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a73e8 0%, #6c35de 50%, #0078d4 100%);
}
/* Override dark orbs for light section */
.cta-bg { display: none; }
.cta-orb-1, .cta-orb-2 { display: none; }

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-title .gradient-text {
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Override buttons inside CTA for white bg */
.cta-section .btn-hero-primary {
  background: white;
  color: var(--blue);
}
.cta-section .btn-hero-primary:hover {
  background: #f8f9fa;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-white {
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: white;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 96px 0; background: var(--bg-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { text-align: left; font-size: 2rem; }
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  font-size: 1rem;
  width: 42px; height: 42px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.contact-item strong { display: block; color: var(--text-primary); font-size: 0.88rem; margin-bottom: 2px; font-weight: 600; }
.contact-item span { font-size: 0.85rem; color: var(--text-secondary); }

.social-links { display: flex; gap: 8px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--bg-blue-subtle);
  border-color: var(--blue);
  color: var(--blue);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-light);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: white; color: var(--text-primary); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.btn-submit svg { width: 18px; height: 18px; }
.btn-submit:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: var(--bg-green-subtle);
  border: 1px solid rgba(52,168,83,0.3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  gap: 8px;
}
.form-success.show { display: flex; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-primary);
  color: #9aa0a6;
}

.footer-main { padding: 64px 0 48px; }

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

.footer-brand .logo-text { color: white; }
.footer-brand .logo-accent { color: #8ab4f8; }
.footer-brand p {
  font-size: 0.87rem;
  color: #9aa0a6;
  line-height: 1.7;
  margin: 14px 0 22px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a6;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer-social a:hover {
  color: #8ab4f8;
  border-color: #8ab4f8;
  background: rgba(138,180,248,0.08);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: #9aa0a6;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: #8ab4f8; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 0.82rem; color: #9aa0a6; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.82rem; color: #9aa0a6; transition: var(--transition-fast); }
.footer-legal a:hover { color: #8ab4f8; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .tab-layout { grid-template-columns: 1fr; }
  .tab-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--bg-white);
    padding: 16px;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border-light);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    box-shadow: none;
    padding: 8px;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
  }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .tab-buttons { width: 100%; overflow-x: auto; }
  .tab-layout { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .achievement-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .achievement-cards { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-outline-white { width: 100%; justify-content: center; }
}
