/* ========================================
   DLYNSTUDIO - Premium Luxury
   Monochrome & Gold Theme
   ======================================== */

:root {
  /* Colors - Rich Black & Gold Luxury Theme */
  --bg-primary: #0a0908;
  --bg-secondary: #141210;
  --bg-card: #1a1816;
  --text-primary: #fefefe;
  --text-secondary: #b8b5b2;
  --text-muted: #7a7775;

  /* Luxury Gold Accent */
  --accent: #d4af37;
  --accent-hover: #e8c866;
  --accent-glow: rgba(212, 175, 55, 0.25);
  --accent-muted: #b8973a;

  --border-color: #2a2725;
  --border-glow: rgba(212, 175, 55, 0.1);

  /* Fonts - Distinctive Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Headings use Display Font */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

/* ========== NOISE OVERLAY FOR ATMOSPHERE ========== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========== RADIAL GLOW BACKGROUND ========== */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 100vh;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ========== STICKY PROMO STRIPE ========== */
.promo-stripe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
  background-size: 200% 100%;
  animation: shimmerGradient 3s ease infinite;
  padding: 6px 16px;
  text-align: center;
}

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

  50% {
    background-position: 0% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.promo-stripe-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-text {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-text strong {
  font-weight: 800;
  font-size: 1rem;
}

.promo-badge {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-cta {
  background: #000;
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.promo-cta:hover {
  background: #1a1a1a;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .promo-stripe {
    padding: 6px 10px;
  }

  .promo-stripe-content {
    gap: 8px;
  }

  .promo-text {
    font-size: 0.75rem;
    gap: 6px;
  }

  .promo-text strong {
    font-size: 0.8rem;
  }

  .promo-badge {
    display: none;
  }

  .promo-cta {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

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

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== STAGGERED FADE-IN ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(212, 175, 55, 0.15);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTION BACKGROUNDS ========== */
/* Alternating backgrounds for visual separation */
.section-dark {
  background-color: var(--bg-primary);
  /* #1c1917 */
}

.section-darker {
  background-color: #0f0d0c;
  /* Slightly darker for contrast */
}

.section-accent-subtle {
  background-color: rgba(212, 175, 55, 0.03);
  /* Very subtle amber tint */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Hero Award Badge */
.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.laurel {
  width: 55px;
  height: 45px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.laurel-left {
  object-position: left center;
}

.laurel-right {
  object-position: right center;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.badge-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.badge-star {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(51%) saturate(1000%) hue-rotate(358deg) brightness(101%) contrast(96%);
}

@media (max-width: 768px) {
  .hero-badge {
    gap: 8px;
    margin-bottom: 20px;
  }

  .laurel {
    width: 36px;
  }

  .badge-text {
    font-size: 0.8rem;
  }

  .badge-star {
    width: 11px;
    height: 11px;
  }
}

/* 1. Heading */
.hero-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  max-width: 900px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Highlight text - Gradient with glow */
.highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

/* 2. Description */
.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

/* 3. Image Placeholder (Now just a container for the real image) */
.hero-image-placeholder {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;
  position: relative;
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-image-placeholder {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    max-width: none;
    margin-bottom: 24px;
  }

  .hero-image-placeholder img {
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
}



.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  z-index: 1;
}

.placeholder-icon {
  font-size: 48px;
  opacity: 0.6;
}

/* 4. CTA Button */
.hero-cta-wrapper {
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

/* 5. Trust / Used By */
.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  margin-left: -12px;
  background-color: #333;
  object-fit: cover;
  transition: transform 0.2s;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* ========== SECTION 3: COMPARISON (Problem vs Solution) ========== */
.comparison-section {
  padding: 50px 0;
  background-color: var(--bg-primary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card Common */
.comparison-card {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: var(--bg-card, #292524);
  /* Fallback */
  height: 100%;
}

/* Problem Card */
.problem-card {
  background: rgba(239, 68, 68, 0.05);
  /* Red tint */
  border-color: rgba(239, 68, 68, 0.2);
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.problem-icon {
  font-size: 2rem;
}

.problem-title {
  color: #ef4444;
  /* Red-500 */
  font-size: 1.5rem;
  font-weight: 700;
}

/* Solution Card */
.solution-card {
  background: rgba(34, 197, 94, 0.05);
  /* Green tint */
  border-color: rgba(34, 197, 94, 0.2);
  position: relative;
  overflow: hidden;
}

/* Optional glowing effect for solution */
.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.solution-icon {
  font-size: 2rem;
}

.solution-title {
  color: #22c55e;
  /* Green-500 */
  font-size: 1.5rem;
  font-weight: 700;
}

/* List Items */
.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.item-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item-icon {
  color: #ef4444;
}

.solution-item-icon {
  color: #22c55e;
}

/* Mobile Stack */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .comparison-card {
    padding: 32px 24px;
  }
}

/* ========== WHO IS THIS FOR SECTION ========== */
.who-section {
  padding: 60px 0;
}

.who-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.who-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.who-tag:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.who-tag-icon {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .who-list {
    gap: 10px;
  }

  .who-tag {
    padding: 10px 14px;
    font-size: 0.8rem;
    flex: 0 0 calc(50% - 5px);
    justify-content: center;
  }

  .who-tag-icon {
    font-size: 0.9rem;
  }
}

/* ========== HOW IT WORKS SECTION (Redesigned) ========== */
.how-it-works {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.step-num-large {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
}

.step-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }

  .steps-grid {
    gap: 20px;
  }

  .step-card {
    padding: 32px 24px;
  }
}

/* ========== GLOBAL SECTION STYLES ========== */
.section-header {
  margin-bottom: 32px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.section-cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.2s ease;
}

.section-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ========== SHOWCASE IMAGE SECTION ========== */
.showcase-section {
  padding: 50px 0;
  text-align: center;
}

.showcase-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 32px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
}

.showcase-image-placeholder {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.showcase-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .showcase-section {
    padding: 40px 0;
  }

  .showcase-section .container {
    padding: 0 12px;
  }

  .showcase-image-placeholder {
    border-radius: 6px;
  }
}

/* ========== VIDEO SECTION ========== */
.video-section {
  padding: 60px 0;
  text-align: center;
}

.video-section .section-header {
  margin-bottom: 32px;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }

  .video-section .container {
    padding: 0 12px;
  }

  .video-wrapper {
    border-radius: 6px;
  }
}

/* ========== ARTISTIC GALLERY SECTION ========== */
.artistic-section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.artistic-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.artistic-section .section-subtitle {
  max-width: 600px;
}

/* Scroll fade indicator */
.artistic-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 300px;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
  pointer-events: none;
  z-index: 5;
}

.artistic-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 40px 30px;
  -webkit-overflow-scrolling: touch;
}

/* Hide Scrollbar */
.artistic-gallery::-webkit-scrollbar {
  display: none;
}

.artistic-gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.artistic-item {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.artistic-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.artistic-item:hover {
  transform: scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
  .artistic-item {
    width: 260px;
  }

  .artistic-gallery {
    padding: 10px 20px 20px;
    gap: 14px;
  }

  .artistic-section::after {
    width: 40px;
    height: 200px;
  }
}

/* ========== FEATURE ROW SECTIONS (Alternating) ========== */
.feature-row {
  padding: 60px 0;
}

.feature-row-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Reverse layout for alternating sections */
.feature-row.reverse .feature-row-content {
  direction: rtl;
}

.feature-row.reverse .feature-row-content>* {
  direction: ltr;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-primary);
}

.feature-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-image-placeholder,
.feature-image {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  /* Fallback for placeholders */
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== PRODUCT CAROUSEL SECTION ========== */
.product-carousel-section {
  padding: 60px 0 40px;
  text-align: center;
}

.carousel-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 12px;
}

.carousel-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.product-carousel-wrapper {
  position: relative;
  width: 100%;
}

.product-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 2%;
  -webkit-overflow-scrolling: touch;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-carousel img {
  flex: 0 0 98%;
  width: 98%;
  height: auto;
  scroll-snap-align: center;
  border-radius: 8px;
  display: block;
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-nav:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Dot Indicators - Minimal */
.product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.product-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .product-carousel-section {
    padding: 40px 0 30px;
  }

  .carousel-heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    padding: 0 16px;
  }

  .carousel-subtitle {
    margin-bottom: 20px;
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .product-carousel {
    padding: 0 2%;
    gap: 8px;
  }

  .product-carousel img {
    flex: 0 0 96%;
    width: 96%;
  }

  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }
}

.feature-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 2.5s infinite;
}

/* Mobile: Stack vertically, text always first */
@media (max-width: 768px) {
  .feature-row {
    padding: 60px 0;
  }

  .feature-row-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.reverse .feature-row-content {
    direction: ltr;
  }

  .feature-heading {
    text-align: center;
  }

  .feature-description {
    text-align: center;
  }
}

/* ========== BEFORE/AFTER COMPARISON GALLERY ========== */
.comparison-gallery-section {
  padding: 40px 0;
}

.comparison-gallery-section .section-header {
  text-align: center;
  margin-bottom: 20px;
}

.comparison-gallery-section .container {
  max-width: 100%;
  padding: 0 16px;
}

/* Vertical Stacked Gallery */
.comparison-image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-image-stack img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .comparison-gallery-section {
    padding: 30px 0;
  }

  .comparison-gallery-section .container {
    padding: 0 8px;
  }

  .comparison-image-stack {
    gap: 10px;
  }

  .comparison-image-stack img {
    border-radius: 4px;
  }
}

/* ========== BEFORE/AFTER COMPARISON CAROUSEL ========== */
.comparison-carousel-section {
  padding: 40px 0;
}

.comparison-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 16px;
}

/* Slides Container */
.comparison-slides {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Individual Slide */
.comparison-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-slide.active {
  display: block;
  opacity: 1;
}

/* Comparison Slider (the before/after component) */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  border: 1px solid var(--border-color);
  user-select: none;
  -webkit-user-select: none;
  background: var(--bg-secondary);
}

.comparison-slider img,
.comparison-slider .before-image,
.comparison-slider .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-slider .before-image {
  z-index: 1;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.comparison-slider .after-image {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.comparison-slider .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  z-index: 10;
  transform: translateX(-50%);
  cursor: col-resize;
  pointer-events: none;
}

.comparison-slider .slider-handle::before {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Arrow Buttons - Minimal Style */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 20;
  opacity: 0.7;
}

.carousel-arrow-left {
  left: 12px;
}

.carousel-arrow-right {
  right: 12px;
}

.carousel-arrow:hover {
  background: var(--accent);
  color: #000;
  opacity: 1;
}

/* Dot Indicators - Smaller */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Labels */
.comparison-labels {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .comparison-carousel-section {
    padding: 30px 0;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .carousel-arrow-left {
    left: 8px;
  }

  .carousel-arrow-right {
    right: 8px;
  }

  .comparison-slider .slider-handle::before {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .comparison-labels {
    font-size: 0.75rem;
  }
}

/* ========== GALLERY SECTION (Masonry Grid) ========== */
.gallery-section {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Make some items span 2 rows for masonry effect */
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Gallery placeholder for now */
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .comparison-slider-section {
    padding: 60px 0;
  }

  .gallery-section {
    padding: 60px 0;
  }
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose-section {
  padding: 60px 0;
  text-align: left;
}

.why-choose-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.why-choose-list .check-icon {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-heading {
    text-align: center;
  }

  .why-choose-list {
    gap: 14px;
  }

  .why-choose-list li {
    font-size: 1rem;
  }
}

/* ========== SECTION CTA BUTTON ========== */
.section-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.section-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

@media (max-width: 768px) {
  .section-cta {
    margin: 30px auto 0;
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

.demo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Product Input Box */
.demo-product {
  width: 180px;
  height: 200px;
  background: var(--bg-secondary);
  border: 2px dashed var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.demo-product-icon {
  font-size: 3rem;
}

.demo-product-label {
  background: var(--accent);
  color: #000;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Arrow */
.demo-arrow {
  font-size: 3rem;
  color: var(--text-muted);
  animation: bounce-right 1.5s ease-in-out infinite;
}

@keyframes bounce-right {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

/* AI Result Box */
.demo-result {
  width: 320px;
  height: 400px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.demo-result-header {
  padding: 12px 16px;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.demo-result-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .demo-container {
    flex-direction: column;
    gap: 24px;
  }

  .demo-arrow {
    transform: rotate(90deg);
    animation: bounce-down 1.5s ease-in-out infinite;
  }

  @keyframes bounce-down {

    0%,
    100% {
      transform: rotate(90deg) translateX(0);
    }

    50% {
      transform: rotate(90deg) translateX(10px);
    }
  }

  .demo-product {
    width: 160px;
    height: 180px;
  }

  .demo-result {
    width: 280px;
    height: 350px;
  }
}

/* ========== STICKY BOTTOM CTA BAR ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.95) 0%, rgba(15, 13, 12, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sticky-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Tagline */
.sticky-tagline {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

/* Benefits */
.sticky-benefits {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.sticky-benefit-icon {
  color: #22c55e;
  font-size: 0.9rem;
}

/* CTA Button */
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37 0%, #b8973a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
  .sticky-cta {
    padding: 10px 12px;
  }

  .sticky-cta-content {
    flex-direction: row;
    gap: 12px;
    text-align: left;
    justify-content: center;
    align-items: center;
  }

  .sticky-left {
    display: none;
  }

  .sticky-cta-btn {
    width: auto;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .sticky-cta {
    padding: 8px 10px;
  }

  .sticky-cta-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  padding: 60px 0;
  text-align: center;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 4px;
}

.price-period {
  display: block;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  color: #22c55e;
  font-size: 1.1rem;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #d4af37 0%, #b8973a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 18px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 36px 24px;
    max-width: 100%;
  }

  .pricing-cta {
    font-size: 1rem;
    padding: 16px 24px;
  }

  .price-amount {
    font-size: 3rem;
  }
}

.pricing-guarantee {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== MINIMAL PRICING SECTION ========== */
.pricing-section {
  padding: 60px 0;
}

.pricing-card-minimal {
  max-width: 380px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-top {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-amount .amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-list li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.pricing-trust {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .pricing-card-minimal {
    margin: 0 16px;
    padding: 32px 24px;
  }

  .pricing-amount .amount {
    font-size: 3.2rem;
  }
}

/* ========== CUSTOMER RESULTS GALLERY ========== */
.customer-results-section {
  padding: 50px 0;
}

.customer-results-section .section-header {
  text-align: center;
  margin-bottom: 24px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

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

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #0f0d0c;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Extra padding at bottom for sticky CTA bar */
.main-content {
  padding-bottom: 100px;
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 170px;
  right: 20px;
  width: 300px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.whatsapp-popup.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-popup-header {
  background: #25D366;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.whatsapp-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.whatsapp-popup-body {
  padding: 20px;
}

.whatsapp-popup-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.whatsapp-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 12px;
}

.whatsapp-input:focus {
  outline: none;
  border-color: #25D366;
}

.whatsapp-submit {
  width: 100%;
  padding: 12px;
  background: #25D366;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.whatsapp-submit:hover {
  background: #20bd5a;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}