/* NANO4C static site — plain CSS */
:root {
  --brand: #dc3545;
  --brand-dark: #b02a37;
  --navy: #1a2340;
  --navy-dark: #12182b;
  --navy-light: #2a3560;
  --bg: #ffffff;
  --muted: #f5f6f8;
  --border: #e6e8ec;
  --text: #1f2437;
  --mute-text: #5f6b7c;
  --radius: 8px;
}

* {
  box-sizing: border-box
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.2
}

h1 {
  font-size: 3.5rem;
  font-weight: 800
}

h2 {
  font-size: 2.4rem;
  font-weight: 700
}

h3 {
  font-size: 1.15rem;
  font-weight: 600
}

p {
  margin: 0 0 1em
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem
}

.brand-text {
  color: var(--brand)
}

.eyebrow {
  color: var(--brand);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .5rem
}

.lead {
  color: var(--mute-text);
  font-size: 1.05rem
}

.small {
  font-size: .9rem;
  color: var(--mute-text)
}

.mt-4 {
  margin-top: 1rem
}

.mt-6 {
  margin-top: 1.5rem
}

.mt-8 {
  margin-top: 2rem
}

.mt-10 {
  margin-top: 2.5rem
}

.center {
  text-align: center
}

.section {
  padding: 5rem 0
}

@media(max-width:768px) {
  .section {
    padding: 3.5rem 0
  }
}

.bg-muted {
  background: var(--muted)
}

.section-navy {
  background: var(--navy);
  color: #fff
}

.section-navy h2,
.section-navy h3 {
  color: #fff
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem
}

@media(max-width:768px) {
  .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.section-head.light h2 {
  color: #fff
}

.section-head p {
  color: var(--mute-text)
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, .7)
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media(max-width:768px) {
  .hero-actions {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: .15s;
  border: 0;
  cursor: pointer
}

.btn-brand {
  background: var(--brand);
  color: #fff
}

.btn-brand:hover {
  background: var(--brand-dark)
}

.btn-navy {
  background: var(--navy);
  color: #fff
}

.btn-navy:hover {
  background: var(--navy-dark)
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy)
}

.w-full {
  width: 100%;
  justify-content: center
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem
}

/* ==========================================
   HEADER
========================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .35s ease;
}

.site-header.transparent {
  background: transparent;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 22, 38, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: headerDown .35s ease;
}

.site-header.sticky .top-strip {
  display: none;
}

@keyframes headerDown {

  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }

}


/* ==========================================
   TOP STRIP
========================================== */

.top-strip {
  background: #0d1b2a;
  color: #fff;
  font-size: 13px;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px;
}

.ts-left {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.ts-right {
  text-align: right;
}

.brand-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff5a36 100%);
  z-index: 100000;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}


/* ==========================================
   NAVBAR
========================================== */

.nav-wrap {
  width: 100%;
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  position: relative;
}

/* ==========================================
   LOGO
========================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.logo img {
  height: 95px !important;
  width: auto !important;
  margin: -10px 0 !important;
  transition: all 0.3s ease;
}

.site-header.sticky .logo img {
  height: 70px !important;
  margin: 0 !important;
}

@media (max-width: 992px) {
  .logo img {
    height: 70px !important;
    margin: 0 !important;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 55px !important;
    margin: 0 !important;
  }
}

.site-header.sticky .logo {
  color: #fff;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f7cf7;
  color: #fff;
  font-weight: bold;
}

.logo-text {
  display: flex;
  align-items: center;
}


/* ==========================================
   NAVIGATION
========================================== */

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1200px) {
  .main-nav {
    gap: 20px;
  }
}

.main-nav>a,
.main-nav>.mega>a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.site-header.sticky .main-nav>a,
.site-header.sticky .mega>a {
  color: rgba(255, 255, 255, 0.85);
}

.main-nav>a:hover,
.main-nav>.mega>a:hover {
  color: #0f7cf7;
}

.main-nav>a.active {
  color: #0f7cf7;
}


/* ==========================================
   MEGA MENU
========================================== */
.mega {
  position: static;
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  transform: translateY(20px);
  width: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(26, 35, 64, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mega-panel a {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mega-panel a strong {
  display: block;
  color: var(--navy) !important;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.mega-panel a span {
  display: block;
  color: var(--mute-text) !important;
  font-size: 0.8rem;
  line-height: 1.4;
}

.mega-panel a:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.mega-panel a:hover strong {
  color: var(--brand) !important;
}

.mega:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================
   MOBILE MENU
========================================== */

.menu-toggle {
  display: none;
  font-size: 30px;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
}

.site-header.sticky .menu-toggle {
  color: #fff;
}

.mobile-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.site-header.sticky .mobile-menu {
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: 1px solid #eee !important;
}

.site-header.sticky .mobile-menu a {
  color: #111 !important;
  border-bottom: 1px solid #eee !important;
}

.site-header.sticky .mobile-menu a:hover {
  background: #f7f7f7 !important;
  color: var(--brand) !important;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 18px 24px;
  font-size: 1.05rem;
  color: #111 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.site-header.transparent .mobile-menu a {
  color: #111 !important;
}

.mobile-menu a:hover {
  background: #f7f7f7 !important;
  color: var(--brand) !important;
}

.mobile-dropdown {
  border-bottom: 1px solid #eee;
}

.site-header.sticky .mobile-dropdown {
  border-bottom: 1px solid #eee !important;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 1.05rem;
  color: #111 !important;
  cursor: pointer;
}

.site-header.sticky .mobile-dropdown-toggle {
  color: #111 !important;
}

.mobile-dropdown-toggle::after {
  content: "▾";
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background: #f5f5f5 !important;
}

.site-header.sticky .mobile-dropdown-menu {
  background: #f5f5f5 !important;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu a {
  padding-left: 40px !important;
  font-size: 0.95rem;
  color: #222 !important;
  border-bottom: none !important;
}

.site-header.sticky .mobile-dropdown-menu a {
  color: #222 !important;
}


/* ==========================================
   TABLET
========================================== */

@media(max-width:1200px) {

  .mega-panel {

    grid-template-columns: repeat(3, 1fr);

    padding: 35px;

  }

}


@media(max-width:992px) {

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-inner {
    min-height: 80px;
  }

  .mega-panel {
    display: none;
  }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px) {

  .top-strip .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hide-md {
    display: none;
  }

  .logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

}


@media(max-width:576px) {

  .top-strip {
    font-size: 12px;
  }

  .logo {
    font-size: 18px;
  }

  .nav-inner {
    min-height: 75px;
  }

}

/* Home Hero */
.home-hero {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center
}

@media(max-width:768px) {
  .home-hero {
    padding: 5rem 0;
  }
}

.home-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 43, .9), rgba(26, 35, 64, .55), transparent)
}

.home-hero .container {
  position: relative
}

.home-hero-card {
  max-width: 640px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--brand)
}

