/* ================ CREATIVE 2025 LANDING PAGE DESIGN ================ */

/* Modern Dynamic Background */
body {
  background: 
    linear-gradient(135deg, #000000 0%, #111111 25%, #1a1a1a 50%, #222222 75%, #111111 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow-x: hidden;
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

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

/* Floating Geometric Shapes */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.08) 3px, transparent 3px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 2px, transparent 2px),
    radial-gradient(circle at 30% 90%, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 200px 200px, 150px 150px, 300px 300px, 100px 100px;
  animation: floatShapes 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatShapes {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(360deg); }
}

/* Floating Interactive Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.enhanced-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* More compact how-it-works section */
#how-it-works.section {
  padding: 3rem 0;
}

#how-it-works .section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-dark {
  background-color: rgba(0, 0, 0, 0.2);
}

/* Grid Systems */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-large {
  gap: 4rem;
}

.gap-xlarge {
  gap: 5rem;
}

/* Modern Header Design */
.header {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Navigation Enhancements */
.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section with Creative Layout */
.hero {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  margin: 2rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem !important;
  font-weight: 900;
  color: #ffffff !important;
  background: transparent !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem !important;
  position: relative;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title::after {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -40px;
  font-size: 2rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.hero-subtitle {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem !important;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  width: 100%;
}

.hero-mockup {
  margin-top: 4rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Creative Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white !important;
  box-shadow: 
    0 10px 30px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(99, 102, 241, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: white !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white !important;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(37, 211, 102, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

/* Modern Glass Cards */
.glass-card,
.feature-card,
.metric-card {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.glass-card::before,
.feature-card::before,
.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.glass-card:hover,
.feature-card:hover,
.metric-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-card:hover::before,
.feature-card:hover::before,
.metric-card:hover::before {
  left: 100%;
}

.feature-card {
  text-align: left;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.demo-placeholder {
  /* Removed aspect-ratio: 9/16 - let videos size naturally */
  background-color: transparent;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.demo-placeholder video {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  display: block;
}

/* Video section optimizations */
.video-section {
  padding: 1rem 0.5rem;
}

.video-container {
  margin-top: 1rem;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* Removed aspect-ratio: 9/16 - let videos size naturally */
  background: transparent;
  border-radius: 0.75rem;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

/* Aligned video sizes - same height for all videos */
.video-container.video-small,
.video-container.video-medium,
.video-container.video-large {
  height: 320px;
}

.video-container.video-small video,
.video-container.video-medium video,
.video-container.video-large video {
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video demo content styling */
.video-demo-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.video-preview-header {
  margin-bottom: 1rem;
}

.video-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.video-preview-header h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.video-preview-body p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.video-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.video-metrics span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

video, iframe {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Backgrounds with Creative Patterns */
.use-cases {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') !important;
  border-radius: 30px;
  margin: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 5rem 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile video spacing improvements */
@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 2rem;
  }

  .video-container {
    max-width: 280px;
  }
  
  .enhanced-container {
    padding: 0 0.5rem;
  }
}

/* Card Spacing Improvements */
.glass-card.feature-card {
  margin: 0;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.glass-card.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.glass-card.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 280px;
}

.glass-card.metric-card {
  margin: 0 0rem;
  padding: 2rem 1.5rem;
}

.glass-card.testimonial-card {
  margin: 0 1rem;
  padding: 2rem 1.5rem;
}

.glass-card.cta-card {
  margin: 0 1rem;
  padding: 3rem 2rem;
}

.social-proof {
  background: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  border-radius: 30px;
  margin: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 4rem;
  margin-bottom: 5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.metric-card {
  text-align: center;
  padding: 2rem;
}

/* Creative Metrics Display */
.metric-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.metric-detail {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 5rem;
  margin-bottom: 6rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 20px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 1rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.testimonial-result {
  font-weight: 600;
  color: #ffffff;
}

.testimonial-company {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.testimonial-type {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 0 2rem;
}

.cta-card {
  padding: 3rem;
  border-radius: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-disclaimer {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

/* Creative FAQ Design */
.faq {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
  border-radius: 30px;
  margin: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 6rem 0;
}

.faq-title {
  font-size: 2.25rem;
  font-weight: 700;
  background: transparent !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 15px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: none !important;
  border: none !important;
  cursor: pointer;
  color: #ffffff !important;
}

.faq-button:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  padding-right: 1rem;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  transform-origin: center;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.625;
}

/* Enhanced Footer */
.footer {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 30px 30px 0 0;
  margin-top: 2rem;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.15s ease;
}

.social-link:hover {
  color: #ffffff;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
}

/* Additional Creative Elements */
.section-title {
  background: transparent !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

/* Pulse Animation for Highlighted Elements */
.highlighted-metric {
  animation: pulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2); }
}

/* Typography */
.gradient-text {
  background: linear-gradient(90deg, #4f46e5, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Mobile Menu */
.mobile-menu {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  display: none;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  transition: background-color 0.15s ease;
}

.mobile-menu-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-cta {
  padding: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-bottom: 1rem !important;
  }
  
  .hero-title::after {
    font-size: 1.5rem;
    right: -25px;
    top: -5px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
    padding: 0 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-align: center;
  }
  
  .hero, .use-cases, .social-proof, .faq {
    margin: 0.25rem;
    border-radius: 20px;
    padding: 2rem 0.75rem;
  }
  
  .hero {
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    min-height: auto;
    overflow: visible;
    height: auto;
  }
  
  .floating-element {
    display: none;
  }
  
  .header-content {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .logo-container {
    gap: 0.75rem;
  }
  
  .nav {
    display: none;
  }
  
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .btn-primary {
    padding: 0.65rem 1.4rem;
    font-size: 0.8rem;
  }
  
  .glass-card, .feature-card, .metric-card {
    margin: 0.5rem 0;
    padding: 1.5rem;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
  
  .metric-label {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-title {
    font-size: 1.875rem;
  }
  
  .faq-button {
    padding: 1rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 1rem;
  }
  
  /* Mobile video optimizations */
  .demo-placeholder {
    margin: 0.25rem 0 0.75rem 0;
    padding: 0.5rem;
  }
  
  .video-section {
    padding: 0.25rem 0;
  }
  
  .video-container {
    margin: 0;
    padding: 0;
  }
  
  .video-wrapper {
    margin: 0;
  }
  
  .glass-card.feature-card {
    margin: 0;
    padding: 1.5rem 0.75rem;
  }
}

/* Extra Small Mobile (phones in portrait) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-title::after {
    font-size: 1.25rem;
    right: -20px;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .hero, .use-cases, .social-proof, .faq {
    margin: 0.125rem;
    padding: 1.5rem 0.5rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
    min-height: auto;
    overflow: visible;
    height: auto;
  }

  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .glass-card, .feature-card, .metric-card {
    padding: 1.25rem;
  }

  .metric-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  /* Extra mobile video optimizations */
  .demo-placeholder {
    margin: 0.125rem 0 0.5rem 0;
    padding: 0.5rem;
  }

  .video-section {
    padding: 0.125rem 0;
  }

  .video-container {
    margin: 0;
    padding: 0;
  }

  .use-cases-grid {
    padding: 0 0.25rem;
    gap: 1.5rem;
  }

  .enhanced-container {
    padding: 0 0.25rem;
  }

  .glass-card.feature-card {
    margin: 0;
    padding: 1.25rem 0.5rem;
  }
}

/* Extra Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem !important;
  }

  .hero-title::after {
    display: none;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .btn-primary, .btn-whatsapp {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .faq-title {
    font-size: 1.25rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .metric-number {
    font-size: 1.75rem;
  }

  .metric-label {
    font-size: 0.85rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
  
  .hero-mockup {
    margin-top: 6rem;
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .footer-brand,
  .footer-section {
    text-align: left;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .cta-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .faq-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .faq-title {
    font-size: 3rem;
  }
}

/* Chat Mockup Styles */
.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.chat-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.user-avatar {
  background-color: #6366f1;
}

.bot-avatar {
  background-color: #8b5cf6;
}

.chat-message p {
  text-align: left;
  color: #e5e7eb;
  margin: 0;
}

.bot-response {
  text-align: left;
  flex: 1;
}

.demo-content {
  text-align: center;
  color: #ffffff;
}

.demo-content svg {
  margin: 0 auto 0.5rem auto;
}

/* Steps Section - Compact Design */
.steps-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.step-item {
  position: relative;
  padding: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.375rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

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

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

/* Animation Classes */
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.glass-card,
.feature-card,
.metric-card,
.testimonial-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.w-full {
  width: 100%;
}

/* Animation Classes */
.transition-all {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
}

/* Strikethrough for pricing comparison */
.strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.7em;
}

/* Workflow Section Styles */
.workflow-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 30px;
  margin: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 4rem 0;
}

.workflow-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.workflow-step {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.workflow-step h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.workflow-image-container {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.storyboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  aspect-ratio: 9/16;
}

.storyboard-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.workflow-video {
  aspect-ratio: 9/16;
}

.workflow-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  padding: 0 0.5rem;
}

/* Mobile adjustments for workflow */
@media (max-width: 768px) {
  .workflow-section {
    margin: 0.5rem;
    padding: 2rem 0.5rem;
  }

  .workflow-grid {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .workflow-step {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    padding: 0.25rem 0;
  }

  .workflow-image-container {
    max-height: 250px;
  }

  .storyboard-grid {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .workflow-section {
    margin: 0.25rem;
    padding: 1.5rem 0.25rem;
    border-radius: 20px;
  }

  .workflow-step {
    padding: 0.75rem;
    border-radius: 12px;
  }

  .workflow-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .workflow-step h3 {
    font-size: 0.95rem;
  }

  .workflow-step p {
    font-size: 0.8rem;
  }

  .workflow-image-container {
    max-height: 200px;
  }

  .storyboard-grid {
    max-height: 200px;
  }
}

@media (max-width: 360px) {
  .workflow-section {
    margin: 0.125rem;
    padding: 1rem 0.125rem;
    border-radius: 16px;
  }

  .workflow-step {
    padding: 0.5rem;
    border-radius: 10px;
  }

  .workflow-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .workflow-step h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .workflow-step p {
    font-size: 0.75rem;
  }

  .workflow-image-container {
    max-height: 180px;
  }

  .storyboard-grid {
    max-height: 180px;
  }
}

/* Before/After Comparison Slider */
.comparison-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 30px;
  margin: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 4rem 0;
}

.comparison-wrapper {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.comparison-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 15px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.comparison-before img {
  width: 400px;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.comparison-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.slider-line {
  flex: 1;
  width: 2px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  cursor: ew-resize;
}

.slider-button span {
  color: #333;
  font-size: 14px;
  font-weight: bold;
}

.comparison-label {
  position: absolute;
  bottom: 15px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.label-before {
  left: 15px;
}

.label-after {
  right: 15px;
}

.comparison-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* Mobile adjustments for comparison */
@media (max-width: 768px) {
  .comparison-section {
    margin: 0.5rem;
    padding: 2rem 0.5rem;
  }

  .comparison-wrapper {
    max-width: 320px;
  }

  .comparison-before img {
    width: 320px;
  }

  .slider-button {
    width: 40px;
    height: 40px;
  }

  .slider-button span {
    font-size: 12px;
  }

  .comparison-label {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

/* ================ LEAD CAPTURE & MOODBOARD SECTION ================ */

.lead-capture-section {
  padding: 4rem 0;
}

.lead-capture-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
}

/* Form Styles */
.lead-form-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.form-input {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

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

/* Loading State */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
  gap: 1rem;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #25D366;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-container h3 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

.loading-container p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Moodboard Selection */
.moodboard-container {
  text-align: center;
}

.moodboard-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: white;
}

.moodboard-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.moodboard-option {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.moodboard-option:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.moodboard-option.selected {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.moodboard-image-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.moodboard-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.moodboard-option:hover .moodboard-preview-image {
  transform: scale(1.05);
}

.moodboard-info {
  padding: 1rem;
  text-align: left;
}

.moodboard-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: white;
}

.moodboard-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}

.moodboard-select-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.moodboard-option.selected .moodboard-select-indicator {
  opacity: 1;
  transform: scale(1);
}

.moodboard-select-indicator svg {
  color: white;
  width: 20px;
  height: 20px;
}

/* WhatsApp CTA Container */
.whatsapp-cta-container {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
  animation: fadeIn 0.4s ease;
}

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

.selected-style-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.selected-style-text strong {
  color: #25D366;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* Form Validation States */
.form-input.error {
  border-color: #ff4d4d;
}

.form-error {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Mobile adjustments for lead capture */
@media (max-width: 768px) {
  .lead-capture-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .moodboard-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .moodboard-option {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 1fr;
  }

  .moodboard-image-container {
    aspect-ratio: 1;
    height: 100%;
  }

  .moodboard-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .moodboard-select-indicator {
    top: 50%;
    right: 12px;
    transform: translateY(-50%) scale(0.8);
  }

  .moodboard-option.selected .moodboard-select-indicator {
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 480px) {
  .lead-capture-section {
    padding: 2rem 0;
  }

  .lead-capture-card {
    padding: 1.25rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-input {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .moodboard-title {
    font-size: 1.5rem;
  }

  .moodboard-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .moodboard-option {
    grid-template-columns: 100px 1fr;
    border-radius: 12px;
  }

  .moodboard-info h4 {
    font-size: 0.95rem;
  }

  .moodboard-info p {
    font-size: 0.75rem;
  }

  .moodboard-select-indicator {
    width: 28px;
    height: 28px;
    right: 8px;
  }

  .moodboard-select-indicator svg {
    width: 16px;
    height: 16px;
  }

  .loading-spinner {
    width: 50px;
    height: 50px;
  }

  .loading-container h3 {
    font-size: 1.25rem;
  }

  .loading-container p {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .lead-capture-card {
    padding: 1rem;
    margin: 0 0.25rem;
    border-radius: 12px;
  }

  .form-label {
    font-size: 0.8rem;
  }

  .form-input {
    padding: 0.75rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .form-hint {
    font-size: 0.7rem;
  }

  .moodboard-title {
    font-size: 1.25rem;
  }

  .moodboard-subtitle {
    font-size: 0.8rem;
  }

  .moodboard-option {
    grid-template-columns: 80px 1fr;
    border-radius: 10px;
  }

  .moodboard-info {
    padding: 0.75rem;
  }

  .moodboard-info h4 {
    font-size: 0.85rem;
  }

  .moodboard-info p {
    font-size: 0.7rem;
  }

  .whatsapp-cta-container {
    padding: 1rem;
    border-radius: 12px;
  }

  .selected-style-text {
    font-size: 0.85rem;
  }

  .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* ================ EXPANDED CREATIVE PROCESS SECTION ================ */

.creative-step-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-badge {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-header h3 {
  font-size: 1.5rem;
  color: white;
  margin: 0;
}

.step-intro {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.step-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-caption {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Product Showcase */
.product-showcase {
  max-width: 300px;
}

.showcase-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Moodboard Showcase Grid */
.moodboard-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.moodboard-showcase-item {
  text-align: center;
}

.moodboard-showcase-item h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.moodboard-showcase-item img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.moodboard-showcase-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Storyboard Showcase Grid */
.storyboard-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.scene-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scene-image {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.scene-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* Final Video Showcase */
.final-video-showcase {
  width: 100%;
  max-width: 500px;
}

/* Mobile adjustments for creative process */
@media (max-width: 768px) {
  .creative-step-block {
    padding: 1.25rem;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .step-header h3 {
    font-size: 1.25rem;
  }

  .moodboard-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .storyboard-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .scene-label {
    font-size: 0.7rem;
    padding: 0.5rem;
  }
}

/* ================ CREATIVE PROCESS 2-ROW GRID ================ */

.creative-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-step {
  flex: 0 0 calc(50% - 0.75rem);
  text-align: center;
  max-width: 420px;
}

.timeline-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.timeline-content h4 {
  color: white;
  font-size: 1rem;
  margin: 0.75rem 0 0.25rem;
  font-weight: 600;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
}

/* Timeline Images - Consistent height across all steps */
.timeline-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

/* Timeline Moodboards - Side by side, matching height */
.timeline-moodboards {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  height: 350px;
}

.timeline-moodboard-img {
  width: auto;
  height: 100%;
  max-width: 48%;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timeline Storyboard - 2x3 grid, matching height */
/* Storyboard wrapper for proper overlay positioning */
.timeline-storyboard-wrapper {
  position: relative;
  height: 500px;
}

.timeline-storyboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  height: 100%;
}

.timeline-storyboard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Storyboard overlay for "6 Scenes" text - positioned at absolute bottom */
.storyboard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 3rem 1rem 1rem;
  text-align: center;
  border-radius: 0 0 4px 4px;
}

.storyboard-overlay h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.storyboard-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Timeline Video - Matching storyboard height */
.timeline-video-container {
  width: 100%;
  height: 500px;
}

.timeline-video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #000;
  object-fit: contain;
}

/* Timeline Arrow - Hidden in 2-row layout */
.timeline-arrow {
  display: none;
}

/* Tablet: 768px - 900px */
@media (max-width: 900px) {
  .creative-timeline {
    justify-content: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .timeline-step {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: 320px;
  }

  .timeline-badge {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .timeline-content {
    padding: 0.75rem;
  }

  .timeline-content h4 {
    font-size: 0.95rem;
  }

  .timeline-content p {
    font-size: 0.8rem;
  }

  .timeline-image {
    height: 300px;
  }

  .timeline-moodboards {
    height: 300px;
  }

  .timeline-storyboard-wrapper {
    height: 300px;
  }

  .timeline-video-container {
    height: 300px;
  }
}

/* Large mobile: 600px - 768px */
@media (max-width: 768px) {
  .timeline-step {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: 280px;
  }

  .timeline-image {
    height: 260px;
  }

  .timeline-moodboards {
    height: 260px;
  }

  .timeline-storyboard-wrapper {
    height: 260px;
  }

  .timeline-video-container {
    height: 260px;
  }
}

/* Medium mobile: 480px - 600px */
@media (max-width: 600px) {
  .timeline-step {
    flex: 0 0 calc(50% - 0.375rem);
    max-width: 220px;
  }

  .timeline-badge {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .timeline-content h4 {
    font-size: 0.85rem;
  }

  .timeline-content p {
    font-size: 0.7rem;
  }

  .timeline-image {
    height: 220px;
  }

  .timeline-moodboards {
    height: 220px;
  }

  .timeline-storyboard-wrapper {
    height: 220px;
  }

  .timeline-video-container {
    height: 220px;
  }
}

/* Small mobile: 360px - 480px */
@media (max-width: 480px) {
  .creative-timeline {
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }

  .timeline-step {
    flex: 0 0 calc(50% - 0.25rem);
    min-width: 145px;
  }

  .timeline-content {
    padding: 0.5rem;
  }

  .timeline-content h4 {
    font-size: 0.8rem;
    margin: 0.5rem 0 0.15rem;
  }

  .timeline-content p {
    font-size: 0.65rem;
  }

  .timeline-image {
    height: 180px;
  }

  .timeline-moodboards {
    height: 180px;
  }

  .timeline-storyboard-wrapper {
    height: 180px;
  }

  .timeline-video-container {
    height: 180px;
  }
}

/* Extra small mobile: < 360px - Stack to single column */
@media (max-width: 360px) {
  .creative-timeline {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .timeline-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .timeline-image {
    height: 250px;
  }

  .timeline-moodboards {
    height: 250px;
  }

  .timeline-storyboard-wrapper {
    height: 250px;
  }

  .timeline-video-container {
    height: 250px;
  }
}

/* ============================================
   ROI CALCULATOR SECTION STYLES
   ============================================ */

.roi-calculator-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 30px;
  margin: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(15px);
  padding: 4rem 0;
}

.roi-calculator-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.roi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
  .roi-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
}

.roi-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Input Styles */
.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-input-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.roi-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0 1rem;
  transition: all 0.3s ease;
}

.roi-input-wrapper:focus-within {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.roi-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.875rem 0;
  width: 100%;
}

.roi-input-wrapper input::-webkit-outer-spin-button,
.roi-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.roi-input-wrapper input[type=number] {
  -moz-appearance: textfield;
}

.input-prefix,
.input-suffix {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.input-prefix {
  margin-right: 0.5rem;
}

.input-suffix {
  margin-left: 0.5rem;
}

/* Results Styles */
.roi-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.roi-result-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.roi-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.roi-result-item.highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}

.roi-result-item.roi-highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.roi-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.roi-result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.roi-result-item.highlight .roi-result-value {
  color: #a78bfa;
}

.roi-roi-value {
  color: #4ade80 !important;
  font-size: 1.75rem;
}

.roi-result-detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA below calculator */
.roi-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

/* Boost Slider Styles */
.boost-slider-group {
  margin-top: 0.5rem;
}

.boost-slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.boost-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.boost-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.boost-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.boost-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.boost-value-display {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  min-width: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.boost-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Simplified Results Section */
.roi-results-simplified {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

.revenue-current,
.revenue-new {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.revenue-new {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.revenue-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.revenue-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.revenue-value.highlight {
  color: #4ade80;
  font-size: 2.25rem;
}

.revenue-boost-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
}

.boost-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.boost-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.boost-text span {
  color: #4ade80;
  font-weight: 700;
}

.revenue-increase {
  margin-top: 0.5rem;
}

.increase-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

/* Mobile adjustments for ROI calculator */
@media (max-width: 768px) {
  .roi-calculator-section {
    margin: 1rem;
    padding: 2rem 0;
  }

  .roi-result-value {
    font-size: 1.25rem;
  }

  .roi-roi-value {
    font-size: 1.5rem;
  }

  .revenue-value {
    font-size: 1.5rem;
  }

  .revenue-value.highlight {
    font-size: 1.75rem;
  }

  .increase-badge {
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
  }

  .boost-slider-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .boost-slider {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .roi-calculator-section {
    margin: 0.5rem;
    padding: 1.5rem 0;
    border-radius: 20px;
  }

  .roi-calculator-container {
    padding: 0 0.5rem;
  }

  .roi-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .roi-section-title {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .roi-input-group label {
    font-size: 0.8rem;
  }

  .roi-input-wrapper input {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .roi-result-label {
    font-size: 0.7rem;
  }

  .roi-result-value {
    font-size: 1.1rem;
  }

  .roi-roi-value {
    font-size: 1.25rem;
  }

  .revenue-label {
    font-size: 0.75rem;
  }

  .revenue-value {
    font-size: 1.25rem;
  }

  .revenue-value.highlight {
    font-size: 1.5rem;
  }

  .increase-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .boost-hint {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .roi-calculator-section {
    margin: 0.25rem;
    padding: 1rem 0;
    border-radius: 16px;
  }

  .roi-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .roi-section-title {
    font-size: 0.75rem;
  }

  .roi-input-group label {
    font-size: 0.75rem;
  }

  .roi-input-wrapper {
    padding: 0 0.75rem;
  }

  .roi-input-wrapper input {
    font-size: 0.9rem;
  }

  .input-prefix, .input-suffix {
    font-size: 0.75rem;
  }

  .roi-result-item {
    padding: 0.75rem;
  }

  .roi-result-value {
    font-size: 1rem;
  }

  .roi-roi-value {
    font-size: 1.1rem;
  }

  .revenue-value {
    font-size: 1.1rem;
  }

  .revenue-value.highlight {
    font-size: 1.25rem;
  }

  .increase-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .roi-cta-text {
    font-size: 0.85rem;
  }
}

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

/* Hide "See the Transformation" comparison section */
#comparison,
.comparison-section {
  display: none !important;
}