/* ============================================================
   Our Echo Digital Solutions — Homepage v3 Stylesheet
   Place this file at: assets/css/styles.css
   ============================================================ */

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

:root {
  --dark-blue:  #263B9C;
  --azure:      #58D5FF;
  --cyan:       #00C8C8;
  --light-cyan: #B5F3F3;
  --grey-blue:  #5A6A89;
  --white:      #FFFFFF;
  --near-black: #1A1A2E;
  --bg-soft:    #F4F8FF;
  --font-head:  'Helvetica Neue', 'Arial Narrow', Arial, sans-serif;
  --font-body:  'Helvetica Neue', 'Helvetica World', Arial, sans-serif;
  --radius-lg:  20px;
  --radius-md:  12px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--grey-blue);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

.container       { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-wide  { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ── PILL LABEL ──────────────────────────────────────────────── */
.pill-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(88,213,255,0.12);
  color: var(--dark-blue);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(88,213,255,0.3);
}
.pill-label i { color: var(--cyan); font-size: 11px; }
.pill-label.white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.pill-label.white i { color: var(--azure); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all 0.2s; white-space: nowrap; cursor: pointer;
}
.btn-primary   { background: var(--dark-blue); color: var(--white); }
.btn-primary:hover { background: #1d2e7a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(38,59,156,0.25); }
.btn-outline   { background: transparent; border: 2px solid var(--dark-blue); color: var(--dark-blue); padding: 12px 26px; }
.btn-outline:hover { background: var(--dark-blue); color: var(--white); }
.btn-accent    { background: var(--azure); color: var(--dark-blue); box-shadow: 0 4px 20px rgba(88,213,255,0.3); }
.btn-accent:hover { background: #7de0ff; transform: translateY(-2px); }
.btn-white     { background: var(--white); color: var(--dark-blue); }
.btn-white:hover { background: var(--light-cyan); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); padding: 12px 26px; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(38,59,156,0.08), 0 4px 20px rgba(38,59,156,0.05);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 76px; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; justify-content: center; }
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; color: var(--grey-blue); font-size: 15px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; gap: 5px;
}
.nav-links a:hover { color: var(--dark-blue); background: var(--bg-soft); }
.nav-links a i { font-size: 10px; opacity: 0.6; transition: transform 0.2s; }

/* Dropdown */
.nav-item.has-dropdown:hover > a i { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #e8eef8;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(38,59,156,0.12);
  min-width: 280px;
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  transform: translateX(-50%) translateY(8px);
  z-index: 300;
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  color: inherit;
}
.dropdown-item:hover { background: var(--bg-soft); }
.di-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(88,213,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 1px;
}
.di-icon i { font-size: 16px; color: var(--dark-blue); }
.dropdown-item:hover .di-icon { background: rgba(38,59,156,0.08); }
.di-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark-blue); margin-bottom: 2px; }
.di-text span   { font-size: 12px; color: var(--grey-blue); line-height: 12px!important; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(150deg, #f0faff 0%, #e8f8f8 40%, var(--light-cyan) 100%);
  overflow: hidden; padding: 0;
}
.hero::before {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,213,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 580px;
}
.hero-content {
  padding: 80px 60px 80px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-content h1 {
  font-size: 56px; color: var(--dark-blue);
  margin-bottom: 22px; max-width: 520px;
}
.hero-content h1 em { color: var(--cyan); font-style: normal; display: block; }
.hero-content p {
  font-size: 18px; color: var(--grey-blue);
  margin-bottom: 36px; line-height: 1.72; max-width: 460px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image panel */
.hero-image-panel {
  position: relative;
  border-radius: 0 0 0 60px; overflow: hidden;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2d80 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-image-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-stat-card {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 14px 20px; box-shadow: 0 8px 32px rgba(38,59,156,0.2);
  display: flex; align-items: center; gap: 12px;
}
.hero-stat-card.top-left  { top: 40px; left: -20px; }
.hero-stat-card.bot-right { bottom: 60px; right: 20px; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon i { font-size: 18px; }
.stat-icon.blue { background: rgba(38,59,156,0.1); }
.stat-icon.blue i { color: var(--dark-blue); }
.stat-icon.cyan { background: rgba(0,200,200,0.1); }
.stat-icon.cyan i { color: var(--cyan); }
.hstat-num { font-size: 20px; font-weight: 800; color: var(--dark-blue); font-family: var(--font-head); line-height: 1; }
.hstat-lbl { font-size: 12px; color: var(--grey-blue); }

/* ── PROOF STRIP — LOGO MARQUEE ──────────────────────────────── */
.proof-strip {
  background: var(--dark-blue);
  padding: 20px 0 24px;
  overflow: hidden;
}
.proof-strip-label { margin-bottom: 16px; }
.proof-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.8px; text-transform: uppercase;
}

/* Marquee wrapper — masks edges with fade */
.logo-marquee-wrap {
  position: relative; overflow: hidden;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.logo-marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--dark-blue), transparent); }
.logo-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--dark-blue), transparent); }

