:root {
  --bg: #000000;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --accent: #ea580c;
  --accent2: #ea580c;
  --white: #ffffff;
  --muted: #a1a1aa;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'RF Dewi', 'Montserrat', sans-serif;
}

/* Infinite Scroll Marquee */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-group {
  display: flex;
  gap: 24px;
  padding-right: 24px; /* acts as the gap between the two groups */
  animation: scroll-left 40s linear infinite;
}
.marquee-track.reverse .marquee-group {
  animation: scroll-right 40s linear infinite;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s;
}
.lang-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.lang-pill span.fi {
  font-size: 15px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto !important; overscroll-behavior: none !important; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

.container { max-width: 1120px !important; margin: 0 auto !important; width: 100% !important; padding: 0 40px !important; display: block !important; position: relative !important; }

/* NAVBAR (Pill Style) */
nav {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 1000; display: flex; align-items: center; gap: 32px;
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-logo {
  font-weight: 700; font-size: 18px; color: var(--white); text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 6px;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 8px; }
.nav-btn {
  padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center;
}
.btn-login { color: var(--white); background: transparent; border: 1px solid transparent; }
.btn-login:hover { background: rgba(255,255,255,0.05); border-color: var(--border); }
.btn-signup { color: #000; background: var(--white); border: 1px solid var(--white); }
.btn-signup:hover { background: #e5e5e5; }

/* Mobile Components Hiden by Default */
.hamburger { display: none; color: white; font-size: 24px; cursor: pointer; padding-right: 16px; }
.bottom-nav { display: none; }

/* Language Switcher (Our Work section) */
.lang-switcher {
  width: 100%;
  max-width: 440px;
}
.lang-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.lang-btn {
  padding: 9px 18px;
  border: none;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.lang-btn:hover {
  transform: translateY(-1px);
}
.lang-btn.neon-card::after {
  inset: 1px;
  border-radius: 7px;
  background: rgba(10, 10, 10, 0.92);
}
.lang-btn.neon-card:hover {
  filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.2));
}

/* HERO */
.hero { padding: 180px 0 0; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 12px; font-size: 10px; color: var(--muted); margin-bottom: 24px; letter-spacing: 0.5px;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.8);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.pulse-dot {
  animation: pulseDot 2s infinite;
}
.hero-h1 { color: #ffffff !important; 
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 68px); 
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px; 
  margin-bottom: 20px;
}
.text-grey {
  color: #ea580c;
}
.text-white {
  color: #ffffff;
}
.hero-sub {
  font-size: 16px; 
  color: var(--muted); 
  max-width: 650px; 
  margin: 0 auto 40px; 
  line-height: 1.6;
}
/* Animations for Text */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wordFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-text-up {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  animation: revealUpGlow 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes revealUpGlow {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    text-shadow: 0 10px 20px rgba(255,255,255,0.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    text-shadow: none;
  }
}
.hero-btns { display: flex; justify-content: center; gap: 16px; }

/* Sections */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 16px; }

/* Glass Cards with Border Light Effect */
.glass-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
/* The Border Hover Effect */
.glass-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 2px rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.1);
}
.glass-card:hover::after {
  opacity: 1;
}
.glass-card-inner {
  background: #0a0a0a;
  border-radius: 23px;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* STATS COUNTER EFFECT */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stat-card { text-align: center; padding: 40px 24px; }
.stat-num { 
  font-size: 64px; font-weight: 700; margin-bottom: 8px; letter-spacing: -2px; 
  color: #fff;
  
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.stat-label { color: var(--muted); font-size: 15px; font-weight: 500; }

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

.cs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.cs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.cs-col { padding: 0 16px; text-align: center; }
.cs-divider-r { border-right: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cs-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 20px 10px !important; text-align: center !important; }
  .cs-grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .cs-col { padding: 8px 0 !important; text-align: center !important; }
  .cs-divider-r { border-right: none !important; border-bottom: none !important; }
  .cs-col div[style*="font-size: 32px"] { font-size: 24px !important; font-weight: 800 !important; }
}

/* ============================
   TIMELINE STYLES + ANIMATIONS
   ============================ */
@keyframes lineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes circlePopIn {
  0%   { opacity: 0; transform: scale(0.5); }
  70%  { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

.timeline-wrap {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.08) 100%);
  transform-origin: top center;
  animation: lineGrow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  opacity: 0;
}
.timeline-step.tl-step-1 { animation: stepFadeIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.3s forwards; }
.timeline-step.tl-step-2 { animation: stepFadeIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.55s forwards; }
.timeline-step.tl-step-3 { animation: stepFadeIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.8s forwards; }
.timeline-step.tl-step-4 { animation: stepFadeIn 0.6s cubic-bezier(0.16,1,0.3,1) 1.05s forwards; margin-bottom: 0; }

.tl-circle {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  animation: circlePopIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.tl-step-1 .tl-circle { animation-delay: 0.4s; }
.tl-step-2 .tl-circle { animation-delay: 0.65s; }
.tl-step-3 .tl-circle { animation-delay: 0.9s; }
.tl-step-4 .tl-circle { animation-delay: 1.15s; }

.tl-circle-active {
  background: #ffffff;
  border: none;
  color: #000;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.1), 0 0 20px rgba(255,255,255,0.15);
}

.tl-card {
  flex: 1;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-card:hover {
  transform: translateX(4px) translateY(-2px);
}

.tl-bg-icon {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 52px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.tl-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* SERVICES / FEATURES */
.service-icon {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff;
  margin-bottom: 24px; border: 1px solid var(--border);
}
.service-title { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.service-desc { color: var(--muted); font-size: 15px; }

/* VIDEO SECTION */
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--border); background: #111;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* HIGHLIGHTED CARD */
.glass-card.highlighted-card {
  transform: scale(1.05);
  z-index: 2;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.1);
}
.glass-card.highlighted-card::after {
  opacity: 0.5;
}
.glass-card.highlighted-card:hover {
  transform: scale(1.08) translateY(-5px);
}
@media (max-width: 900px) {
  .glass-card.highlighted-card {
    transform: scale(1);
  }
  .glass-card.highlighted-card:hover {
    transform: translateY(-5px);
  }
}

/* Desktop offset fix */
@media (min-width: 901px) {
  nav { top: 24px !important; }
  .hero { padding-top: 230px !important; }
}

/* PRICING */
.price-plan { font-size: 16px; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600;}
.price-val { font-size: 56px; font-weight: 700; margin-bottom: 8px; letter-spacing: -2px; }
.price-val span { font-size: 18px; color: var(--muted); font-weight: 400; }
.price-sub { color: var(--muted); margin-bottom: 32px; font-size: 14px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.price-features li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: 15px; }
.price-features li i { color: #fff; font-size: 20px; flex-shrink: 0; margin-top: 2px;}

.btn-full { display: block; width: 100%; text-align: center; padding: 16px; border-radius: 100px; text-decoration: none; font-weight: 600; transition: background 0.3s, color 0.3s, transform 0.1s ease-out, border 0.3s; }
.btn-full.primary { background: var(--white); color: #000; }
.btn-full.primary:hover { background: #e5e5e5; }
.btn-full.outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
.btn-full.outline:hover { background: rgba(255,255,255,0.1); }

/* FAQ / ACCORDION */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px;
  cursor: pointer; transition: all 0.3s ease;
}
.faq-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.faq-q { font-size: 18px; font-weight: 600; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q i { transition: transform 0.3s ease; color: var(--muted); }
.faq-item.active .faq-q i { transform: rotate(45deg); color: #fff; }
.faq-a { color: var(--muted); font-size: 15px; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.3s ease; }
.faq-item.active .faq-a { max-height: 500px; opacity: 1; margin-top: 16px; }
.faq-highlight { color: #fff; font-weight: 600; margin-top: 8px; display: block; }

/* TESTIMONIALS */
.testi-card { display: flex; flex-direction: column; justify-content: space-between; }
.testi-text { font-size: 16px; font-style: italic; color: #fff; margin-bottom: 24px; line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 18px; color: #fff; }
.testi-name { font-weight: 600; color: #fff; }
.testi-role { color: var(--muted); font-size: 14px; }

.chip { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(255,255,255,0.05); 
  border: 1px solid var(--border); 
  padding: 8px 16px; 
  border-radius: 100px; 
  font-size: 14px; 
  color: var(--muted); 
  margin: 4px; 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
  text-decoration: none !important; 
  cursor: pointer; 
}
.chip:hover { 
  border-color: var(--accent) !important; 
  color: #fff !important; 
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3); 
  background: rgba(124, 58, 237, 0.08); 
}

/* FOOTER */
footer { padding: 100px 0 40px; border-top: 1px solid var(--border); margin-top: 60px; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { color: var(--muted); font-size: 20px; transition: color 0.2s; }
.footer-socials a:hover { color: var(--white); }
.footer-copy { color: #52525b; font-size: 14px; margin-top: 16px; text-align: center; }

/* RESPONSIVE */
@media(max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  nav { width: calc(100% - 48px); justify-content: space-between; padding: 12px 24px; border-radius: 24px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Ticker Styles */
.ticker-wrap {
  width: 100%;
  max-width: 1120px;
  margin: -40px auto 60px auto;
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 8px 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker {
  display: flex;
  width: max-content; /* Ensure it expands to fit the pills */
  padding: 10px 0; /* Add some padding so box-shadows don't clip */
  animation: ticker 40s linear infinite;
}
.ticker-reverse {
  animation: tickerReverse 40s linear infinite;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px !important;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 15, 15, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 100px !important;
  margin-right: 12px; /* Gap between pills */
  white-space: nowrap;
}
.ticker__item i { color: #ffffff; font-size: 12px; }
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes tickerReverse {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(50px) scale(0.96); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Bento Grid Services */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .bento-card:nth-child(1) { grid-column: span 7; }
  .bento-card:nth-child(2) { grid-column: span 5; }
  .bento-card:nth-child(3) { grid-column: span 6; }
  .bento-card:nth-child(4) { grid-column: span 6; }
}
.bento-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}
.bento-card .watermark {
  position: absolute;
  bottom: 0px;
  right: 10px;
  font-size: 140px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-heading);
  letter-spacing: -5px;
}
.bento-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.bento-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.5px;
}
.bento-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.bento-link {
  margin-top: auto;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.bento-link:hover { opacity: 0.8; }
.bento-bullets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}
.bento-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #d4d4d8;
  font-weight: 500;
}
.bento-bullets li i {
  color: #ffffff;
  font-size: 16px;
}
.bento-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 0 32px 0;
}
.bento-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.bento-stat {
  text-align: center;
  flex: 1;
}
.bento-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.bento-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}
.bento-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.software-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 700;
  color: #a1a1aa;
  letter-spacing: 1px;
}
.software-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.software-row span i {
  color: #ffffff;
  font-size: 18px;
}

/* Video Work Grid */
.work-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: rgba(255, 255, 255, 0.8);
}
.work-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* Prevent interacting with iframe directly */
}
.custom-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.1);
  transition: background 0.3s;
  z-index: 2;
}
.custom-play-overlay:hover {
  background: rgba(0,0,0,0.3);
}
.play-btn-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ea580c, #ea580c);
  background-size: 300% 300%;
  animation: logoGradient 3s ease infinite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000; /* Dark icon for better contrast */
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.2);
}

@keyframes logoGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.custom-play-overlay:hover .play-btn-circle {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fullscreen-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.longs-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .longs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reels-grid { grid-template-columns: repeat(4, 1fr); }
  .longs-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Global Background Video */
.site-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}
.site-bg-video iframe,
.site-bg-video video {
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
}
.site-bg-glass {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(14px); 
  -webkit-backdrop-filter: blur(14px);
  z-index: 1;
}


/* Rotating Neon Border Effect - Powerful Glow */
.neon-card {
  z-index: 1;
  position: relative;
  overflow: hidden; /* Important to clip the rotating light */
}

.neon-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%; /* Large enough to cover diagonals */
  height: 250%;
  background: conic-gradient(
    transparent,
    rgba(234, 88, 12, 1),
    rgba(234, 88, 12, 1),
    transparent 20%
  );
  animation: rotateNeon 3s linear infinite;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(5px);
}

.neon-card::after {
  content: '';
  position: absolute;
  inset: 1.5px; /* Creates the border width */
  background: rgba(10, 10, 10, 0.9); /* Dark enough to hide the center light */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 6px;
  z-index: -1;
}

@keyframes rotateNeon {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}



/* Highlighted Card (Growth Pro) - Dark Style */
.highlighted-card {
  background: rgba(10, 10, 10, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  transform: scale(1.02);
}

/* Premium Animated Gradient for All Headings */
h1, h2, h3, h4, h5 {
  background: linear-gradient(-45deg, #ffffff, #ffffff, #ea580c, #ea580c, #ffffff, #ffffff);
  background-size: 400% 400%;
  animation: logoGradient 10s ease infinite;
  -webkit-background-clip: text;
  
  background-clip: text;
  filter: drop-shadow(0 0 3px rgba(234, 88, 12, 0.2)); /* Extremely subtle */
}

/* Specific fix for hero H1 to ensure it stays centered */
.hero-content h1 {
  display: block;
}


/* Ensure spans inside headings also inherit the gradient animation */
h1 span, h2 span, h3 span, h4 span, h5 span {
  background: inherit;
  -webkit-background-clip: text;
  
  background-clip: text;
}

/* Fix for neon-card text visibility: Keep it solid white with subtle glow */
.neon-card, .neon-card span {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
  filter: drop-shadow(0 0 4px rgba(234, 88, 12, 0.2)) !important; /* Reduced glow by 60% */
}

/* Animated Gradient & Glow for Numbers & Counters */
.price-val, [id^="counter-"], .price-val span:first-child {
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ffffff, #ea580c);
  background-size: 300% 300%;
  animation: logoGradient 6s ease infinite;
  -webkit-background-clip: text;
  
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(234, 88, 12, 0.2)); /* 10% Glow */
  display: inline-block;
}

/* Ensure pricing dollar sign and numbers are together */
.price-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

/* Ensure symbols like + and $ also get the gradient effect */
.price-val, .neon-card:has([id^="counter-"]) {
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ffffff, #ea580c);
  background-size: 300% 300%;
  animation: logoGradient 6s ease infinite;
  -webkit-background-clip: text;
  
  background-clip: text;
}

/* Specific fix for counters inside neon-cards */
.neon-card:has([id^="counter-"]) * {
  !important;
  color: #ffffff !important;
}



/* Consolidated Styles for Counters and Visibility */
.counter-text, .price-val span:first-child, .bento-stat-num span.counter-text {
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ffffff, #ea580c) !important;
  background-size: 300% 300% !important;
  animation: logoGradient 6s ease infinite !important;
  -webkit-background-clip: text !important;
  !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 6px rgba(234, 88, 12, 0.2)) !important;
}

.price-val span:last-child {
  color: var(--muted) !important;
  -webkit-text-fill-color: var(--muted) !important;
  background: none !important;
}


/* Final Fix for Pricing Numbers - Pure White & Solid */
.price-val {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  filter: drop-shadow(0 0 12px rgba(234, 88, 12, 0.2)) !important; /* Keep the glow */
  display: block !important;
  text-align: center;
}

.price-val span {
  display: inline-block;
  vertical-align: baseline;
}

/* Keep $ and numeric value same size; keep /mo smaller */
.price-val .price-value {
  font-size: 1em !important;
  font-weight: inherit !important;
  line-height: 1 !important;
  vertical-align: baseline;
}
.price-val > span:last-child {
  font-size: 0.42em !important;
  margin-left: 2px;
}

/* Premium Mouse-Tracking Spotlight Effect for Cards */
.glass-card, .bento-card {
  position: relative;
  overflow: hidden;
}

.glass-card::before, .bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(234, 88, 12, 0.2),
    transparent 40%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

/* Border Glow following mouse */
.glass-card::after, .bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px; /* Border thickness */
  background: radial-gradient(
    400px circle at var(--mouse-x) var(--mouse-y),
    rgba(234, 88, 12, 0.2),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glass-card:hover::after, .bento-card:hover::after {
  opacity: 1;
}

/* Animated Gradient for Pulse Dot */
.pulse-dot {
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ffffff, #ea580c) !important;
  background-size: 300% 300% !important;
  animation: logoGradient 4s ease infinite !important;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.2) !important; /* Add some glow to the dot */
}

/* Enhanced Animation for Pulse Dot */
.pulse-dot {
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ffffff, #ea580c) !important;
  background-size: 400% 400% !important;
  animation: logoGradient 3s linear infinite, pulseGlow 2s ease-in-out infinite !important;
  box-shadow: 0 0 12px rgba(234, 88, 12, 0.2) !important;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Animated Gradient Border for Avatars */
.avatar-border {
  padding: 1.5px;
  background: linear-gradient(-45deg, #ea580c, #ea580c, #ffffff, #ea580c) !important;
  background-size: 300% 300% !important;
  animation: logoGradient 5s ease infinite !important;
  border: none !important;
}

/* Make Language Flags Round */
.lang-pill .fi {
  border-radius: 50% !important;
  width: 1.2em !important;
  height: 1.2em !important;
  object-fit: cover !important;
  background-size: cover !important;
  display: inline-block !important;
  vertical-align: middle;
}

/* Highlight Language Pills on Hover */
.lang-pill {
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.lang-pill:hover {
  background: rgba(234, 88, 12, 0.2) !important;
  border-color: rgba(234, 88, 12, 0.2) !important;
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.2) !important;
  transform: translateY(-2px) scale(1.05);
  color: #ffffff !important;
}

.lang-pill:hover .fi {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.2);
}

/* Larger Social Icons with Premium Highlight */
.footer-socials a {
  font-size: 28px !important; /* Making them larger */
  color: var(--muted) !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin: 0 8px;
}

.footer-socials a:hover {
  color: #ea580c !important;
  background: rgba(234, 88, 12, 0.2);
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.2);
}

/* Contact Link Hover Effect */
.contact-link:hover {
  color: #ea580c !important;
  transform: translateY(-2px);
}

.contact-link:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.2));
}

