/* ============================================
   ShrutAura Global — Section Styles
   ============================================ */

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  position: relative;
  background-color: var(--color-off-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  padding-bottom: 0;
}

.hero__container {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 600px;
}

.hero__content {
  flex: 0 0 50%;
  padding-right: var(--space-12);
  z-index: 3;
}

.hero__visual {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.hero__globe {
  width: 110%;
  max-width: 800px;
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
}

.hero__headline {
  font-family: 'Outfit', var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-8);
}

.hero__headline-accent {
  display: inline-block;
}

.hero__headline-accent .text-rotate-word {
  background: linear-gradient(to right, var(--color-aura-blue), var(--color-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(63, 81, 181, 0.06);
  border: 1px solid rgba(63, 81, 181, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray-600);
  margin-bottom: var(--space-8);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-emerald);
  animation: pulse-ring 2s ease-in-out infinite;
}

.hero__subtext {
  font-family: 'Outfit', var(--font-body);
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-500);
  max-width: 540px;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── Marquee ── */
.hero__marquee {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 10%, rgba(255, 255, 255, 0.8) 90%, rgba(255, 255, 255, 0) 100%);
  padding: var(--space-4) 0;
  overflow: hidden;
  width: 100%;
  z-index: 3;
  margin-bottom: var(--space-4);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-10);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--color-gray-500);
  white-space: nowrap;
}

.marquee-code {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-gray-400);
}

.marquee-item strong {
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  font-size: var(--text-xl);
}

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

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

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + var(--space-8));
  }

  .hero__container {
    flex-direction: column;
    min-height: auto;
    justify-content: center;
  }

  .hero__content {
    flex: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
    padding-bottom: var(--space-8);
    position: relative;
    z-index: 3;
  }

  .hero__visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.12;
    z-index: 0;
  }

  .hero__globe {
    width: 140%;
    max-width: none;
    right: -40%;
    top: 40%;
    transform: translateY(-50%);
  }

  .hero__headline {
    font-size: var(--text-4xl);
  }

  .hero__badge {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
    margin-bottom: var(--space-5);
  }

  .hero__subtext {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }

  .hero__marquee {
    padding: var(--space-3) 0;
    margin-bottom: var(--space-2);
  }

  .marquee-item {
    padding: 0 var(--space-6);
    font-size: var(--text-sm);
  }

  .marquee-item strong {
    font-size: var(--text-base);
  }

  .marquee-code {
    font-size: var(--text-xs);
  }
}

/* ── Trust / Tech Partners Section ── */
.trust {
  border-bottom: 1px solid var(--color-gray-100);
}

.trust__heading {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gray-400);
  text-align: center;
  margin-bottom: var(--space-8);
}

/* ── Why ShrutAura Section ── */
/* Uses grid + card components — minimal extra styling needed */

/* ── Services Section ── */
.services-grid .card {
  display: flex;
  flex-direction: column;
}

/* ── Process Section ── */
.process {
  background-color: var(--color-off-white);
}

.process__timeline {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Industries Section ── */

/* ── Vision Section ── */
.vision {
  background-color: var(--color-white);
  color: var(--color-navy);
  overflow: hidden;
  border-top: 1px solid var(--color-gray-100);
}

.vision .section-overline {
  color: var(--color-accent);
}

.vision .section-overline::before {
  background-color: var(--color-accent);
}

.vision__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.vision-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.vision-card:hover {
  background: var(--color-off-white);
  border-color: var(--color-gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.vision-card__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.vision-card__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
}

/* ── About Section ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about__content {
  max-width: 520px;
}

.about__title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
  color: var(--color-navy);
}

.about__text {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-gray-500);
  margin-bottom: var(--space-6);
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about__visual-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__visual-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-accent);
  filter: blur(100px);
  opacity: 0.05;
  top: -50px;
  right: -50px;
}

.about__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  width: 100%;
  position: relative;
  z-index: 1;
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.about__stat-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about__content {
    max-width: none;
  }
}

/* ── Insights Section ── */
.insights {
  background-color: var(--color-off-white);
}

/* ── CTA Section ── */
.cta {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta__bg-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  opacity: 0.05;
  top: -200px;
  left: -100px;
  animation: float1 20s ease-in-out infinite;
}

.cta__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--color-emerald);
  opacity: 0.04;
  bottom: -150px;
  right: -100px;
  animation: float2 25s ease-in-out infinite;
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
}

.cta__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  margin-bottom: var(--space-10);
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background-color: var(--color-navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  height: 36px;
  margin-bottom: var(--space-5);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-6);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__social-link:hover svg {
  color: var(--color-white);
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-6);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* ── About mobile ── */
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about__content {
    max-width: none;
  }

  .about__title {
    font-size: var(--text-3xl);
  }

  .about__visual {
    min-height: auto;
  }

  .about__visual-card {
    min-height: auto;
    padding: var(--space-8);
  }

  .about__stat-number {
    font-size: var(--text-3xl);
  }

  /* ── CTA mobile ── */
  .cta__title {
    font-size: var(--text-3xl);
  }

  .cta__actions {
    flex-direction: column;
    gap: var(--space-3);
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Vision mobile ── */
  .vision__timeline .grid--4 {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: var(--space-6);
  }

  /* ── Process mobile ── */
  .process__timeline {
    max-width: none;
  }

  /* ── Trust mobile ── */
  .trust__heading {
    font-size: var(--text-xs);
    margin-bottom: var(--space-6);
  }
}

/* ── Interactive Timeline ── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-gray-300) 20%, var(--color-gray-300) 80%, transparent);
}

.timeline__item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 48px;
  transition: transform 0.3s ease;
}

.timeline__item:hover {
  transform: translateX(10px);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 15px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 4px solid var(--color-white);
  box-shadow: 0 0 10px var(--color-accent-glow);
  transition: all 0.3s ease;
  z-index: 2;
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.5);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.timeline__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.timeline__text {
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
}

.timeline__badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-2);
  border: 1px solid rgba(99, 102, 241, 0.3);
}