.home-hero-card h1 {
  color: var(--navy)
}



/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 220px 0 100px 0
}

@media(max-width:768px) {
  .page-hero {
    padding: 160px 0 80px 0;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .crumbs {
    justify-content: center;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 43, .92), rgba(26, 35, 64, .75), rgba(26, 35, 64, .5))
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 40px 40px
}

.hero-square-1 {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(220, 53, 69, .6);
  transform: rotate(12deg)
}

.hero-square-2 {
  position: absolute;
  bottom: 32px;
  right: 170px;
  width: 64px;
  height: 64px;
  background: rgba(220, 53, 69, .2);
  border: 1px solid var(--brand);
  transform: rotate(45deg)
}

.hero-square-3 {
  position: absolute;
  top: 80px;
  left: 55%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, .2);
  transform: rotate(6deg)
}

@media(max-width:640px) {

  .hero-square-1,
  .hero-square-2,
  .hero-square-3 {
    display: none
  }
}

.hero-content {
  position: relative;
  z-index: 2
}

.page-hero h1 {
  color: #fff
}

.page-hero .lead {
  color: rgba(255, 255, 255, .85);
  max-width: 640px
}

.crumbs {
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center
}

.crumbs a {
  color: rgba(255, 255, 255, .7)
}

.crumbs a:hover {
  color: var(--brand)
}

.crumbs .sep {
  color: rgba(255, 255, 255, .4)
}

.crumbs .current {
  color: #fff
}

/* Ticker text typing animation */
.ticker-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--brand);
  width: 0;
  vertical-align: bottom;
  animation: tickerTyping 8s steps(var(--chars, 50)) infinite, blinkCaret 0.75s step-end infinite;
}

@keyframes tickerTyping {

  0%,
  5% {
    width: 0;
  }

  45%,
  55% {
    width: calc(var(--chars, 50) * 1ch);
  }

  95%,
  100% {
    width: 0;
  }
}

@keyframes blinkCaret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--brand);
  }
}

/* Stats */
.stats-band {
  background: var(--navy-dark);
  color: #fff
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stats-band .stats-grid>div {
  padding: 2rem 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.stats-band .stats-grid>div:first-child {
  border-left: 0;
}

.stat-value {
  font-family: 'Poppins';
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
}

.stat-label {
  font-size: .85rem;
  opacity: .7;
  margin-top: .35rem;
}

@media(max-width:992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band .stats-grid>div {
    padding: 1.5rem 0.5rem;
  }
  .stat-value {
    font-size: 1.8rem;
  }
}

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

/* Two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

@media(max-width:900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem
  }
}

/* Tick list */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem
}

.tick-list li {
  color: var(--navy);
  font-weight: 500;
  font-size: .9rem
}

@media(max-width:600px) {
  .tick-list {
    grid-template-columns: 1fr
  }
}

/* Mini grid (4 cards) */
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.mini-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(220, 53, 69, 0.2)
}

.mini-card.offset {
  margin-top: 2rem
}

.mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(220, 53, 69, .08);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s ease
}

.mini-card:hover .mini-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.05)
}

.mini-card p {
  color: var(--mute-text);
  font-size: .95rem;
  margin: .4rem 0 0;
  line-height: 1.6
}

@media(max-width:768px) {
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .mini-card.offset {
    margin-top: 0;
  }
}

/* Cat grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem
}

.cat-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  text-decoration: none;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cat-card:hover {
  border-color: rgba(255, 90, 54, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 90, 54, 0.1);
  background: rgba(20, 30, 55, 0.8);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 90, 54, 0.1);
  color: var(--brand-2);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 90, 54, 0.15);
  box-shadow: inset 0 0 20px rgba(255, 90, 54, 0.05);
}

.cat-card:hover .cat-icon {
  background: var(--brand-2);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 90, 54, 0.3);
}

.cat-card h3 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cat-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.cat-more {
  color: var(--brand-2);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem
}

.cat-card:hover .cat-more {
  gap: 0.6rem
}

/* Industry + partner grids */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.ind-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  transition: .15s
}

.ind-item:hover {
  background: rgba(220, 53, 69, .15);
  border-color: var(--brand)
}

@media(max-width:700px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .ind-grid {
    grid-template-columns: 1fr
  }
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  align-items: center;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.partner-item {
  width: 180px;
  height: 64px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 10px 20px;
}

.partner-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(220, 53, 69, 0.2);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* Reasons + Engagement */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem
}

.reason {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease
}

.reason:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(220, 53, 69, 0.15)
}

.reason-ic {
  width: 46px;
  height: 46px;
  background: rgba(220, 53, 69, .08);
  color: var(--brand);
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: 0.3s ease
}

