/* ============================================
   WAVE MEDIA Group - Stylesheet
   ============================================ */

:root {
  --primary: #0072BC;
  --primary-dark: #005a96;
  --primary-light: #E3F2FD;
  --accent: #F7941D;
  --accent-red: #E8400C;
  --accent-green: #39B54A;
  --dark: #0A1628;
  --dark-2: #131F35;
  --dark-3: #1C2B45;
  --gray-900: #1a1a2e;
  --gray-700: #4a4a68;
  --gray-500: #7c7c96;
  --gray-300: #c4c4d4;
  --gray-100: #f0f0f5;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dark-card: rgba(255,255,255,0.04);
  --dark-card-border: rgba(255,255,255,0.08);
  --dark-card-hover-bg: rgba(255,255,255,0.07);
  --dark-card-hover-border: rgba(255,255,255,0.15);
  --text-muted: rgba(255,255,255,0.55);
  --text-body: rgba(255,255,255,0.7);
  --gold: #c9a84c;
  --glow-primary: 0 0 20px rgba(0,114,188,0.3);
}

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

html, body {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar.scrolled {
  top: 12px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  padding: 8px 12px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled .nav-container {
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: var(--transition);
}

.logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

.logo-color {
  display: none;
}

.navbar.scrolled .logo-white {
  display: none;
}

.navbar.scrolled .logo-color {
  display: block;
  height: 36px;
}

.navbar.scrolled .logo-img {
  height: 36px;
}

.navbar.scrolled .logo {
  color: var(--dark);
}

.logo-img-footer {
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: gap var(--transition);
}

.navbar.scrolled .nav-links {
  gap: 24px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
}

.navbar.scrolled .btn-nav {
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

/* Nav Overlay (mobile sidebar backdrop) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 9999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,114,188,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0a2540 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0,102,255,0.15) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0,212,170,0.08) 0%, transparent 60%);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--white);
  clip-path: ellipse(75% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 160px;
}

.hero-text {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(247,148,29,0.15);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(247,148,29,0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   About Section — Credibility-First Design
   ============================================ */
.about {
  background: var(--dark);
  color: var(--white);
}

.about .section-label {
  color: rgba(255,255,255,0.04);
}

/* --- Stats Strip --- */
.cred-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0 56px;
}

.cred-stat {
  text-align: center;
  flex: 1;
  padding: 0 24px;
}

.cred-stat .stat-number {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline-block;
  letter-spacing: -0.03em;
}

.cred-suffix {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #c9a84c;
  display: inline-block;
}

.cred-label {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cred-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* --- About Headline --- */
.about-headline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.about-headline h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-headline p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* --- Awards Strip (inside About section) --- */
.awards-strip {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.awards-strip-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c9a84c;
  margin-bottom: 24px;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.awards-grid .award-card {
  flex: 0 1 calc(20% - 13px);
  min-width: 160px;
}

.award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #b8942e, #e8d170, #c9a84c, #b8942e);
  background-size: 200% 100%;
  z-index: 5;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.award-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2), 0 0 20px rgba(201,168,76,0.08);
}
.award-card:hover::before {
  transform: scaleX(1);
  animation: gold-shimmer 2s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: -100% center; }
}

.award-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
  filter: brightness(0.85) contrast(1.05);
}

.award-card:hover .award-img img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.05);
}

.award-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.7) 100%);
  pointer-events: none;
}

.award-info {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.award-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.35;
}