/* Scrolling track — CSS animation, no JS needed */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.logo-marquee-track:hover { animation-play-state: paused; }

.marquee-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 32px;
  height: 64px;
  /* Subtle white card behind each logo so any colour logo is visible */
  background: rgba(255,255,255,0.97);
  border-radius: 10px;
  margin: 0 10px;
  border: 1px solid var(--azure);
  min-width: 160px;
}
.proof-logo-img {
  height: 32px; width: auto; max-width: 120px;
  object-fit: contain;
  display: block;
  /* No invert filter — white card bg means dark logos show fine.
     If you supply white/light logos, remove the filter below and set directly. */
}
/* Fallback text pill */
.proof-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px 20px;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

/* ── PAIN POINTS ─────────────────────────────────────────────── */
.pain-points { padding: 96px 0; background: var(--white); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: 40px; color: var(--dark-blue); max-width: 830px; }
.section-head.center h2 { margin: 0 auto; }
.section-head p { font-size: 17px; color: var(--grey-blue); margin-top: 14px; max-width: 540px; line-height: 1.7; }
.section-head.center p { margin-left: auto; margin-right: auto; }

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

/* CHANGE 4: Replaced translateY with border glow + icon colour shift on hover */
.pain-card {
  background: var(--white);
  border: 1px solid #e8eef8;
  border-top: 4px solid var(--azure);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px 26px 28px;
  transition: box-shadow 0.3s, border-top-color 0.3s;
  box-shadow: 0 2px 12px rgba(38,59,156,0.04);
}
.pain-card:hover {
  box-shadow: 0 0 0 3px rgba(88,213,255,0.25), 0 8px 32px rgba(38,59,156,0.1);
  border-top-color: var(--cyan);
}
.pain-card:nth-child(2) { border-top-color: var(--cyan); }
.pain-card:nth-child(2):hover { border-top-color: var(--azure); }
.pain-card:nth-child(3) { border-top-color: var(--dark-blue); }
.pain-card:nth-child(3):hover { box-shadow: 0 0 0 3px rgba(38,59,156,0.18), 0 8px 32px rgba(38,59,156,0.1); }
.pain-card:nth-child(4) { border-top-color: var(--grey-blue); }
.pain-card:nth-child(4):hover { box-shadow: 0 0 0 3px rgba(90,106,137,0.2), 0 8px 32px rgba(38,59,156,0.08); }