.reason:hover .reason-ic {
  background: var(--brand);
  color: #fff
}

.reason h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem
}

.reason p {
  color: var(--mute-text);
  font-size: .95rem;
  margin: 0;
  line-height: 1.5
}

.engage-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem
}

.engage {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02)
}

.engage:hover {
  border-color: rgba(220, 53, 69, 0.2);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06)
}

.engage .num {
  font-family: 'Poppins';
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
  opacity: 0.8
}

.engage h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem
}

.engage p {
  color: var(--mute-text);
  font-size: .95rem;
  margin: 0;
  line-height: 1.5
}

/* Lead form */
.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05)
}

.lead-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy)
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: .9rem;
  margin-top: .35rem
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--brand);
  border-color: var(--brand)
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

@media(max-width:500px) {
  .row2 {
    grid-template-columns: 1fr
  }
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap
}

.cta-band h2 {
  color: #fff;
  max-width: 640px
}

/* Contact Split Screen */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

@media(max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-split-info h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-split-info .lead {
  color: var(--mute-text);
  margin-bottom: 3rem;
}

.contact-split-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cs-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.cs-card:hover {
  background: #ffffff;
  border-color: rgba(255, 90, 54, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.cs-ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 90, 54, 0.08);
  color: var(--brand-2);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cs-card h4 {
  color: var(--navy);
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.cs-card p {
  color: var(--mute-text);
  margin: 0;
}

.contact-split-form {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

@media(max-width: 600px) {
  .contact-split-form {
    padding: 1.5rem;
  }
}

.massive-form .float-input input,
.massive-form .float-input textarea {
  padding: 1.5rem 1rem 0.75rem;
  font-size: 1.05rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  color: var(--navy);
}

.massive-form .float-input input:focus,
.massive-form .float-input textarea:focus {
  background: #ffffff;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.15);
}

.massive-form .float-input label {
  left: 1rem;
  font-size: 1rem;
  color: #64748b;
}

.massive-form .float-input.focused label,
.massive-form .float-input input:not(:placeholder-shown)+label,
.massive-form .float-input textarea:not(:placeholder-shown)+label {
  top: 0.75rem;
  font-size: 0.75rem;
  color: var(--brand-2);
}

.massive-form .float-input textarea~label {
  top: 1.7rem;
}

.massive-form .float-input.focused textarea~label {
  top: 0.75rem;
}

/* Detail page */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem
}

@media(max-width:900px) {
  .detail-grid {
    grid-template-columns: 1fr
  }
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.detail-icon {
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.6rem
}

.detail-header h2 {
  margin: 0
}

.deliver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1rem
}

.deliver-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .85rem 1rem;
  color: var(--navy);
  font-weight: 500;
  font-size: .9rem;
  transition: .15s
}

.deliver-item:hover {
  border-color: var(--brand)
}

@media(max-width:600px) {
  .deliver-grid {
    grid-template-columns: 1fr
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem
}

.why-item {
  background: var(--muted);
  padding: 1.25rem;
  border-radius: 8px
}

.why-item h4 {
  color: var(--navy);
  margin: 0 0 .35rem;
  font-family: 'Poppins'
}

.why-item p {
  color: var(--mute-text);
  font-size: .85rem;
  margin: 0
}

@media(max-width:600px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq .plus {
  color: var(--brand);
  font-size: 1.3rem;
  transition: .15s
}

.faq details[open] .plus {
  transform: rotate(45deg)
}

.faq p {
  margin: .75rem 0 0;
  color: var(--mute-text);
  font-size: .9rem
}

.detail-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem
}

.side-card h3 {
  color: var(--navy);
  margin-bottom: .75rem
}

.side-card.side-dark {
  background: var(--navy);
  color: #fff
}

.side-card.side-dark h3 {
  color: #fff
}

.side-card.side-dark p {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem
}

.side-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0
}

.side-list li {
  padding: .4rem 0
}

.side-list a {
  color: var(--navy);
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  font-weight: 500
}

.side-list a:hover {
  color: var(--brand)
}

.side-list.muted a {
  color: var(--mute-text);
  font-weight: 400
}

.side-list.muted a:hover {
  color: var(--brand)
}

/* Methodology (about) */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem
}

@media(max-width:900px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .method-grid {
    grid-template-columns: 1fr
  }
}

.method {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px
}

.method .num {
  font-family: 'Poppins';
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
  margin-bottom: .5rem
}

.method p {
  color: var(--mute-text);
  margin: 0;
  font-size: .9rem
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 1.25rem
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: .9rem;
  max-width: 340px;
  margin-top: 1.25rem;
  line-height: 1.6
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem
}

.footer-grid h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-grid ul li {
  padding: .35rem 0;
  font-size: .9rem
}

.footer-grid a:hover {
  color: var(--brand)
}

.contact-list li {
  display: flex;
  gap: .5rem;
  align-items: flex-start
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  flex-wrap: wrap;
  gap: .75rem
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
  }
}

@media(max-width:600px) {
  .footer-right {
    grid-template-columns: 1fr;
    gap: 2rem
  }
}


/* ===== MERGED FROM index.html INLINE STYLES ===== */

/* ===================================================================
     ADD-ON STYLES — Services rack slider / Fixed bg band / Solutions tab slider
     Merge these into styles.css; kept here inline so the page works standalone.
     =================================================================== */
:root {
  --navy-950: #050b16;
  --navy-900: #0a1626;
  --brand-2: #ff5a36;
  --brand-light: #ff9166;
  --line: rgba(255, 255, 255, .09);
  --line-dark: rgba(10, 20, 38, .1);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- Services: rack-unit slider ---------- */
.services-redesign {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.services-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 320px at 14% 0%, rgba(255, 90, 54, .16), transparent 65%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  pointer-events: none;
}

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

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.rack-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rack-count {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  letter-spacing: .05em;
}

.rack-count b {
  color: #fff;
  font-weight: 600;
}

.rack-arrows {
  display: flex;
  gap: 8px;
}

.rack-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
  font-size: 16px;
}