.award-org {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.award-detail {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.award-detail:empty { display: none; }

/* --- What We Do Split --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.about-text-col {
  padding: 16px 0;
}

.about-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c9a84c;
  margin-bottom: 28px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-color, var(--accent));
  margin-top: 5px;
  flex-shrink: 0;
}

.pillar-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* --- About Responsive --- */
@media (max-width: 900px) {
  .cred-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .cred-stat {
    flex: 0 0 40%;
    padding: 0;
  }

  .cred-divider {
    display: none;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-img {
    min-height: 280px;
  }

  .awards-grid .award-card { flex: 0 1 calc(50% - 8px); }
}

@media (max-width: 480px) {
  .cred-stat .stat-number {
    font-size: 2.8rem;
  }

  .cred-suffix {
    font-size: 1.8rem;
  }

  .awards-grid { gap: 12px; }
  .awards-grid .award-card { flex: 0 1 100%; }

  .about-img {
    min-height: 220px;
  }
}

/* ============================================
   Products Section
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--dark-card);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--dark-card-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Subtle top accent line — shows on hover with random brand color */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  --card-accent: var(--primary);
  background: linear-gradient(90deg,
    transparent, var(--card-accent), transparent,
    transparent, var(--card-accent), transparent
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

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

.product-card:hover::before {
  opacity: 1;
  animation: chromatic-shift 2.5s ease-in-out infinite;
}

/* Soft inner glow on hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,114,188,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,114,188,0.12);
  border-color: rgba(0,114,188,0.25);
}

.product-icon-wrap {
  width: 52px;
  height: 52px;
  color: var(--primary);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(0,114,188,0.4));
}

.product-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.product-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-features li {
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ============================================
   Brands Section — Logo Carousel
   ============================================ */
.brands {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.brands .section-label {
  color: rgba(255,255,255,0.03);
}

.brands .section-tag {
  background: rgba(0,114,188,0.15);
  color: #00b4d8;
}

.brands .section-header h2 {
  color: #ffffff;
}

.brands .section-header p {
  color: var(--text-body);
}

.brands-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  margin-bottom: 24px;
}

.brands-marquee:last-child {
  margin-bottom: 0;
}

.brands-track {
  display: flex;
  gap: 24px;
  animation: marquee 45s linear infinite;
  width: max-content;
}

.brands-track-reverse {
  animation: marquee-reverse 45s linear infinite;
}

.brands-track:hover,
.brands-track-reverse:hover {
  animation-play-state: paused;
}

.brand-logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.brand-logo-card img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.brand-logo-card .brand-name {
  display: none;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
}

.brand-logo-card span:only-child {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.brand-logo-card:hover span:only-child {
  color: #ffffff;
}

/* Text-fallback when logo fails to load */
.brand-logo-card.no-logo .brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-logo-card.no-logo:hover .brand-name {
  color: #ffffff;
}

.brand-logo-card:hover {
  background: rgba(0,114,188,0.08);
  border-color: rgba(0,114,188,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.brand-logo-card:hover img {
  opacity: 1;
}

.brand-logo-card:hover .brand-name {
  color: #ffffff;
}

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

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: var(--gray-100);
}

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

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 40px 0;
  background: var(--dark-2);
}

.cta-box {
  background: linear-gradient(135deg, #0a1e3d 0%, var(--primary-dark) 40%, #001a33 100%);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--primary);
  position: relative;
}

.cta-box .btn-primary:hover {
  background: var(--gray-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: var(--dark-2);
}

.contact .section-header h2 { color: var(--white); }
.contact .section-header p { color: var(--text-muted); }
.contact .section-tag { background: rgba(0,114,188,0.15); color: #5bb5f5; }
.contact .section-label { color: rgba(255,255,255,0.04); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255,255,255,0.06);
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0,114,188,0.15);
  color: #5bb5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 0 12px rgba(0,114,188,0.2);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--dark-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid var(--dark-card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Dark form inputs for contact */
.contact .form-group label { color: var(--text-body); }
.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.contact .form-group input:focus,
.contact .form-group select:focus,
.contact .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,114,188,0.2);
  background: rgba(255,255,255,0.08);
}
.contact .form-group select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
  padding: 72px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  color: var(--white) !important;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px 0;
    border: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    flex-direction: column;
    padding: 100px 36px 40px;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-red));
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(7) { transition-delay: 0.35s; }
  .nav-links.active li:nth-child(8) { transition-delay: 0.4s; }

  .nav-links a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
  }

  .nav-links a.active,
  .nav-links a[href].active {
    color: var(--white) !important;
    background: rgba(0,114,188,0.15);
    border-left: 3px solid var(--primary);
  }

  .nav-links .btn-nav {
    margin-top: 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 600;
  }

  .nav-links .btn-nav:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    transform: translateY(-1px);
  }

  .hero-content {
    padding: 100px 0 120px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat strong {
    font-size: 1.5rem;
  }


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

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

  .contact-form {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 48px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ============================================
   Inquiry Cart - Navbar Button & Badge
   ============================================ */
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px !important;
}

.nav-cart-btn::after { display: none !important; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--accent-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Solution cards - clickable hint */
.product-card[data-category] {
  cursor: pointer;
  position: relative;
}

.product-card .browse-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5bb5f5;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.product-card:hover .browse-hint {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
}

/* ============================================
   Product Modal
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,22,40,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* WP admin bar offset */
.admin-bar .modal-overlay {
  padding-top: 80px;
}

.modal {
  background: var(--dark);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 48px rgba(0,0,0,0.4),
    0 48px 96px rgba(0,0,0,0.3);
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

/* -- Modal Hero Header -- */
.modal-hero {
  background: var(--dark-2);
  padding: 32px 32px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  --card-accent: var(--primary);
  background: linear-gradient(90deg,
    transparent, var(--card-accent), transparent,
    transparent, var(--card-accent), transparent
  );
  background-size: 200% 100%;
  animation: chromatic-shift-bar 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes chromatic-shift-bar {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: -100% 0; }
}

.modal-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
  pointer-events: none;
}

.modal-hero-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-icon-wrap {
  width: 48px;
  height: 48px;
  color: var(--primary);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,114,188,0.4));
}

.modal-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.modal-hero h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.modal-product-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.modal-hero .modal-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 8px;
  border-radius: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}

.modal-hero .modal-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

/* -- Modal Body -- */
.modal-body {
  padding: 28px 32px 32px;
  overflow-y: auto;
  flex: 1;
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* -- Product Cards -- */
.modal-product-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0, 1);
  animation: modalCardIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  flex-direction: column;
}

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

.modal-product-card:hover {
  border-color: rgba(0,114,188,0.2);
  box-shadow: 0 4px 20px rgba(0,114,188,0.1);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.modal-product-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: #5bb5f5;
  background: rgba(0,114,188,0.12);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.modal-product-info {
  flex: 1;
  min-width: 0;
}

.modal-product-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.modal-product-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0,114,188,0.15);
  color: #5bb5f5;
  border: 1px solid rgba(0,114,188,0.2);
  border-radius: 9999px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 10px;
}

.btn-quote:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,114,188,0.3);
}

.btn-quote-added {
  background: rgba(57,181,74,0.15) !important;
  color: #39B54A !important;
  border-color: rgba(57,181,74,0.25) !important;
}

.btn-quote-added:hover {
  background: rgba(57,181,74,0.25) !important;
  box-shadow: 0 4px 12px rgba(57,181,74,0.2);
}

/* -- Modal Responsive -- */
@media (max-width: 768px) {
  .modal-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .modal {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
  }

  .modal-hero {
    padding: 22px 20px 18px;
  }

  .modal-body {
    padding: 18px 20px 22px;
  }

  .modal-product-card {
    gap: 10px;
  }

  .modal-product-num {
    display: none;
  }

  .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
  }
}

/* ============================================
   Cart Overlay & Panel
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(10,22,40,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  z-index: 3000;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.active {
  right: 0;
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.cart-panel-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}

.cart-count {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 48px 24px;
  text-align: center;
  color: var(--gray-300);
}

.cart-empty p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 16px;
  margin-bottom: 4px;
}

.cart-empty span {
  font-size: 0.85rem;
  color: var(--gray-300);
}

.cart-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.cart-item-category {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-qty label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

.cart-qty-input {
  width: 48px;
  padding: 4px 6px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.85rem;
  text-align: center;
  color: var(--dark);
}

.cart-qty-input:focus {
  outline: none;
  border-color: var(--primary);
}

.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-300);
  padding: 4px;
  border-radius: 6px;
  transition: var(--transition);
}

.cart-remove:hover {
  color: var(--accent-red);
  background: rgba(232,64,12,0.08);
}

.cart-form-section {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-100);
  flex-shrink: 0;
}

.cart-form-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.cart-form-section .form-group {
  margin-bottom: 10px;
}

.cart-form-section input,
.cart-form-section textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.cart-form-section input:focus,
.cart-form-section textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,114,188,0.1);
}

.cart-form-section textarea {
  resize: vertical;
  min-height: 60px;
}

.cart-form-section .btn {
  margin-top: 4px;
}

@media (max-width: 480px) {
  .cart-panel {
    width: 100vw;
    right: -100vw;
  }

  .modal {
    padding: 24px 20px;
    max-height: 90vh;
  }

  .modal-product-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ============================================
   News & Events Section
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card {
  background: var(--dark-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-card-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,114,188,0.1);
  border-color: var(--dark-card-hover-border);
}

.news-card-featured {
  grid-column: auto;
}

.news-img {
  min-height: 180px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 50%, var(--primary-dark) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.news-img-2 {
  background: linear-gradient(135deg, #1a3a5c 0%, #0a2540 50%, #003d6b 100%);
}

.news-img-3 {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b33009 50%, #7a2106 100%);
}

.news-img-4 {
  background: linear-gradient(135deg, var(--primary) 0%, #004a7c 50%, #003055 100%);
}

.news-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-img-5 {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0f30 50%, #3d1f6d 100%);
}

.news-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.news-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5bb5f5;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-link svg {
  transition: transform 0.3s ease;
}

.news-card:hover .news-link svg {
  transform: translate(2px, -2px);
}

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

.news-card {
  cursor: pointer;
}

/* News footer */
.news-footer {
  text-align: center;
  margin-top: 40px;
}

