* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #64004e;
  --primary-mid: #8b0064;
  --primary-dark: #3e0030;
  --accent: #ff8cfa;
  --accent-light: #ffe4fd;
  --accent-soft: #faf5ff;
  --border: #ece8f2;
  --gray-light: #f4f2f7;
  --gray: #aaa;
  --gray-dark: #666;
  --black: #1a1a1a;
  --white: #fff;
  --heading: 'League Spartan', sans-serif;
  --body: 'IBM Plex Serif', serif;
  --quote: 'Shrikhand', cursive;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
}

/* ───────────────────────────────────────────
   RESET
─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'IBM Plex Serif', serif;
  background: #fbf9f8;
}

/* ───────────────────────────────────────────
   MATERIAL SYMBOLS
─────────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

/* ───────────────────────────────────────────
   TOP NAV
─────────────────────────────────────────── */
.infosys-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
.infosys-nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.infosys-nav.scrolled {
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.infosys-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.infosys-nav.scrolled .site-logo {
  filter: none;
}
.nav-menu-button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #151841;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}
.hbg-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}
.hbg-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-menu-button.is-open .hbg-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-menu-button.is-open .hbg-bar:nth-child(2) {
  opacity: 0;
}
.nav-menu-button.is-open .hbg-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}
.infosys-nav.scrolled .nav-pill {
  background: rgba(0, 0, 0, 0.06);
}
.nav-pill a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-pill a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.infosys-nav.scrolled .nav-pill a {
  color: #121644;
}
.infosys-nav.scrolled .nav-pill a:hover {
  color: #64004e;
  background: rgba(100, 0, 78, 0.06);
}
.nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-action:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
}
.infosys-nav.scrolled .nav-action {
  background: rgba(0, 0, 0, 0.06);
  color: #121644;
  border-color: rgba(0, 0, 0, 0.12);
}
.infosys-nav.scrolled .nav-action:hover {
  color: #64004e;
}