.rack-arrow:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  transform: translateY(-1px);
}

.rack-arrow:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
  background: rgba(255, 255, 255, .03);
  border-color: var(--line);
}

.rack-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 6px 26px;
  margin: 0 -6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rack-track::-webkit-scrollbar {
  display: none;
}

.rack-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 290px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 24px;
  position: relative;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.rack-card:hover {
  border-color: rgba(255, 90, 54, .55);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 90, 54, .1), rgba(255, 255, 255, .02));
}

.rack-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .08em;
}

.rack-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, .18);
}

.rack-icon {
  font-size: 26px;
  line-height: 1;
}

.rack-card h3 {
  color: white !important;
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.rack-card p {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.rack-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rack-card:hover .rack-more {
  gap: 9px;
}

.rack-progress {
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 38px;
  overflow: hidden;
}

.rack-progress-bar {
  height: 100%;
  width: 10%;
  background: var(--brand-2);
  border-radius: 2px;
  transition: width .3s ease;
}

/* ---------- Fixed background parallax band ---------- */
.fixed-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(5, 11, 22, .88), rgba(5, 11, 22, .72) 45%, rgba(10, 15, 28, .92)),
    url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
}

.fixed-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(700px 380px at 82% 20%, rgba(255, 90, 54, .22), transparent 70%);
}

.band-inner {
  max-width: 760px;
}

.band-inner h2 {
  font-size: 48px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.01em;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.band-inner p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.65;
  max-width: 600px;
}

.band-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.band-stat b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-light);
}

.band-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .02em;
}

.band-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.band-cta .btn-ghost {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  background: transparent;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: .2s ease;
}

.band-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
}

@media (max-width:700px) {
  .fixed-band {
    background-attachment: scroll;
    padding: 88px 0;
  }
}

/* ---------- Solutions: tabbed feature slider ---------- */
.solutions-redesign {
  padding: 96px 0;
  background: #fafbfc;
}

@media(max-width:768px) {
  .solutions-redesign {
    padding: 60px 0;
  }
}

.sol-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px -15px rgba(11, 18, 32, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.sol-list {
  background: #0b132b;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sol-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-item .ic {
  font-size: 20px;
  width: 26px;
  text-align: center;
}

.sol-item .tt {
  font-size: 14.5px;
  font-weight: 600;
  color: inherit;
}

.sol-item .bar {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 3px;
  background: var(--brand-2);
  transform: scaleY(0);
  transition: transform .3s ease;
}

.sol-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.sol-item.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 90, 54, 0.12), rgba(255, 90, 54, 0.02));
  border-color: rgba(255, 90, 54, 0.1);
}

.sol-item.active .bar {
  transform: scaleY(1);
}

.sol-stage {
  position: relative;
  padding: 56px 64px;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
}

.sol-panel {
  display: none;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: 100%;
  animation: solFade .45s ease;
}

.special-heading {
  color: white;
}

/* .rack-icon h3{
     color:white !important;
  } */
.sol-panel.active {
  display: grid;
}

@keyframes solFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sol-panel .badge-ic {
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 90, 54, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.sol-panel h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0;
}

.sol-panel .desc {
  margin-top: 16px;
  color: #4a5568;
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 440px;
}

.sol-panel .cta {
  margin-top: 28px;
  font-weight: 600;
  color: var(--brand-2);
  text-decoration: none;
  font-size: 14.5px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap 0.2s ease;
}

.sol-panel .cta:hover {
  gap: 10px;
}

.sol-orb {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(255, 90, 54, 0.18), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 90, 54, 0.12);
  font-size: 56px;
  box-shadow: inset 0 0 20px rgba(255, 90, 54, 0.05);
  animation: floatOrb 8s infinite alternate ease-in-out;
}

.sol-dots {
  display: flex;
  gap: 7px;
  position: absolute;
  bottom: 24px;
  left: 64px;
}

.sol-dots span {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(11, 18, 32, 0.1);
  transition: .2s ease;
}

.sol-dots span.active {
  background: var(--brand-2);
  width: 34px;
}

@media (max-width:860px) {
  .sol-shell {
    grid-template-columns: 1fr;
  }

  .sol-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .sol-item {
    flex: 0 0 auto;
  }

  .sol-item .tt {
    white-space: nowrap;
  }

  .sol-panel {
    grid-template-columns: 1fr;
  }

  .sol-orb {
    display: none;
  }

  .sol-stage {
    padding: 36px 26px 56px;
  }

  .sol-dots {
    left: 26px;
  }
}

/* Removed custom cursor for performance */

/* Contact Floating Labels */
.float-input {
  position: relative;
  margin-bottom: 1.5rem;
}

.float-input input,
.float-input textarea {
  width: 100%;
  padding: 1.25rem 0.85rem 0.5rem;
  background: rgba(26, 36, 56, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  transition: 0.3s ease all;
}

.float-input input:focus,
.float-input textarea:focus {
  background: rgba(18, 25, 41, 0.95);
  border-color: var(--brand-2);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.2);
}

.float-input label {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: 0.2s ease all;
}

.float-input.focused label,
.float-input input:not(:placeholder-shown)+label,
.float-input textarea:not(:placeholder-shown)+label {
  top: 0.6rem;
  font-size: 0.75rem;
  color: var(--brand-2);
}

.float-input.focused input,
.float-input.focused textarea {
  border-color: var(--brand-2) !important;
  outline: none;
  background: rgba(18, 25, 41, 0.95);
}