.news-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.news-fb-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,114,188,0.25);
}

/* --- News Detail Overlay --- */
.news-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,22,40,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.news-detail-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-bar .news-detail-overlay {
  padding-top: 80px;
}

.news-detail {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  max-width: 640px;
  width: 100%;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.news-detail-overlay.active .news-detail {
  transform: translateY(0) scale(1);
}

/* Hero */
.news-detail-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #005a96) 100%);
  padding: 40px 36px 32px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.news-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  --card-accent: var(--primary);
  background: linear-gradient(90deg,
    transparent, var(--card-accent), transparent,
    transparent, var(--card-accent), transparent
  );
  background-size: 200% 100%;
  animation: chromatic-shift-bar 2.5s ease-in-out infinite;
  z-index: 1;
}

.news-detail-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

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

.news-detail-hero-content .news-category {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-detail-hero .news-detail-date {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 12px 0 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-detail-hero h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-detail-overlay.active .news-detail-hero-content .news-category,
.news-detail-overlay.active .news-detail-hero .news-detail-date,
.news-detail-overlay.active .news-detail-hero h2 {
  opacity: 1;
  transform: translateY(0);
}

.news-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.news-detail-close:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* Body */
.news-detail-body {
  padding: 32px 36px 36px;
}

.news-detail-body p {
  font-size: 0.95rem;
  color: var(--gray-500, #666);
  line-height: 1.8;
  margin-bottom: 28px;
}

.news-detail-actions {
  display: flex;
  gap: 12px;
}

.news-detail-fb-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.news-detail-fb-btn svg {
  width: 16px;
  height: 16px;
}

.news-detail-back {
  padding: 14px 24px;
  border: 1px solid var(--gray-200, #e0e0e0);
  border-radius: 10px;
  background: transparent;
  color: var(--gray-500, #666);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-detail-back:hover {
  background: var(--gray-50, #f8f9fa);
  color: var(--dark);
}

@media (max-width: 600px) {
  .news-detail-overlay {
    padding: 16px;
  }

  .news-detail-hero {
    padding: 28px 24px 24px;
  }

  .news-detail-hero h2 {
    font-size: 1.25rem;
  }

  .news-detail-body {
    padding: 24px;
  }

  .news-detail-actions {
    flex-direction: column;
  }
}

/* ============================================
   Support Section
   ============================================ */
.support {
  background: var(--dark);
}

.support .section-header h2 { color: var(--white); }
.support .section-header p { color: var(--text-muted); }
.support .section-tag { background: rgba(0,114,188,0.15); color: #5bb5f5; }
.support .section-label { color: rgba(255,255,255,0.04); }

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.support-redirect {
  max-width: 900px;
  margin: 0 auto;
}

.support-redirect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.support-cta {
  text-align: center;
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-option-card {
  background: var(--dark-card);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--dark-card-border);
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.support-option-card:hover {
  border-color: rgba(0,114,188,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,114,188,0.1);
  background: var(--dark-card-hover-bg);
}

.support-option-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,114,188,0.15);
  color: #5bb5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(0,114,188,0.2);
}

.support-option-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.support-option-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.support-form {
  background: var(--dark-card);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid var(--dark-card-border);
}

.support-form h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.support-form-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Dark form inputs for support */
.support .form-group label { color: var(--text-body); }
.support .form-group input,
.support .form-group select,
.support .form-group textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.support .form-group input::placeholder,
.support .form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.support .form-group input:focus,
.support .form-group select:focus,
.support .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,114,188,0.2);
  background: rgba(255,255,255,0.08);
}
.support .form-group select option {
  background: var(--dark-2);
  color: var(--white);
}

.required {
  color: var(--accent-red);
  font-weight: 700;
}

/* Responsive - News & Support */
@media (max-width: 1024px) {
  .customers-track {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

  .support-redirect-cards {
    grid-template-columns: 1fr;
  }

  .support-form {
    padding: 28px;
  }
}

/* ============================================
   FGC-Inspired Animation System
   ============================================ */

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0, 1),
              transform 1.2s cubic-bezier(0.4, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-left {
  opacity: 0;
  transform: translate3d(-80px, 0, 0);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0, 1),
              transform 1.2s cubic-bezier(0.4, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-right {
  opacity: 0;
  transform: translate3d(80px, 0, 0);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0, 1),
              transform 1.2s cubic-bezier(0.4, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1s cubic-bezier(0.4, 0, 0, 1),
              transform 1s cubic-bezier(0.4, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* --- Enhanced Hero Animations --- */
.hero-text .hero-badge {
  animation: fadeSlideDown 0.8s 0.2s cubic-bezier(0.4, 0, 0, 1) both;
}

.hero-text h1 {
  animation: fadeSlideDown 1s 0.4s cubic-bezier(0.4, 0, 0, 1) both;
}

.hero-text > p {
  animation: fadeSlideDown 1s 0.6s cubic-bezier(0.4, 0, 0, 1) both;
}

.hero-actions {
  animation: fadeSlideDown 1s 0.8s cubic-bezier(0.4, 0, 0, 1) both;
}

.hero-stats {
  animation: fadeSlideDown 1s 1s cubic-bezier(0.4, 0, 0, 1) both;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* --- Section Header Reveal --- */
.section-header .section-tag {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0, 1);
}

.section-header h2 {
  transition: opacity 0.8s 0.1s cubic-bezier(0.4, 0, 0, 1),
              transform 0.8s 0.1s cubic-bezier(0.4, 0, 0, 1);
}

.section-header p {
  transition: opacity 0.8s 0.2s cubic-bezier(0.4, 0, 0, 1),
              transform 0.8s 0.2s cubic-bezier(0.4, 0, 0, 1);
}

/* --- Enhanced Card Hover Effects --- */
.product-card {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0, 1),
              border-color 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* About blocks animation handled in main .about-block styles */

.service-card {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0, 1),
              border-color 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.service-card:hover {
  transform: translateY(-6px);
}

/* --- Smooth Counter Animation --- */
.stat strong {
  display: inline-block;
}

/* --- Nav Scroll Effect Enhancement --- */
.navbar {
  transition: background 0.5s cubic-bezier(0.4, 0, 0, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0, 1);
}

/* --- CTA Section Parallax-like Effect --- */
.cta-box {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1);
}

/* --- Smooth Link Underlines --- */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0, 1),
              left 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-links a {
  position: relative;
}

/* --- Button Ripple Enhancement --- */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.btn:active::after {
  opacity: 1;
  transition: opacity 0s;
}

/* --- News Card Hover Enhancement --- */
.news-card {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.news-card .news-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.5s ease;
}

.news-card:hover .news-img::after {
  background: rgba(0,0,0,0.1);
}

.news-link {
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.news-card:hover .news-link {
  letter-spacing: 0.5px;
}

/* --- Support Card Hover --- */
.support-option-card {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0, 1),
              border-color 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.support-option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* --- Smooth Page Scroll --- */
html {
  scroll-behavior: smooth;
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brands-track,
  .brands-track-reverse {
    animation: none;
  }

  .hero-text .hero-badge,
  .hero-text h1,
  .hero-text > p,
  .hero-actions,
  .hero-stats {
    animation: none;
  }
}

/* --- Brand cards responsive --- */
@media (max-width: 768px) {
  .brand-logo-card {
    width: 160px;
    height: 80px;
    padding: 12px 14px;
  }

  .brand-logo-card img {
    max-height: 36px;
    max-width: 110px;
  }

  .brands-track {
    gap: 16px;
  }

  /* Mobile: switch customers from grid to marquee */
  .customers-marquee {
    display: block;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    max-width: none;
  }

  .customers-track {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
    width: max-content;
  }

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

  .customers-track .customer-logo-card:nth-child(n+11) {
    display: flex;
  }

  .customer-logo-card {
    flex-shrink: 0;
    width: 150px;
    height: 90px;
    aspect-ratio: auto;
  }

}

/* ============================================
   FGC-COMPETITIVE VISUAL UPGRADES
   ============================================ */

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1),
              visibility 0.8s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  width: 280px;
}

.loader-logo {
  margin-bottom: 32px;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo img {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

.loader-bar {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.loader-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

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

/* --- Hero Grid Overlay --- */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(10,22,40,0.5) 70%);
}

/* --- Ghost Button (FGC-style) --- */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 36px;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.5s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1);
  z-index: -1;
}

.btn-ghost:hover {
  color: var(--dark);
  border-color: var(--white);
}

.btn-ghost:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Hero Scroll Hint (clean line style) --- */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeSlideDown 1s 1.5s cubic-bezier(0.4, 0, 0, 1) both;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--white), transparent);
  animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* --- Custom Cursor --- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0,114,188,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1), height 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.cursor-dot.visible, .cursor-ring.visible {
  opacity: 1;
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  background: var(--accent);
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(247,148,29,0.5);
  background: rgba(247,148,29,0.06);
}

.cursor-dot.clicking {
  width: 6px;
  height: 6px;
}

.cursor-ring.clicking {
  width: 32px;
  height: 32px;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* --- Gradient Text Accents --- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #00b4d8 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #c9a84c 0%, #e8d170 50%, #b8942e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Text Reveal Animation --- */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-reveal.revealed .text-reveal-inner {
  transform: translateY(0);
}

/* --- Word-by-word Reveal --- */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-reveal.revealed .word-inner {
  transform: translateY(0);
}

/* --- Parallax Hero --- */
.hero-parallax-layer {
  will-change: transform;
  transition: none;
}

/* --- Wave Section Dividers --- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 2px);
  margin-left: -1px;
}

.wave-divider-top {
  margin-bottom: -1px;
}

.wave-divider-bottom {
  margin-top: -1px;
}

/* --- Enhanced Card Glow on Hover --- */
.product-card {
  --glow-color: rgba(0,114,188,0.15);
}

.product-card:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 60px var(--glow-color),
    0 0 120px rgba(0,114,188,0.08);
  border-color: rgba(0,114,188,0.35);
}

