/* ============================================================
   STRATUM.EARTH – HOMEPAGE STYLES
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 20, 0.85) 0%,
    rgba(13, 16, 64, 0.75) 50%,
    rgba(5, 8, 20, 0.6) 100%
  );
}

/* GIS Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,87,245,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,87,245,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,87,245,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,174,255,0.15) 0%, transparent 70%);
  top: 20%;
  right: 15%;
  z-index: 1;
  animation: pulseSoft 5s ease-in-out infinite;
}

/* Canvas Globe */
#globe-canvas {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  z-index: 2;
  opacity: 0.6;
}

/* Particles canvas */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(79, 87, 245, 0.2);
  border: 1px solid rgba(79, 87, 245, 0.4);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #A9AEFF 0%, #7A7EFF 50%, #4F57F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-10);
  max-width: 560px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

/* Hero Metrics Bar */
.hero-metrics {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.65s both;
}

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

.hero-metric-value {
  font-family: var(--font-numbers);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1;
}

.hero-metric-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-1);
  letter-spacing: 0.05em;
}

/* Floating Analytics Cards */
.hero-float-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.float-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 200px;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-sm);
}

.float-card-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.float-card-data .value {
  font-family: var(--font-numbers);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: 1;
}

.float-card-data .label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.float-card-trend {
  margin-left: auto;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.trend-up {
  color: #059669;
  background: #D1FAE5;
}

.trend-down {
  color: #DC2626;
  background: #FEE2E2;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  animation: bounce 1.5s ease infinite;
}

/* Responsive Hero */
@media (max-width: 1024px) {
  #globe-canvas { display: none; }
  .hero-float-cards { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
}

@media (max-width: 640px) {
  .hero-metrics { flex-direction: column; gap: var(--space-4); }
  .hero-metric { text-align: center; }
}

/* ============================================================
   COMPANY INTRODUCTION
   ============================================================ */
.intro-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.intro-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.intro-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.intro-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.intro-feature-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.intro-feature-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.intro-image-wrapper {
  position: relative;
}

.intro-image {
  width: 100%;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-image-badge {
  position: absolute;
  bottom: -var(--space-6);
  left: -var(--space-6);
  bottom: -24px;
  left: -24px;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.intro-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-8);
  margin-top: var(--space-6);
}

.intro-stat {
  display: flex;
  flex-direction: column;
}

.intro-stat-value {
  font-family: var(--font-numbers);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .intro-image-badge { position: static; margin-top: var(--space-4); }
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
.stats-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(79,87,245,0.15) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(79,87,245,0.2);
  border: 1px solid rgba(79,87,245,0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto var(--space-4);
}

.stat-card-number {
  font-family: var(--font-numbers);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-card-suffix {
  color: var(--accent);
}

.stat-card-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ============================================================
   CORE CAPABILITIES
   ============================================================ */
.capabilities-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.capability-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-glow);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-number {
  font-family: var(--font-numbers);
  font-size: 4rem;
  font-weight: var(--fw-bold);
  color: var(--bg-section);
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  transition: color var(--transition-base);
}

.capability-card:hover .capability-number {
  color: var(--accent-light);
}

.capability-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.capability-card:hover .capability-icon {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-glow-sm);
}

.capability-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.capability-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

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

@media (max-width: 640px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LANDSCAPES OF WORK
   ============================================================ */
.landscapes-section {
  background: var(--bg-secondary);
  padding: var(--section-py) 0;
}

.landscapes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  grid-auto-rows: auto;
}

.landscapes-grid .landscape-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.landscapes-grid .landscape-card:nth-child(2) {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .landscapes-grid { grid-template-columns: repeat(2, 1fr); }
  .landscapes-grid .landscape-card:first-child { grid-column: span 1; grid-row: span 1; }
  .landscapes-grid .landscape-card:nth-child(2) { grid-row: span 1; }
}

@media (max-width: 640px) {
  .landscapes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURED SOLUTIONS
   ============================================================ */
.solutions-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(79,87,245,0.2) 0%, transparent 60%);
}

.solutions-section .section-header h2 {
  color: white;
}

.solutions-section .section-header p {
  color: rgba(255,255,255,0.65);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.solution-card-featured {
  background: var(--grad-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  color: white;
  position: relative;
  overflow: hidden;
  grid-row: span 2;
}

.solution-card-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.solution-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  color: white;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.solution-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .solution-card-featured { grid-row: span 1; }
}

@media (max-width: 640px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WORLD MAP SECTION
   ============================================================ */
.map-section {
  background: var(--bg-secondary);
  padding: var(--section-py) 0;
}

#world-map {
  height: 500px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

/* ============================================================
   SUSTAINABILITY INTELLIGENCE
   ============================================================ */
.sustainability-section {
  background: var(--bg-section);
  padding: var(--section-py) 0;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.sustainability-chart-wrapper {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

.chart-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .sustainability-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AI & GIS SECTION
   ============================================================ */
.aigis-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.aigis-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,87,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,87,245,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.aigis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.aigis-grid .section-header {
  text-align: left;
  margin-bottom: 0;
}

.aigis-grid .section-header h2 { color: white; }
.aigis-grid .section-header p { color: rgba(255,255,255,0.65); }

.aigis-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.aigis-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.aigis-feature:hover {
  background: rgba(79,87,245,0.1);
  border-color: rgba(79,87,245,0.3);
}

.aigis-image-wrapper {
  position: relative;
}

.aigis-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.aigis-badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  background: rgba(79,87,245,0.9);
  backdrop-filter: blur(10px);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .aigis-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESEARCH COLLABORATION
   ============================================================ */
.research-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.research-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-glow);
  background: white;
}

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

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--bg-section);
  padding: var(--section-py) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.why-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.why-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--grad-primary);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto var(--space-6);
  box-shadow: var(--shadow-glow-sm);
  transition: all var(--transition-spring);
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}

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

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TECHNOLOGY STACK
   ============================================================ */
.tech-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}

.tech-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
}

.tech-item:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  background: white;
}

.tech-item-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  color: var(--primary);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
}

.tech-item-name {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-secondary);
  padding: var(--section-py) 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .testimonials-slider { grid-template-columns: 1fr; }
}

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
.insights-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

@media (max-width: 640px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--grad-primary);
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-section .section-header {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-6);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-xl);
  margin-bottom: var(--space-10);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-section {
  background: var(--bg);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trusted-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

/* ============================================================
   PROCESS TIMELINE (HORIZONTAL)
   ============================================================ */
.process-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  position: relative;
}

.process-section .section-header h2 { color: white; }
.process-section .section-header p { color: rgba(255,255,255,0.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-numbers);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: white;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-glow);
  border: 3px solid var(--bg-dark);
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: white;
  margin-bottom: var(--space-2);
}

.process-step-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--lh-relaxed);
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
}
