/* ============================================================
   ABS Home Page — Navy + Sky modern software theme
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   HERO — photo + scatter decoration + wave divider
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 14vw, 168px) 0 clamp(120px, 14vw, 200px);
  background:
    radial-gradient(ellipse 50% 55% at 90% 10%, rgba(91,110,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 8% 90%, rgba(57,87,255,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--brand-50) 0%, #FFFFFF 95%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,87,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,87,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 25%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 25%, transparent 80%);
  pointer-events: none;
}

/* Scatter decoration elements */
.hero__deco {
  position: absolute;
  pointer-events: none;
}
.hero__deco--dots {
  top: 120px;
  left: 4%;
  width: 90px;
  height: 90px;
  color: var(--brand-300);
  opacity: 0.6;
}
.hero__deco--plus {
  top: 30%;
  right: 3%;
  width: 28px;
  height: 28px;
  color: var(--accent-500);
  opacity: 0.9;
  animation: spin-slow 10s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.hero__deco--arrow {
  bottom: 18%;
  left: 38%;
  width: 110px;
  height: 60px;
  color: var(--brand-400);
  opacity: 0.5;
  display: none;
}
@media (min-width: 1200px) { .hero__deco--arrow { display: block; } }

/* Wave divider at bottom */
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%;
  height: 90px;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px 6px 12px;
  background: var(--color-white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  color: var(--navy-700);
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--space-8);
}

.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.18);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.25rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: var(--tracking-tighter);
  color: var(--slate-900);
  margin-bottom: var(--space-6);
}
.hero__title-line { display: block; }

.hero__title-accent {
  background: linear-gradient(120deg, var(--brand-700) 0%, var(--brand-600) 50%, var(--brand-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero__subtitle {
  font-size: var(--text-md);
  color: var(--slate-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--navy-100);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--slate-600);
  font-weight: var(--weight-medium);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand-600);
  stroke-width: 2.25;
}

/* Hero right — Unsplash photo with blob bg + floating stat */
.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1.05;
}

.hero-photo__blob {
  position: absolute;
  inset: 4% -4% -4% 4%;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 40%, var(--brand-400) 100%);
  border-radius: 58% 42% 56% 44% / 50% 60% 40% 50%;
  z-index: 0;
  animation: blob-morph 12s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 58% 42% 56% 44% / 50% 60% 40% 50%; }
  50%      { border-radius: 42% 58% 44% 56% / 60% 50% 50% 40%; }
}

.hero-photo__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 50% / 48% 48% 52% 52%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(57,87,255,0.25);
  border: 4px solid #FFFFFF;
}
.hero-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo__stat {
  position: absolute;
  right: -12px;
  top: 42%;
  z-index: 2;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 12px 32px rgba(57,87,255,0.18), 0 0 0 1px var(--brand-100);
  animation: float-card 5s ease-in-out infinite;
}
.hero-photo__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-photo__stat-icon svg { width: 18px; height: 18px; stroke-width: 3; }
.hero-photo__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1;
}
.hero-photo__stat-label {
  font-size: var(--text-xs);
  color: var(--slate-500);
  margin-top: 2px;
}

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

.hero-photo__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(57,87,255,0.30);
  text-decoration: none;
  transition: transform var(--t-base), background var(--t-base);
}
.hero-photo__play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: ping 2.5s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.hero-photo__play svg { width: 24px; height: 24px; fill: currentColor; stroke: currentColor; margin-left: 3px; }
.hero-photo__play:hover { transform: translate(-50%, -50%) scale(1.08); background: #FFFFFF; }

.hero-photo__deco {
  position: absolute;
  left: -28px;
  bottom: -10px;
  width: 70px;
  height: 70px;
  z-index: 0;
  color: var(--accent-500);
  opacity: 0.7;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-card {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 6px rgba(56,189,248,0.10);
  overflow: hidden;
  animation: float-card 6s ease-in-out infinite;
}

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

.hero-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--color-white) 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-card__bar-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--slate-300);
}
.hero-card__bar-dot:nth-child(1) { background: #EF4444; }
.hero-card__bar-dot:nth-child(2) { background: var(--amber-500); }
.hero-card__bar-dot:nth-child(3) { background: #22C55E; }
.hero-card__bar-label {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.04em;
}

.hero-card__body {
  padding: var(--space-6);
  display: grid;
  gap: var(--space-5);
}

.hero-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card__title-row h4 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--slate-900);
}
.hero-card__chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--sky-100);
  color: var(--sky-700);
  border-radius: var(--radius-full);
}

.hero-card__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.hero-card__kpi {
  padding: 14px;
  background: var(--navy-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-100);
}
.hero-card__kpi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--slate-500);
  margin-bottom: 4px;
}
.hero-card__kpi-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy-700);
  letter-spacing: -0.02em;
}
.hero-card__kpi-delta {
  margin-top: 2px;
  font-size: 11px;
  color: #16A34A;
  font-weight: 600;
}