/* Footer Style */
footer {
  padding: 60px 0 40px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Make Footer Transparent */
footer {
  background: transparent !important;
  border-top: none !important;
  padding: 40px 0 !important;
}

/* Process Card Icon Center & Animation */
.process-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.process-card.active {
  opacity: 1;
  transform: translateY(0);
}

.process-card i.ph-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  color: rgba(234, 88, 12, 0.2);
  z-index: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.process-card:hover i.ph-bg {
  color: rgba(234, 88, 12, 0.2);
  transform: translate(-50%, -50%) scale(1.1);
}

.process-card-content {
  position: relative;
  z-index: 1;
}


/* Center Timeline Circle Icons */
.tl-circle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.tl-circle i {
  margin: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Scroll Animation for Timeline */
.tl-card {
  opacity: 0.3;
  transform: translateY(20px);
  transition: all 0.6s ease-out !important;
}

.tl-card.active {
  opacity: 1;
  transform: translateY(0);
}

.tl-circle {
  transition: all 0.4s ease !important;
  transform: scale(0.8);
  opacity: 0.5;
}

.tl-circle-active, .tl-circle.active {
  transform: scale(1) !important;
  opacity: 1 !important;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.2) !important;
}

/* Make all timeline circles white by default */
.tl-circle {
  background: #fff !important;
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3) !important;
}

