/* ========================================
   DARK MODE MODERN THEME - Fregona 360°
   ======================================== */

:root {
  /* === DARK MODE COLORS === */
  --bg-primary: #0a0e17;
  --bg-secondary: #0f1419;
  --bg-surface: #1a1f2e;
  --bg-surface-hover: #232938;
  --bg-elevated: #252b3b;

  /* === TEXT COLORS === */
  --text-primary: #f9fafb;
  --text-secondary: #b4bcd0;
  --text-muted: #6b7280;
  --text-inverse: #0a0e17;

  /* === BRAND COLORS (modernizados) === */
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-primary-dark: #2563eb;
  --color-secondary: #10b981;
  --color-secondary-light: #34d399;
  --color-accent: #8b5cf6;
  --color-warning: #f59e0b;

  /* === BORDERS & DIVIDERS === */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.05);
  --color-border-focus: rgba(59, 130, 246, 0.5);

  /* === SHADOWS (más oscuras y dramáticas) === */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.6);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);

  /* === GLOW EFFECTS === */
  --glow-primary: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
  --glow-secondary: 0 0 20px rgba(16, 185, 129, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
  --glow-accent: 0 0 20px rgba(139, 92, 246, 0.3);

  /* === GRADIENTS MODERNOS === */
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --gradient-secondary: linear-gradient(135deg, #10b981 0%, #047857 100%);
  --gradient-hero: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  --gradient-surface: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);

  /* === LAYOUT === */
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 12px;
  --content-width: min(1120px, 92vw);
  --font-family: 'Poppins', sans-serif;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

/* ========================================
   ANNOUNCEMENT BANNER
   ======================================== */

.announcement {
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 50%, #065f46 100%);
  color: var(--text-primary);
  text-align: center;
  font-size: 0.95rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.announcement p {
  margin: 0;
  letter-spacing: 0.03em;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(10, 14, 23, 0.85);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.navbar__brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--color-primary-light);
  transition: color 0.3s ease;
}

.navbar__brand:hover {
  color: var(--color-primary);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
}

.navbar__links a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar__links a:hover,
.navbar__links a:focus-visible {
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-light);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.navbar__cta {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--glow-primary);
}

.navbar__cta:hover,
.navbar__cta:focus-visible {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section__subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

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

.hero {
  background: radial-gradient(ellipse at top, #1a1f2e 0%, #0a0e17 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__cta h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  margin: 0.4rem 0 0.8rem;
  line-height: 1.15;
  font-weight: 800;

  /* GRADIENT TEXT EFFECT */
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* GLOW EFFECT */
  filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.4))
          drop-shadow(0 0 40px rgba(167, 139, 250, 0.2));

  /* ANIMATIONS */
  animation: fadeInUp 0.8s ease-out forwards,
             pulseGlow 3s ease-in-out infinite alternate;
}

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

@keyframes pulseGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.4))
            drop-shadow(0 0 40px rgba(167, 139, 250, 0.2));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.6))
            drop-shadow(0 0 60px rgba(167, 139, 250, 0.3));
  }
}

.hero__subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  font-size: clamp(1rem, 2vw, 1.05rem);
}

.hero__price {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.price__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.price__original {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.7;
}

.price__original small {
  font-size: 0.85em;
}

.price__current {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-medium);
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3),
              0 0 30px rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  animation: pulse-price 2s ease-in-out infinite;
}

@keyframes pulse-price {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3),
                0 0 30px rgba(59, 130, 246, 0.2);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4),
                0 0 40px rgba(59, 130, 246, 0.3);
  }
}

.price__current small {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
}

.price__discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  animation: pulse-discount 2s ease-in-out infinite;
  align-self: flex-start;
}

@keyframes pulse-discount {
  0%, 100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.7);
    transform: scale(1.03);
  }
}

.price__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.price__label {
  font-weight: 600;
  color: var(--color-primary-light);
}

.price__stock {
  color: var(--color-warning);
  font-weight: 600;
  animation: pulse-stock 2s ease-in-out infinite;
}