.hero-card__chart {
  position: relative;
  height: 110px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(56,189,248,0.08) 0%, transparent 100%);
  border: 1px solid var(--navy-100);
  overflow: hidden;
}
.hero-card__chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-card__floating {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--color-white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--slate-900);
  animation: float-card 5.5s ease-in-out 0.5s infinite;
}
.hero-card__floating svg {
  width: 16px;
  height: 16px;
  color: var(--sky-500);
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__right { margin-top: var(--space-8); }
  .hero-photo { max-width: 460px; margin: 0 auto; }
  .hero__deco--dots { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   LOGO CLOUD — trusted partners strip
   ───────────────────────────────────────────────────────────── */
.logo-cloud {
  padding: var(--space-16) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.logo-cloud__label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: var(--space-8);
}

.logo-cloud__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: center;
  align-items: center;
}

.logo-cloud__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--slate-400);
  letter-spacing: -0.01em;
  transition: color var(--t-base), transform var(--t-base);
  cursor: default;
}
.logo-cloud__item:hover {
  color: var(--navy-700);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   STATS BAND — big numbers
   ───────────────────────────────────────────────────────────── */
.stats {
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--color-white) 100%);
  padding: clamp(60px, 9vw, 100px) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  text-align: center;
  padding: var(--space-6);
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--navy-200) 40%, var(--navy-200) 60%, transparent);
}

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--tracking-tighter);
  background: linear-gradient(120deg, var(--navy-700) 0%, var(--navy-600) 50%, var(--sky-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__label {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--slate-500);
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .stats__item + .stats__item::before { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   SERVICES — image-top cards (InfoTek-style)
   ───────────────────────────────────────────────────────────── */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,87,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,87,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }

.services__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.services__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  color: var(--slate-900);
  margin: 0;
}
.services__head .eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
}

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

.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-300);
  box-shadow: 0 24px 50px rgba(57,87,255,0.18);
}

.service-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brand-50);
}
.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card__photo img { transform: scale(1.08); }
.service-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,19,64,0.35) 100%);
}

.service-card__icon {
  position: absolute;
  top: calc(75% / 1 - 26px);
  left: var(--space-5);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(57,87,255,0.22);
  z-index: 2;
  transition: background var(--t-base), color var(--t-base);
}
.service-card:hover .service-card__icon {
  background: var(--brand-600);
  color: var(--color-white);
}
.service-card__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }

.service-card__body {
  padding: var(--space-8) var(--space-6) var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-tight);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  flex-grow: 1;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--brand-600);
  transition: gap var(--t-base);
}
.service-card:hover .service-card__more { gap: var(--space-3); }
.service-card__more svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__head { grid-template-columns: 1fr; }
  .services__head-cta { justify-self: start; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   BRIGHT CTA STRIP — between services and process
   ───────────────────────────────────────────────────────────── */
.cta-strip {
  padding: var(--space-12) 0;
  background: var(--color-white);
}
.cta-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) var(--space-10);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(91,110,255,0.45), transparent 60%),
    linear-gradient(120deg, var(--brand-700) 0%, var(--brand-600) 100%);
  color: #FFFFFF;
  box-shadow: 0 24px 50px rgba(57,87,255,0.30);
  overflow: hidden;
}
.cta-strip__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 20% 50%, #000 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 90% 100% at 20% 50%, #000 40%, transparent 90%);
  pointer-events: none;
}
.cta-strip__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-strip__icon svg { width: 28px; height: 28px; stroke-width: 1.75; }
.cta-strip__text { position: relative; z-index: 1; }
.cta-strip__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.cta-strip__big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}
.cta-strip__btn {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  color: var(--brand-700);
  border: 0;
}
.cta-strip__btn:hover {
  background: var(--brand-50);
  color: var(--brand-800);
  transform: translateY(-2px);
}
.btn-light {
  background: #FFFFFF;
  color: var(--brand-700);
  border: 0;
}

@media (max-width: 768px) {
  .cta-strip__inner { grid-template-columns: 1fr; text-align: center; padding: var(--space-8); }
  .cta-strip__icon { margin: 0 auto; }
  .cta-strip__btn { justify-self: center; }
}

/* ─────────────────────────────────────────────────────────────
   WHY ABS — 3-column value props
   ───────────────────────────────────────────────────────────── */
.why {
  background: var(--navy-50);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 65%);
  pointer-events: none;
}

.why .container { position: relative; z-index: 1; }

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

.why__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
}
.why__card:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why__card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: 0 8px 24px rgba(30,64,175,0.25);
}
.why__card-icon svg { width: 30px; height: 30px; stroke-width: 1.75; }

.why__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-tight);
}
.why__card-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--sky-500);
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
}
.why__card-desc {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

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

/* ─────────────────────────────────────────────────────────────
   PROCESS — zigzag timeline with dashed curve connector
   ───────────────────────────────────────────────────────────── */
.process {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-white);
}

.process__wrapper {
  position: relative;
  padding-bottom: 40px;
}