.tl-circle i {
  color: #000 !important;
}

/* Maintain highlighting on active/hover */
.tl-circle.active, .tl-circle:hover {
  box-shadow: 0 0 25px rgba(234, 88, 12, 0.2) !important;
  border: 2px solid #ea580c !important;
}

@media (max-width: 600px) {
  .cs-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px 10px !important;
    padding: 10px 0 !important;
    text-align: center !important;
  }
  
  .cs-divider-r {
    border-right: none !important;
  }
}

/* Text Reveal Animation */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ULTIMATE RESPONSIVE UI - CLEAN & OPTIMIZED
   ============================================================ */

/* TABLET & SMALL DESKTOP (up to 1024px) */
@media (max-width: 1024px) {
    .container { max-width: 1120px !important; margin: 0 auto !important; width: 100% !important; padding: 0 40px !important; display: block !important; position: relative !important; }
    .nav-links { gap: 16px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card:nth-child(n) { grid-column: span 1; }
    .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

/* TABLET (up to 900px) */
@media (max-width: 900px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex !important; align-items: center; justify-content: center; width: 40px; height: 40px; z-index: 10002; }
    nav { width: calc(100% - 40px); justify-content: space-between; padding: 12px 20px; border-radius: 20px; top: 16px; }
    
    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 86px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 460px;
        height: auto;
        background: rgba(234, 88, 12, 0.86);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 18px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.45);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        z-index: 10001;
        gap: 14px;
        padding: 18px 18px 20px;
    }
    .nav-links.active a {
        font-size: 24px;
        line-height: 1.1;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    }
    .nav-links.active li {
        list-style: none;
        width: 100%;
    }
    .nav-links.active li a {
        display: block;
        width: 100%;
        padding: 8px 10px;
        border-radius: 12px;
    }
    .nav-links.active li a:hover {
        background: rgba(255,255,255,0.08);
    }
}