@keyframes pulse-stock {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.1rem;
  display: grid;
  gap: 0.8rem;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

.hero__bullets li::before {
  content: '✔';
  color: var(--color-secondary-light);
  font-weight: 700;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__guarantee {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero__guarantee:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.hero__guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.hero__guarantee-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.8), rgba(110, 231, 183, 0.6), rgba(134, 239, 172, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-border 3s linear infinite;
}

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

.hero__guarantee--shipping .hero__guarantee-icon {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.25), rgba(110, 231, 183, 0.2));
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.6), 0 0 40px rgba(110, 231, 183, 0.3);
}

.hero__guarantee--shipping span {
  color: #6ee7b7;
}

.hero__guarantee--warranty .hero__guarantee-icon {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.25), rgba(110, 231, 183, 0.2));
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.6), 0 0 40px rgba(110, 231, 183, 0.3);
}

.hero__guarantee--warranty span {
  color: #6ee7b7;
}

.hero__guarantee img {
  flex-shrink: 0;
  filter: brightness(1.8) saturate(1.4) hue-rotate(-10deg);
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

/* ========================================
   MEDIA VIEWER
   ======================================== */

.media-viewer {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1f2e, #252b3b);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
}

.media-viewer img {
  border-radius: var(--radius-medium);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.media-viewer:hover img {
  transform: scale(1.02);
  filter: brightness(1) contrast(1.05);
}

.media-thumbs {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.media-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  padding: 0.35rem;
  background-color: var(--bg-secondary);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 1 / 1;
}

.media-thumb img {
  border-radius: calc(var(--radius-small) - 6px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.9);
}

.media-thumb:hover,
.media-thumb:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  outline: none;
  border-color: var(--color-primary);
}

.media-thumb.is-active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2),
              0 0 20px rgba(59, 130, 246, 0.3);
}

.media-thumb.is-active img {
  filter: brightness(1);
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */

.highlights {
  background: var(--bg-secondary);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.highlight-card {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  padding-bottom: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(59, 130, 246, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.highlight-card:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.4s ease, filter 0.4s ease;
}

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

.highlight-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.25rem);
  margin: 1.4rem 1.6rem 0.6rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.highlight-card p {
  margin: 0 1.6rem;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

.highlight-card:hover,
.highlight-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7),
              0 0 30px rgba(59, 130, 246, 0.2);
}

/* ========================================
   FEATURE SECTIONS
   ======================================== */

.feature-split {
  background: var(--bg-primary);
}

.feature-gallery {
  background: var(--bg-secondary);
}

.feature-split__layout,
.feature-gallery__layout,
.bundle__layout,
.order__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.feature-split__media img,
.feature-gallery__media img {
  border-radius: var(--radius-large);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  filter: brightness(0.95);
  transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
}

.feature-split__media:hover img,
.feature-gallery__media:hover img {
  transform: scale(1.03);
  filter: brightness(1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(59, 130, 246, 0.1);
}

.feature-split__content > h2,
.feature-gallery__content > h2,
.bundle__content > h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ORDER SECTION - SPECTACULAR HEADING */
.order__intro > h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;

  /* Vibrant Animated Gradient */
  background: linear-gradient(135deg, #34d399 0%, #3b82f6 30%, #a78bfa 60%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;

  /* Multi-layer Glow Effect */
  filter: drop-shadow(0 0 30px rgba(52, 211, 153, 0.6))
          drop-shadow(0 0 60px rgba(59, 130, 246, 0.4))
          drop-shadow(0 0 90px rgba(167, 139, 250, 0.3));

  /* Combined Animations */
  animation: gradient-shift-order 5s ease infinite,
             pulse-glow-order 3s ease-in-out infinite alternate,
             scale-pulse-order 4s ease-in-out infinite;

  /* Text Transformation */
  text-transform: none;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
}

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

@keyframes pulse-glow-order {
  from {
    filter: drop-shadow(0 0 30px rgba(52, 211, 153, 0.6))
            drop-shadow(0 0 60px rgba(59, 130, 246, 0.4))
            drop-shadow(0 0 90px rgba(167, 139, 250, 0.3));
  }
  to {
    filter: drop-shadow(0 0 45px rgba(52, 211, 153, 0.8))
            drop-shadow(0 0 85px rgba(59, 130, 246, 0.6))
            drop-shadow(0 0 120px rgba(167, 139, 250, 0.5));
  }
}

@keyframes scale-pulse-order {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.feature-split__content p,
.feature-gallery__content p,
.bundle__content p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

/* ORDER SECTION - ENHANCED SUBTITLE */
.order__intro > p {
  color: var(--text-primary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.feature-split__content ul {
  margin: 1.25rem 0 1.8rem;
  padding-left: 1.3rem;
  color: var(--text-secondary);
}

.feature-split__content ul li {
  margin-bottom: 0.5rem;
}

.feature-gallery__list {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.feature-gallery__list h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-gallery__list p {
  margin: 0;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge--highlight {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
  border: none;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
    transform: scale(1.02);
  }
}

/* ========================================
   VIDEO DEMO SECTION
   ======================================== */

.video-demo {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Desktop: Two-column layout with vertical video on right */
.video-demo__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.video-demo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(1rem, 2vw, 2rem);
}

.video-demo__text .section__title {
  text-align: left;
  margin-bottom: 1rem;
}

.video-demo__title {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.4));
  animation: gradient-shift 4s ease-in-out infinite;
  position: relative;
}

@keyframes gradient-shift {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.6));
  }
}

.video-demo__subtitle {
  color: var(--color-primary-light);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.video-demo__text .section__subtitle {
  text-align: left;
  margin-bottom: 0;
}

.video-demo__container {
  position: relative;
  max-width: min(500px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7),
              0 0 40px rgba(59, 130, 246, 0.2);
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, #1a1f2e, #252b3b);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-demo__container:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
              0 0 50px rgba(59, 130, 246, 0.3);
}

.video-demo__player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border-radius: var(--radius-large);
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.4s ease;
}

.video-demo__player:hover {
  filter: brightness(1) contrast(1.05);
}

/* Custom video controls styling */
.video-demo__player::-webkit-media-controls-panel {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 23, 0.8) 50%);
}

