/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 148px 6vw 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 47px,
    var(--blue-mid) 47px,
    var(--blue-mid) 48px
  );
  opacity: 0.25;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s;
  border: 2px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--blue);
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--blue-light);
}

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ── STATS ────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

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

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── SECTIONS ─────────────────────────────────────────── */
section {
  padding: 6rem 6vw;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

/* ── VALUE PROPS ──────────────────────────────────────── */
.values-section {
  background: var(--off-white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}

.value-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(10, 79, 191, 0.09);
  transform: translateY(-3px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ── SERVICES ─────────────────────────────────────────── */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.22s;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-child(n + 4) {
  border-bottom: none;
}

.service-card:hover {
  background: var(--blue-light);
}

.service-card:hover .service-num {
  color: var(--blue);
}

.service-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.22s;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover .service-link {
  opacity: 1;
}

/* ── PROCESS ──────────────────────────────────────────── */
.process-section {
  background: var(--off-white);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(10% + 15px);
  right: calc(10% + 15px);
  height: 1px;
  background: var(--blue);
  opacity: 0.2;
}

.process-step {
  padding: 0 1rem;
  text-align: center;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
  position: relative;
  z-index: 1;
  transition:
    background 0.25s,
    color 0.25s;
}

.process-step:hover .step-num {
  background: var(--blue);
  color: var(--white);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.825rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
}

/* ── TECH MARQUEE ─────────────────────────────────────── */
.tech-section {
  background: var(--white);
  padding: 5rem 0;
}

.tech-header {
  padding: 0 6vw;
  margin-bottom: 3rem;
}

.tech-marquee-outer {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
  background: var(--off-white);
}

.tech-marquee-outer::before,
.tech-marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.tech-marquee-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--off-white), transparent);
}

.tech-marquee-outer::after {
  right: 0;
  background: linear-gradient(270deg, var(--off-white), transparent);
}

.tech-marquee {
  display: flex;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}

.tech-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── INDUSTRIES ───────────────────────────────────────── */
.industries-section {
  background: var(--blue-deeper);
}

.industries-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.industries-section .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.35);
}

.industries-section h2 {
  color: var(--white);
}

.industries-section .section-lead {
  color: rgba(255, 255, 255, 0.6);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}


.industry-card {
  background: var(--blue-deeper);
  padding: 2.25rem 2rem;
  transition: background 0.25s;
  position: relative;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s;
}

.industry-card:hover {
  background: var(--blue-dark);
}

.industry-card:hover::before {
  background: rgba(255, 255, 255, 0.25);
}

.industry-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.industry-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.industry-desc {
  font-size: 0.858rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 300;
  line-height: 1.7;
}

/* ── CTA ──────────────────────────────────────────────── */
.cta-section {
  background: var(--white);
  padding: 7rem 6vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border-top: 1px solid var(--border);
}

.cta-left h2 {
  margin-bottom: 0.75rem;
}

.cta-left p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

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

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

.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal:nth-child(5) {
  transition-delay: 0.33s;
}

.reveal:nth-child(6) {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::after {
    opacity: 0.12;
  }

  .hero-right {
    display: none;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-right {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .stats-bar {
    grid-template-columns: repeat(1, 1fr);
  }

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .service-card {
    border-right: none !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-right {
    flex-direction: column;
  }
    /*added 20260414*/
  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }
}