.pain-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(88,213,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.pain-icon-wrap i { font-size: 22px; color: var(--dark-blue); transition: color 0.3s; }
.pain-card:hover .pain-icon-wrap { background: rgba(88,213,255,0.18); }
.pain-card:nth-child(2) .pain-icon-wrap { background: rgba(0,200,200,0.1); }
.pain-card:nth-child(2) .pain-icon-wrap i { color: var(--cyan); }
.pain-card h3 { font-size: 18px; color: var(--dark-blue); margin-bottom: 10px; }
.pain-card p  { font-size: 14px; color: var(--grey-blue); line-height: 1.6; }

/* ── FEATURES BAND ───────────────────────────────────────────── */
.features-band {
  padding: 96px 0;
  background: var(--dark-blue);
  position: relative; overflow: hidden;
}
.features-band::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,213,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.features-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.features-content h2 { font-size: 40px; color: var(--white); margin-bottom: 28px; }
.features-content h2 em { color: var(--azure); font-style: normal; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--azure);
  transition: background 0.2s;
}
.feature-item:hover { background: rgba(255,255,255,0.08); }
.feature-item:nth-child(2) { border-left-color: var(--cyan); }
.feature-item:nth-child(3) { border-left-color: var(--azure); }
.feature-item:nth-child(4) { border-left-color: var(--cyan); }
.fi-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(88,213,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fi-icon i { font-size: 16px; color: var(--azure); }
.fi-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.fi-text span   { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.features-visual { position: relative; }
.planner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
}
.features-visual img { width: 100%; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); display: block; }
.planner-bar {
  background: rgba(255,255,255,0.08); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
}
.planner-bar i { color: var(--azure); }
.planner-body { padding: 20px; }
.day-strip { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; margin-bottom: 16px; }
.day-cell {
  background: rgba(38,59,156,0.4); border-radius: 6px;
  padding: 7px 3px; text-align: center;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.45);
}
.day-cell.today { background: var(--cyan); color: var(--white); }
.session-row {
  border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.session-row:last-child { margin-bottom: 0; }
.session-row i { font-size: 18px; flex-shrink: 0; }
.sr-info { flex: 1; }
.sr-info strong { display: block; font-size: 12px; font-weight: 700; color: var(--white); }
.sr-info span   { font-size: 11px; color: rgba(255,255,255,0.5); }
.sr-badge { font-size: 10px; font-weight: 700; border-radius: 20px; padding: 3px 10px; white-space: nowrap; }

/* ── RESULTS ─────────────────────────────────────────────────── */
.results { padding: 96px 0; background: var(--bg-soft); }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.result-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: 0 2px 14px rgba(38,59,156,0.05);
  display: flex; align-items: flex-start; gap: 18px;
  border-left: 4px solid var(--azure);
  transition: box-shadow 0.3s, border-left-color 0.3s;
}
/* Glow highlight on hover instead of translateY */
.result-card:hover {
  box-shadow: 0 0 0 2px rgba(88,213,255,0.3), 0 8px 28px rgba(38,59,156,0.09);
  border-left-color: var(--cyan);
}
.result-card:nth-child(2), .result-card:nth-child(5) { border-left-color: var(--cyan); }
.result-card:nth-child(2):hover, .result-card:nth-child(5):hover { border-left-color: var(--azure); box-shadow: 0 0 0 2px rgba(0,200,200,0.25), 0 8px 28px rgba(38,59,156,0.09); }
.result-card:nth-child(3), .result-card:nth-child(6) { border-left-color: var(--dark-blue); }
.result-card:nth-child(3):hover, .result-card:nth-child(6):hover { box-shadow: 0 0 0 2px rgba(38,59,156,0.2), 0 8px 28px rgba(38,59,156,0.09); }
.rc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  background: rgba(88,213,255,0.1);
}
.rc-icon i { font-size: 18px; color: var(--dark-blue); }
.result-card:nth-child(2) .rc-icon, .result-card:nth-child(5) .rc-icon { background: rgba(0,200,200,0.1); }
.result-card:nth-child(2) .rc-icon i, .result-card:nth-child(5) .rc-icon i { color: var(--cyan); }
.result-card:nth-child(3) .rc-icon, .result-card:nth-child(6) .rc-icon { background: rgba(38,59,156,0.08); }
.result-card:nth-child(3) .rc-icon i, .result-card:nth-child(6) .rc-icon i { color: var(--dark-blue); }
.rc-text strong { display: block; font-size: 16px; font-weight: 700; color: var(--dark-blue); margin-bottom: 5px; font-family: var(--font-head); }
.rc-text span   { font-size: 14px; color: var(--grey-blue); line-height: 1.55; }

/* ── DUAL AUDIENCE ───────────────────────────────────────────── */
.audience { padding: 96px 0; background: var(--white); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.aud-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 28px rgba(38,59,156,0.08);
  transition: box-shadow 0.3s;
}
/* Glow on hover — no lift */
.aud-card:hover { box-shadow: 0 0 0 3px rgba(88,213,255,0.25), 0 12px 40px rgba(38,59,156,0.12); }
.aud-card.homes:hover { box-shadow: 0 0 0 3px rgba(0,200,200,0.25), 0 12px 40px rgba(38,59,156,0.1); }

.aud-image {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.aud-card.ops   .aud-image { background: linear-gradient(135deg, var(--dark-blue), #1a2d80); }
.aud-card.homes .aud-image { background: linear-gradient(135deg, #007a7a, var(--cyan)); }
.aud-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aud-img-placeholder { text-align: center; color: rgba(255,255,255,0.4); padding: 20px; }
.aud-img-placeholder i { font-size: 36px; display: block; margin-bottom: 8px; }
.aud-img-placeholder span { font-size: 12px; font-weight: 600; }
.aud-badge {
  position: absolute; bottom: 16px; left: 20px;
  background: var(--white); border-radius: 8px;
  padding: 6px 14px; font-size: 13px; font-weight: 700;
}
.aud-card.ops   .aud-badge { color: var(--dark-blue); }
.aud-card.homes .aud-badge { color: #007a7a; }
.aud-body { padding: 28px 32px 32px; background: var(--white); }
.aud-body h3 { font-size: 22px; color: var(--dark-blue); margin-bottom: 8px; }
.aud-body > p { font-size: 15px; color: var(--grey-blue); margin-bottom: 20px; line-height: 1.6; }
.aud-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.aud-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--grey-blue); }
.aud-list li i { font-size: 13px; flex-shrink: 0; }
.aud-card.ops   .aud-list li i { color: var(--dark-blue); }
.aud-card.homes .aud-list li i { color: var(--cyan); }

/* ── TESTIMONIALS — FADE CAROUSEL ───────────────────────────── */
.testimonials { padding: 96px 0; background: var(--dark-blue); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,213,255,0.08) 0%, transparent 70%);
}
.testimonials-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; position: relative; z-index: 1;
}
.testi-left h2 { font-size: 40px; color: var(--white); margin-bottom: 20px; }
.testi-left h2 em { color: var(--azure); font-style: normal; }
.testi-left p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.7; }
.client-logo-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.client-logo-img {
  height: 32px; width: auto; max-width: 100px;
  object-fit: contain; background: rgba(255,255,255,0.09);
  padding: 6px 10px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  filter: brightness(0) invert(1); opacity: 0.7;
  transition: opacity 0.2s;
}
.client-logo-img:hover { opacity: 1; }
.client-logo-tile {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 10px 20px;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.75);
}