.video-demo__player::-webkit-media-controls-play-button,
.video-demo__player::-webkit-media-controls-current-time-display,
.video-demo__player::-webkit-media-controls-time-remaining-display {
  color: var(--text-primary);
}

/* Video plays automatically without overlay */

/* Tablet: Stack vertically */
@media (max-width: 768px) {
  .video-demo__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-demo__text {
    padding-right: 0;
  }

  .video-demo__text .section__title {
    text-align: center;
  }

  .video-demo__text .section__subtitle {
    text-align: center;
    margin-bottom: 0;
  }

  .video-demo__container {
    border-radius: var(--radius-medium);
    max-width: min(450px, 100%);
  }

  .video-demo__player {
    border-radius: var(--radius-medium);
    aspect-ratio: 4 / 5;
  }

  .video-demo__play-icon svg {
    width: 60px;
    height: 60px;
  }

  .video-demo__container:hover {
    transform: translateY(-4px) scale(1);
  }
}

/* Small mobile: Square aspect ratio */
@media (max-width: 480px) {
  .video-demo__player {
    aspect-ratio: 1 / 1;
  }

  .video-demo__play-icon svg {
    width: 50px;
    height: 50px;
  }
}

/* ========================================
   BUNDLE SECTION
   ======================================== */

.bundle {
  background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
}

.bundle-carousel {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #252b3b, #1a1f2e);
  border: 1px solid var(--color-border-light);
}

.bundle-carousel__slides {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.bundle-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  margin: 0;
}

.bundle-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.bundle-carousel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 2rem);
  filter: brightness(0.92) contrast(1.1);
}

.bundle-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  pointer-events: none;
  z-index: 10;
}