/* MOBILE (up to 600px) */
@media (max-width: 600px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip !important;
        position: relative;
    }
    html {
        overscroll-behavior-x: none;
    }
    body {
        touch-action: pan-y;
        overscroll-behavior-x: none;
    }
    .container { max-width: 1120px !important; margin: 0 auto !important; width: 100% !important; padding: 0 40px !important; display: block !important; position: relative !important; }
    nav {
        width: auto !important;
        max-width: none !important;
        left: 10px !important;
        right: 10px !important;
        top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
        padding: 10px 14px !important;
        border-radius: 18px !important;
        gap: 12px !important;
        transform: none !important;
        overflow: visible !important;
    }
    .nav-logo {
        margin-right: auto;
        max-width: none;
        min-width: 0;
        overflow: visible;
        display: flex;
        justify-content: flex-start;
    }
    #logo-svg {
        height: 34px !important;
        width: auto;
        max-width: 100%;
        display: block;
        transform: none !important;
    }
    
    /* Bottom Nav Bar */
    .bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 10px;
        left: 10px;
        right: 10px;
        height: 64px;
        background: linear-gradient(180deg, rgba(234, 88, 12, 0.88) 0%, rgba(234, 88, 12, 0.94) 100%);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        justify-content: space-around;
        align-items: center;
        z-index: 10000;
        border: 1px solid rgba(234, 88, 12, 0.45);
        border-radius: 18px;
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 18px rgba(234, 88, 12, 0.2);
    }
    .bottom-nav-item { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        color: #ea580c; 
        font-size: 10px; 
        font-weight: 500;
        gap: 3px; 
        text-decoration: none;
        padding: 6px 11px;
        border-radius: 11px;
        transition: all 0.2s ease;
    }
    .bottom-nav-item.active {
        color: #ea580c;
        background: linear-gradient(180deg, rgba(234, 88, 12, 0.2) 0%, rgba(234, 88, 12, 0.12) 100%);
        box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.45), 0 0 10px rgba(234, 88, 12, 0.22);
    }
    .bottom-nav-item i {
        font-size: 18px;
        line-height: 1;
    }


    /* Hero Section */
    .hero { padding: 146px 0 28px; text-align: center; overflow-x: clip; }
    .hero-h1 { color: #ffffff !important;  font-size: clamp(32px, 8vw, 44px); line-height: 1.1; margin-bottom: 20px; margin-top: 4px; }
    .hero-sub { font-size: 15px; padding: 0 10px; margin-bottom: 30px; }
    .hero-badge {
        font-size: 9px !important;
        padding: 6px 12px !important;
        gap: 5px !important;
        letter-spacing: 0.6px !important;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow: hidden;
        margin-top: 38px !important;
    }
    .hero-badge .pulse-dot {
        width: 5px !important;
        height: 5px !important;
        margin: 0 6px !important;
        flex: 0 0 auto;
    }
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 28px !important;
        align-items: stretch;
    }
    .hero-btns .btn-full {
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        padding: 12px 14px !important;
        font-size: clamp(12px, 3.2vw, 14px);
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.2;
    }
    .hero-btns .btn-full i {
        margin-left: 0 !important;
        font-size: 16px;
    }

    /* Grids & Layouts */
    .cs-grid-4, .cs-grid-3 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
        padding: 20px 0 !important;
    }
    .cs-divider-r { border-right: none !important; }
    .cs-col { padding: 0 !important; text-align: center !important; }
    .cs-col div[style*="font-size: 32px"] { font-size: 26px !important; }

    .reels-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .longs-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    
    .bento-bullets { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    /* Section Headers */
    .section-h2 { font-size: 28px !important; text-align: center; }
    .section-sub { font-size: 14px; text-align: center; }
    .section-header[style*="margin-bottom: 48px;"] .section-h2[style*="display: flex"] {
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px !important;
        font-size: 24px !important;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
    .section-header[style*="margin-bottom: 48px;"] .section-h2 .neon-card {
        padding: 3px 9px !important;
        font-size: 0.95em;
        line-height: 1.1;
    }
    .section-header[style*="margin-bottom: 48px;"] .section-h2 span[style*="font-style: italic"] {
        font-size: 0.95em;
        white-space: normal;
    }

    #ourservices .section-header {
        margin-bottom: 26px !important;
    }
    #ourservices .section-sub {
        max-width: 94% !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }
    #ourservices .software-row {
        gap: 10px 18px !important;
        margin-bottom: 14px !important;
        font-size: 12px !important;
        letter-spacing: 0.6px !important;
    }
    #ourservices .software-row span {
        gap: 6px !important;
    }
    #ourservices .software-row span i {
        font-size: 14px !important;
    }
    #ourservices .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    #ourservices .bento-card {
        width: 100% !important;
        padding: 20px !important;
        border-radius: 20px !important;
    }
    #ourservices .bento-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.3px !important;
        word-break: normal;
    }
    #ourservices .bento-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }
    #ourservices .bento-bullets {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px 12px !important;
        margin-bottom: 18px !important;
    }
    #ourservices .bento-bullets li {
        font-size: 12px !important;
        gap: 6px !important;
    }
    #ourservices .bento-stat-num {
        font-size: 26px !important;
    }
    #ourservices .bento-stat-label {
        font-size: 11px !important;
        line-height: 1.25 !important;
    }
    #ourservices .bento-stats {
        margin-bottom: 18px !important;
    }
    #ourservices .bento-link {
        font-size: 13px !important;
    }
    #ourservices .watermark {
        font-size: 88px !important;
        right: 6px !important;
    }

    #whyus .section-header {
        margin-bottom: 28px !important;
    }
    #whyus .section-h2[style*="display: flex"] {
        font-size: 24px !important;
        gap: 8px !important;
        line-height: 1.2 !important;
    }
    #whyus .section-h2[style*="display: flex"] .neon-card {
        padding: 3px 10px !important;
        font-size: 0.95em !important;
    }
    #whyus .section-h2[style*="display: flex"] span[style*="font-style: italic"] {
        font-size: 0.95em !important;
    }
    #whyus .section-sub {
        font-size: 14px !important;
        line-height: 1.5 !important;
        max-width: 95% !important;
    }
    #whyus .timeline-wrap {
        margin-top: 6px !important;
    }
    
    /* Card Centering */
    .glass-card { padding: 24px; text-align: center; }
    .grid-3,
    .glass-card,
    .bento-grid,
    .bento-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .site-bg-video {
        overflow: hidden !important;
    }
    .site-bg-video iframe {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 177.77vh !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 56.25vw !important;
        transform: translate(-50%, -50%) !important;
    }

    .ticker-wrap {
        width: 100% !important;
        left: auto !important;
        transform: none !important;
        overflow-x: clip !important;
    }
    .ticker {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 14px !important;
    }
    .ticker__item {
        white-space: nowrap;
    }

    .marquee-container {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 20px 0 !important;
        gap: 16px !important;
        mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    }
    .marquee-track {
        display: flex !important;
        width: max-content !important;
    }
    .marquee-group {
        display: flex !important;
        gap: 12px !important;
        padding-right: 12px !important;
        flex-wrap: nowrap !important;
        animation-duration: 36s !important;
    }
    .marquee-track.reverse .marquee-group {
        animation-duration: 36s !important;
    }
    .lang-pill {
        max-width: none;
        font-size: 11px;
        padding: 7px 12px;
        white-space: nowrap;
    }

    section,
    .section-header,
    .video-showcase,
    #multilang {
        max-width: 100% !important;
        overflow-x: clip !important;
    }
    .container > * {
        max-width: 100%;
    }
    .container,
    .hero,
    #multilang,
    .section-header,
    .grid-3,
    .bento-grid {
        contain: inline-size;
    }
    .hero .reveal-text-up[style*="gap: 16px"] {
        flex-wrap: wrap;
        row-gap: 10px !important;
        padding: 0 4px;
    }
    .hero .reveal-text-up[style*="text-align:left"] {
        text-align: center !important;
    }
    .service-icon { margin: 0 auto 20px; }
    .ticker-wrap { margin-bottom: 18px !important; }
    .video-showcase {
        padding: 20px 12px !important;
        margin-top: 0 !important;
    }
    .video-3d-wrap {
        max-width: 100% !important;
    }

    /* Testimonials mobile fix */
    #testimonials .section-header {
        margin-bottom: 24px !important;
    }
    #testimonials .section-h2[style*="display: flex"] {
        font-size: 24px !important;
        line-height: 1.2 !important;
        gap: 8px !important;
    }
    #testimonials .section-h2[style*="display: flex"] .neon-card {
        padding: 3px 10px !important;
    }
    #testimonials > div[style*="grid-template-columns: 1fr 1.1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: stretch !important;
    }
    #testimonials > div[style*="grid-template-columns: 1fr 1.1fr 1fr"] > div {
        width: 100% !important;
        max-width: 100% !important;
    }
    #testimonials .work-card[style*="aspect-ratio: 9/16"] {
        aspect-ratio: 9 / 16 !important;
        margin-bottom: 10px !important;
        border-radius: 16px !important;
    }
    #testimonials .work-card[style*="aspect-ratio: 9/16"] iframe {
        width: 112% !important;
        height: 112% !important;
        top: -6% !important;
        left: -6% !important;
    }
    #testimonials .glass-card[style*="padding: 14px 18px"] {
        padding: 12px 14px !important;
        gap: 10px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] {
        padding: 16px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] div[style*="font-size: 18px"] {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] .service-desc {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] img[style*="width: 38px"] {
        width: 34px !important;
        height: 34px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] div[style*="font-size: 13px"] {
        font-size: 15px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] .service-desc[style*="font-size: 11px"] {
        font-size: 12px !important;
    }
    #testimonials .ph-fill.ph-quotes,
    #testimonials .ph-fill.ph-chart-line-up,
    #testimonials .ph-fill.ph-crown {
        font-size: 22px !important;
        top: 10px !important;
        right: 10px !important;
    }

    /* Additional services chips: 2 per row on mobile */
    section div[style*="max-width: 900px"][style*="flex-wrap: wrap"] {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px !important;
        max-width: 100% !important;
        width: 100%;
    }
    section div[style*="max-width: 900px"][style*="flex-wrap: wrap"] .chip {
        width: 100%;
        margin: 0 !important;
        justify-content: center;
        font-size: 13px;
        padding: 8px 10px;
        text-align: center;
    }

    /* Footer mobile cleanup */
    footer {
        padding: 28px 0 92px !important;
    }
    .footer-content {
        gap: 16px !important;
        padding: 0 14px !important;
    }
    .footer-socials {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px !important;
    }
    .footer-socials a {
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        font-size: 22px !important;
    }
    .footer-copy {
        margin-top: 6px !important;
        font-size: 12px !important;
        text-align: center;
    }
    
    /* Reveal Animation Speedup for Mobile */
    .reveal { transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease; }
}

