/* =====================
   RESET + VARS
===================== */
:root {
  --bg-color: #030305;
  --text-color: #ffffff;
  --accent-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  --premium-purple: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  --font-main: 'Outfit', sans-serif;
  --gold: #FFD700;
  --deep-dark: #050507;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================
   UTILITIES
===================== */
.section {
  padding: 100px 8%;
  position: relative;
}

.dark {
  background: #0a0b10;
}

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Gradients */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Badge */
.badge {
  background: rgba(108, 99, 255, 0.2);
  color: #8c85ff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(108, 99, 255, 0.3);
  margin-bottom: 20px;
  display: inline-block;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  transition: all 0.3s ease;
  border-radius: 100px;
}

.navbar.scrolled {
  background: rgba(5, 5, 7, 0.85);
  /* Slightly darker on scroll */
  top: 10px;
  width: 95%;
  padding: 10px 40px;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-nav {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: #fff;
  color: #000;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.15), transparent 60%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: var(--accent-gradient);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.btn-primary.glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Floating Phone */
.hero-phone-container {
  position: relative;
  z-index: 2;
  margin-right: 5%;
}

.hero-phone {
  width: 320px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

.float-card {
  position: absolute;
  padding: 15px;
  border-radius: 12px;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite alternate;
}

.card-1 {
  top: 20%;
  left: -40px;
  animation-delay: 0.5s;
}

.card-2 {
  bottom: 20%;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =====================
   SECTIONS & GRID
===================== */
h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-section {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Testimonials Marquee */
.testimonials-section {
  text-align: center;
  overflow: hidden;
  /* Hide the scrollbar */
  padding-bottom: 80px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.marquee-content {
  display: flex;
  gap: 40px;
  width: max-content;
  /* Ensure it takes full width of children */
  animation: scrollMarquee 40s linear infinite;
  /* Slower for readability */
  padding: 20px 0;
  /* Space for rotation effect */
}

/* Pause on hover for better UX */
.marquee-content:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 320px;
  /* Fixed width for smooth scroll */
  flex-shrink: 0;
  padding: 30px;
  text-align: center;
  /* Center content */
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  /* Slightly more transparent */
  transition: transform 0.4s ease, box-shadow 0.4s ease;

  /* 3D Rotation Effect hint */
  transform: perspective(1000px) rotateY(10deg);
  /* Default rotation */
}

/* Dynamic Rotation on Scroll (Simulation) */
/* Ideally we'd valid scroll pos in JS, but for pure CSS "moving" rotation we keep it simple or use keyframes if needed */
/* Let's animate the card itself slightly to simulate the "turning" effect as it moves? 
   Or just keep a static rotation that looks cool */

.testimonial-card:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
  /* Flatten on hover */
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.client-phone {
  height: 250px;
  /* Adjust based on image aspect ratio */
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.testimonial-card:hover .client-phone {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.9;
  min-height: 60px;
  /* Align heights */
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author span {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

.author small {
  display: block;
  font-weight: 400;
  opacity: 0.6;
  font-size: 0.75rem;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(108, 99, 255, 0.1);
  color: #8c85ff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.2);
  margin-top: auto;
  /* Push to bottom */
}

.client-link:hover {
  background: #6C63FF;
  color: #fff;
  transform: translateY(-2px);
}


@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move half way (since we duplicated) */
  }
}

/* Other sections adjustments */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.grid div {
  background: #12141a;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}

.grid div:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 99, 255, 0.3);
}

.list li {
  margin-bottom: 15px;
  padding-left: 30px;
}

.list li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 15px;
}

/* =====================
   PLANS & CTA
===================== */
.plans-section {
  padding: 120px 8%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 400px);
}

.plans-grid.single-plan {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 60px auto 0;
}

.detailed-plan {
  width: 100%;
  padding: 0 !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(5, 5, 7, 0.8) 100%) !important;
}

.plan-header {
  padding: 60px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent);
}

.badge-premium {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.price-container .currency {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 10px;
}

.price-container .amount {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.price-container .period {
  font-size: 1.2rem;
  opacity: 0.5;
  align-self: flex-end;
  margin-bottom: 15px;
}

.duration-badge {
  font-size: 1.1rem;
  opacity: 0.8;
  color: var(--gold);
}

.plan-body {
  padding: 60px 80px;
}

.feature-group {
  margin-bottom: 40px;
}

.feature-group h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold);
}

.feature-group h4 i {
  font-size: 1.2rem;
}

.feature-group ul {
  list-style: none;
  padding-left: 35px;
}

.feature-group li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  opacity: 0.8;
  position: relative;
}

.feature-group li::before {
  content: '→';
  position: absolute;
  left: -25px;
  color: var(--gold);
}

.sub-feature {
  margin: 20px 0 20px 35px;
}

.sub-feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 215, 0, 0.3);
}

.buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.buttons-grid span {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.buttons-grid span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.extras-list li {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 600;
}

.extras-list li::before {
  content: none !important;
}

.extras-list li i {
  color: var(--gold);
  margin-right: 10px;
}

.plan-footer {
  padding: 60px 80px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.big-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.4rem;
  padding: 25px 50px;
  border-radius: 100px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {

  .plan-body,
  .plan-footer {
    padding: 40px 30px;
  }

  .price-container .amount {
    font-size: 3.5rem;
  }

  .feature-group h4 {
    font-size: 1.2rem;
  }
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 100px 8%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
}


/* =====================
   RESPONSIVE
===================== */
/* =====================
   BENEFITS GRID
===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
}

.benefit-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  min-height: 50px;
  /* Align titles */
}

.benefit-card ul {
  padding-left: 0;
  list-style: none;
}

.benefit-card li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  opacity: 0.8;
  padding-left: 20px;
  position: relative;
}

.benefit-card li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

@media (min-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on large screens */
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    justify-content: center;
  }

  .hero-content {
    margin-bottom: 60px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-phone-container {
    margin-right: 0;
  }

  /* Zigzag Mobile Override */
  .zigzag-wrapper {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
  }

  .zigzag-wrapper.reverse {
    flex-direction: column !important;
  }

  .text-col,
  .img-col {
    width: 100%;
  }

  .premium-img {
    max-width: 80% !important;
    margin: 0 auto;
  }

  /* Mobile Menu Styles */
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex !important;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  /* General Layout */
  .section {
    padding: 60px 5%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .navbar {
    width: 100%;
    top: 0;
    border-radius: 0;
    padding: 15px;
  }

  .nav-links {
    top: 70px;
  }
}

/* =====================
   ZIGZAG LAYOUT & PREMIUM STYLES
   (Global Styles)
===================== */
.zigzag-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.zigzag-wrapper.reverse {
  flex-direction: row-reverse;
}

.text-col {
  flex: 1;
}

.img-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

/* Premium Image Styling */
.premium-img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(108, 99, 255, 0.25);
}

/* Enhancements for lists in text-col */
.text-col ul.list li {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Helper for "Por Que Bio" placeholder */
.img-col .glass {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-4 {
  padding: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* =====================
   NEW: HIGHLIGHT BOX
===================== */
.highlight-box {
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
}

.highlight-box p {
  margin: 0;
  font-size: 1.1rem;
}

/* =====================
   NEW: HAMBURGER BASE
===================== */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
  z-index: 1001;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =====================
   FEATURES GRID (NEW)
===================== */
:root {
  --corporate-yellow: #FFC400;
}

.features-section {
  padding: 100px 8%;
  background: var(--bg-color);
}

.features-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .features-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .features-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid-container {
    grid-template-columns: 1fr;
  }
}

.feature-module {
  background: #12141a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-module:nth-child(1) {
  animation-delay: 0.0s;
}

.feature-module:nth-child(2) {
  animation-delay: 0.08s;
}

.feature-module:nth-child(3) {
  animation-delay: 0.16s;
}

.feature-module:nth-child(4) {
  animation-delay: 0.24s;
}

.feature-module:nth-child(5) {
  animation-delay: 0.32s;
}

.feature-module:nth-child(6) {
  animation-delay: 0.40s;
}

.feature-module:nth-child(7) {
  animation-delay: 0.48s;
}

.feature-module:nth-child(8) {
  animation-delay: 0.56s;
}

.feature-module:nth-child(9) {
  animation-delay: 0.64s;
}

.feature-module:nth-child(10) {
  animation-delay: 0.72s;
}

.feature-module:nth-child(11) {
  animation-delay: 0.80s;
}

.feature-module:nth-child(12) {
  animation-delay: 0.88s;
}

.feature-module:nth-child(13) {
  animation-delay: 0.96s;
}

.feature-module:nth-child(14) {
  animation-delay: 1.04s;
}

.module-image {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  background: #2a2c35;
}

.module-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.module-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #fff;
}

.module-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 15px;
  color: #fff;
}

.feature-module.exclusive {
  background: var(--corporate-yellow);
  color: #000;
  border: none;
}

.feature-module.exclusive h3,
.feature-module.exclusive p {
  color: #000;
  opacity: 1;
}

.exclusive-badge {
  display: inline-block;
  background: #000;
  color: var(--corporate-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  align-self: flex-start;
}

@media (min-width: 901px) {
  .feature-module:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .feature-module:hover .module-image img {
    transform: scale(1.05);
  }
}

.feature-module {
  will-change: transform, opacity;
  backface-visibility: hidden;
}