.bundle-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.bundle-carousel__dot:hover,
.bundle-carousel__dot:focus-visible {
  transform: scale(1.25);
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.bundle-carousel__dot.is-active {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  transform: scale(1.15);
  opacity: 1;
}

.bundle-carousel__dot:not(.is-active) {
  opacity: 0.6;
}

.bundle__content ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.bundle__content li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bundle__content li::before {
  content: '\2022';
  color: var(--color-primary-light);
  font-weight: 700;
  font-size: 1.2em;
  flex-shrink: 0;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  background: var(--bg-primary);
}

.testimonials > .container > h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonial-card {
  background: linear-gradient(135deg, #1a1f2e, #252b3b);
  border-radius: var(--radius-medium);
  padding: 1.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(139, 92, 246, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.testimonial-card:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7),
              0 0 20px rgba(139, 92, 246, 0.15);
}

.testimonial-card__rating {
  color: #fbbf24;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.testimonial-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  position: relative;
  z-index: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__footer img {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--color-border);
}

.testimonial-card__footer strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.testimonial-card__footer span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========================================
   FAQs SECTION
   ======================================== */

.faqs {
  background: var(--bg-secondary);
}

.faqs > .container > h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.faqs__grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faqs details {
  background: var(--bg-surface);
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faqs details[open],
.faqs details:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(59, 130, 246, 0.1);
}

.faqs summary {
  font-weight: 700;
  cursor: pointer;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  outline: none;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.faqs summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.faqs p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* ========================================
   ORDER SECTION
   ======================================== */

.order {
  background:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15), transparent 50%),
    linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.order::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.order__layout {
  position: relative;
  z-index: 2;
}

/* ORDER SECTION - ENHANCED BULLET LIST */
.order__intro ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 1rem;
}

.order__intro li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-primary);
  font-weight: 500;
  background: rgba(52, 211, 153, 0.05);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-small);
  border-left: 3px solid var(--color-secondary-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.order__intro li::before {
  content: '✓';
  color: var(--color-secondary-light);
  font-weight: 800;
  font-size: 1.3em;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}

.order__intro li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.order__intro li:hover {
  background: rgba(52, 211, 153, 0.1);
  border-left-color: var(--color-primary-light);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.2);
}

.order__intro li:hover::after {
  transform: translateX(100%);
}

.order__intro li strong {
  color: var(--color-secondary-light);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

/* Order Form */
.order__form {
  background: var(--bg-surface);
  border-radius: var(--radius-large);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 1.15rem;
  border: 1px solid var(--color-border-light);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
}

.form__field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.form__field input,
.form__field select,
.form__field textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  width: 100%;
  color: var(--text-primary);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  background-color: var(--bg-surface);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15),
              0 0 20px rgba(59, 130, 246, 0.2);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--text-muted);
}

.form__legal {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

#form-response {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem;
  border-radius: 8px;
}

#form-response.success {
  color: #34d399;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

#form-response.error {
  color: #f87171;
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: linear-gradient(180deg, #0a0e17 0%, #000000 100%);
  color: var(--text-secondary);
  padding: 2.8rem 0;
  border-top: 1px solid var(--color-border);
}

.footer__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer strong {
  color: var(--text-primary);
}

.footer__links {
  display: grid;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--text-secondary);
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  opacity: 1;
  color: var(--color-primary-light);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  outline: 2px solid rgba(59, 130, 246, 0.3);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer__legal {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer__legal a {
  transition: opacity 0.2s ease, color 0.3s ease;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  opacity: 1;
  color: var(--text-primary);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:focus-visible {
  outline: 3px solid var(--color-border-focus);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

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

.btn--ghost {
  background-color: transparent;
  color: var(--color-primary-light);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.btn--ghost:hover {
  background-color: rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--gradient-secondary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn--secondary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.btn--full {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  filter: grayscale(50%);
}

/* ========================================
   FLOATING CTA
   ======================================== */

.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  transform: translateY(100px);
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-medium);
  font-weight: 700;
  font-size: 1rem;
  z-index: 30;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(59, 130, 246, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: pulse-float 2.5s ease-in-out infinite;
}

@keyframes pulse-float {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(59, 130, 246, 0.7);
  }
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta__icon {
  font-size: 1.5rem;
  animation: bounce-icon 1.5s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.1);
  }
}

.floating-cta__content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
}

.floating-cta__text {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.floating-cta__price {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
}

.floating-cta:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
              0 0 60px rgba(59, 130, 246, 0.7);
}

.floating-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* ========================================
   SMART POP-UP MODAL
   ======================================== */

.smart-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.smart-popup.is-visible {
  display: flex;
  opacity: 1;
}

.smart-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.smart-popup__content {
  position: relative;
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3b 100%);
  border-radius: var(--radius-large);
  padding: clamp(2rem, 4vw, 2.8rem);
  max-width: min(460px, 90vw);
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9),
              0 0 60px rgba(59, 130, 246, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.smart-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.smart-popup__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: rotate(90deg) scale(1.1);
}