.float-input textarea~label {
  top: 1.5rem;
}

.float-input.focused textarea~label {
  top: 0.6rem;
}

/* Success Overlay */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 50% 50%);
}

.success-overlay h2 {
  font-size: 3rem;
  color: var(--brand);
}

/* Magnetic Button */
.magnetic-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   AWWWARDS LIGHT MODE UTILITIES
================================================= */
.line-wrap {
  overflow: hidden;
  display: block;
}

.line {
  display: block;
  transform: translateY(110%);
}

.creative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.parallax-img-wrap {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pinned-services-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.pinned-left {
  flex: 0 0 400px;
  position: sticky;
  top: 150px;
}

.pinned-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 20vh;
}

@media(max-width: 900px) {
  .pinned-services-container {
    flex-direction: column;
    gap: 40px;
  }

  .pinned-left {
    position: static;
    flex: auto;
  }
}

.big-heading {
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ==========================================
   MODERN HERO (Light Mode Premium Visual)
================================================= */
/* ==========================================
   MODERN HERO (Light Mode Premium Visual)
================================================= */
.modern-hero {
  position: relative;
  height: 95vh;
  min-height: 95vh;
  max-height: 95vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding: 70px 0 20px 0;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .modern-hero {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 100px 0 40px 0;
  }
}

.modern-hero .hero-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  background-color: var(--navy-dark);
  overflow: hidden;
  filter: blur(8px);
  transform: scale(1.05);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: bgPan 60s infinite alternate ease-in-out;
}

.hero-bg-img.active {
  opacity: 1;
}

.hero-bg-img-1 {
  background-image:
    radial-gradient(circle at 50% 50%, rgba(26, 35, 64, 0.4) 0%, rgba(10, 15, 28, 0.85) 100%),
    url('assets/images/hero_bg.png');
}

.hero-bg-img-2 {
  background-image:
    radial-gradient(circle at 50% 50%, rgba(26, 35, 64, 0.4) 0%, rgba(10, 15, 28, 0.85) 100%),
    url('assets/images/hero_about.png');
}

.hero-bg-img-3 {
  background-image:
    radial-gradient(circle at 50% 50%, rgba(26, 35, 64, 0.4) 0%, rgba(10, 15, 28, 0.85) 100%),
    url('assets/images/hero_contact.png');
}

@keyframes bgPan {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-10px, -5px);
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatOrb 20s infinite alternate ease-in-out;
  will-change: transform;
}

.orb-1 {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.4) 0%, rgba(220, 53, 69, 0) 70%);
}

.orb-2 {
  bottom: -20%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0) 70%);
  animation-delay: -5s;
}

.orb-3 {
  bottom: 20%;
  left: 30%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  animation-delay: -10s;
}

.hero-vector {
  position: absolute;
  width: 50vw;
  height: 50vw;
  z-index: 1;
  opacity: 0.8;
  animation: floatVector 25s infinite linear;
  will-change: transform;
}

.vector-1 {
  top: -10%;
  right: -10%;
}

.vector-2 {
  bottom: -20%;
  left: -10%;
  animation-direction: reverse;
}

@keyframes floatVector {
  0% {
    transform: rotate(0deg) scale(1) translate(0, 0);
  }

  33% {
    transform: rotate(120deg) scale(1.1) translate(30px, -30px);
  }

  66% {
    transform: rotate(240deg) scale(0.9) translate(-30px, 30px);
  }

  100% {
    transform: rotate(360deg) scale(1) translate(0, 0);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(80px, 40px) scale(1.1);
  }
}

.modern-hero .container {
  z-index: 3;
  width: 100%;
}

.modern-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  position: relative;
  z-index: 3;
}

@media (max-width: 992px) {
  .modern-hero {
    padding: clamp(80px, 10vh, 110px) 0 clamp(35px, 4vh, 50px) 0;
  }
  .modern-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .modern-hero-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
}

.modern-hero-content {
  max-width: 720px;
}

.modern-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mega-title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0.6rem 0 1rem 0;
  letter-spacing: -0.02em;
  font-weight: 800;
}

@media (max-width: 768px) {
  .mega-title {
    font-size: clamp(1.4rem, 5.5vw, 2.1rem);
    margin: 0.5rem 0 0.8rem 0;
  }
  .line-wrap {
    display: inline;
  }
}

.hero-lead {
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
}

.text-white {
  color: #ffffff;
}

.text-light {
  color: rgba(255, 255, 255, 0.8);
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.15);
  color: var(--brand);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Futuristic Operations Dashboard Styling */
.hero-dashboard {
  background: rgba(10, 20, 38, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .hero-dashboard {
    padding: 12px;
    border-radius: 12px;
    max-width: 100%;
  }
  .dash-title {
    display: none;
  }
  .dash-stat .val {
    font-size: 12px;
  }
  .dash-stat .label {
    font-size: 9px;
  }
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-dot.red {
  background: #ff5a36;
}

.dash-dot.yellow {
  background: #ffc107;
}

.dash-dot.green {
  background: #28a745;
}

.dash-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  font-weight: 500;
}

.dash-status {
  font-size: 11px;
  color: #28a745;
  font-weight: bold;
}

.dash-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}

