/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT ===== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #050508;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #22c55e, #2563eb);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #16a34a, #1d4ed8);
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #06b6d4, #2563eb, #a78bfa);
  background-size: 300% 100%;
  animation: progressGrad 4s ease infinite;
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

@keyframes progressGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== CURSOR GLOW ===== */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* ===== BODY ===== */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding-top: var(--navbar-height, 82px);
  overflow-x: hidden;
  letter-spacing: 1px;
  background: #050508;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

body.menu-open {
  overflow: hidden;
}

/* ===== SECTION TRANSITION OVERLAY ===== */
.solutions-section::after,
.ai-soc-section::after,
.cyber-interactive::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #050508);
  pointer-events: none;
  z-index: 2;
}

/* ===== IMPACT STATS ===== */
.impact-stats {
  background: #07070c;
  padding: 60px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.impact-stats .stats-container {
  max-width: 1100px;
  margin: 0 auto;
}
.impact-stats .about-stats {
  display: flex;
  justify-content: space-around;
  gap: 60px;
}
.impact-stats .stat-item {
  text-align: center;
}
.impact-stats .stat-number {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #06b6d4, #2563eb);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  animation: statGrad 4s ease infinite alternate;
}
@keyframes statGrad {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.impact-stats .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .impact-stats .about-stats {
    flex-wrap: wrap;
    gap: 32px;
  }
  .impact-stats .stat-number {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .impact-stats .about-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/* =====================================================
   ===== PREMIUM ENTERPRISE NAVBAR (COMPACT VERSION) =====
   ===================================================== */

/* ===== NAVBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  transition: all 0.35s ease;
}

/* Navbar solid state after scrolling */
.topbar.scrolled {
  background: #050508;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.topbar.scrolled .topbar-container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.topbar.scrolled .topbar-logo img {
  height: 30px;
}

.topbar-container {
  max-width: 1440px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.topbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-logo img {
  height: 36px;
  transition: transform 0.3s ease;
}

.topbar-logo img:hover {
  transform: scale(1.05);
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.nav-item > a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#22c55e,#2563eb);
  transition: width 0.3s ease;
}

.nav-item > a:hover::before {
  width: 100%;
}

.nav-item > a::after {
  content: "▾";
  font-size: 11px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.nav-item.no-dropdown > a::after {
  display: none;
}

.nav-item:hover > a::after {
  transform: rotate(180deg);
}

.has-dropdown {
  position: static;
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-width: 680px;
  z-index: 1000;
  transition: all 0.25s ease;
}

.nav-item:hover .mega-menu,
.has-dropdown.dropdown-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: flex;
  justify-content: center;
  padding: 28px 36px;
  background: rgba(13, 13, 26, 0.97);
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mega-content {
  display: flex;
  gap: 64px;
}

/* ===== COLUMNS ===== */
.menu-col {
  width: 200px;
  display: flex;
  flex-direction: column;
}

.menu-col h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 16px;
  font-weight: 700;
}

/* ===== MENU ITEMS ===== */
.menu-item {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.menu-item span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.menu-item small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.menu-item:hover {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.15);
  transform: translateX(4px);
}

.menu-item:hover span {
  color: #22c55e;
}

.menu-item:hover small {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== CTA ===== */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ===== PRIMARY BUTTON ===== */
.primary {
  background: linear-gradient(135deg,#22c55e,#2563eb);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37,99,235,0.35);
  background: linear-gradient(135deg,#16a34a,#1d4ed8);
}

.primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}

/* ===== OUTLINE BUTTON ===== */
.outline {
  border: 2px solid #06b6d4;
  color: #06b6d4;
  background: transparent;
}

.outline:hover {
  background: linear-gradient(135deg,#22c55e,#2563eb);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.3);
}

.outline:active {
  transform: translateY(-1px);
}

/* ===== FOCUS STATE (ACCESSIBILITY) ===== */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .nav-links {
    display: none;
  }

  .mega-inner {
    flex-direction: column;
    padding: 24px;
  }

  .mega-content {
    flex-direction: column;
    gap: 24px;
  }

  .menu-col {
    width: 100%;
  }

  .nav-actions {
    display: none;
  }
}
    
/* ===== MOBILE NAV TOGGLE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hamburger.active span {
  background: #ffffff;
}

.navbar-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 15, 35, 0.98);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow-y: auto;
}

.navbar-nav-mobile.show {
  display: flex;
}

.navbar-nav-mobile a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.2s ease;
}

.navbar-nav-mobile a:hover {
  color: #22c55e;
}

.navbar-nav-mobile .btn {
  min-width: 200px;
  text-align: center;
}

.navbar-nav-mobile .btn.outline {
  border-color: #ffffff;
  color: #ffffff;
}

.navbar-nav-mobile .btn.outline:hover {
  background: linear-gradient(135deg, #22c55e, #2563eb);
  border-color: transparent;
  color: #ffffff;
}

.navbar-nav-mobile .nav-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10003;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
  }
}

/* Footer section starts */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Footer Tagline */
.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;

  background: linear-gradient(
    135deg,
    #ffd777,
    #ffebaf,
    #c9a23f
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldFlow 6s linear infinite;
}

/* Navigation Links */
.link-group a {
  color: #f5d77a;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.link-group a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #f5d77a;
  transition: width 0.3s ease, left 0.3s ease;
}

.link-group a:hover {
  color: #ffffff;
}

.link-group a:hover::after {
  width: 100%;
  left: 0;
}

/* Divider */
.footer-divider {
  border-top: 1px solid rgba(245, 215, 122, 0.4);
  margin: 20px 0;
}

/* Copyright */
footer p {
  color: #f5d77a;
}

/* Gold animation */
@keyframes goldFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Styling back to top button */
.btn-floating {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#btn-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #22c55e, #2563eb);
    color: #fff;
    border: none;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#btn-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
/* ======================================================
   HERO SECTION – INFOSEC CYBER ENTERPRISE REFINEMENT
====================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
  overflow: hidden;
  background: #050508;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 8, 0.7) 0%, rgba(5, 5, 8, 0.3) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
}

.hero-content {
  max-width: 720px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.08);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #2563eb);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #16a34a, #1d4ed8);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero-inner {
    padding-top: 80px;
  }
  .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    aspect-ratio: auto;
    padding: 0;
    align-items: center;
  }
  .hero-video {
    object-fit: cover;
    background: #050508;
  }
  .hero-overlay {
    pointer-events: none;
  }
  .hero-inner {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 40px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-desc {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-inner {
    padding: 84px 20px 32px;
  }
}



/* ======================================================
   SOLUTIONS SECTION – PREMIUM ENTERPRISE
====================================================== */

.solutions-section {
  position: relative;
  padding: 120px 24px;
  background: #050508;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.solutions-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.solutions-header {
  text-align: center;
  margin-bottom: 72px;
}

.solutions-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.08);
  margin-bottom: 20px;
}

.solutions-badges-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.solutions-badges-bar .solutions-badge {
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 0;
}

.solutions-header h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.solutions-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solutions-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  overflow: hidden;
}

.solutions-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), transparent, rgba(168, 85, 247, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.solutions-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(99, 102, 241, 0.08);
}

.solutions-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
  color: #a78bfa;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.solutions-card:hover .solutions-card-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.2));
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.solutions-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.solutions-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.solutions-card-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.solutions-card:hover .solutions-card-arrow {
  color: #a78bfa;
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .solutions-section {
    padding: 80px 18px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solutions-header h2 {
    font-size: 30px;
  }
}

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

@media (max-width: 768px) {

}

/* ======================================================
   AI-SOC SECTION
====================================================== */

.ai-soc-section {
  position: relative;
  padding: 120px 24px;
  background: #050508;
  overflow: hidden;
}

.ai-soc-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.ai-soc-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ai-soc-content {
  padding-right: 20px;
}

.ai-soc-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.08);
  margin-bottom: 20px;
}

.ai-soc-content h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.ai-soc-content p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 520px;
}

.ai-soc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #2563eb);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.ai-soc-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #16a34a, #1d4ed8);
}