/* Per-card glow colors */
.product-card:nth-child(1) { --glow-color: rgba(0,114,188,0.2); }
.product-card:nth-child(2) { --glow-color: rgba(247,148,29,0.15); }
.product-card:nth-child(3) { --glow-color: rgba(57,181,74,0.15); }
.product-card:nth-child(4) { --glow-color: rgba(232,64,12,0.15); }
.product-card:nth-child(5) { --glow-color: rgba(0,180,216,0.15); }
.product-card:nth-child(6) { --glow-color: rgba(100,50,180,0.15); }
.product-card:nth-child(7) { --glow-color: rgba(201,168,76,0.15); }
.product-card:nth-child(8) { --glow-color: rgba(0,114,188,0.15); }

/* --- Animated Stats Counter Glow --- */
.cred-stat .stat-number {
  transition: color 0.3s ease;
}

.cred-stat .stat-number.counting {
  text-shadow: 0 0 20px rgba(0,114,188,0.4);
}

/* --- Smooth Section Entrance --- */
.section-header .section-tag,
.section-header h2,
.section-header p {
  opacity: 0;
  transform: translateY(30px);
}

.section-header.revealed .section-tag {
  opacity: 1;
  transform: translateY(0);
}

.section-header.revealed h2 {
  opacity: 1;
  transform: translateY(0);
}

.section-header.revealed p {
  opacity: 1;
  transform: translateY(0);
}

/* --- Stats Banner (FGC massive typography) --- */
/* Stats Banner removed — stats consolidated into About bento grid */