.process__connector {
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  width: 88%;
  height: 240px;
  color: var(--brand-400);
  z-index: 0;
  pointer-events: none;
}

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

.process__step {
  text-align: center;
  padding-inline: var(--space-4);
}
.process__step:nth-child(even) { margin-top: 140px; }

.process__step-num {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-600) 100%);
  color: var(--color-white);
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px #FFFFFF,
    0 0 0 10px var(--brand-100),
    0 12px 28px rgba(57,87,255,0.30);
}

.process__step-num-inner {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.process__step-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
  background: var(--accent-500);
  color: #FFFFFF;
  stroke-width: 2;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-tight);
}

.process__step-desc {
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: var(--leading-relaxed);
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr; gap: var(--space-10); }
  .process__step:nth-child(even) { margin-top: 0; }
  .process__connector { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   INDUSTRIES — dark band with pills
   ───────────────────────────────────────────────────────────── */
.industries {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 10%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 20% 100%, rgba(37,99,235,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.industries .section-header h2 { color: var(--color-white); }
.industries .section-header p { color: rgba(255,255,255,0.72); }
.industries .eyebrow { color: var(--sky-400); }

.industries__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 920px;
  margin: 0 auto;
}

.industries__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96,165,250,0.20);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.88);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  cursor: default;
  transition: all var(--t-base);
}

.industries__pill svg {
  width: 16px; height: 16px;
  color: var(--sky-400);
  stroke-width: 2;
}

.industries__pill:hover {
  background: var(--navy-700);
  border-color: var(--sky-400);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(56,189,248,0.30);
  color: var(--color-white);
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────── */
.testimonials {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-6);
}

.t-card {
  position: relative;
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-300);
  box-shadow: var(--shadow-lg);
}

.t-card--feature {
  grid-row: span 2;
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--color-white) 100%);
  border-color: var(--navy-200);
  padding: var(--space-10);
}

.t-card__quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  color: var(--sky-400);
  margin-bottom: var(--space-2);
  display: block;
}

.t-card__quote {
  font-family: var(--font-display);
  color: var(--slate-800);
  font-size: var(--text-md);
  line-height: var(--leading-snug);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.t-card--feature .t-card__quote {
  font-size: var(--text-xl);
  line-height: 1.4;
}

.t-card__person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--navy-100);
}
.t-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-100);
  flex-shrink: 0;
}
.t-card__name {
  font-weight: 700;
  color: var(--slate-900);
  font-size: var(--text-sm);
}
.t-card__role {
  color: var(--slate-500);
  font-size: var(--text-xs);
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .t-card--feature { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 600px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .t-card--feature { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────────────────
   FAQ — accordion
   ───────────────────────────────────────────────────────────── */
.faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--navy-50);
}

.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq .accordion__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq .accordion__item.open {
  border-color: var(--navy-300);
  box-shadow: 0 8px 24px rgba(30,64,175,0.10);
}

.faq .accordion__trigger {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--slate-900);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
}

.faq .accordion__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}
.faq .accordion__icon svg { width: 14px; height: 14px; stroke-width: 2.5; }

.faq .accordion__item.open .accordion__icon {
  background: var(--navy-700);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq .accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq .accordion__item.open .accordion__panel { max-height: 500px; }

.faq .accordion__panel-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────────────────
   CTA BAND — closing
   ───────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(56,189,248,0.30), transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 100%, rgba(125,211,252,0.20), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--color-white);
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: var(--space-6);
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-5);
}
.cta-band__title span {
  background: linear-gradient(120deg, #FFFFFF 0%, var(--sky-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band__desc {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-8);
}

.cta-band__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.cta-band .btn-primary {
  background: var(--color-white);
  color: var(--navy-700);
  box-shadow: 0 8px 28px rgba(255,255,255,0.20);
}
.cta-band .btn-primary:hover {
  background: var(--sky-100);
  color: var(--navy-800);
  box-shadow: 0 12px 36px rgba(255,255,255,0.30);
}

.cta-band .btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.cta-band .btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--color-white);
}

.cta-band__features {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
}
.cta-band__features span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.cta-band__features svg {
  width: 16px; height: 16px;
  color: var(--sky-400);
  stroke-width: 2.5;
}

/* ─────────────────────────────────────────────────────────────
   CURSOR GLOW (used by effects.js)
   ───────────────────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  margin-left: -180px;
  margin-top: -180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, rgba(30,64,175,0.05) 30%, transparent 70%);
  mix-blend-mode: multiply;
  transition: opacity 200ms ease;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL (works with scroll-reveal.js)
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — mobile tightening
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding-top: clamp(72px, 16vw, 110px); padding-bottom: var(--space-12); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero-card__floating { right: 0; top: -14px; padding: 8px 10px; font-size: var(--text-xs); }

  .industries__pills { gap: var(--space-2); }
  .industries__pill { padding: 10px 16px; font-size: var(--text-xs); }

  .cta-band__actions { flex-direction: column; }
  .cta-band__features { gap: var(--space-4); }
}