.ai-soc-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.ai-soc-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .ai-soc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-soc-content {
    padding-right: 0;
  }
  .ai-soc-section {
    padding: 80px 18px;
  }
}

/* ================================
   OUR CLIENTS – BLACK THEME
   PRIMARY COLOR: INFOSEC GREEN-BLUE
=============================== */

/* ======================================================
   INTERACTIVE CYBERSECURITY SECTION (CyberPwn Inspired)
====================================================== */

.cyber-interactive {
  position: relative;
  padding: 120px 24px;
  background: #0a0a0f;
  overflow: hidden;
}

.cyber-interactive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cyber-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cyber-header {
  text-align: center;
  margin-bottom: 70px;
}

.cyber-header h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cyber-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.cyber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.cyber-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 44px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.cyber-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), transparent, rgba(168, 85, 247, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cyber-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 80px rgba(99, 102, 241, 0.06);
}

.cyber-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
  color: #a78bfa;
  margin-bottom: 22px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.cyber-card:hover .cyber-card-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(99, 102, 241, 0.15));
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
  transform: scale(1.1);
}

.cyber-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cyber-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.cyber-cta-area {
  text-align: center;
  margin-top: 20px;
}

.cyber-cta-area p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cyber-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #2563eb);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cyber-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #16a34a, #1d4ed8);
}

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

@media (max-width: 768px) {
  .cyber-grid {
    grid-template-columns: 1fr;
  }
  .cyber-interactive {
    padding: 80px 18px;
  }
}

.our-clients {
  background: #050508;
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.clients-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.clients-header {
  text-align: center;
  margin-bottom: 48px;
}

.clients-header h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* ================================
   MARQUEE
================================ */

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* soft fade edges */
.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #050508 0%, transparent 100%);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #050508 0%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: clients-scroll 32s linear infinite;
}

/* pause on hover */
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

/* ================================
   LOGOS – ORIGINAL COLORS (PREMIUM)
================================ */

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transform: translateY(0) scale(1);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.client-logo img {
  height: 84px;
  max-width: 260px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition:
    transform 0.4s ease,
    filter 0.4s ease,
    opacity 0.4s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.08);
}

.client-logo:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* ================================
   LARGER LOGOS – GIGAMON & THREATLOCKER ONLY
================================ */

.client-logo img[alt="Gigamon"],
.client-logo img[alt="ThreatLocker"] {
  height: 128px;
  max-width: 460px;
}

@media (max-width: 768px) {
  .client-logo img[alt="Gigamon"],
  .client-logo img[alt="ThreatLocker"] {
    height: 88px;
    max-width: 330px;
  }
}

/* ================================
   ANIMATION
================================ */

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .clients-track {
    gap: 64px;
  }

  .client-logo img {
    height: 56px;
    max-width: 190px;
  }
}


/* ===========================
   ABOUT SECTION – PREMIUM
=========================== */

.about-section {
  position: relative;
  background: #0a0a0f;
  padding: 100px 24px;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #0a0a0f 48%,
      rgba(10, 10, 15, 0.92) 60%,
      rgba(10, 10, 15, 0.75) 72%,
      rgba(10, 10, 15, 0.55) 100%
    ),
    url("../images/About_Hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  pointer-events: none;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.08);
  margin-bottom: 20px;
}