.dash-sec-title {
  font-size: 11px;
  color: var(--brand-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.dash-row {
  display: flex;
  justify-content: space-between;
}

.dash-stat {
  display: flex;
  flex-direction: column;
}

.dash-stat .label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.dash-stat .val {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.ai-flow {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.ai-flow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: aiPulse 2.5s infinite linear;
}

@keyframes aiPulse {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

.cloud-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cloud-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.cloud-bar .bar-label {
  width: 55px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.cloud-bar .bar-outer {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.cloud-bar .bar-inner {
  height: 100%;
  background: #0f7cf7;
  border-radius: 3px;
  transition: width 0.8s ease-in-out;
}

.cloud-bar:nth-child(2) .bar-inner {
  background: var(--brand-light);
}

.cloud-bar:nth-child(3) .bar-inner {
  background: #28a745;
}

.secure-log {
  font-size: 10px;
  color: #28a745;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.log-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}

.float-badge {
  position: absolute;
  background: rgba(10, 20, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 11;
  letter-spacing: 0.05em;
}

.badge-top-right {
  top: -12px;
  right: -12px;
}

.badge-bottom-left {
  bottom: -12px;
  left: -12px;
}

.pulse-green {
  width: 6px;
  height: 6px;
  background: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0px rgba(40, 167, 69, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(40, 167, 69, 0);
  }
}

/* Sticky Header Mega Panel styling integrated in defaults */

/* ==========================================
   BENTO GRID (SERVICES)
========================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bento-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(15, 124, 247, 0.3);
  box-shadow: 0 15px 40px rgba(15, 124, 247, 0.15);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(15, 124, 247, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.bento-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bento-link {
  color: var(--brand-light);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.3s ease;
}

.bento-card:hover .bento-link {
  color: #ffffff;
}

.span-2 {
  grid-column: span 2;
}

.span-row-2 {
  grid-row: span 2;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .span-2,
  .span-row-2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

/* ==========================================
   NARRATIVE FLOW (SOLUTIONS)
========================================== */
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.solution-card-horizontal {
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-card-horizontal:nth-child(even) {
  flex-direction: row-reverse;
}

.solution-content {
  flex: 1;
}

.solution-visual {
  flex: 1;
  background: linear-gradient(135deg, rgba(15, 124, 247, 0.05), rgba(220, 53, 69, 0.05));
  border: 1px solid rgba(15, 124, 247, 0.15);
  border-radius: 24px;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 35, 64, 0.05);
  transition: transform 0.5s ease;
}

.solution-card-horizontal:hover .solution-visual {
  transform: translateY(-10px);
  border-color: rgba(15, 124, 247, 0.3);
  box-shadow: 0 30px 60px rgba(15, 124, 247, 0.15);
}

.solution-visual-icon {
  font-size: 6rem;
  filter: drop-shadow(0 10px 20px rgba(15, 124, 247, 0.2));
}

.solution-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(15, 124, 247, 0.1);
  color: var(--brand-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.solution-content h3 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.solution-content p {
  font-size: 1.1rem;
  color: var(--mute-text);
  margin-bottom: 30px;
  line-height: 1.7;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solution-features li {
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.solution-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: bold;
}

@media (max-width: 992px) {

  .solution-card-horizontal,
  .solution-card-horizontal:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }

  .solution-visual {
    width: 100%;
    min-height: 300px;
  }

  .solution-content h3 {
    font-size: 1.8rem;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SOLUTIONS NARRATIVE FLOW UI UPGRADES
========================================== */

/* 1. Solution Feature Block (Alternating rows) */
.solution-feature-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .solution-feature-block {
        flex-direction: column !important;
    }
}

/* 2. Architecture Node Canvas */
.architecture-canvas {
    position: relative;
    overflow: hidden;
}
.architecture-canvas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(15, 124, 247, 0.1), transparent 70%);
    pointer-events: none;
}
.arch-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.arch-node:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 124, 247, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* 3. Benefit Minimal Cards */
.benefit-minimal {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
.benefit-minimal:hover {
    box-shadow: 0 15px 40px rgba(15, 124, 247, 0.08);
    transform: translateY(-3px);
}

/* ==========================================
   REALISTIC ENTERPRISE UI (SERVICES)
========================================== */

/* 1. Enterprise Capability Matrix (Hub Page) */
.enterprise-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.enterprise-card {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 8px; /* Sharper corners for corporate feel */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.enterprise-card:hover {
    box-shadow: 0 20px 40px rgba(26, 35, 64, 0.08);
    border-color: rgba(15, 124, 247, 0.3);
    transform: translateY(-4px);
}

.enterprise-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(15, 124, 247, 0.05);
    border: 1px solid rgba(15, 124, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 8px;
    margin-bottom: 25px;
    color: var(--brand);
}

.enterprise-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.enterprise-card p {
    color: var(--mute-text);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex: 1;
}

.enterprise-card .btn-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--brand);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 8px;
    transition: gap 0.3s ease;
}

.enterprise-card:hover .btn-link {
    gap: 12px;
}

/* ==========================================
   AWARD-WINNING ENTERPRISE UI (SERVICES SCROLLER)
========================================== */

/* Full-width Scroller Sections */
.section-scroller {
    padding: 120px 0;
    width: 100%;
}

.site-header + .section-scroller {
    padding-top: 220px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .site-header + .section-scroller {
        padding-top: 160px;
        padding-bottom: 80px;
        text-align: center;
    }
}

.section-scroller-light {
    background: #ffffff;
    color: var(--navy);
}

.section-scroller-gray {
    background: #f8fafc;
    color: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-scroller-dark {
    background: #0f172a;
    color: #ffffff;
}

/* Massive Typography */
.scroller-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.scroller-subtitle {
    font-size: 1.25rem;
    color: var(--mute-text);
    max-width: 700px;
    line-height: 1.7;
}

.section-scroller-dark .scroller-title {
    color: #ffffff;
}
.section-scroller-dark .scroller-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Minimalist Grid (Challenges) */
.scroller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.scroller-card {
    padding: 40px 0;
    border-top: 2px solid var(--border);
}

.scroller-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.scroller-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mute-text);
}

/* Oversized Metrics (Benefits) */
.metric-oversized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.metric-oversized {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.metric-oversized h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.metric-oversized p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Alternating Deliverables */
.deliverable-alt {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.deliverable-alt:last-child {
    margin-bottom: 0;
}
.deliverable-alt.reverse {
    flex-direction: row-reverse;
}

.deliverable-text {
    flex: 1;
}

.deliverable-text h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.deliverable-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--mute-text);
}

.deliverable-visual {
    flex: 1;
    height: 350px;
    background: #e2e8f0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.deliverable-visual::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
}

@media (max-width: 992px) {
    .deliverable-alt, .deliverable-alt.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .scroller-title {
        font-size: 2.5rem;
    }
}

/* ==========================================
   DISTINCT PREMIUM REDESIGN (SERVICES & SOLUTIONS)
========================================== */

/* --- SERVICES: Capability Grid --- */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.capability-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.capability-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}
.capability-item:hover img {
    transform: scale(1.05);
}
.capability-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 2;
}
.capability-content {
    position: relative;
    z-index: 3;
    color: #fff;
}
.capability-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.capability-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* --- SOLUTIONS: Cinematic Problem --- */
.cinematic-card {
    position: relative;
    padding: 100px 40px;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}
.cinematic-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 25, 0.92); /* Darkened for massive contrast */
    backdrop-filter: blur(8px);
}
.cinematic-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}
.cinematic-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8); /* Stop diffusion */
}
.cinematic-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* --- SOLUTIONS: Hub and Spoke Showcase --- */
.hub-spoke-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
}
.hub-spoke-center {
    flex: 0 0 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(15, 124, 247, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.hub-spoke-center img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hub-spoke-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.spoke-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}
.spoke-item:hover {
    transform: translateX(10px);
    border-color: rgba(15, 124, 247, 0.3);
}
.spoke-item h4 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.spoke-item p {
    color: var(--mute-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .hub-spoke-container {
        flex-direction: column;
    }
    .hub-spoke-center {
        flex: 0 0 300px;
        height: 300px;
    }
    .spoke-item:hover {
        transform: translateY(-5px);
    }
}

/* --- SOLUTIONS: Benefit Row --- */
.solution-benefit-row {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-top: 50px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) var(--border);
}
.solution-benefit-card {
    flex: 0 0 350px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--brand);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}