@media (max-width: 980px) {
  .infosys-nav-inner {
    min-height: 82px;
    padding: 0 20px;
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .nav-pill,
  .nav-action {
    display: none;
  }
  .site-logo {
    width: 154px;
  }
}

/* ───────────────────────────────────────────
   HAMBURGER OVERLAY MENU
─────────────────────────────────────────── */
.hanvix-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 320px 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hanvix-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.hanvix-menu-sidebar {
  position: relative;
  background: #f1f2f7;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.hanvix-menu-close {
  position: absolute;
  top: 28px;
  left: 18px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  border: none;
  z-index: 20;
  width: 56px;
  height: 56px;
  overflow: hidden;
  transition-duration: 500ms;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.hanvix-menu-close .close-text {
  font-size: 1.875rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  line-height: 1;
  padding-bottom: 7px;
  transition-duration: 500ms;
  position: relative;
  z-index: 10;
}
.hanvix-menu-close:hover .close-text {
  transform: scale(0);
}
.hanvix-menu-close .close-span {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  background-color: #64004e;
  transition-duration: 500ms;
}
.hanvix-menu-close .cs-t {
  top: 5rem;
  left: 0;
}
.hanvix-menu-close:hover .cs-t {
  top: 2.25rem;
}
.hanvix-menu-close .cs-l {
  top: 0;
  left: 5rem;
}
.hanvix-menu-close:hover .cs-l {
  left: 2.25rem;
}
.hanvix-menu-close .cs-r {
  top: 0;
  right: 5rem;
}
.hanvix-menu-close:hover .cs-r {
  right: 2.25rem;
}
.hanvix-menu-close .cs-b {
  bottom: 5rem;
  right: 0;
}
.hanvix-menu-close:hover .cs-b {
  bottom: 2.25rem;
}
.hanvix-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hanvix-menu-links a {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #4a4a68;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hanvix-menu-links a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #121644;
}
.hanvix-menu-link.active {
  background: #ffffff;
  color: #64004e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.hanvix-menu-link.active::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #64004e;
  border-radius: 4px;
  margin-right: 12px;
  vertical-align: -3px;
}
.hanvix-menu-links-simple {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  gap: 2px;
}
.hanvix-menu-links-simple a {
  font-size: 15px;
  font-weight: 400;
  color: #6a6a88;
  padding: 10px 16px;
}
.hanvix-menu-social {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 14px;
}
.hanvix-menu-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #4a4a68;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hanvix-menu-social a:hover {
  background: #64004e;
  color: #ffffff;
}
.hanvix-menu-panel {
  background: #ffffff;
  padding: 100px 56px 56px;
  overflow-y: auto;
}
.hanvix-card-section {
  display: none;
}
.hanvix-card-section.active {
  display: block;
  animation: scaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hanvix-scale-out {
  display: block;
  position: absolute;
  inset: 0;
  animation: scaleOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes scaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}
.hanvix-menu-heading {
  font-family: 'League Spartan', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #121644;
  margin-bottom: 36px;
}
.hanvix-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hanvix-card {
  position: relative;
  display: block;
  height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.hanvix-card-tall {
  grid-row: span 2;
  height: 584px;
}
.hanvix-card:hover {
  transform: translateY(-4px);
}
.hanvix-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}
.hanvix-card-title {
  position: absolute;
  left: 24px;
  bottom: 56px;
  right: 24px;
  z-index: 2;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}
.hanvix-card-link {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 980px) {
  .hanvix-menu-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .hanvix-menu-sidebar {
    padding: 88px 24px 24px;
  }
  .hanvix-menu-panel {
    padding: 24px;
  }
  .hanvix-card-grid {
    grid-template-columns: 1fr;
  }
  .hanvix-card-tall {
    grid-row: span 1;
    height: 280px;
  }
}

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(135deg, #3e0030, #64004e);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78));
  }
}
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 24px 64px;
}
.hero-content {
  width: 96%;
  max-width: 1400px;
  text-align: center;
  color: #ffffff;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px 80px;
  animation: fadeUp 1.6s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tag {
  display: block;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.hero h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero p {
  font-family: 'IBM Plex Serif', serif;
  font-size: 16px;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.hero-buttons a:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: #64004e;
  color: #ffffff;
}
.btn-primary:hover {
  background: #8b0064;
}
.btn-secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-stats h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.hero-stats span {
  display: block;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 768px) {
  .hero-content {
    padding: 32px 20px;
    border-radius: 18px;
  }
  .hero-buttons a {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ── HERO TAG (video overlay) ── */
.hero-tag {
  display: block;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}
.hero h1 em {
  font-family: var(--quote);
  font-style: normal;
}
.hero p:not(.hero-tag) {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 8px auto 0;
}
.hero-btns {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.btn-primary {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.18s;
}
.btn-primary:hover {
  background: var(--primary-dark);
}
.btn-ghost {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.18s;
}
.btn-ghost:hover {
  background: var(--accent-light);
}

/* ── SECTION COMMON ── */
.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.alt-bg {
  background: var(--accent-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dark-bg {
  background: var(--primary-dark);
}
.sec-eye {
  font-family: var(--heading);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sec-eye.light {
  color: var(--accent);
}
.sec-title {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.sec-title.light {
  color: var(--white);
}
.sec-sub {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.8rem;
}
.sec-sub.light {
  color: rgba(255, 255, 255, 0.6);
}
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── 1. WHY HANVIX ── */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 800px;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.18s;
}
.why-item:hover {
  border-color: #d8d0e8;
  box-shadow: 0 3px 16px rgba(100, 0, 78, 0.05);
}
.why-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.why-text h5 {
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.why-text p {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--gray-dark);
  line-height: 1.65;
  font-weight: 300;
}
.why-quote {
  font-family: var(--quote);
  font-size: 1.1rem;
  color: var(--primary-mid);
  margin-top: 2rem;
}

/* ── 2. NEXT-GEN SERVICES ── */
.adv-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.adv-item {
  background: var(--white);
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}
.adv-item:last-child {
  border-bottom: none;
}
.adv-item:hover {
  background: var(--accent-soft);
}
.adv-num {
  font-family: var(--heading);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.adv-name {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.adv-tag {
  font-family: var(--heading);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid var(--accent-light);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.col-label {
  font-family: var(--heading);
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.adv-col p {
  font-family: var(--body);
  font-size: 0.8rem;
  color: var(--gray-dark);
  line-height: 1.78;
  font-weight: 300;
}
.adv-val {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.adv-val p {
  font-family: var(--body);
  font-size: 0.8rem;
  color: var(--primary-dark);
  line-height: 1.75;
  font-weight: 300;
}

/* ── 3. ENGAGEMENT MODELS ── */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.eng-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.7rem 1.4rem;
  background: var(--white);
  transition: all 0.2s;
}
.eng-card:hover {
  border-color: var(--primary-mid);
  box-shadow: 0 4px 22px rgba(100, 0, 78, 0.07);
  transform: translateY(-2px);
}
.eng-num {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.eng-name {
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.eng-desc {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--gray-dark);
  line-height: 1.75;
  font-weight: 300;
}

/* ── 4. INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: all 0.2s;
}
.ind-card:hover {
  border-color: var(--primary-mid);
  box-shadow: 0 4px 20px rgba(100, 0, 78, 0.06);
  transform: translateY(-2px);
}
.ind-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}
.ind-name {
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.ind-desc {
  font-family: var(--body);
  font-size: 0.76rem;
  color: var(--gray-dark);
  line-height: 1.72;
  font-weight: 300;
}

/* ── 5. CHALLENGES ── */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.ch-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.3rem 1.1rem;
  transition: all 0.2s;
}
.ch-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 140, 250, 0.3);
}
.ch-icon {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  display: block;
}
.ch-name {
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.ch-desc {
  font-family: var(--body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* ── 6. BEYOND SAP ── */
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.beyond-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.2s;
}
.beyond-card:hover {
  background: var(--white);
  border-color: #d8d0e8;
  box-shadow: 0 4px 22px rgba(100, 0, 78, 0.06);
}
.beyond-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.beyond-info h4 {
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.beyond-info p {
  font-family: var(--body);
  font-size: 0.8rem;
  color: var(--gray-dark);
  line-height: 1.75;
  font-weight: 300;
}

/* ── 7. CORE SAP ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.2s;
}
.svc-card:hover {
  border-color: #d8d0e8;
  box-shadow: 0 6px 30px rgba(100, 0, 78, 0.07);
  transform: translateY(-2px);
}
.svc-card:hover::after {
  opacity: 1;
}
.svc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  display: block;
}
.svc-name {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.45rem;
}
.svc-desc {
  font-family: var(--body);
  font-size: 0.8rem;
  color: var(--gray-dark);
  line-height: 1.75;
  font-weight: 300;
}
.svc-tag {
  display: inline-block;
  font-family: var(--heading);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid var(--accent-light);
  padding: 3px 9px;
  border-radius: 50px;
  margin-top: 0.8rem;
  letter-spacing: 0.06em;
}

/* ── CTA ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-copy h2 {
  font-family: var(--heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cta-copy p {
  font-family: var(--body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.btn-white {
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--accent-light);
}
.btn-outline-w {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-outline-w:hover {
  border-color: var(--white);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  position: relative;
  background: linear-gradient(160deg, #4a0040 0%, #3f0030 45%, #2a0021 100%);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
footer::before {
  content: '';
  position: absolute;
  top: -260px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 250, 0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -240px;
  left: -200px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 0, 100, 0.30), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 250, 0.55) 50%, transparent);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-col > p {
  opacity: 0.68;
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.9rem;
  line-height: 1.78;
  color: #ffffff;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-socials a:hover {
  background: #ff8cfa;
  border-color: #ff8cfa;
  color: #3f0030;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 140, 250, 0.35);
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff8cfa, rgba(255, 140, 250, 0));
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.66);
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s ease, gap 0.2s ease, padding-left 0.2s ease;
}
.footer-col ul li a::before {
  content: '→';
  display: inline-block;
  opacity: 0;
  width: 0;
  overflow: hidden;
  color: #ff8cfa;
  transition: opacity 0.2s ease, width 0.2s ease, margin-right 0.2s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  width: 14px;
  margin-right: 4px;
}
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer-bottom-inner p {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ── MOBILE NAV BAR ── */
.mobile-nav-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.mobile-nav-bar nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 12px;
  text-decoration: none;
  color: #6a6a88;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: #64004e;
  background: rgba(100, 0, 78, 0.06);
}
.mobile-nav-item .mnav-icon {
  font-size: 20px;
  line-height: 1;
}
.mobile-nav-item .mnav-label {
  line-height: 1;
}

@media (max-width: 980px) {
  .mobile-nav-bar {
    display: block;
  }
  body {
    padding-bottom: 72px;
  }
  .hanvix-menu-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .hanvix-menu-panel {
    display: none;
  }
  .hanvix-menu-sidebar {
    padding: 80px 24px 100px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .section {
    padding: 3.5rem 1.5rem;
  }
  .adv-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .engage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beyond-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 56px 0 40px;
  }
  .container {
    padding: 0 32px;
  }
  .hero-content {
    padding: 24px 40px;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 80px 16px 32px;
  }
  .hero-content {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .section {
    padding: 2.8rem 1.2rem;
  }
  .alt-bg .section {
    padding: 2.8rem 1.2rem;
  }
  .sec-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
  .sec-sub {
    margin-bottom: 1.8rem;
    font-size: 0.84rem;
  }
  .why-grid {
    max-width: 100%;
  }
  .why-item {
    gap: 0.8rem;
    padding: 0.9rem 1rem;
  }
  .adv-list {
    border-radius: 10px;
  }
  .adv-item {
    padding: 1.2rem 1rem;
  }
  .adv-val {
    padding: 0.8rem 0.9rem;
  }
  .engage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .eng-card {
    padding: 1.3rem 1rem;
  }
  .eng-num {
    font-size: 1.5rem;
  }
  .ind-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .ind-card {
    padding: 1.2rem 1rem;
  }
  .ch-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .ch-card {
    padding: 1.1rem 0.9rem;
  }
  .beyond-grid {
    grid-template-columns: 1fr;
  }
  .beyond-card {
    gap: 0.9rem;
    padding: 1.3rem 1.1rem;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    padding: 1.3rem 1.1rem;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2.8rem 1.2rem;
  }
  .cta-copy h2 {
    font-size: 1.2rem;
  }
  .btn-white,
  .btn-outline-w {
    width: 100%;
    text-align: center;
  }
  .container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 36px;
  }
  .footer-col > p {
    max-width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bottom-links {
    gap: 16px;  
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}