.about-content-left h2 {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-description {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

/* ===========================
   ABOUT STATS – STANDALONE
=========================== */

.about-stats-section {
  position: relative;
  background: #07070c;
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-container .about-stats {
  display: flex;
  justify-content: space-around;
  gap: 60px;
}

/* Tablet */
@media (max-width: 900px) {
  .about-stats-section {
    padding: 60px 24px;
  }

  .stats-container .about-stats {
    gap: 40px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .about-stats-section {
    padding: 50px 18px;
  }
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Certification Cards */
.cert-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 240px;
}

.cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), transparent, rgba(168, 85, 247, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 80px rgba(99, 102, 241, 0.06);
}

.cert-card .feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
  margin-bottom: 14px;
  font-size: 18px;
  color: #a78bfa;
  transition: all 0.3s ease;
}

.cert-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.2));
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
  transform: scale(1.05);
}

.cert-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cert-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 12px;
}

.cert-detail {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.cert-card.show-detail .cert-detail {
  max-height: 300px;
  opacity: 1;
}

.cert-card .cert-subtitle {
  transition: opacity 0.3s ease;
}

.cert-card.show-detail .cert-subtitle {
  opacity: 0.4;
}

/* Tablet */
@media (max-width: 1024px) {
  .about-container {
    gap: 50px;
  }

  .about-features {
    gap: 24px;
  }

  .cert-card {
    padding: 24px 24px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .about-section {
    padding: 70px 24px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-section::before {
    display: none;
  }

  .about-content-left h2 {
    font-size: 32px;
  }

  .about-description {
    max-width: 100%;
  }

  .about-stats,
  .stats-container .about-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-card {
    padding: 24px 22px;
    min-height: auto;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 50px 18px;
  }

  .about-content-left h2 {
    font-size: 26px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-stats,
  .stats-container .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 26px;
  }
}


/* ===========================
   SOLUTIONS HERO SECTION
=========================== */

.solutions-hero {
  position: relative;
  background: #0a0a0f;
  padding: 70px 20px;
  overflow: hidden;
}

/* LEFT BACKGROUND IMAGE LAYER */
.solutions-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 15, 0) 0%,
      rgba(10, 10, 15, 0.3) 55%,
      rgba(10, 10, 15, 0.6) 75%,
      #0a0a0f 100%
    ),
    url("../images/December-2023-Cybercrime-Update-Extortion-Trends-Identity-Focused-Attacks-Counter-Operations-1.jpg"); /* 🔁 UPDATE IMAGE PATH */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* MAIN CONTAINER */
.solutions-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

/* CONTENT (RIGHT SIDE ONLY) */
.solutions-content {
  grid-column: 2 / 3;
  padding-left: 40px;
}

/* Badge */
.solutions-badge {
  display: inline-block;
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(167, 139, 250, 0.06);
  color: #a78bfa;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}

/* Headline */
.solutions-content h2 {
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

/* Intro */
.solutions-intro {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 34px;
}

/* Points */
.solutions-points {
  list-style: none;
  padding: 0;
  margin: 0 0 42px;
}

.solutions-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.solutions-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #2563eb);
}

/* CTA */
.solutions-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #a78bfa;
  text-decoration: none;
  position: relative;
}

.solutions-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.solutions-link:hover::after {
  transform: scaleX(1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .solutions-hero-bg {
    display: none;
  }

  .solutions-hero-container {
    grid-template-columns: 1fr;
  }

  .solutions-content {
    grid-column: 1 / -1;
    padding-left: 0;
  }
}


/* ===========================
   WHY MMA INFOSEC
=========================== */

.why-infosec {
  background: #0a0a0f;
  padding: 100px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.why-container {
  max-width: 1240px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.08);
  margin-bottom: 20px;
}

.why-header h2 {
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.why-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), transparent, rgba(168, 85, 247, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(99, 102, 241, 0.06);
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-infosec {
    padding: 70px 18px;
  }
}


/* ===========================
   INCIDENT RESPONSE READINESS
=========================== */

.response-readiness {
  position: relative;
  background: #050508;
  padding: 100px 24px;
  overflow: hidden;
  z-index: 1;
}

.response-readiness::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.response-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background:
    linear-gradient(
      270deg,
      rgba(5, 5, 8, 0) 0%,
      rgba(5, 5, 8, 0.4) 75%,
      #050508 100%
    ),
    url("../images/Services_And_Support_Hero.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: 0.6;
}

.response-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.response-content {
  max-width: 600px;
}

.response-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.08);
  margin-bottom: 22px;
}

.response-content h2 {
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.response-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 34px;
}

.response-points {
  list-style: none;
  padding: 0;
  margin-bottom: 44px;
}

.response-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.75);
}

.response-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #2563eb);
}

.response-cta {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #22c55e 0%,
    #06b6d4 60%,
    #2563eb 100%
  );
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.response-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(6,182,212,0.35);
}

/* ============================= */
/* ===== BLOG MODELS SECTION === */
/* ============================= */

.blog-models {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  font-family: "Inter", sans-serif;
}

.blog-models-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================= */
/* ===== CONTENT WRAPPER ======= */
/* ============================= */

.blog-models-content {
  position: relative;
  min-height: 560px;
}

/* ============================= */
/* ===== SLIDING PANELS ======== */
/* ============================= */

.model-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(.16,.84,.44,1),
    transform 0.7s cubic-bezier(.16,.84,.44,1);
  pointer-events: none;
}

.model-panel.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================= */
/* ===== HERO CONTAINER ======== */
/* ============================= */

.model-visual {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  padding: 60px 40px;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 70px 160px rgba(15, 23, 42, 0.12),
    0 25px 80px rgba(15, 23, 42, 0.08);
  transition: transform 0.5s ease;
}

.model-visual:hover {
  transform: translateY(-6px);
}

/* ============================= */
/* ===== BACKGROUND IMAGES ===== */
/* ============================= */

.model-bg-1 {
  background-image: url("../images/pexels-tima-miroshnichenko-5380642.jpg");
}

.model-bg-2 {
  background-image: url("../images/pexels-harold-vasquez-853421-2653362.jpg");
}