/* Carousel container — fixed height so layout doesn't jump */
.testi-carousel { position: relative; }
.testi-slides   { position: relative; min-height: 280px; }

/* All cards stacked; only .active is visible */
.testi-card {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.testi-card.active { opacity: 1; visibility: visible; position: relative; }

.testi-card::before {
  content: '\201C';
  position: absolute; top: 20px; left: 28px;
  font-size: 80px; color: var(--azure); opacity: 0.25;
  font-family: Georgia, serif; line-height: 1;
}
.testi-card p {
  font-size: 17px; font-style: italic; color: rgba(255,255,255,0.9);
  line-height: 1.75; margin-bottom: 24px; padding-top: 16px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--dark-blue); flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 15px; color: var(--white); }
.testi-info span   { font-size: 13px; color: rgba(255,255,255,0.55); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars i { color: var(--azure); font-size: 15px; }

/* Carousel controls */
.testi-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px;
}
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: background 0.3s, width 0.3s; border: none;
}
.testi-dot.active { background: var(--azure); width: 24px; border-radius: 4px; }
.testi-arrows { display: flex; gap: 8px; }
.testi-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.testi-arrow:hover { background: var(--azure); color: var(--dark-blue); border-color: var(--azure); }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how { padding: 96px 0; background: var(--bg-soft); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.steps-connector {
  position: absolute; top: 36px; left: 14%; right: 14%;
  height: 2px;
  background: linear-gradient(to right, var(--azure), var(--cyan), var(--azure));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; font-family: var(--font-head);
  margin: 0 auto 20px; border: 4px solid var(--bg-soft);
  box-shadow: 0 4px 20px rgba(38,59,156,0.18);
}
.step:nth-child(1) .step-num { background: var(--dark-blue); color: var(--white); }
.step:nth-child(2) .step-num { background: var(--cyan);      color: var(--white); }
.step:nth-child(3) .step-num { background: var(--azure);     color: var(--dark-blue); }
.step:nth-child(4) .step-num { background: var(--dark-blue); color: var(--white); }
.step-icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; background: var(--white);
  box-shadow: 0 2px 12px rgba(38,59,156,0.08);
}
.step-icon-box i { font-size: 22px; color: var(--dark-blue); }
.step:nth-child(2) .step-icon-box i { color: var(--cyan); }
.step:nth-child(3) .step-icon-box i { color: var(--azure); }
.step h3 { font-size: 17px; color: var(--dark-blue); margin-bottom: 10px; }
.step p   { font-size: 14px; color: var(--grey-blue); line-height: 1.6; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a2d80 0%, var(--dark-blue) 50%, #1a4040 100%);
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,213,255,0.12) 0%, transparent 70%);
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-text h2 { font-size: 40px; color: var(--white); margin-bottom: 12px; }
.cta-text h2 em { color: var(--azure); font-style: normal; }
.cta-text p   { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 460px; line-height: 1.7; }
.cta-actions  { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--near-black); padding: 60px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 16px; line-height: 1.7; max-width: 260px; }
.footer-logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 15px; text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--azure); color: var(--dark-blue); border-color: var(--azure); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45); font-size: 14px;
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 7px;
}
.footer-col a:hover { color: var(--azure); }
.footer-col a i { font-size: 10px; opacity: 0.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--azure); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .features-inner, .testimonials-inner { grid-template-columns: 1fr; }
  .hero-image-panel { border-radius: var(--radius-lg); min-height: 280px; }
  .hero-content { padding: 64px 0 40px; }
  .hero-content h1 { font-size: 40px; }
  .hero-stat-card { display: none; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .results-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-connector { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-dropdown { left: 0; transform: translateX(0) translateY(8px); }
  .nav-item.has-dropdown:hover .nav-dropdown { transform: translateX(0) translateY(0); }
}

@media (max-width: 600px) {
  .pain-grid, .results-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 34px; }
  .section-head h2 { font-size: 30px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .logo-marquee-wrap::before,
  .logo-marquee-wrap::after { width: 40px; }
}