/* SMALL MOBILE (up to 380px) */
@media (max-width: 380px) {
    .hero-h1 { color: #ffffff !important;  font-size: 28px; }
    .cs-grid-4 { grid-template-columns: 1fr !important; }
    .reels-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 390px) {
    .container { max-width: 1120px !important; margin: 0 auto !important; width: 100% !important; padding: 0 40px !important; display: block !important; position: relative !important; }
    nav {
        left: 8px !important;
        right: 8px !important;
        top: calc(env(safe-area-inset-top, 0px) + 8px) !important;
        padding: 9px 12px !important;
    }
    #logo-svg {
        height: 31px !important;
    }
    .hero-badge {
        font-size: 8px !important;
        padding: 5px 10px !important;
        letter-spacing: 0.45px !important;
    }
    .hero-badge .pulse-dot {
        margin: 0 5px !important;
    }
    .hero-btns { gap: 10px !important; }
    .hero-btns .btn-full {
        font-size: 12px;
        padding: 11px 10px !important;
        gap: 3px;
    }
    .section-header[style*="margin-bottom: 48px;"] .section-h2[style*="display: flex"] {
        font-size: 22px !important;
        gap: 5px !important;
    }
    .section-header[style*="margin-bottom: 48px;"] .section-h2 .neon-card {
        padding: 3px 8px !important;
    }
    .ticker {
        gap: 8px 10px !important;
    }
    .lang-pill {
        font-size: 10px;
        padding: 6px 10px;
    }
    #testimonials .section-h2[style*="display: flex"] {
        font-size: 22px !important;
    }
    #testimonials .glass-card[style*="padding: 24px"] div[style*="font-size: 18px"] {
        font-size: 20px !important;
    }
    section div[style*="max-width: 900px"][style*="flex-wrap: wrap"] {
        grid-template-columns: 1fr 1fr;
        gap: 8px !important;
    }
    section div[style*="max-width: 900px"][style*="flex-wrap: wrap"] .chip {
        font-size: 12px;
        padding: 7px 8px;
    }
}