.solution-benefit-card h4 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.solution-benefit-card p {
    color: var(--mute-text);
    line-height: 1.6;
}

/* ==========================================
   MODERN FAQ STYLES
========================================== */
.faq-glassmorphic {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-glassmorphic details {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.section-scroller-light .faq-glassmorphic details,
.section .faq-glassmorphic details {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-glassmorphic details:hover {
    border-color: rgba(15, 124, 247, 0.4);
    box-shadow: 0 8px 25px rgba(15, 124, 247, 0.08);
}

.faq-glassmorphic details[open] {
    background: #ffffff;
    border-color: var(--brand);
}

.faq-glassmorphic summary {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-glassmorphic summary::-webkit-details-marker {
    display: none; /* Hide for Safari/Chrome */
}

.faq-glassmorphic summary .plus {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand);
    transition: transform 0.3s ease;
}

.faq-glassmorphic details[open] summary .plus {
    transform: rotate(45deg);
}

.faq-glassmorphic p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--mute-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==========================================
   PREMIUM CONTACT REDESIGN
========================================== */
.cinematic-contact-section {
    width: 100%;
}

.cinematic-contact-split {
    display: flex;
    min-height: 900px;
}

/* Left: Cinematic Canvas */
.cinematic-canvas {
    flex: 1;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80'); /* Dubai Skyline */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.canvas-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 11, 22, 0.92); /* Darker navy for better contrast */
    backdrop-filter: blur(8px);
    z-index: 1;
}
.canvas-content {
    position: relative;
    z-index: 2;
}

/* Glassmorphic Contact Grid */
.glass-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.glass-contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: background 0.3s ease;
}
.glass-contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
}
.glass-contact-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.glass-contact-card p {
    color: rgba(255, 255, 255, 1);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 4px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

/* Glass Map Container */
.glass-map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
}
.glass-map-container iframe {
    border-radius: 12px;
    filter: invert(90%) hue-rotate(180deg); /* Sleek dark mode map */
}

/* Right: Minimalist Studio Form */
.studio-form-container {
    flex: 1;
    background: #ffffff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-form .sf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.studio-form .sf-group {
    position: relative;
    margin-bottom: 40px;
}
.studio-form input,
.studio-form select,
.studio-form textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 1.15rem;
    color: #050b16; /* Stronger dark color for visibility */
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}
.studio-form select {
    appearance: none;
    cursor: pointer;
}

.studio-form label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1.1rem;
    color: #64748b; /* label color */
    pointer-events: none;
    transition: all 0.3s ease;
}
.studio-form input:focus,
.studio-form select:focus,
.studio-form textarea:focus {
    border-bottom-color: var(--brand);
}
.studio-form input:focus ~ label,
.studio-form input:valid ~ label,
.studio-form input:not(:placeholder-shown) ~ label,
.studio-form textarea:focus ~ label,
.studio-form textarea:valid ~ label,
.studio-form textarea:not(:placeholder-shown) ~ label,
.studio-form select:focus ~ .select-label,
.studio-form select:valid ~ .select-label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 600;
}

@media (max-width: 992px) {
    .cinematic-contact-split {
        flex-direction: column;
    }
    .cinematic-canvas, .studio-form-container {
        padding: 60px 30px;
    }
    .studio-form .sf-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .glass-contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
  h1, .contact-split-info h2 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .sol-shell h1 { font-size: 30px; }
  .big-heading { font-size: 2.5rem; }
}

/* ==========================================================================
   ENTERPRISE AUDIT ENHANCEMENTS — NANO4C AI CONSULTANCY STYLES
   ========================================================================== */

/* Hero Interactive Canvas */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

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

