/* ===================================================
   Oliver Edge Technologies — Enterprise AI Website
   Style: Enterprise SaaS + Soft UI Evolution
   Palette: Indigo #6366F1 + Emerald #059669
   Typography: Plus Jakarta Sans
   Pattern: Trust & Authority + Enterprise Gateway
   Source: UI/UX Pro Max Design Intelligence
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary palette — Indigo */
  --primary: #6366F1;
  --primary-hover: #4F46E5;
  --primary-light: #818CF8;
  --primary-ultra-light: #EEF2FF;
  --primary-bg: #F5F3FF;
  --on-primary: #FFFFFF;

  /* Accent — Emerald CTA */
  --accent: #059669;
  --accent-hover: #047857;
  --accent-light: #D1FAE5;
  --on-accent: #FFFFFF;

  /* Secondary — Violet */
  --secondary: #7C3AED;
  --secondary-light: #DDD6FE;

  /* Neutrals */
  --bg: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-muted: #F1F5F9;
  --foreground: #1E1B4B;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-primary: #E0E7FF;
  --card: #FFFFFF;
  --card-foreground: #1E1B4B;
  --muted: #EBEFF9;
  --destructive: #DC2626;
  --ring: #6366F1;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #7C3AED 100%);
  --gradient-hero: linear-gradient(160deg, #F5F3FF 0%, #EEF2FF 40%, #F8FAFC 100%);
  --gradient-accent: linear-gradient(135deg, #059669 0%, #10B981 100%);

  /* Shadows — Soft UI Evolution style */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(99, 102, 241, 0.06);
  --shadow-md: 0 4px 12px rgba(99, 102, 241, 0.08);
  --shadow-lg: 0 8px 24px rgba(99, 102, 241, 0.1);
  --shadow-xl: 0 16px 40px rgba(99, 102, 241, 0.12);
  --shadow-card: 0 2px 8px rgba(99, 102, 241, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(99, 102, 241, 0.14);

  /* Radius — Soft UI (8-12px) */
  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Transitions — 200-300ms smooth */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 250ms;
  --transition: var(--duration) var(--ease);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

::selection {
  background: var(--primary-ultra-light);
  color: var(--primary-hover);
}

/* ===== TYPOGRAPHY — Plus Jakarta Sans ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header system */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 14px;
  padding: 6px 16px;
  background: var(--primary-ultra-light);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-primary);
}

.section-title {
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  position: relative;
}

.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg); }
.bg-muted { background: var(--bg-muted); }
.bg-primary-light { background: var(--primary-bg); }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--primary); }

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

.nav-links a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== BUTTONS — Pill radius, Emerald CTA ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn-outline {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-ultra-light);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 12px 20px;
}

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

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 15px 32px; font-size: 0.95rem; }

/* ===== HERO — Enterprise Gateway ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  margin-bottom: 20px;
}

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

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* Hero visual / illustration area */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-floating-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-floating-card + .hero-floating-card {
  margin-top: -12px;
}

.hfc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.hfc-dot.indigo { background: var(--primary); }
.hfc-dot.emerald { background: var(--accent); }
.hfc-dot.violet { background: var(--secondary); }

.hfc-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
}

.hfc-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-muted);
  margin-bottom: 8px;
  overflow: hidden;
}

.hfc-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s var(--ease);
}

.hfc-bar-fill.indigo { background: var(--primary); }
.hfc-bar-fill.emerald { background: var(--accent); }
.hfc-bar-fill.violet { background: var(--secondary); }

.hfc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-muted);
}

.hfc-metric:last-child { border-bottom: none; }

.hfc-metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.hfc-metric-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}

/* Floating badge on hero visual */
.floating-badge {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.floating-badge.top-right {
  top: -10px;
  right: -20px;
  color: var(--accent);
}

.floating-badge.bottom-left {
  bottom: 10px;
  left: -20px;
  color: var(--primary);
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TRUST BAR / CLIENT LOGOS ===== */
.trust-bar {
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.trust-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.45;
}

.trust-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ===== SOLUTION CARDS ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}

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

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card-icon.indigo { background: var(--primary-ultra-light); }
.card-icon.emerald { background: var(--accent-light); }
.card-icon.violet { background: var(--secondary-light); }
.card-icon.blue { background: #DBEAFE; }
.card-icon.amber { background: #FEF3C7; }
.card-icon.rose { background: #FFE4E6; }

.solution-card h3 {
  margin-bottom: 10px;
}

.solution-card > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.card-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.card-impact {
  padding-top: 16px;
  border-top: 1px solid var(--bg-muted);
}

.card-impact h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.impact-tag {
  padding: 4px 12px;
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

.industry-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.industry-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.industry-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===== APPROACH / STEPS ===== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.approach-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-ultra-light), var(--border-primary), var(--primary-ultra-light));
}

.approach-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  color: var(--primary);
  transition: all var(--transition);
}

.approach-step:hover .step-number {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.approach-step h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.approach-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.why-item {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}

.why-item h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-box h2 { color: #fff; position: relative; }
.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-box .btn-primary:hover {
  background: #f8f8ff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-box .btn-accent {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: none;
}

.cta-box .btn-accent:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== CTA CONTACT INFO ===== */
.cta-contact-info {
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-contact-info a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.cta-contact-info a:hover {
  color: #fff;
}

.cta-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 6px;
}

.footer-right {
  text-align: right;
}

.footer-contact {
  display: flex;
  gap: 20px;
  margin-bottom: 6px;
  justify-content: flex-end;
}

.footer-contact a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* ===== BFSI: PAIN POINTS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.pain-item:hover {
  border-color: #FCA5A5;
  background: #FEF2F2;
}

.pain-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item h4 { font-size: 0.92rem; margin-bottom: 4px; }
.pain-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== BFSI: WORKFLOW ===== */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.workflow-step:hover {
  border-color: var(--border-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}

.workflow-step h4 { font-size: 0.92rem; margin-bottom: 4px; }
.workflow-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== BFSI: METRICS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.metric-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

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

.metric-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.04em;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== BFSI: TRUST GRID ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.trust-item span:first-child { font-size: 1.2rem; }
.trust-item span:last-child { font-size: 0.9rem; font-weight: 600; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.solutions-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.solutions-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.solutions-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.solutions-grid .reveal:nth-child(5) { transition-delay: 320ms; }
.solutions-grid .reveal:nth-child(6) { transition-delay: 400ms; }

.industries-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.industries-grid .reveal:nth-child(3) { transition-delay: 120ms; }
.industries-grid .reveal:nth-child(4) { transition-delay: 180ms; }
.industries-grid .reveal:nth-child(5) { transition-delay: 240ms; }
.industries-grid .reveal:nth-child(6) { transition-delay: 300ms; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 20px;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }

  .nav-links.active { right: 0; }

  .hamburger { display: flex; z-index: 1001; }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .solutions-grid { grid-template-columns: 1fr; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-box {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .section-header { margin-bottom: 40px; }

  .trust-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .workflow-steps { grid-template-columns: 1fr; }
}