@keyframes marquee-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
    section {
        padding: 56px 0 !important;
    }
    section {
        padding: 48px 0 !important;
    }
    #ourservices .bento-title {
        font-size: 18px !important;
    }
    #ourservices .bento-card {
        padding: 18px !important;
    }
    #whyus .section-h2[style*="display: flex"] {
        font-size: 22px !important;
    }



/* --- PREMIUM FUSION AI OVERHAUL --- */

/* SMOOTH SCROLLING */
html {
  /* scroll-behavior: smooth !important; */
}
body {
  overflow-x: hidden !important;
}

/* TYPOGRAPHY: PURE WHITE FOR ALL HEADINGS */
h1 { color: #ffffff !important;
  text-shadow: 0 0 20px rgba(255,255,255,0.05) !important;
}

p, .section-sub, .hero-sub, .service-desc, .bento-desc {
  color: #a1a1aa !important;
}

/* BUTTONS: DARK + GRADIENT BORDER */
.btn-full.primary, .btn-premium, .nav-btn.btn-signup, .btn-signup {
  background: #050505 !important;
  color: #fff !important;
  border: 1px solid transparent !important;
  position: relative !important;
  background-clip: padding-box !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.8) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
}
.btn-full.primary::before, .btn-premium::before, .btn-signup::before {
  content: '' !important;
  position: absolute !important;
  inset: -1.5px !important;
  z-index: -1 !important;
  border-radius: inherit !important;
  background: linear-gradient(135deg, #ea580c, #ea580c) !important;
}



/* FOOTER FIX */
.fusion-footer-wrap { padding: 80px 0 !important; background: transparent !important; }
.fusion-footer-card {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 32px !important;
  padding: 50px !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}
.fusion-footer-top { display: grid !important; grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 30px !important; }
.fusion-footer-title { color: #fff !important; font-weight: 700 !important; margin-bottom: 20px !important; }
.fusion-footer-links a { color: #a1a1aa !important; text-decoration: none !important; }
.fusion-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1) !important; padding-top: 30px !important; margin-top: 40px !important; display: flex !important; justify-content: space-between !important; }

/* LOGO FIX */
.nav-logo img { filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.2)) !important; }

/* MARQUEE COLORS */
.lang-pill { background: rgba(255,255,255,0.05) !important; color: #fff !important; }


h1 { color: #ffffff !important;
  background: none !important;
  text-shadow: 0 0 30px rgba(255,255,255,0.1) !important;
}


/* --- ULTIMATE FUSION AI OVERHAUL V3 --- */

/* SMOOTH SCROLL */
html { /* scroll-behavior: smooth !important; */ }

/* BUTTONS: THE REAL DARK STYLE */
.btn-full.primary, .btn-premium, .nav-btn.btn-signup, .btn-signup {
  background: #050505 !important;
  color: #fff !important;
  border: 1px solid transparent !important;
  position: relative !important;
  background-clip: padding-box !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.8) !important;
  transition: all 0.4s !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 100px !important;
  padding: 14px 32px !important;
  font-weight: 700 !important;
}
.btn-full.primary::before, .btn-premium::before, .btn-signup::before {
  content: '' !important;
  position: absolute !important;
  inset: -2px !important;
  z-index: -1 !important;
  border-radius: inherit !important;
  background: linear-gradient(135deg, #ea580c, #ea580c) !important;
}
.btn-full.primary:hover { transform: translateY(-3px) !important; box-shadow: 0 12px 40px rgba(234, 88, 12, 0.4) !important; }

/* FINAL CLEANUP */
.fusion-footer-links { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.fusion-footer-links li::before { content: none !important; }

.glass-card:hover::after, .bento-card:hover::after, .neon-card:hover::after, .work-card:hover::after, .tl-card:hover::after, .stat-card:hover::after { opacity: 1 !important; }

.glass-card::after, .bento-card::after, .neon-card::after, .work-card::after, .tl-card::after, .stat-card::after { will-change: transform, opacity !important; }

/* FINAL ABSOLUTE COLOR ENFORCEMENT */

h1, h2, h3, h4, h5, .hero-h1, .section-h2, .service-title, .bento-title, .word-reveal {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  animation: none !important;
}
.price-val, [id^="counter-"], .counter-text {
  color: #ea580c !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea580c !important;
  animation: none !important;
}


/* FINAL ABSOLUTE COLOR ENFORCEMENT V4 */
h1, h2, h3, h4, h5, .hero-h1, .section-h2, .service-title, .bento-title, .word-reveal {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  animation: none !important;
  text-shadow: none !important;
}

/* --- FUSION AI TEXT FIX --- */

h1, h2, h3, h4, h5, .hero-h1, .section-h2, .service-title, .bento-title, .word-reveal {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

/* --- FUSION AI CARD STYLES --- */

.glass-card, .bento-card, .neon-card, .work-card {
  background: rgba(5, 5, 5, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
}

/* --- FUSION AI BUTTONS --- */

.btn-full.primary, .btn-premium, .nav-btn.btn-signup, .btn-signup {
  background: #050505 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  position: relative !important;
  background-clip: padding-box !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  overflow: hidden !important;
}
.btn-full.primary::before, .btn-premium::before, .btn-signup::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  border-radius: inherit !important;
  padding: 2px !important;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.8), rgba(249, 115, 22, 0.2)) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
}
.btn-full.primary:hover, .btn-premium:hover, .btn-signup:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.25) !important;
  background: #0a0a0a !important;
}