/* SLA & Trust Floating Badges */
.sla-badge-strip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #2ec4b6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    animation: pulse-green-anim 2s infinite;
}

@keyframes pulse-green-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 196, 182, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

/* Outcome Value Cards */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.outcome-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: rgba(220, 53, 69, 0.3);
}

.outcome-card:hover::before {
    opacity: 1;
}

.outcome-metric {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

/* Dedicated Enterprise AI Section */
.ai-showcase-section {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #0d1222 100%);
    color: #ffffff;
    padding: clamp(50px, 8vh, 90px) 0;
    position: relative;
    overflow: hidden;
}

.ai-showcase-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.ai-nav-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ai-nav-tabs::-webkit-scrollbar {
    display: none;
}

.ai-tab-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ai-tab-btn:hover, .ai-tab-btn.active {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.ai-tab-content {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.ai-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

@media (max-width: 992px) {
    .ai-tab-content.active {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.ai-tab-content h3 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: #ffffff;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
}

/* Delivery Methodology 4-Step Stepper */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
    position: relative;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.step-num {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: rgba(220, 53, 69, 0.1);
    color: var(--brand);
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 44px;
    text-align: center;
    margin-bottom: 20px;
}

/* Case Studies KPI Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(220, 53, 69, 0.25);
}

.case-kpi-badge {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Certifications Grid */
.certs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cert-badge {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* ==========================================
   ENTERPRISE BEAUTIFUL MEGA FOOTER (Point 9)
================================================= */
.site-footer-enterprise, .site-footer {
  background: #090e1a;
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

.site-footer-enterprise::before, .site-footer::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.footer-mega-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.2fr;
  gap: 35px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-brand-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 15px 0 20px 0;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.footer-newsletter-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.footer-newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.footer-newsletter-form input:focus {
  border-color: var(--brand);
}

.footer-newsletter-form button {
  background: var(--brand);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer-newsletter-form button:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #94a3b8;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Footer Responsive Breakpoints */
@media (max-width: 1200px) {
  .footer-mega-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-mega-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .site-footer-enterprise, .site-footer {
    padding: 60px 0 25px 0;
  }
}

@media (max-width: 480px) {
  .footer-mega-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

/* =========================================================
   AWARD-WINNING PAGE STYLING (AI Center & Contact Hub)
============================================================ */

/* Award-Winning Cinematic Hero */
.award-hero {
  position: relative;
  background: radial-gradient(circle at 50% 30%, #151d38 0%, #080c16 100%);
  padding: clamp(100px, 12vh, 140px) 0 clamp(60px, 8vh, 90px) 0;
  overflow: hidden;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.award-hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, rgba(0, 123, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.award-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.award-lead {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #94a3b8;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* AI Metric Pills Ticker */
.ai-metric-pills {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.ai-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-pill strong {
  color: #ffffff;
  font-weight: 700;
}

/* Glassmorphic & Award-Winning 4-Pillar Grid */
.ai-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.ai-pillar-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 30px 30px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.ai-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #007bff 100%);
  opacity: 0.8;
  transition: height 0.3s ease;
}

.ai-pillar-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 53, 69, 0.3);
  box-shadow: 0 25px 50px rgba(220, 53, 69, 0.12);
}

.ai-pillar-card:hover::before {
  height: 6px;
  opacity: 1;
}

.ai-pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ai-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.15);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.ai-pillar-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(220, 53, 69, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.ai-pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ai-pillar-card p {
  color: var(--mute-text);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.ai-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.ai-chip {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.ai-pillar-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  transition: color 0.25s ease;
}

.ai-pillar-link:hover {
  color: var(--brand);
}

/* Interactive AI Score Calculator Widget */
.ai-calculator-box {
  background: linear-gradient(145deg, #0d1322 0%, #151e34 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 45px);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  margin-top: 50px;
}

.calc-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.calc-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.calc-step-card:hover, .calc-step-card.selected {
  background: rgba(220, 53, 69, 0.15);
  border-color: var(--brand);
}

.calc-gauge-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.3);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 20px;
}

.calc-score-val {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2ec4b6;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}

/* Contact Hub 3-Card Header */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.contact-hub-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact-hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-hub-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
}

/* Multi-City Office Maps Tabs */
.office-tab-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.office-tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.office-tab-btn.active, .office-tab-btn:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

/* Hero Carousel Styles */
.hero-carousel-container {
  position: relative;
  width: 100%;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  position: relative !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-carousel-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--brand);
  width: 45px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAP////////////////////////87fLzOAAAACHRSTlMA////////APw+NQQAAAF6SURBVDjLpVNNbwIxDIzQK8UewB6C//8bL4kXwB72sNchJ2q76k5CjF7S2Gk8GSe2w/r+4wX+m/o/D83p40eP2j17X1B725A6r/0+88xG9QW3u2pTebG9P3S+bJ66T8uT0/30a5X6+B/1Rz2U2+xP9pA+1F1pI9xP9qW9aI9qG+W+/xJ7VPejfbC7dJ/tL3uQfeX70V7ZvdqP9tA+lPvJXvQ+96P90D3Zh+zP3of2p93pfep32ZPek/6u2mX3X3sXvXf7L/ah9qj2Uj60L+VDe9F+tF/tVe1P7Uu7Y3fqI+zG7qO+o91of3WffU/soXyIvaV72ZvsQ/mIfal7sr97z/ZH+9Du9P7sPdmb2Yfe532zO+1P9qG8m73pPfSe2aP90Hu0B71HexN7T/ey32kfaV/l3u0vu8d+p/1qb2pX+4O9lHvtVe293Uf5C/a93qP9k/v2X+3/3lH7pXf/uH/uX70H3V/y8r7uN/58uA49n3HAAAAAElFTkSuQmCC");
  background-repeat: repeat;
}