/* --- Vertical Section Labels (FGC-style) --- */
.has-section-label {
  position: relative;
}

.section-label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%) translateY(20px);
  transform-origin: left center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-label.visible {
  opacity: 1;
  transform: rotate(-90deg) translateX(-50%) translateY(0);
}

/* --- Decorative Background Patterns --- */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(255,255,255,0.02) 120px,
    rgba(255,255,255,0.02) 122px
  );
  pointer-events: none;
}

.products {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0,114,188,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a1628 0%, var(--dark) 15%);
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(0,114,188,0.2) 50%, rgba(255,255,255,0.08) 70%, transparent);
  z-index: 2;
}

.products .section-header h2 { color: var(--white); }
.products .section-header p { color: var(--text-muted); }
.products .section-tag { background: rgba(0,114,188,0.15); color: #5bb5f5; }
.products .section-label { color: rgba(255,255,255,0.04); }

.products::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

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

.services {
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(0,0,0,0.025) 60px,
    rgba(0,0,0,0.025) 62px
  );
  pointer-events: none;
}

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

/* --- Solution Card Hover Fill (FGC-style) --- */
.product-card:hover h3,
.product-card:hover > p {
  color: var(--white);
}

.product-card:hover .product-icon-wrap {
  color: rgba(255,255,255,0.9);
}

.product-card:hover .product-features li {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* --- Projects Section --- */
.projects {
  background: var(--dark-2);
}

.projects .section-header h2 { color: var(--white); }
.projects .section-header p { color: var(--text-muted); }
.projects .section-tag { background: rgba(0,114,188,0.15); color: #5bb5f5; }
.projects .section-label { color: rgba(255,255,255,0.04); }

/* --- Projects Coming Soon --- */
.projects-coming-soon {
  text-align: center;
  padding: 64px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.coming-soon-icon {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.25);
}

.projects-coming-soon h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.projects-coming-soon p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Projects Grid --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0,114,188,0.2),
    0 0 0 1px rgba(0,114,188,0.1);
}

.project-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Single-color accent top bar */
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  --card-accent: var(--primary);
  background: linear-gradient(90deg,
    transparent, var(--card-accent), transparent,
    transparent, var(--card-accent), transparent
  );
  background-size: 200% 100%;
  z-index: 5;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover::before {
  transform: scaleX(1);
  animation: chromatic-shift-bar 2.5s ease-in-out infinite;
}

