/* ==========================================================================
   1. Root Variables & Global Styles
   ========================================================================== */
:root {
  --primary-color: #BEF264;
  --primary-color-dark: #A3E635;
  --primary-glow: rgba(190, 242, 100, 0.4);
  --background-color: #09090B;
  --surface-color: rgba(24, 24, 27, 0.8);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-color: #F4F4F5;
  --text-muted-color: #A1A1AA;
  --font-family: 'Poppins', sans-serif;
  --header-height: 80px;
  --glass-bg: rgba(24, 24, 27, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --neon-shadow: 0 0 15px var(--primary-glow);
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
}

#mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

/* Custom Cursor */
#custom-cursor {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out, background 0.3s ease;
  transform: translate(-50%, -50%);
}

#custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.25s ease-out;
  transform: translate(-50%, -50%);
}

body.cursor-hover #custom-cursor { transform: translate(-50%, -50%) scale(2); background: #fff; }
body.cursor-hover #custom-cursor-outline { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }

/* Background Animation */
body::before, body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Star Layer 1 - Fast Twinkle */
body::before {
  background-image: 
    radial-gradient(1px 1px at 25px 35px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.2px 1.2px at 60px 120px, var(--primary-color), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 150px 50px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 200px 180px, var(--primary-color), rgba(0,0,0,0));
  background-size: 300px 300px;
  animation: stars-fast 4s ease-in-out infinite alternate;
  opacity: 0.4;
}

/* Star Layer 2 - Slow Twinkle + Glows */
body::after {
  background-image: 
    radial-gradient(1.5px 1.5px at 100px 100px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 250px 250px, var(--primary-color), rgba(0,0,0,0)),
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(190, 242, 100, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(190, 242, 100, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(190, 242, 100, 0.03) 0%, transparent 40%);
  background-size: 400px 400px, 400px 400px, 100% 100%, 100% 100%, 100% 100%;
  animation: stars-slow 12s ease-in-out infinite alternate;
  opacity: 0.8;
}

/* Animated Energy Border / Pulsation */
.energy-border {
    position: relative;
    z-index: 1;
    clip-path: inset(-50px); /* Wide enough for the glow pulse */
}

/* Soft Glow Pulse for Promo Banner */
.energy-border.active {
    animation: bannerPulse 3s ease-in-out infinite;
    border: 1px solid var(--primary-color);
}

@keyframes bannerPulse {
    0% { box-shadow: 0 0 5px rgba(190, 242, 100, 0.2); }
    50% { box-shadow: 0 0 20px rgba(190, 242, 100, 0.5); }
    100% { box-shadow: 0 0 5px rgba(190, 242, 100, 0.2); }
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    z-index: 999999;
    transform: translateY(100%);
    pointer-events: none;
}

#page-transition.active {
    animation: slideUpIn 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

#page-transition.out {
    animation: slideUpOut 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes slideUpIn {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

@keyframes slideUpOut {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

@keyframes bg-glow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color-dark);
}

ul {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

/* Laser Sweep Effect */
.section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 242, 100, 0.2), transparent);
  animation: laser-sweep 5s infinite;
}

@keyframes laser-sweep {
  0% { left: -150%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-muted-color);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* ==========================================================================
   2. Loader
   ========================================================================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease;
}

body.no-loader-transition #loader-wrapper {
  transition: none !important;
}

.loader-content {
  text-align: center;
  position: relative;
  perspective: 1000px;
}