.model-bg-3 {
  background-image: url("../images/pexels-jakubzerdzicki-34212896.jpg");
}

/* ============================= */
/* ===== PROFESSIONAL OVERLAY == */
/* ============================= */

.model-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(4, 20, 40, 0.90) 0%,
      rgba(8, 35, 60, 0.78) 45%,
      rgba(15, 60, 90, 0.60) 100%
    );
}

/* ============================= */
/* ===== CENTER CONTENT LAYER == */
/* ============================= */

.model-content-grid {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

/* ============================= */
/* ===== PREMIUM TYPOGRAPHY ==== */
/* ============================= */

.model-card {
  width: 100%;
}

/* Category Label */
.model-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 14px;
}

/* Date */
.model-card .date {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* Title */
.model-card h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}

/* Paragraph */
.model-card p {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
}

/* ============================= */
/* ===== TABS SECTION ========== */
/* ============================= */

.blog-model-tabs {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 40px;
  position: relative;
}

/* Tab Button */
.blog-model-tabs .tab {
  background: none;
  border: none;
  font-size: 19px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding-bottom: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.blog-model-tabs .tab:hover {
  color: #0f172a;
}

.blog-model-tabs .tab.active {
  color: #0f172a;
}

/* Indicator */
.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #22c55e, #2563eb);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(.16,.84,.44,1);
}

/* ============================= */
/* ===== RESPONSIVE SYSTEM ===== */
/* ============================= */

@media (max-width: 1024px) {

  .model-visual {
    padding: 70px 50px;
  }

  .model-card h2 {
    font-size: 34px;
  }

  .model-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .blog-model-tabs {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .tab-indicator {
    display: none;
  }

  .model-visual {
    padding: 50px 28px;
  }

  .model-card h2 {
    font-size: 26px;
  }
}

/* ===========================
   PLATFORM MODELS SECTION
=========================== */


.platform-container {
  max-width: 1240px;
  margin: 0 auto;
}

.platform-content {
  min-height: 320px;
}

.platform-panel {
  display: none;
  animation: fadeUp 0.6s ease;
}

.platform-panel.active {
  display: block;
}

.platform-panel h3 {
  font-size: 34px;
  font-weight: 800;
  color: #0b0e1a;
  margin-bottom: 34px;
}

/* GRID */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.platform-item {
  background: linear-gradient(
    180deg,
    #fafbff 0%,
    #f6f7ff 100%
  );
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(111,92,255,0.14);
  transition: all 0.35s ease;
}

.platform-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(17,20,55,0.12),
    0 0 0 1px rgba(111,92,255,0.25);
}

.platform-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b0e1a;
  margin-bottom: 8px;
}

.platform-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #5c617a;
}

/* TABS */
.platform-tabs {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.p-tab {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #b3b3b3;
  padding-bottom: 16px;
  cursor: pointer;
}

.p-tab.active {
  color: #0b0e1a;
}

.p-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 3px;
  width: 0;
  background: #6f5cff;
  transition: 0.4s ease;
}

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

  .platform-tabs {
    flex-direction: column;
    border-bottom: none;
  }

  .p-indicator {
    display: none;
  }
}

/* ================================
   BE DAVID BANNER – PREMIUM
================================ */

.david-banner {
  position: relative;
  margin-top: 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 24px 24px 60px;
  background: #050508;
}

.david-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(99, 102, 241, 0.25), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(168, 85, 247, 0.2), transparent 50%);
  z-index: 0;
  animation: davidGlow 10s ease-in-out infinite alternate;
}

@keyframes davidGlow {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.david-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.3) 0%, rgba(5, 5, 8, 0.6) 100%);
  z-index: 1;
}

.david-banner-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.david-banner-particles::before,
.david-banner-particles::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.david-banner-particles::before {
  top: -20%;
  right: -8%;
  background: radial-gradient(circle, #6366f1, transparent);
  animation: particleFloat 12s ease-in-out infinite alternate;
}

.david-banner-particles::after {
  bottom: -20%;
  left: -8%;
  background: radial-gradient(circle, #a78bfa, transparent);
  animation: particleFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes particleFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.2); }
}

.david-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 44px 48px;
}

.david-banner-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(167, 139, 250, 0.06);
  margin-bottom: 20px;
}

.david-banner-content h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: 'Josefin Sans', sans-serif;
  background: linear-gradient(135deg, #22c55e, #06b6d4, #2563eb);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 18px;
  animation: davidTextGrad 5s ease-in-out infinite alternate;
}