/* Mesh gradient backgrounds — unique per card */
.project-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(247,148,29,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,114,188,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #0A1628 0%, #0d2a4a 100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.project-img-2 {
  background:
    radial-gradient(ellipse at 70% 90%, rgba(57,181,74,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 30%, rgba(0,90,150,0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 50%, #0A1628 0%, #132d4a 100%);
}

.project-img-3 {
  background:
    radial-gradient(ellipse at 10% 60%, rgba(232,64,12,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(0,114,188,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, #0d1b2a 0%, #1a3550 100%);
}

.project-img-4 {
  background:
    radial-gradient(ellipse at 80% 80%, rgba(100,50,180,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 20%, rgba(0,114,188,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #0A1628 0%, #182e48 100%);
}

.project-img-5 {
  background:
    radial-gradient(ellipse at 60% 70%, rgba(247,148,29,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 20%, rgba(0,90,150,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #0d1b2a 0%, #152840 100%);
}

/* Grid pattern overlay */
.project-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.6s ease;
}

.project-card:hover .project-img::before {
  opacity: 1;
}

/* Category icon watermarks */
.project-img::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
  z-index: 1;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.4, 0, 0, 1);
  pointer-events: none;
}

.project-card:hover .project-img::after {
  opacity: 0.08;
  transform: scale(1.05) rotate(2deg);
}

/* Camera icon — Broadcast Studio */
.project-card:first-child .project-img::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Cpath d='M23 7l-7 5 7 5V7z'/%3E%3Crect x='1' y='5' width='15' height='14' rx='2' ry='2'/%3E%3C/svg%3E");
}

/* Monitor grid — Control Room */
.project-img-2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E");
}

/* Truck — OB Van */
.project-img-3::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

/* Film — Post Production */
.project-img-4::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Crect x='2' y='2' width='20' height='20' rx='2.18' ry='2.18'/%3E%3Cline x1='7' y1='2' x2='7' y2='22'/%3E%3Cline x1='17' y1='2' x2='17' y2='22'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cline x1='2' y1='7' x2='7' y2='7'/%3E%3Cline x1='2' y1='17' x2='7' y2='17'/%3E%3Cline x1='17' y1='17' x2='22' y2='17'/%3E%3Cline x1='17' y1='7' x2='22' y2='7'/%3E%3C/svg%3E");
}

/* Mic — Radio */
.project-img-5::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Cpath d='M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cline x1='12' y1='19' x2='12' y2='23'/%3E%3Cline x1='8' y1='23' x2='16' y2='23'/%3E%3C/svg%3E");
}

/* Parallax hover on background */
.project-card:hover .project-img {
  transform: scale(1.12) translate(-2%, -2%);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.project-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 10px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.project-card:hover .project-category {
  background: rgba(0,114,188,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.project-overlay h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.project-card:hover .project-overlay h3 {
  transform: translateY(-4px);
}

.project-card-large .project-overlay h3 {
  font-size: 1.5rem;
}

.project-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s ease, opacity 0.4s 0.1s ease, transform 0.5s 0.1s cubic-bezier(0.4, 0, 0, 1);
}

.project-card:hover .project-overlay p {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}

/* Expand icon */
.project-card-action {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  z-index: 3;
  opacity: 0;
  transform: scale(0.8) translate(10px, -10px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card-action {
  opacity: 1;
  transform: scale(1) translate(0, 0);
  color: var(--white);
}

.project-card-action:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .project-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .project-card-large {
    grid-column: span 1;
  }

  .project-card:hover {
    transform: translateY(-4px);
  }
}

/* --- Project Detail Overlay --- */
.project-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,22,40,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.project-detail-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-bar .project-detail-overlay {
  padding-top: 80px;
}

.project-detail {
  background: var(--dark-2);
  border-radius: 16px;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.project-detail-overlay.active .project-detail {
  transform: translateY(0) scale(1);
}

/* Hero header */
.project-detail-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #005a96) 100%);
  padding: 40px 36px 32px;
  position: relative;
  overflow: hidden;
}

.project-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  --card-accent: var(--primary);
  background: linear-gradient(90deg,
    transparent, var(--card-accent), transparent,
    transparent, var(--card-accent), transparent
  );
  background-size: 200% 100%;
  animation: chromatic-shift-bar 2.5s ease-in-out infinite;
  z-index: 1;
}

.project-detail-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

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

.project-detail-hero-content .project-category {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-detail-hero h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-detail-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-detail-overlay.active .project-detail-hero-content .project-category,
.project-detail-overlay.active .project-detail-hero h2,
.project-detail-overlay.active .project-detail-badges {
  opacity: 1;
  transform: translateY(0);
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

.project-badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.project-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.project-detail-close:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* Body */
.project-detail-body {
  padding: 32px 36px 36px;
}

.project-detail-section {
  margin-bottom: 28px;
}

.project-detail-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.project-detail-section > p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Deliverables list */
.project-deliverables {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-deliverable-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: all 0.25s ease;
  animation: modalCardIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.project-deliverable-item:nth-child(1) { animation-delay: 0.1s; }
.project-deliverable-item:nth-child(2) { animation-delay: 0.15s; }
.project-deliverable-item:nth-child(3) { animation-delay: 0.2s; }
.project-deliverable-item:nth-child(4) { animation-delay: 0.25s; }
.project-deliverable-item:nth-child(5) { animation-delay: 0.3s; }

.project-deliverable-item:hover {
  background: rgba(0,114,188,0.1);
  border-color: rgba(0,114,188,0.2);
  transform: translateX(4px);
}

.deliverable-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00b4d8;
  background: rgba(0,180,216,0.12);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.deliverable-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* Specs grid */
.project-detail-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.project-spec {
  text-align: center;
}

.spec-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #00b4d8;
  margin-bottom: 4px;
}

.spec-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.project-detail-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-detail-cta svg {
  width: 16px;
  height: 16px;
}

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

@media (max-width: 600px) {
  .project-detail-overlay {
    padding: 16px;
  }

  .project-detail-hero {
    padding: 28px 24px 24px;
  }

  .project-detail-hero h2 {
    font-size: 1.3rem;
  }

  .project-detail-body {
    padding: 24px;
  }

  .project-detail-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .project-detail-badges {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-card::before {
    animation: none;
    transform: scaleX(1);
  }

  .project-img {
    transition: none;
  }

  .project-card-action {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .project-deliverable-item {
    animation: none;
  }
}

/* --- Customers Grid --- */
.customers {
  background: var(--dark-3);
  position: relative;
}

.customers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.06) 50%, transparent 90%);
}

.customers .section-tag {
  background: rgba(0,114,188,0.15);
  color: #5bb5f5;
}

.customers .section-header h2 {
  color: #ffffff;
}

.customers .section-header p {
  color: var(--text-body);
}

.customers .section-label {
  color: rgba(255,255,255,0.03);
}

/* Desktop: grid layout */
.customers-marquee {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.customers-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.customers-track .customer-logo-card:nth-child(n+11) {
  display: none;
}

.customer-logo-card {
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.customer-logo-card:hover {
  background: #ffffff;
  border-color: rgba(0,114,188,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,114,188,0.15);
}

.customer-logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.customer-logo-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.customers-more {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 32px;
  letter-spacing: 0.02em;
}

/* --- Service Card Hover Enhancement (kept for WP theme) --- */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* --- News Card Image Hover Zoom --- */
.news-img {
  overflow: hidden;
  position: relative;
}

.news-card:hover .news-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,114,188,0.2);
  z-index: 2;
  transition: background 0.5s ease;
}

/* --- Section backgrounds with depth patterns --- */
.news-events {
  position: relative;
  background: var(--dark);
}

.news-events .section-header h2 { color: var(--white); }
.news-events .section-header p { color: var(--text-muted); }
.news-events .section-tag { background: rgba(0,114,188,0.15); color: #5bb5f5; }
.news-events .section-label { color: rgba(255,255,255,0.04); }

.news-events::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.news-events .container {
  position: relative;
  z-index: 1;
}

/* --- Animated gradient border on CTA --- */
.cta-box {
  position: relative;
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), #00a8e8, var(--primary-dark), var(--primary));
  background-size: 300% 300%;
  z-index: -1;
  animation: gradientShift 6s ease infinite;
}

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

/* --- Responsive for new FGC elements --- */
@media (max-width: 768px) {
  .section-label {
    display: none;
  }

  .hero-scroll-hint {
    bottom: 20px;
  }

}

/* ============================================
   WAVE IDENTITY SYSTEM
   Brand-driven wave motion throughout the site
   ============================================ */

/* --- Wave Motion Keyframes --- */
@keyframes waveFloat {
  0%, 100% { transform: translateY(0px); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(0px); }
  75% { transform: translateY(4px); }
}

@keyframes waveFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes wavePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes waveSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scaleY(0.8);
    filter: blur(4px);
  }
  40% {
    opacity: 0.7;
    transform: translateY(-10px) scaleY(1.02);
    filter: blur(0px);
  }
  70% {
    transform: translateY(4px) scaleY(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0px);
  }
}

@keyframes waveSurge {
  0% {
    opacity: 0;
    transform: translateX(-40px) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateX(5px) translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes waveCrest {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(0.5deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(3px) rotate(-0.3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes waveRipple {
  0% { box-shadow: 0 0 0 0 rgba(0,114,188,0.15); }
  70% { box-shadow: 0 0 0 15px rgba(0,114,188,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,114,188,0); }
}

@keyframes heroWaveAnim {
  0% { d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,10 1440,35 L1440,120 L0,120 Z"); }
  50% { d: path("M0,50 C300,10 600,70 900,30 C1100,10 1300,60 1440,45 L1440,120 L0,120 Z"); }
  100% { d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,10 1440,35 L1440,120 L0,120 Z"); }
}

@keyframes waveUnderline {
  0% { d: path("M0,5 Q25,0 50,5 T100,5"); }
  50% { d: path("M0,5 Q25,10 50,5 T100,5"); }
  100% { d: path("M0,5 Q25,0 50,5 T100,5"); }
}

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

@keyframes waveBreathe {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-4px) scale(1.02); opacity: 1; }
}

/* --- Animated Hero Wave (replaces static clip-path) --- */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 3;
  background: none;
  clip-path: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-wave svg path {
  animation: heroWaveAnim 8s ease-in-out infinite;
}

/* --- Wave Reveal Classes --- */
.reveal-wave {
  opacity: 0;
  transform: translateY(50px) scaleY(0.85);
  filter: blur(3px);
  transition: none;
  will-change: opacity, transform, filter;
}

.reveal-wave.revealed {
  animation: waveSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-surge {
  opacity: 0;
  transform: translateX(-40px) translateY(20px);
  will-change: opacity, transform;
}

.reveal-surge.revealed {
  animation: waveSurge 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --- Wave Stagger Cascade ---
   Cards in grids reveal like a wave cresting across */
.wave-stagger .product-card,
.wave-stagger .news-card,
.wave-stagger .support-option-card,
.wave-stagger .award-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.wave-stagger.revealed .product-card,
.wave-stagger.revealed .news-card,
.wave-stagger.revealed .support-option-card,
.wave-stagger.revealed .award-card {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger timing — creates wave cascade effect */
.wave-stagger.revealed > :nth-child(1) { transition-delay: 0s; }
.wave-stagger.revealed > :nth-child(2) { transition-delay: 0.08s; }
.wave-stagger.revealed > :nth-child(3) { transition-delay: 0.16s; }
.wave-stagger.revealed > :nth-child(4) { transition-delay: 0.24s; }
.wave-stagger.revealed > :nth-child(5) { transition-delay: 0.32s; }
.wave-stagger.revealed > :nth-child(6) { transition-delay: 0.40s; }
.wave-stagger.revealed > :nth-child(7) { transition-delay: 0.48s; }
.wave-stagger.revealed > :nth-child(8) { transition-delay: 0.56s; }

/* --- Card Wave Hover (gentle rock) --- */
.product-card:hover,
.support-option-card:hover,
.news-card:hover {
  animation: waveCrest 3s ease-in-out infinite;
}

/* --- Brand Logo Wave Float --- */
.brand-logo-card:hover {
  animation: waveFloatSlow 2.5s ease-in-out infinite;
}

.brand-logo-card:hover img {
  animation: waveBreathe 2.5s ease-in-out infinite;
}

/* --- CTA Wave Ripple --- */
.cta-box .btn-primary {
  position: relative;
}

.cta-box .btn-primary:hover {
  animation: waveRipple 1.5s ease-out infinite;
}

/* --- Wave Background Textures --- */
.wave-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q50,0 100,20 T200,20' fill='none' stroke='rgba(0,114,188,0.04)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 200px 40px;
  background-repeat: repeat;
  animation: waveBgScroll 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Apply wave bg to key sections */
.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q50,0 100,20 T200,20' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 200px 40px;
  background-repeat: repeat;
  animation: waveBgScroll 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.products .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -24px;
  right: -24px;
  bottom: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='300' height='50' viewBox='0 0 300 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 Q75,5 150,25 T300,25' fill='none' stroke='rgba(0,114,188,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 300px 50px;
  background-repeat: repeat;
  animation: waveBgScroll 30s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}

/* --- Nav Active Link Wave Underline --- */
.nav-links a::after {
  background: linear-gradient(90deg, var(--primary), #00b4d8, var(--primary));
  background-size: 200% 100%;
  height: 2px;
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  animation: waveBgScroll 2s linear infinite;
}

/* --- Scroll Hint Enhanced Wave --- */
.scroll-line::after {
  background: linear-gradient(to bottom, transparent, #00b4d8, var(--primary), transparent);
}

/* --- Stats Number Wave Entrance --- */
.cred-stat {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cred-stats.revealed .cred-stat:nth-child(1) { animation: waveSlideIn 0.8s 0s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cred-stats.revealed .cred-stat:nth-child(3) { animation: waveSlideIn 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cred-stats.revealed .cred-stat:nth-child(5) { animation: waveSlideIn 0.8s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cred-stats.revealed .cred-stat:nth-child(7) { animation: waveSlideIn 0.8s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* --- Hero Badge Gentle Float --- */
.hero-badge {
  animation: fadeSlideDown 0.8s 0.2s cubic-bezier(0.4, 0, 0, 1) both;
}

.page-loaded .hero-badge {
  animation: fadeSlideDown 0.8s 0.2s cubic-bezier(0.4, 0, 0, 1) both,
             waveFloat 6s 2s ease-in-out infinite;
}

/* --- Wave Section Connector Lines --- */
.wave-connector {
  position: relative;
  height: 60px;
  overflow: hidden;
}

.wave-connector svg {
  width: 100%;
  height: 100%;
}

.wave-connector path {
  animation: heroWaveAnim 10s ease-in-out infinite;
}

/* --- Pillar Dot Wave Pulse --- */
.pillar-dot {
  animation: wavePulse 3s ease-in-out infinite;
}

.pillar-item:nth-child(2) .pillar-dot { animation-delay: 0.3s; }
.pillar-item:nth-child(3) .pillar-dot { animation-delay: 0.6s; }
.pillar-item:nth-child(4) .pillar-dot { animation-delay: 0.9s; }

/* --- Award Card Wave Shimmer --- */
.award-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.06), transparent);
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.award-card:hover::after {
  animation: waveShimmer 1.2s ease forwards;
}

@keyframes waveShimmer {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* --- Contact Card Left Border Wave --- */
.contact-item {
  border-left: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), #00b4d8, var(--primary));
  background-size: 100% 200%;
  animation: waveBgScroll 3s linear infinite;
  animation-direction: alternate;
}

/* --- Project Card Wave Glow on Hover --- */
.project-card:hover {
  box-shadow:
    0 20px 60px rgba(0,114,188,0.2),
    0 0 0 1px rgba(0,114,188,0.1),
    0 0 40px rgba(0,180,216,0.08);
}

/* --- Footer Wave Top Border --- */
.footer::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,114,188,0.3), #00b4d8, rgba(0,114,188,0.3), transparent);
  background-size: 200% 100%;
  animation: waveBgScroll 4s ease-in-out infinite alternate;
}

/* --- Loader Wave Animation --- */
.loader-bar-fill {
  background: linear-gradient(90deg, var(--primary), #00b4d8, var(--accent), var(--primary));
  background-size: 300% 100%;
  animation: waveBgScroll 2s linear infinite;
}

/* --- Reduce Motion Override --- */
@media (prefers-reduced-motion: reduce) {
  .reveal-wave,
  .reveal-surge {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }

  .reveal-wave.revealed,
  .reveal-surge.revealed {
    animation: none;
  }

  .wave-stagger .product-card,
  .wave-stagger .news-card,
  .wave-stagger .support-option-card,
  .wave-stagger .award-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-card:hover,
  .support-option-card:hover,
  .news-card:hover,
  .brand-logo-card:hover,
  .customer-logo-card:hover {
    animation: none;
  }

  .brand-logo-card:hover img {
    animation: none;
  }

  .hero-wave svg path,
  .wave-connector path,
  .pillar-dot,
  .page-loaded .hero-badge {
    animation: none;
  }

  .about::after,
  .products .container::before {
    animation: none;
  }

  .footer::before,
  .loader-bar-fill,
  .contact-item::before {
    animation: none;
  }

  .wave-morph,
  .wave-morph-subtle {
    animation: none !important;
  }

  .customers::after,
  .support::after,
  .news-events::after,
  .contact::after,
  .cta-section::after {
    animation: none;
  }
}

/* ============================================
   ANIMATED WAVE DIVIDERS
   Living, breathing transitions between sections
   ============================================ */

/* Wave morph animation for divider paths */
@keyframes waveMorph1 {
  0%   { d: path("M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z"); }
  25%  { d: path("M0,30 C300,70 600,10 900,50 C1150,70 1350,20 1440,35 L1440,0 L0,0 Z"); }
  50%  { d: path("M0,50 C400,10 700,70 1000,30 C1200,10 1380,55 1440,45 L1440,0 L0,0 Z"); }
  75%  { d: path("M0,35 C250,75 550,15 850,55 C1100,65 1300,30 1440,40 L1440,0 L0,0 Z"); }
  100% { d: path("M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z"); }
}

@keyframes waveMorph2 {
  0%   { d: path("M0,0 C480,80 960,0 1440,60 L1440,80 L0,80 Z"); }
  25%  { d: path("M0,0 C360,60 800,20 1200,70 L1440,80 L0,80 Z"); }
  50%  { d: path("M0,0 C300,70 700,5 1100,55 L1440,80 L0,80 Z"); }
  75%  { d: path("M0,0 C500,50 900,25 1300,65 L1440,80 L0,80 Z"); }
  100% { d: path("M0,0 C480,80 960,0 1440,60 L1440,80 L0,80 Z"); }
}

@keyframes waveMorph3 {
  0%   { d: path("M0,0 C360,70 720,10 1080,50 C1260,65 1380,30 1440,0 L1440,80 L0,80 Z"); }
  33%  { d: path("M0,0 C300,55 650,25 1000,60 C1200,50 1350,15 1440,0 L1440,80 L0,80 Z"); }
  66%  { d: path("M0,0 C400,65 750,5 1100,45 C1280,60 1400,25 1440,0 L1440,80 L0,80 Z"); }
  100% { d: path("M0,0 C360,70 720,10 1080,50 C1260,65 1380,30 1440,0 L1440,80 L0,80 Z"); }
}

@keyframes waveMorphSubtle {
  0%   { d: path("M0,0 C200,50 500,10 800,40 C1100,60 1300,20 1440,0 L1440,60 L0,60 Z"); }
  50%  { d: path("M0,0 C250,40 550,20 850,45 C1050,55 1350,15 1440,0 L1440,60 L0,60 Z"); }
  100% { d: path("M0,0 C200,50 500,10 800,40 C1100,60 1300,20 1440,0 L1440,60 L0,60 Z"); }
}

/* Apply morphing to wave divider paths */
.wave-divider-top .wave-morph {
  animation: waveMorph1 12s ease-in-out infinite;
}

.wave-divider-bottom .wave-morph {
  animation: waveMorph2 10s ease-in-out infinite;
}

/* Third style for customers→news divider */
.wave-divider-bottom .wave-morph:not(:only-child),
.wave-divider .wave-morph {
  animation: waveMorph3 11s ease-in-out infinite;
}

.wave-morph-subtle {
  animation: waveMorphSubtle 14s ease-in-out infinite;
}

/* ============================================
   WAVE PATTERNS — All Sections
   Subtle animated wave textures everywhere
   ============================================ */

/* Shared wave background pattern mixin via pseudo-elements */
.products::after {
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q50,5 100,20 T200,20' fill='none' stroke='rgba(0,114,188,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 24px 24px, 200px 40px;
  animation: waveBgScroll 35s linear infinite;
}

/* Wave texture on Projects section */
.projects::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='240' height='40' viewBox='0 0 240 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q60,5 120,20 T240,20' fill='none' stroke='rgba(0,114,188,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 240px 40px;
  background-repeat: repeat;
  animation: waveBgScroll 28s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}

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

/* Wave texture on News section */
.news-events::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='300' height='50' viewBox='0 0 300 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 Q75,8 150,25 T300,25' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 300px 50px;
  background-repeat: repeat;
  animation: waveBgScroll 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Wave texture on Support section */
.support::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='250' height='45' viewBox='0 0 250 45' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,22 Q62,7 125,22 T250,22' fill='none' stroke='rgba(0,114,188,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 250px 45px;
  background-repeat: repeat;
  animation: waveBgScroll 30s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}

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

/* Wave texture on Contact section */
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='280' height='40' viewBox='0 0 280 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q70,5 140,20 T280,20' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 280px 40px;
  background-repeat: repeat;
  animation: waveBgScroll 26s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

/* Wave texture on CTA section */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='200' height='35' viewBox='0 0 200 35' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,17 Q50,5 100,17 T200,17' fill='none' stroke='rgba(0,180,216,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 200px 35px;
  background-repeat: repeat;
  animation: waveBgScroll 18s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* Wave texture on Customers section */
.customers::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='220' height='35' viewBox='0 0 220 35' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,17 Q55,5 110,17 T220,17' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 220px 35px;
  background-repeat: repeat;
  animation: waveBgScroll 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

/* Wave texture on Brands section */
.brands::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='260' height='40' viewBox='0 0 260 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q65,6 130,20 T260,20' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 260px 40px;
  background-repeat: repeat;
  animation: waveBgScroll 20s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}

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