.smart-popup__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.smart-popup__emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

.smart-popup__title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.smart-popup__text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  margin: 0 0 0.8rem;
  line-height: 1.6;
}

.smart-popup__text strong {
  color: var(--color-secondary-light);
  font-weight: 700;
}

.smart-popup__subtext {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-muted);
  margin: 0 0 1.8rem;
  line-height: 1.5;
}

.smart-popup__cta {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
  }
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (max-width: 1024px) {
  .navbar__links {
    display: none;
  }

  .hero__layout,
  .feature-split__layout,
  .feature-gallery__layout,
  .bundle__layout,
  .order__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__media {
    order: -1;
  }

  .bundle__media,
  .feature-split__media,
  .feature-gallery__media {
    max-width: min(600px, 100%);
    margin: 0 auto;
  }

  .media-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 2.8rem 0;
  }

  .announcement {
    font-size: 0.85rem;
    padding: 0.65rem 0.5rem;
  }

  .navbar__content {
    padding: 0.7rem 0;
  }

  .navbar__brand {
    font-size: 1.05rem;
  }

  .media-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 0.6rem;
  }

  .highlight-card img {
    height: 200px;
  }

  .bundle__content {
    text-align: center;
  }

  .bundle__content ul {
    justify-items: center;
    gap: 0.6rem;
  }

  .bundle__content li {
    text-align: center;
    justify-content: center;
  }

  .bundle-carousel {
    margin: 0 auto 1.8rem;
  }

  .bundle-carousel__slides {
    aspect-ratio: 1 / 1;
  }

  .bundle-carousel__dots {
    bottom: 0.75rem;
  }

  .footer__layout {
    text-align: center;
    gap: 2rem;
  }

  .footer__links {
    justify-items: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  /* Order heading mobile adjustments */
  .order__intro > h2 {
    text-align: center;
  }

  .order__intro li {
    padding: 0.75rem 1rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }

  .order__intro li:hover {
    transform: translateX(3px);
  }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {
  .container {
    width: 94vw;
  }

  .announcement {
    font-size: 0.8rem;
  }

  .hero__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .media-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 0.5rem;
  }

  .floating-cta {
    font-size: 0.85rem;
    padding: 0.7rem 1.1rem;
    bottom: 1rem;
    right: 1rem;
  }

  .floating-cta__icon {
    font-size: 1.3rem;
  }

  .floating-cta__text {
    font-size: 0.9rem;
  }

  .floating-cta__price {
    font-size: 0.75rem;
  }
}

/* ========================================
   ACCESSIBILITY - REDUCE MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .floating-cta,
  .bundle-carousel__slide {
    transition: opacity 0.01ms !important;
  }

  .hero__cta h1,
  .order__intro > h2 {
    animation: none !important;
    filter: none !important;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .navbar,
  .floating-cta,
  .announcement {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }

  body {
    background: white;
    color: black;
  }
}

/* ========================================
   FORM RESPONSE MESSAGES (API Integration)
   ======================================== */

#form-response {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-small);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  animation: slideIn 0.3s ease-out;
  box-shadow: var(--shadow-md);
}

#form-response.success {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: #d1fae5;
  border: 2px solid #10b981;
}

#form-response.error {
  background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
  color: #fecaca;
  border: 2px solid #ef4444;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

#form-response.error {
  animation: slideIn 0.3s ease-out, shake 0.5s ease-in-out 0.3s;
}
