:root {
  --primary-blue: #1e3a8a;
  --primary-blue-light: #2563eb;
  --primary-blue-lighter: #3b82f6;
  --accent-blue: #0ea5e9;
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --bg-white: #ffffff;
  --bg-light-blue: #f0f9ff;
  --border-light: #e2e8f0;
  --success-green: #22c55e;
  --primary-teal: #1e3a8a;
  --primary-green: #00a86b;
  --accent-blue: #3b82f6;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #1b98c5b7 50%, #3b82f6 100%);
  --shadow-modern: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Hero Section Base */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  background-attachment: fixed;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-20px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography - Bold Modern Hierarchy */
.hero span {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 80px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 60px 0;
  font-weight: 400;
}

/* Modern Stats Grid - Staggered Animation */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.stats-grid-two{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 20px 20px;
  background: #ffffffe0;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-modern);
  border-color: var(--primary-green);
}

.stat-number {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px 0;
  font-family: 'Inter', -apple-system, sans-serif;
  opacity: 0;
  transform: translateY(30px);
  animation: countUp 1.5s ease-out forwards;
}

.stat-item:nth-child(1) .stat-number { animation-delay: 0.1s; }
.stat-item:nth-child(2) .stat-number { animation-delay: 0.2s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 0.3s; }
.stat-item:nth-child(4) .stat-number { animation-delay: 0.4s; }

@keyframes countUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-label {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive Design - Perfect Mobile Experience */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    background-attachment: scroll;
  }
  
  .hero h1 {
    margin-bottom: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-item {
    padding: 32px 16px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero span {
    padding: 6px 16px;
    font-size: 13px;
  }
}

/* Scroll Reveal Animation */
.hero {
  opacity: 0;
  transform: translateY(50px);
  animation: heroReveal 1s ease-out 0.3s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FOUNDER SECTION ===== */
.founder-section {
  /* color: white; */
  padding: 60px 20px;
  text-align: center;
}

.founder-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.founder-section p {
  font-size: 1rem;
  margin: 0 auto 50px;
  opacity: 0.95;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.founder-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: left;
}

.founder-text p {
  text-align: left;
  margin-bottom: 12px;
  font-size: 0.8rem;
  opacity: 0.9;
}

.founder-avatar-large {
  width: 280px;
  height: 280px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--accent-blue),
    var(--primary-blue-lighter)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

/* ===== TEAM GRID ===== */
.team-section {
  background: white;
  padding: 60px 20px;
}

.team-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 50px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.team-card-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue-light),
    var(--accent-blue)
  );
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-card-body {
  padding: 30px;
}

.team-card h3 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-weight: 700;
}

.team-card .role {
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.team-card p {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.credentials {
  background: var(--bg-light-blue);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.credentials-item {
  margin-bottom: 8px;
  font-size: 14px;
}

.credentials-item:last-child {
  margin-bottom: 0;
}

/* ===== VISION SECTION ===== */
.vision-section {
  background: var(--bg-light-blue);
  padding: 60px 20px;
}

.vision-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.vision-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.vision-box h3 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 12px;
}

.vision-box p {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
  padding: 60px 20px;
}

.comparison-section h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 15px;
}

.comparison-intro {
  text-align: center;
  color: var(--text-gray);
  margin: 0 auto 50px;
  font-size: 1rem;
}

.comparison-table {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-light);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-light)
  );
  color: white;
}

th {
  padding: 20px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
}

th:first-child {
  width: 25%;
}

th:nth-child(2),
th:nth-child(3),
th:nth-child(4) {
  width: 25%;
}

td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
}

tbody tr:nth-child(even) {
  background: var(--bg-light-blue);
}

tbody tr:hover {
  background: #dbeafe;
}

/* Competitor columns */
.competitor-col {
  color: var(--text-gray);
}

.primeeap-col {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1),
    rgba(37, 99, 235, 0.1)
  ) !important;
  font-weight: 600;
  color: var(--primary-blue);
  position: relative;
}

/* Check/cross marks */
.check {
  color: #22c55e;
  font-weight: 900;
  font-size: 1.2rem;
}

.cross {
  color: #ef4444;
  font-weight: 900;
  font-size: 1.2rem;
}

.partial {
  color: #f59e0b;
  font-weight: 900;
}

/* Feature highlight */
.highlight-feature {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}

/* ===== DIFFERENTIATION BOXES ===== */
.why-primeeap {
  margin-top: 60px;
  padding: 60px 0;
  /* background: var(--bg-light-blue); */
  border-radius: 11px;
}

.why-primeeap h3 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.feature-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-box h4 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-box p {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  padding: 60px 20px;
  background: var(--bg-light-blue);
}

.case-studies-section h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 15px;
}

.case-studies-intro {
  text-align: center;
  color: var(--text-gray);
  /* max-width: 700px; */
  margin: 0 auto 50px;
  font-size: 1rem;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.case-study-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue-light),
    var(--accent-blue)
  );
  padding: 30px 20px;
  color: white;
}

.company-logo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.company-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.company-detail {
  font-size: 0.7rem;
  opacity: 0.9;
}