@keyframes davidTextGrad {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.david-banner-text {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

/* ================================
   DAVID BANNER – RESPONSIVE
================================ */

@media (max-width: 900px) {
  .david-banner {
    min-height: 40vh;
    padding: 24px 24px 50px;
  }

  .david-banner-content {
    padding: 36px 28px;
  }

  .david-banner-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .david-banner {
    min-height: 35vh;
    padding: 24px 20px 40px;
  }

  .david-banner-content {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .david-banner-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .david-banner {
    min-height: 30vh;
    padding: 24px 16px 30px;
  }

  .david-banner-content {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .david-banner-content h2 {
    font-size: 24px;
  }

  .david-banner-badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
}

/* ================================
   PLATFORM VISUAL MODELS
================================ */

.platform-models {
  background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
  padding: 110px 24px 20px;
  overflow: hidden;
}


.platform-container {
  max-width: 1500px;
  margin: 0 auto;
}

/* ================================
   PLATFORM HEADER – PREMIUM FIX
================================ */

.platform-header {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  margin-bottom: 50px;
  margin-left: 70px;
}

/* MAIN HEADING */
.platform-header h2 {
  font-size: clamp(52px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #06263d;
  margin: 0;
}

/* RIGHT DESCRIPTION */
.platform-header p {
  font-size: 18.5px;
  line-height: 1.85;
  color: #475569;
  max-width: 560px;
  margin: 0;
}

/* SUBTLE VISUAL BALANCE */
.platform-header p::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #2563eb);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* RESPONSIVE TUNING */
@media (max-width: 1024px) {
  .platform-header {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-left: 0;
  }

  .platform-header h2 {
    font-size: clamp(42px, 6vw, 56px);
  }

  .platform-header p {
    max-width: 100%;
  }
}


/* SLIDER WRAPPER */
.platform-slider-wrapper {
  position: relative;
}

/* CARD SLIDER */
.platform-cards {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  color: rgb(255, 255, 255);
}

.platform-cards::-webkit-scrollbar {
  display: none;
}

/* CARD */
.platform-card {
  min-width: 380px;
  height: 600px;              /* ⬅️ INCREASED FROM 520px */
  flex-shrink: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 40px;              /* ⬅️ more breathing space */
  display: flex;
  align-items: flex-end;
  background-size: 120%;
  background-position: center;
  transition: 
    transform 0.45s ease,
    box-shadow 0.45s ease,
    background-size 0.6s ease;
  cursor: pointer;
}


/* BACKGROUNDS */
.platform-card:nth-child(1) { background-image: url("../images/pexels-cottonbro-4034007.jpg"); }
.platform-card:nth-child(2) { background-image: url("../images/pexels-freestockpro-7444597.jpg"); }
.platform-card:nth-child(3) { background-image: url("../images/pexels-griffinw-5309159.jpg"); }
.platform-card:nth-child(4) { background-image: url("../images/pexels-mortywalker-31633844.jpg"); }
.platform-card:nth-child(5) { background-image: url("../images/pexels-zkankeklik-15108227.jpg"); }
.platform-card:nth-child(6) { background-image: url("../images/pexels-mati-5952738.jpg"); }
.platform-card:nth-child(7) { background-image: url("../images/pexels-anete-lusina-5240541.jpg"); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

@media (max-width: 768px) {
  .platform-card {
    min-width: 280px;
    height: 420px;
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .platform-card {
    min-width: 85vw;
    height: 380px;
  }
}

.card-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.resources-card.visible,
.mma-knowledge-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 420px) {
  .platform-card {
    min-width: 85vw;
    height: 480px;
  }
}

/* Contact */
:root{
  --content-rail-offset: 40px;
}

.contact-forward{
  padding:60px 8% 50px;
  background:#020916;
  font-family:Inter,system-ui,sans-serif;
  color:#e2e8f0;
  position: relative;
  z-index: 2;
  margin-top: -80px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:90px;
  align-items:flex-start;
}

/* LEFT CONTENT */
.contact-content{
  padding-left: var(--content-rail-offset);
  margin-top: 90px;
}

/* Pill */
.contact-pill{
  display:inline-block;
  padding:8px 30px;
  border-radius:40px;
  background:linear-gradient(90deg, rgba(34,197,94,.15), rgba(6,182,212,.08));
  color:#0d9488;
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  margin-bottom:30px;
}

.contact-content h1{
  font-size:56px;
  font-weight:700;
  letter-spacing:-.04em;
  margin-bottom:26px;
  color:#ffffff;
}

.contact-content .lead{
  font-size:18px;
  color:#cbd5e1;
  max-width:520px;
  line-height:1.7;
  margin-bottom:42px;
}

.contact-content .statement{
  font-size:24px;
  line-height:1.4;
  color:#cbd5e1;
}

.contact-content .statement span{
  color:#06b6d4;
  font-weight:600;
}

/* RIGHT VISUAL */
.contact-visual{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:flex-end;
}

.contact-bg{
  position:absolute;
  inset:0;
  border-radius:12px;
  background:
    linear-gradient(90deg,rgba(2,9,22,.95),rgba(2,9,22,.6)),
    linear-gradient(180deg,#0a1a2e,#020916);
}

/* FORM */
.contact-form{
  position:relative;
  z-index:2;
  width:100%;
  max-width:520px;
  margin:0 0 40px 40px;
  padding:32px 44px;
  background:rgba(255,255,255,0.04);
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4),0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter:blur(12px);
}

/* FORM GRID */
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px 24px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group.full{
  grid-column:1 / -1;
}

label{
  font-size:13px;
  font-weight:600;
  margin-bottom:10px;
  color:rgba(255,255,255,0.75);
}

input,
select,
textarea{
  padding:12px 14px;
  font-size:15px;
  border:none;
  border-bottom:1.5px solid rgba(255,255,255,0.15);
  background:transparent;
  transition:.3s ease;
  font-family:inherit;
  resize:vertical;
  color:#ffffff;
}

textarea{
  min-height:72px;
}

input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,0.35);
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-bottom-color:#67e8f9;
}

/* BUTTON */
.submit-btn{
  margin-top:28px;
  padding:18px 36px;
  background:linear-gradient(135deg,#22c55e,#06b6d4,#3b82f6);
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  letter-spacing:.03em;
  cursor:pointer;
  transition:.3s ease;
}

.submit-btn:hover{
  background:linear-gradient(135deg,#22c55e,#2563eb);
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(37,99,235,0.25);
}

.submit-btn:active{
  transform:translateY(0);
}

.submit-btn:active{
  transform:translateY(0);
}

/* ===========================
   HOMEPAGE: DARK CONTACT THEME
=========================== */

.home .contact-forward {
  background: #0a0a0f;
  color: #ffffff;
}

.home .contact-content h1 {
  color: #ffffff;
}

.home .contact-content .lead {
  color: rgba(255, 255, 255, 0.65);
}

.home .contact-content .statement {
  color: rgba(255, 255, 255, 0.65);
}

.home .contact-pill {
  background: rgba(167, 139, 250, 0.08);
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.home .contact-bg {
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.6)),
    linear-gradient(180deg, #0a1a2e, #0d1117);
}

.home .contact-form {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.home .contact-form label {
  color: rgba(255, 255, 255, 0.75);
}

.home .contact-form input,
.home .contact-form select,
.home .contact-form textarea {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.home .contact-form input::placeholder,
.home .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.home .contact-form input:focus,
.home .contact-form select:focus,
.home .contact-form textarea:focus {
  border-bottom-color: #67e8f9;
}

/* Homepage dark contact – responsive overrides */
@media (max-width: 1024px) {
  .home .contact-form {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 1100px) {
  .contact-grid {
    gap: 50px;
  }

  .contact-form {
    margin: 0 0 30px 30px;
    padding: 28px 36px;
  }

  .contact-visual {
    min-height: 380px;
  }
}

@media (max-width: 1024px) {
  .contact-forward {
    margin-top: 0;
  }

  .response-readiness {
    padding-bottom: 30px;
    overflow: hidden;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-content {
    padding-left: 0;
    margin-top: 0;
  }
  .contact-content h1 {
    font-size: 38px;
  }
  .contact-content .lead {
    max-width: 100%;
  }
  .contact-visual {
    min-height: auto;
    align-items: stretch;
  }
  .contact-bg {
    position:relative;
    min-height:200px;
    border-radius:12px 12px 0 0;
  }
  .contact-form {
    position:relative;
    margin:0;
    max-width:100%;
    padding:22px 24px;
    border-radius:0 0 12px 12px;
    box-shadow:0 10px 30px rgba(2,132,199,0.08);
  }
  .form-grid {
    grid-template-columns:1fr;
    gap:16px;
  }
  .submit-btn {
    width:100%;
    text-align:center;
  }
}

@media (max-width: 600px) {
  .contact-forward {
    padding: 40px 4% 60px;
    margin-top: 0;
  }

  .response-readiness {
    padding-bottom: 30px;
  }

  .contact-content h1 {
    font-size: 32px;
  }

  .contact-content .lead {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 20px 18px;
  }

  .submit-btn {
    padding: 16px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-forward {
    padding: 30px 14px 50px;
    margin-top: 0;
  }

  .response-readiness {
    padding-bottom: 24px;
  }

  .contact-content h1 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .contact-content .statement {
    font-size: 17px;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .form-grid {
    gap: 10px;
  }

  input,
  select,
  textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .submit-btn {
    margin-top: 30px;
    padding: 14px 24px;
    font-size: 14px;
  }
}

.site-footer {
  background: radial-gradient(circle at top left, #061a2e, #020617);
  color: #cbd5e1;
  padding: 90px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 60px;
}

/* BRAND */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-logo {
  width: 135px;
  margin-bottom: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand h3 {
  margin: 0;
  font-size: 22px;
  color: #ffffff;
}

.footer-tagline {
  max-width: 440px;
  line-height: 1.75;
  font-size: 15px;
  color: #94a3b8;
}

.footer-brand-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, transparent);
  margin-top: 12px;
}

/* COLUMNS */
.footer-col h4 {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #06b6d4;
  margin-top: 8px;
}

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

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

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

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

/* FOOTER BOTTOM */
.footer-bottom {
  max-width: 1240px;
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-links a {
  margin-left: 26px;
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  color: #94a3b8;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.footer-social:hover {
  color: #06b6d4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 440px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-brand-header {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-brand-line {
    margin: 12px auto 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 28px 20px 0;
  }

  .footer-links a {
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  #btn-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

}

/* ===== DEMO MODAL OVERLAY ===== */
.demo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.demo-modal-overlay.open {
  display: flex;
}

.demo-modal-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: #0d0d1a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: demoModalFadeIn 0.3s ease;
}

@keyframes demoModalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.demo-modal-close:hover {
  color: #ffffff;
}

.demo-modal-body {
  padding: 0;
}

.demo-modal-body .contact-visual {
  min-height: auto;
  position: relative;
  display: block;
  align-items: unset;
}

.demo-modal-body .contact-form {
  position: relative;
  bottom: auto;
  left: auto;
  max-width: 100%;
  margin: 0;
  padding: 48px 44px;
  background: rgba(255,255,255,.04);
  box-shadow: none;
  border-radius: 0;
}

.demo-modal-body .contact-bg {
  position: absolute;
  border-radius: 0;
}

@media (max-width: 600px) {
  .demo-modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 40px;
  }
  .demo-modal-body .contact-form {
    padding: 32px 20px;
  }
  .demo-modal-body .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .demo-modal-body .contact-form {
    padding: 24px 14px;
  }

  .demo-modal-body .submit-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ===== STATUS MODAL (SUCCESS / FAILURE) ===== */
.demo-status-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #0d0d1a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: demoModalFadeIn 0.3s ease;
  padding: 52px 44px 40px;
  text-align: center;
}

.demo-status-container h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.demo-status-container p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}

.demo-status-container .submit-btn {
  width: 100%;
  margin-top: 0;
  border-radius: 999px;
  padding: 14px 36px;
  box-shadow: 0 12px 35px rgba(6,182,212,0.30);
}

.demo-status-container .submit-btn:hover {
  box-shadow: 0 20px 50px rgba(6,182,212,0.45);
}

/* icon */
.status-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
}

.status-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.status-icon .status-circle {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: statusStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.status-icon .status-check,
.status-icon .status-cross {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: statusStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

.status-icon.success .status-circle,
.status-icon.success .status-check { stroke: #22c55e; }

.status-icon.fail .status-circle,
.status-icon.fail .status-cross { stroke: #ef4444; }

.status-icon.success .status-cross,
.status-icon.fail .status-check { display: none; }

@keyframes statusStroke {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 480px) {
  .demo-status-container {
    padding: 40px 22px 32px;
  }
}

/* ===== CTA BAR BUTTONS ===== */
.cta-bar .btn-outline {
  border: 2px solid rgba(255,255,255,0.2);
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
}

.cta-bar .btn-outline:hover {
  background: linear-gradient(135deg,#22c55e,#2563eb);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37,99,235,0.35);
}

.cta-bar .btn-outline:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}

@media (max-width: 600px) {
  .cta-bar .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   HERO DOWNLOAD BUTTON STYLE
   (shared across all CTAs)
=========================== */

.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border: 2px solid #67e8f9;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.hero-download-btn:hover {
  background: #67e8f9;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.3);
}

/* ======================================================
   CARD REVEAL — ICON FIRST ENTRANCE ANIMATION
   ====================================================== */

/* Hide card until AOS triggers */
[data-aos="card-reveal"] {
  opacity: 0;
}

[data-aos="card-reveal"].aos-animate {
  opacity: 1;
}

/* Icon positioned relative for ::after glow, overflow hidden to clip initial state */
[data-aos="card-reveal"] .solutions-card-icon {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-80px) scale(0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Meteor drop: icon falls from above with bounce, glow burst on landing */
[data-aos="card-reveal"].aos-animate .solutions-card-icon {
  animation: iconMeteorDrop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconMeteorDrop {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.3);
  }
  30% {
    opacity: 1;
    transform: translateY(10px) scale(1.2);
  }
  50% {
    transform: translateY(-6px) scale(0.92);
  }
  70% {
    transform: translateY(3px) scale(1.03);
  }
  85% {
    transform: translateY(-1px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Glow ring burst on icon landing */
[data-aos="card-reveal"] .solutions-card-icon::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

[data-aos="card-reveal"].aos-animate .solutions-card-icon::after {
  animation: iconGlowBurst 1s ease-out 0.25s forwards;
}

@keyframes iconGlowBurst {
  0% {
    opacity: 0.8;
    transform: scale(0.2);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

/* Content cascade — staggered entrance after icon lands */
[data-aos="card-reveal"] h3 {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.5s ease 0.25s;
}

[data-aos="card-reveal"] p {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.5s ease 0.4s;
}

[data-aos="card-reveal"] .solutions-card-arrow {
  opacity: 0;
  transform: translateX(-14px);
  transition: all 0.5s ease 0.55s;
}

[data-aos="card-reveal"].aos-animate h3,
[data-aos="card-reveal"].aos-animate p,
[data-aos="card-reveal"].aos-animate .solutions-card-arrow {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-aos="card-reveal"],
  [data-aos="card-reveal"] .solutions-card-icon,
  [data-aos="card-reveal"] h3,
  [data-aos="card-reveal"] p,
  [data-aos="card-reveal"] .solutions-card-arrow {
    opacity: 1;
    transform: none;
    animation: none;
  }
  [data-aos="card-reveal"] .solutions-card-icon::after {
    display: none;
  }
}

/* ======================================================
   HERO PARALLAX WRAPPER
   ====================================================== */
.hero-parallax-layer {
  will-change: transform;
}

/* ======================================================
   SUBTLE AMBIENT ANIMATIONS
   ====================================================== */

/* Floating geometry — subtle hex/poly shapes */
.solutions-section::before,
.ai-soc-section::before,
.cyber-interactive::before {
  z-index: 0;
}

/* Solutions cards link reset */
a.solutions-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.solutions-card h3 {
  color: #ffffff;
}
a.solutions-card p {
  color: rgba(255, 255, 255, 0.55);
}

/* Glow pulse on David banner */
.david-banner::before {
  transition: opacity 0.5s ease;
}

/* Scroll-driven gradient shift on sections */
@media (prefers-reduced-motion: no-preference) {
  .solutions-section,
  .ai-soc-section,
  .cyber-interactive,
  .david-banner {
    transition: background-color 0.3s ease;
  }
}

/* ======================================================
   SMOOTH ON SCROLL FOR ALL SECTIONS
   ====================================================== */
section {
  position: relative;
}

/* ======================================================
   SUBTLE GRADIENT MESH ON HERO
   ====================================================== */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 75%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}

/* ======================================================
   HERO VIDEO PARALLAX
   ====================================================== */
.hero-video {
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

/* ======================================================
   RESPONSIVE ADJUSTMENTS FOR NEW ELEMENTS
   ====================================================== */
@media (max-width: 768px) {
  #cursor-glow {
    display: none;
  }
  #scroll-progress {
    height: 2px;
  }
}

/* ======================================================
   RESPONSIVE REFINEMENTS — MOBILE / TABLET / DESKTOP
   ====================================================== */

/* ---------- NAVBAR ---------- */
.topbar.scrolled .mega-menu {
  top: 56px;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-links {
    gap: 22px;
  }
  .nav-item > a {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .topbar-container {
    padding: 16px 20px;
  }
  .hamburger {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .topbar-container {
    padding: 14px 16px;
  }
  .topbar-logo img {
    height: 32px;
  }
}

/* ---------- MOBILE NAV MENU ---------- */
@media (max-width: 420px) {
  .navbar-nav-mobile {
    gap: 14px;
  }
  .navbar-nav-mobile a {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/* ---------- HERO (short landscape screens) ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-inner {
    padding-top: 88px;
    padding-bottom: 28px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-desc {
    margin-bottom: 20px;
  }
}

/* ---------- SOLUTIONS ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
  .solutions-grid {
    gap: 18px;
  }
  .solutions-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .solutions-section {
    padding: 64px 16px;
  }
  .solutions-header {
    margin-bottom: 44px;
  }
  .solutions-header h2 {
    font-size: 26px;
  }
  .solutions-header p {
    font-size: 15px;
  }
  .solutions-grid {
    gap: 16px;
  }
  .solutions-card {
    padding: 26px 20px;
    border-radius: 20px;
  }
  .solutions-card h3 {
    font-size: 18px;
  }
  .solutions-card p {
    font-size: 14px;
  }
  .solutions-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

/* ---------- AI-SOC ---------- */
@media (max-width: 480px) {
  .ai-soc-section {
    padding: 64px 16px;
  }
  .ai-soc-content h2 {
    font-size: 28px;
  }
  .ai-soc-content p {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .ai-soc-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
  .ai-soc-image {
    border-radius: 18px;
  }
}

/* ---------- CLIENTS MARQUEE ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
  .clients-track {
    gap: 72px;
  }
  .client-logo img {
    height: 64px;
    max-width: 220px;
  }
  .client-logo img[alt="Gigamon"],
  .client-logo img[alt="ThreatLocker"] {
    height: 96px;
    max-width: 340px;
  }
}

@media (max-width: 420px) {
  .clients-track {
    gap: 44px;
  }
  .clients-wrap {
    padding: 0 16px;
  }
  .clients-header h2 {
    font-size: 24px;
  }
}

/* ---------- CYBER INTERACTIVE ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
  .cyber-grid {
    gap: 18px;
  }
  .cyber-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .cyber-interactive {
    padding: 64px 16px;
  }
  .cyber-header {
    margin-bottom: 42px;
  }
  .cyber-header h2 {
    font-size: 26px;
  }
  .cyber-header p {
    font-size: 15px;
  }
  .cyber-grid {
    gap: 16px;
    margin-bottom: 36px;
  }
  .cyber-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .cyber-card h3 {
    font-size: 18px;
  }
  .cyber-card p {
    font-size: 14px;
  }
}

/* ---------- CONTACT ---------- */
@media (max-width: 768px) {
  .contact-bg {
    min-height: 160px;
  }
}

@media (max-width: 480px) {
  .contact-bg {
    min-height: 120px;
  }
  .contact-content .lead {
    margin-bottom: 24px;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 360px) {
  .footer-links a {
    margin: 0 8px;
  }
}

/* ======================================================
   PAGE-SPECIFIC RESPONSIVE OVERRIDES
   Higher-specificity selectors (body ...) deliberately
   beat each page's inline <style> rules on small screens.
   ====================================================== */

/* ---------- CONTACT PAGE (inline form / visual overrides) ---------- */
@media (max-width: 1024px) {
  body .contact-form {
    max-width: 100%;
    margin: 0 0 32px;
  }
  body .contact-visual {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  body .contact-form {
    padding: 28px 22px;
  }
  body .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body .contact-form {
    padding: 20px 16px;
  }
}

/* ---------- SOLUTIONS / PLATFORM (endpoint pages) ---------- */
@media (max-width: 480px) {
  .endpoint-capabilities h2,
  .endpoint-intro h2,
  .endpoint-value h2 {
    font-size: 30px;
  }
  .endpoint-capabilities-description,
  .endpoint-value-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .endpoint-value-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .endpoint-cta {
    padding: 50px 5%;
  }
  .endpoint-cta h2 {
    font-size: 28px;
  }
  .endpoint-cta p {
    font-size: 16px;
  }
}

/* ---------- SERVICES PAGE ---------- */
@media (max-width: 480px) {
  .svc-hero-content h1 {
    font-size: 26px;
  }
}

/* Short landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .svc-hero,
  .endpoint-hero {
    min-height: 100vh;
    min-height: 100svh;
  }
}

/* ---------- LEGAL PAGES (Security / Privacy-Notice / Terms-of-Use) ---------- */
@media (max-width: 600px) {
  body .hero {
    margin: 70px auto 40px auto;
  }
}

@media (max-width: 480px) {
  body .hero,
  body .policy-grid,
  body .cta-bar {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body .policy-article h2 {
    font-size: 21px;
  }
}

/* Legal pages: keep 24px gutters at small-desktop widths (1025-1180px) */
body .policy-grid,
body .cta-bar {
  padding-left: 24px;
  padding-right: 24px;
}

/* Legal pages: disable nested article scroll on desktop (page scrolls naturally) */
@media (min-width: 1025px) {
  body .policy-article {
    height: auto !important;
    overflow: visible !important;
  }
}

/* ---------- INDUSTRIES 5-COLUMN STAT ROW (inline-styled) ---------- */
@media (max-width: 992px) {
  .stat-row-5 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .stat-row-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ======================================================
   SCROLL-SNAP / PARALLAX ENTRANCE (shared)
   Drives the .snap-section entrance animations used on
   services, solutions, platform, resources, industries
   and contact pages.
   ====================================================== */
html {
  scroll-snap-type: y proximity;
  scroll-padding-top: 90px;
}

.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}

.snap-section .p-bg {
  will-change: transform, opacity;
  transform: scale(1.18);
  opacity: 0.35;
  transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 3s ease;
}

.snap-section.visible .p-bg {
  transform: scale(1);
  opacity: 1;
}

.snap-section .p-overlay {
  opacity: 0;
  transition: opacity 2.5s ease 0.5s;
}

.snap-section.visible .p-overlay {
  opacity: 1;
}

.snap-section .p-content > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.6s ease, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.snap-section.visible .p-content > * {
  opacity: 1;
  transform: translateY(0);
}

.snap-section .p-content > *:nth-child(1) { transition-delay: 0.10s; }
.snap-section .p-content > *:nth-child(2) { transition-delay: 0.30s; }
.snap-section .p-content > *:nth-child(3) { transition-delay: 0.55s; }
.snap-section .p-content > *:nth-child(4) { transition-delay: 0.80s; }
.snap-section .p-content > *:nth-child(5) { transition-delay: 1.05s; }
.snap-section .p-content > *:nth-child(6) { transition-delay: 1.25s; }
.snap-section .p-content > *:nth-child(7) { transition-delay: 1.45s; }
.snap-section .p-content > *:nth-child(8) { transition-delay: 1.65s; }