.loader-title {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 8px;
  position: relative;
  transform: rotateX(25deg) rotateY(-15deg);
  transform-style: preserve-3d;
  
  /* Hard reveal effect */
  background: linear-gradient(to top, 
    var(--primary-color) 0%, 
    var(--primary-color) var(--p, 0%), 
    transparent var(--p, 0%), 
    transparent 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: printing 6s linear forwards;
  
  /* Massive 3D Extrusion Effect */
  filter: drop-shadow(0 0 1px var(--primary-color-dark));
}

/* Layered 3D Depth */
.loader-title::after {
  content: 'DYNAMIX91_3D';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(190, 242, 100, 0.5);
  text-shadow: 
    1px 1px 0px #84cc16,
    2px 2px 0px #84cc16,
    3px 3px 0px #65a30d,
    4px 4px 0px #65a30d,
    5px 5px 0px #4d7c0f,
    6px 6px 0px #4d7c0f,
    7px 7px 15px rgba(0,0,0,0.8);
  transform: translateZ(-10px) translate(5px, 5px);
  opacity: 0;
  animation: depth-reveal 6s linear forwards;
}

@keyframes depth-reveal {
  0% { opacity: 0; clip-path: inset(100% 0 0 0); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

/* Laser Line (The Print Head) */
.loader-content::after {
  content: '';
  position: absolute;
  left: -10%;
  width: 120%;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 
    0 0 10px var(--primary-color), 
    0 0 20px var(--primary-color),
    0 0 40px var(--primary-color);
  bottom: 0;
  animation: laser-print 6s linear forwards;
  z-index: 2;
}

@keyframes printing {
  0% { --p: 0%; }
  100% { --p: 100%; }
}

@keyframes laser-print {
  0% { bottom: 0%; opacity: 1; }
  90% { opacity: 1; }
  100% { bottom: 100%; opacity: 0; }
}

@property --p {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

body.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
}

/* Page Transition Overlay */
#page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(9, 9, 11, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

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

.menu-toggle {
  display: none;
}

/* Add margin to body content to avoid header overlap */
.home, body {
  padding-top: var(--header-height);
}


/* ==========================================================================
   4. Hero Section
   ========================================================================== */
#home {
  padding: 4rem 0;
}

.hero-main-title {
  font-size: clamp(1.4rem, 9vw, 7rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FFFFFF 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(190, 242, 100, 0.2));
  animation: title-float 6s ease-in-out infinite;
  max-width: 100%;
  white-space: nowrap; /* Force one line */
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 8vw; /* Precision for very small screens */
    letter-spacing: 0;
  }
}

@keyframes title-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content .subheading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-content .subheading svg {
  color: var(--primary-color);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content h1 .text-white {
  background: linear-gradient(to right, var(--primary-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted-color);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background-color: #000;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.carousel-item iframe,
.carousel-item video,
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 2;
  color: white;
}
.carousel-caption h3 {
  margin-bottom: 0.25rem;
}
.caption-link {
  color: var(--primary-color);
  font-weight: 500;
}


.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.carousel-nav:hover {
  background-color: rgba(0,0,0,0.8);
}
.carousel-nav.prev { left: 1rem; }
.carousel-nav.next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.carousel-dot.active {
  background-color: white;
}

/* ==========================================================================
   5. Sections
   ========================================================================== */
section {
    padding: 5rem 0;
}

/* Atouts Section */
#atouts {
    background-color: var(--surface-color);
}
.atouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.atout-card {
    text-align: center;
}
.atout-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    color: var(--primary-color);
}
.atout-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.atout-card p {
    color: var(--text-muted-color);
}

/* Social CTA Section */
.social-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.social-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(190, 242, 100, 0.1);
}
.social-card .social-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    color: var(--text-muted-color);
    transition: color 0.3s ease;
}
.social-card:hover .social-icon {
    color: var(--primary-color);
}
.social-card h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.social-card p {
    color: var(--text-muted-color);
    font-size: 0.9rem;
}

/* ==========================================================================
   6. Footer
   ========================================================================== */
/* ==========================================================================
   6. Footer
   ========================================================================== */