.case-study-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-challenge {
  margin-bottom: 20px;
}

.case-study-challenge h4 {
  color: var(--primary-blue);
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.case-study-challenge p {
  color: var(--text-gray);
  font-size: 0.7rem;
  line-height: 1.6;
}

.case-study-solution {
  margin-bottom: 20px;
}

.case-study-solution h4 {
  color: var(--accent-blue);
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solution-list li {
  color: var(--text-gray);
  font-size: 0.7rem;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.5;
}

.solution-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

.case-study-results {
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
  margin-top: auto;
}

.case-study-results h4 {
  color: var(--primary-blue);
  font-size: 0.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-item {
  background: var(--bg-light-blue);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.result-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.result-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 2px;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 60px 20px;
  background: white;
}

.testimonial-section h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--bg-light-blue);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-blue-light),
    var(--accent-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.author-info h4 {
  color: var(--primary-blue);
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.author-info p {
  color: var(--text-gray);
  font-size: 0.7rem;
}

/* ===== COMPLIANCE SECTION ===== */
.compliance-section {
  padding: 60px 20px;
  background: var(--bg-white);
}

.compliance-section h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 50px;
}

/* ===== CERTIFICATION CARDS ===== */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.certification-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.certification-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.certification-card h3 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 8px;
}

.certification-card p {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cert-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light-blue);
  color: var(--primary-blue);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== COMPLIANCE MATRIX ===== */
.compliance-matrix {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  border-radius: 16px;
  padding: 40px;
  color: white;
  margin-bottom: 50px;
}

.compliance-matrix h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
  color: white;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.matrix-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--success-green);
  backdrop-filter: blur(10px);
}

.matrix-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.check-mark {
  color: var(--success-green);
  font-weight: 900;
}

.matrix-item p {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ===== TRUST BADGES ===== */
.trust-section {
  background: var(--bg-light-blue);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 50px;
}

.trust-section h3 {
  color: var(--primary-blue);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.badge {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-light);
}

.badge-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.badge-name {
  color: var(--primary-blue);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ===== AUDIT & SECURITY ===== */
.security-section {
  padding: 40px;
  background: white;
  border-radius: 16px;
  border-left: 4px solid var(--accent-blue);
  margin-bottom: 50px;
}

.security-section h3 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.security-list li {
  color: var(--text-gray);
  padding-left: 25px;
  position: relative;
  font-size: 0.75rem;
  line-height: 1.6;
}

.security-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* ===== DATA PRIVACY ===== */
.data-privacy {
  background: linear-gradient(135deg, var(--bg-light-blue), white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-light);
}

.data-privacy h3 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 20px;
}

.privacy-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 15px;
}

.highlight-item {
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  border-left: 3px solid var(--accent-blue);
  font-size: 0.8rem;
  color: var(--primary-blue);
  font-weight: 500;
}

/* ===== IMPACT SECTION ===== */
.impact-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.impact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.impact-section p {
  font-size: 1rem;
  margin: 0 auto 60px;
  opacity: 0.95;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.stat-card {
  background: rgb(255 255 255 / 88%);
  padding: 35px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fbbf24;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.5;
}

.stat-subtext {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 8px;
  font-style: italic;
  color: black;
}

/* ===== OUTCOMES SECTION ===== */
.outcomes-section {
  background: white;
  padding: 80px 20px;
}

.outcomes-section h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 50px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.outcome-box {
  background: var(--bg-light-blue);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.outcome-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.outcome-box h3 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 10px;
}

.outcome-stat {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.outcome-box p {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== GROWTH TIMELINE ===== */
.timeline-section {
  background: var(--bg-light-blue);
  padding: 80px 20px;
}

.timeline-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 50px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-blue), transparent);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: auto;
  width: 48%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  width: 48%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent-blue);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent-blue);
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-light);
}

.timeline-year {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.timeline-event {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-description {
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ===== INDUSTRY REACH ===== */
.industry-section {
  background: white;
  padding: 40px 20px;
}

.industry-section h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 50px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.industry-badge {
  background: linear-gradient(
    135deg,
    var(--primary-blue-light),
    var(--accent-blue)
  );
  color: white;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: all 0.3s;
}

.industry-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

/* ===== ROI SECTION ===== */
.roi-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-light)
  );
  color: white;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px 20px;
}

.roi-section h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.roi-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.roi-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: white;
}

.roi-metric {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fbbf24;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #1e3a8a;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.btn {
  padding: 10px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-primary {
  background: #0ea5e9;
  color: white;
}

.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
  background: white;
  color: #1e3a8a;
}

.btn-secondary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}
.roi-description {
  font-size: 0.8rem;
  opacity: 0.9;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    width: 100%;
    margin-left: 60px;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-section h2 {
    font-size: 2rem;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .compliance-section h2 {
    font-size: 2rem;
  }

  .matrix-grid,
  .trust-badges,
  .security-list {
    grid-template-columns: 1fr;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .case-studies-section h2 {
    font-size: 2rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  table {
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .comparison-table {
    overflow-x: auto;
  }

  table {
    min-width: 600px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .founder-story {
    grid-template-columns: 1fr;
  }

  .founder-section h2 {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