/* --- FIX HERO VISIBILITY --- */
.word-reveal, .reveal-text-up { opacity: 1 !important; transform: none !important; filter: none !important; }


/* --- PERFECT NEON BORDER EFFECT --- */
@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateGlow {
  0% { --glow-angle: 0deg; }
  100% { --glow-angle: 360deg; }
}

.glass-card, .bento-card, .neon-card, .work-card, .tl-card, .stat-card {
  position: relative !important;
  background: rgba(5, 5, 5, 0.7) !important; /* Must be solid enough to hide anything behind it */
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;
  border: 1px solid transparent !important; /* Reserve space for glow */
  background-clip: padding-box !important; /* Crucial: stops background from filling border area */
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important; /* Normal shadow, not orange blob */
  z-index: 1 !important;
  overflow: visible !important; /* Allow the glow to exist on the edge cleanly */
}

/* Specific styling for small pills to match 'From Brief' reference size */
span.neon-card {
  border-radius: 100px !important; /* Perfectly round pill */
  padding: 10px 24px !important; /* Larger padding for a premium pill look */
  font-size: 24px !important; /* Standardize font size to match reference proportion */
  font-weight: 700 !important;
}

/* The actual rotating glow, masked perfectly to ONLY exist on the border */
.glass-card::after, .bento-card::after, .neon-card::after, .work-card::after, .tl-card::after, .stat-card::after {
  content: '' !important;
  position: absolute !important;
  inset: -2px !important; /* Slightly thicker border glow to match reference */
  z-index: 1 !important; /* Render on top of background but behind content */
  border-radius: inherit !important; /* Match parent's radius perfectly */
  background: conic-gradient(from var(--glow-angle), transparent 20%, #ea580c 50%, #f97316 70%, transparent 100%) !important;
  animation: rotateGlow 3s linear infinite !important;
  
  /* Mask out the center: ONLY show the 2px padding border */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
          mask-composite: exclude !important;
  padding: 2px !important;
  filter: drop-shadow(0 0 6px rgba(234, 88, 12, 0.8)) !important; /* Softer, richer outer glow matching reference */
  pointer-events: none !important;
}

/* Remove any rogue ::before masks from previous attempts */
.glass-card::before, .bento-card::before, .neon-card::before, .work-card::before, .tl-card::before, .stat-card::before {
  display: none !important;
}

/* GLOBAL SECTION SPACING FIX */
section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* --- UNIQUE FUSION AI INSPIRED BACKGROUND --- */
body {
  position: relative !important;
  background-color: #030303 !important; /* Deep dark base */
  z-index: 0 !important;
}



/* FIX: ROUND INNER VIDEO CORNERS */
/* Since overflow:visible is needed for the neon glow, the inner iframes need their own border-radius */
.glass-card iframe, .glass-card video, .glass-card img,
.bento-card iframe, .bento-card video, .bento-card img,
.work-card iframe, .work-card video, .work-card img,
.tl-card iframe, .tl-card video, .tl-card img,
.stat-card iframe, .stat-card video, .stat-card img {
  border-radius: inherit !important;
}

/* --- PREMIUM FOOTER SOCIALS & LIVE CHAT --- */
.fusion-footer-social {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.fusion-footer-social a:not(.live-chat-btn) {
  color: #a1a1aa !important;
  font-size: 26px !important; /* Larger size as requested */
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.fusion-footer-social a:not(.live-chat-btn):hover {
  color: #ffffff !important;
  transform: scale(1.15) !important;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) !important;
}

.live-chat-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(37, 211, 102, 0.15) !important; /* Premium translucent WhatsApp Green */
  border: 1px solid rgba(37, 211, 102, 0.3) !important;
  color: #25d366 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  margin-right: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.live-chat-btn:hover {
  background: rgba(37, 211, 102, 0.25) !important;
  border-color: rgba(37, 211, 102, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* Ensure mobile responsiveness */
@media (max-width: 600px) {
  .fusion-footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .fusion-footer-social {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* Footer Brand Gap Fix */
.fusion-footer-brand a {
  display: inline-block !important;
  margin-bottom: 30px !important;
}

/* SVG Logo Color Enforce (Pure White) */
#logo-svg path, #logo-svg g, #logo-svg polygon {
  fill: #ffffff !important;
}

/* --- FUSION AI AMBIENT GLOWS --- */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -10;
  opacity: 0.6;
  pointer-events: none;
}
.ambient-glow.glow-orange {
  background: radial-gradient(circle, rgba(234, 88, 12, 0.4) 0%, transparent 70%);
  width: 80vw;
  height: 80vh;
  top: -10vh;
  left: -20vw;
}
.ambient-glow.glow-blue {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  width: 90vw;
  height: 90vh;
  top: 40vh;
  right: -30vw;
}

/* FUSION AI GRADIENT BORDER BADGE */
.hero-badge {
  background: rgba(5, 5, 5, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  position: relative !important;
  background-clip: padding-box !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-badge::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  border-radius: inherit !important;
  padding: 1px !important;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.8), rgba(59, 130, 246, 0.8)) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
}

/* ============================================================
   Premium Responsive Stability Pass
   ============================================================ */
html {
  background: #000;
}

body {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 8%, rgba(234, 88, 12, 0.14), transparent 32rem),
    radial-gradient(circle at 82% 38%, rgba(59, 130, 246, 0.1), transparent 34rem),
    #000;
}

iframe {
  color-scheme: dark;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.work-card iframe,
.video-3d-wrap iframe,
#modalIframe,
[id*="youtube"] iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#custom-play-btn.is-muted-off {
  opacity: 0.48 !important;
  background: rgba(0, 0, 0, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
}

.bottom-nav {
  isolation: isolate;
}

@media (max-width: 900px) {
  nav {
    max-width: 720px;
  }

  .nav-links.active {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.94)),
      radial-gradient(circle at 20% 0%, rgba(234, 88, 12, 0.28), transparent 16rem);
    border-color: rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(circle at 18% 4%, rgba(234, 88, 12, 0.18), transparent 18rem),
      radial-gradient(circle at 85% 28%, rgba(59, 130, 246, 0.1), transparent 20rem),
      #000;
  }

  .container {
    padding-left: clamp(18px, 5vw, 24px) !important;
    padding-right: clamp(18px, 5vw, 24px) !important;
  }

  nav {
    min-height: 58px;
    background: rgba(12, 12, 12, 0.78) !important;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .nav-logo img {
    height: clamp(31px, 8.8vw, 38px) !important;
    max-width: 150px;
  }

  .hamburger {
    padding-right: 0 !important;
  }

  .bottom-nav {
    left: max(12px, env(safe-area-inset-left, 0px)) !important;
    right: max(12px, env(safe-area-inset-right, 0px)) !important;
    bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
    height: 66px !important;
    padding: 7px 8px !important;
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(5, 5, 5, 0.88)),
      radial-gradient(circle at 50% -20%, rgba(234, 88, 12, 0.34), transparent 80%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.58), 0 0 22px rgba(234, 88, 12, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .bottom-nav-item {
    flex: 1 1 0;
    min-width: 0;
    height: 50px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 10.5px !important;
    font-weight: 650 !important;
    letter-spacing: 0 !important;
    padding: 6px 4px !important;
    border-radius: 16px !important;
  }

  .bottom-nav-item i {
    color: currentColor !important;
    font-size: 20px !important;
  }

  .bottom-nav-item.active {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.95), rgba(194, 65, 12, 0.88)) !important;
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  }

  .hero {
    padding-top: clamp(132px, 34vw, 154px) !important;
    padding-bottom: 20px !important;
  }

  .hero-h1 {
    font-size: clamp(36px, 11vw, 48px) !important;
    letter-spacing: 0 !important;
  }

  .hero-sub {
    max-width: 34rem;
    padding: 0 !important;
    font-size: clamp(15px, 4vw, 17px) !important;
  }

  .hero-badge {
    margin-top: 20px !important;
    max-width: calc(100vw - 40px);
  }

  .hero-btns {
    max-width: 100% !important;
  }

  .hero-btns .btn-full {
    min-height: 58px;
    border-radius: 999px;
    font-size: 14px !important;
  }

  .ticker-wrap {
    margin-top: -10px !important;
    margin-bottom: 22px !important;
  }

  .video-showcase {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .video-3d-wrap,
  .work-card,
  .glass-card,
  .bento-card {
    border-radius: 18px !important;
  }

  .reels-grid,
  .longs-grid,
  .grid-2,
  .grid-3,
  .bento-grid {
    gap: 16px !important;
  }

  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .longs-grid {
    grid-template-columns: 1fr !important;
  }

  section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .section-header {
    margin-bottom: 30px !important;
  }

  footer {
    margin-top: 30px !important;
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .ambient-glow {
    filter: blur(82px) !important;
    opacity: 0.36 !important;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-h1 {
    font-size: clamp(32px, 10vw, 40px) !important;
  }

  .hero-badge {
    font-size: 8.5px !important;
    letter-spacing: 0.42px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Dark Background Refresh
   ============================================================ */
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(234, 88, 12, 0.12), transparent 28rem),
    radial-gradient(circle at 84% 34%, rgba(59, 130, 246, 0.08), transparent 32rem),
    linear-gradient(180deg, #020202 0%, #050505 38%, #010101 100%) !important;
}

.ambient-glow {
  filter: blur(150px) !important;
  opacity: 0.42 !important;
}

.ambient-glow.glow-orange {
  background: radial-gradient(circle, rgba(234, 88, 12, 0.3) 0%, rgba(234, 88, 12, 0.12) 34%, transparent 74%) !important;
  width: 78vw !important;
  height: 78vh !important;
  top: -14vh !important;
  left: -24vw !important;
}

.ambient-glow.glow-blue {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.06) 38%, transparent 74%) !important;
  width: 84vw !important;
  height: 84vh !important;
  top: 42vh !important;
  right: -28vw !important;
}

.hero-h1,
.section-h2 {
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

@media (max-width: 600px) {
  body {
    background:
      radial-gradient(circle at 16% 4%, rgba(234, 88, 12, 0.15), transparent 18rem),
      radial-gradient(circle at 88% 24%, rgba(59, 130, 246, 0.07), transparent 18rem),
      linear-gradient(180deg, #020202 0%, #050505 48%, #010101 100%) !important;
  }

  .ambient-glow {
    filter: blur(96px) !important;
    opacity: 0.32 !important;
  }
}

/* ============================================================
   Reference-Inspired Page Background Only
   ============================================================ */
body {
  background:
    radial-gradient(ellipse at 30% -8%, rgba(255, 137, 24, 0.13), transparent 32rem),
    radial-gradient(ellipse at 88% 8%, rgba(0, 152, 243, 0.08), transparent 34rem),
    linear-gradient(180deg, #010101 0%, #050505 42%, #010101 100%) !important;
}

.ambient-glow {
  filter: blur(118px) !important;
  opacity: 0.34 !important;
}

.ambient-glow.glow-orange {
  background: radial-gradient(circle, rgba(255, 137, 24, 0.24) 0%, rgba(162, 41, 4, 0.12) 34%, transparent 72%) !important;
}

.ambient-glow.glow-blue {
  background: radial-gradient(circle, rgba(0, 152, 243, 0.14) 0%, rgba(0, 80, 160, 0.055) 38%, transparent 74%) !important;
}

@media (max-width: 600px) {
  body {
    background:
      radial-gradient(ellipse at 16% -4%, rgba(255, 137, 24, 0.13), transparent 18rem),
      radial-gradient(ellipse at 92% 14%, rgba(0, 152, 243, 0.075), transparent 18rem),
      linear-gradient(180deg, #010101 0%, #050505 48%, #010101 100%) !important;
  }

  .ambient-glow {
    filter: blur(86px) !important;
    opacity: 0.26 !important;
  }
}

/* Premium Cursor Effects */
.cursor-glow {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border 0.25s ease;
  mix-blend-mode: difference;
}
.cursor-glow.active-link {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  mix-blend-mode: normal;
}
.cursor-glow.active-video {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  mix-blend-mode: normal;
}
.cursor-glow.active-video::after {
  content: 'PLAY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