footer {
    background: linear-gradient(to bottom, #0c0c0e, #09090b);
    padding: 3rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column .footer-logo-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    
    /* Home Page Gradient */
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFFFFF 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Sync Color with Laser Position */
    mask-image: linear-gradient(to top, black var(--print-p), transparent var(--print-p));
    -webkit-mask-image: linear-gradient(to top, black var(--print-p), transparent var(--print-p));
    
    filter: drop-shadow(0 0 10px rgba(190, 242, 100, 0.3));
    animation: footer-printing-cycle 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* The Laser Line */
.footer-column .footer-logo-title::after {
    content: '';
    position: absolute;
    left: -10%;
    width: 120%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 
        0 0 15px var(--primary-color), 
        0 0 30px var(--primary-color);
    bottom: var(--print-p, 0%);
    opacity: 0;
    animation: footer-laser-cycle 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes footer-printing-cycle {
    0%, 5% { --print-p: 0%; }
    40%, 60% { --print-p: 100%; }
    95%, 100% { --print-p: 0%; }
}

@keyframes footer-laser-cycle {
    0%, 5% { bottom: 0%; opacity: 0; }
    10% { opacity: 1; }
    40%, 60% { bottom: 100%; opacity: 1; }
    90% { opacity: 1; }
    95%, 100% { bottom: 0%; opacity: 0; }
}

@property --print-p {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

.footer-column p {
    color: var(--text-muted-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul a {
    color: var(--text-muted-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(190, 242, 100, 0.2);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   7. Floating CTA
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(190, 242, 100, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}
.floating-cta:hover {
    transform: scale(1.1);
}
.floating-cta svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   8. Page Specific Styles
   ========================================================================== */
.page-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 800px;
    margin: 0 auto;
}
.page-container h1, .page-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.page-container h1 { font-size: 2.5rem; }
.page-container h2 { font-size: 1.8rem; }
.page-container p { margin-bottom: 1rem; color: var(--text-muted-color); }
.page-container ul { list-style: disc; padding-left: 1.5rem; }
.page-container li { margin-bottom: 0.75rem; color: var(--text-muted-color); }

/* --- Grid Layouts for About & Pricing --- */
.atouts-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.atout-card, .pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.atout-card::before, .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(163, 230, 53, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.atout-card:hover, .pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(163, 230, 53, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.atout-card:hover::before, .pricing-card:hover::before {
    opacity: 1;
}

.atout-card h3, .pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.atout-card p, .pricing-card p {
    color: var(--text-muted-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Container Modernisation */
.cta-container {
    margin-top: 5rem;
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

.cta-container p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
}
.service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted-color); }

#process { background-color: var(--surface-color); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}
.process-step { text-align: center; position: relative; }
.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 1.5rem auto;
    z-index: 1;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted-color); font-size: 0.9rem; }


/* Realisations Page */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}
.filter-btn {
    background-color: var(--surface-color);
    color: var(--text-muted-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    font-weight: 600;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px var(--primary-glow);
  border-color: var(--primary-color);
}
.gallery-item > * {
  pointer-events: none;
}
/* Category Badge Neon */
.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(190, 242, 100, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 10px var(--primary-glow);
    transform: translateZ(30px);
}
.gallery-item-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    transform: translateZ(20px);
}
.gallery-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover .gallery-item-image-wrapper img {
    transform: scale(1.1);
}
.media-indicator {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(9, 9, 11, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transform: translateZ(35px);
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.media-indicator svg {
    width: 16px !important;
    height: 16px !important;
    display: block;
}
.gallery-item-info {
    padding: 1.5rem;
    transform: translateZ(40px);
}
.gallery-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.gallery-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted-color);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.gallery-item-price {
    font-weight: 600;
    color: var(--primary-color);
}
.gallery-item-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.gallery-item-time svg {
    width: 16px;
    height: 16px;
}

/* Skeleton Loader for gallery */
.skeleton-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.skeleton-img {
    aspect-ratio: 4 / 3;
    background-color: var(--border-color);
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}
.skeleton-content { padding: 1.5rem; }
.skeleton-title {
    height: 24px;
    width: 70%;
    background-color: var(--border-color);
    margin-bottom: 1rem;
    border-radius: 4px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}
.skeleton-text {
    height: 16px;
    background-color: var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: 4px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}
.skeleton-text:last-of-type { width: 80%; }
.skeleton-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.skeleton-price, .skeleton-time {
    height: 20px;
    width: 35%;
    background-color: var(--border-color);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}
@keyframes skeleton-pulse {
  0% { background-color: var(--border-color); }
  50% { background-color: #3f3f46; }
  100% { background-color: var(--border-color); }
}

/* Lightbox */
#lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(9,9,11,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex; justify-content: center; align-items: center;
    z-index: 100000;
    opacity: 0; visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#lightbox-overlay.active {
    opacity: 1; visibility: visible;
}
#lightbox-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#lightbox-overlay.active #lightbox-container {
    transform: scale(1);
}
#lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lightbox-content img,
#lightbox-content video,
#lightbox-content iframe {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 30px var(--primary-glow);
    border: 1px solid var(--glass-border);
}
#lightbox-content iframe {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
}
.close-lightbox {
    position: absolute;
    top: -50px; right: 0;
    width: 40px; height: 40px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100001;
    transition: transform 0.3s ease, color 0.3s ease;
}
.close-lightbox:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 60px; height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100001;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.lightbox-nav:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.visible {
    display: flex;
}
    display: block;
}
#lightbox-prev { left: -70px; }
#lightbox-next { right: -70px; }

/* Contact Page */
.contact-form {
    max-width: 700px;
    margin: 3rem auto 0 auto;
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.file-upload-wrapper {
    display: block;
    border: 2px dashed var(--border-color);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.file-upload-wrapper:hover {
    border-color: var(--primary-color);
}
.file-upload-wrapper input[type="file"] {
    display: none;
}
#file-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted-color);
}
.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}
.submit-btn:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
}

/* Live Stream Page */
.live-streams-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}
.stream-wrapper {
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.stream-wrapper h3 {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   9. Animations
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for grid items */
.atout-card:nth-child(2), .service-card:nth-child(2), .process-step:nth-child(2) { transition-delay: 0.1s; }
.atout-card:nth-child(3), .service-card:nth-child(3), .process-step:nth-child(3) { transition-delay: 0.2s; }
.atout-card:nth-child(4), .service-card:nth-child(4), .process-step:nth-child(4) { transition-delay: 0.3s; }


/* ==========================================================================
   10. Responsive Styles
   ========================================================================== */
@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
    }
    .menu-toggle span {
        width: 2rem;
        height: 0.2rem;
        background: var(--text-color);
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
        position: relative;
        transform-origin: 1px;
    }
    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg); }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-content { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-carousel {
        margin-top: 3rem;
        aspect-ratio: 16 / 10;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-column:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-column:first-child p {
        margin: 0 auto;
    }
    .footer-column .logo img {
        margin: 0 auto 1rem auto;
    }
    .social-icons {
        justify-content: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-grid::before { display: none; }

    .loader-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1rem; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .atouts-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .live-streams-grid { grid-template-columns: 1fr; }
    #lightbox-prev { left: 10px; }
    #lightbox-next { right: 10px; }
    
    .loader-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .loader-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}


/* --- Mobile Navigation --- */
.mobile-nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #fff);
    z-index: 10001;
    box-shadow: 0 0 15px rgba(190, 242, 100, 0.5);
    transition: width 0.1s ease-out;
}

/* --- Live Badge --- */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: 5px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    vertical-align: middle;
    text-transform: uppercase;
}
.live-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.testimonial-quote {
    color: var(--text-color);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
}
.author-info h4 { margin: 0; font-size: 1rem; }
.author-info p { margin: 0; font-size: 0.85rem; color: var(--text-muted-color); }

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}
.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}
.faq-question:hover { background: rgba(255, 255, 255, 0.03); }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted-color);
}
.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }

.mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav-overlay.open .mobile-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for li items */
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(6) { transition-delay: 0.6s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(7) { transition-delay: 0.7s; }

.mobile-nav ul a {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav ul a:hover,
.mobile-nav ul a.active {
    color: var(--primary-color);
}

/* --- Promo Banner --- */
#promo-banner-container {
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color);
    overflow: visible;
    height: 0;
    min-height: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 999;
    border-bottom: 1px solid var(--primary-glow);
}

#promo-banner-container.active {
    height: 50px;
}

.promo-banner {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 90s linear infinite;
    background: linear-gradient(90deg, #fff, var(--primary-color), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: marquee 90s linear infinite, shine 3s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* --- Promos Page --- */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.promo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 30px var(--primary-glow);
}

.promo-badge-animated {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--background-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 0 15px var(--primary-color);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 0 15px var(--primary-color); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px var(--primary-color); }
    100% { transform: scale(1); box-shadow: 0 0 15px var(--primary-color); }
}

.promo-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.promo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(190, 242, 100, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: saturate(1.5);
}

.promo-card:hover .promo-overlay {
    opacity: 1;
}

.view-details {
    background: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.promo-card:hover .view-details {
    transform: translateY(0);
}

.promo-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 800;
}

.promo-desc {
    color: var(--text-muted-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.promo-pricing {
    margin-bottom: 2rem;
}

.promo-price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.btn-promo-cta {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--background-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(190, 242, 100, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    text-decoration: none;
}

.btn-promo-cta:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
}

.btn-promo-cta svg {
    transition: transform 0.3s ease;
}

/* --- Partners Page --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(190, 242, 100, 0.1);
}

.partner-logo-wrapper {
    width: 100px;
    height: 100px;
    background: #18181b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.partner-desc {
    color: var(--text-muted-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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