:root {
  /* Light Theme Colors */
  --bg-color: #F8FAFC;         /* Light slate/blue-ish white */
  --bg-color-light: #FFFFFF;
  --accent-1: #3B82F6;         /* Blue */
  --accent-2: #8B5CF6;         /* Purple */
  --accent-3: #EC4899;         /* Pink */
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  /* Dynamic animated background */
  background: linear-gradient(-45deg, #f0f4f8, #e2e8f0, #f8fafc, #e0e7ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.justify-center { justify-content: center; }

/* Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}

.glass-container {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-pad {
  padding: 4.5rem 0;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-weight: 400;
}

/* Top Notice Banner */
.top-notice {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
  background-size: 200% auto;
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1000;
  animation: shineBg 4s linear infinite;
}
.top-notice a {
  color: white;
  text-decoration: underline;
  margin-left: 0.5rem;
  font-weight: 800;
}
@keyframes shineBg {
  to { background-position: 200% center; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1350px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
  from { top: -100px; }
  to { top: 3.5rem; }
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .lab { color: var(--text-primary); }
.logo .leads { 
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2), var(--accent-3));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
}

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

.flask-icon {
  width: 28px;
  height: 28px;
  stroke: var(--accent-2);
}

/* Buttons */
.btn-primary, .btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2), var(--accent-3));
  background-size: 200% auto;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary-sm {
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
}

.btn-primary {
  padding: 1.2rem 2.5rem;
  font-size: 1.15rem;
  margin-top: 2.5rem;
}

.btn-primary:hover, .btn-primary-sm:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
  background-position: right center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1350px;
  margin: 0 auto;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-1);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-content h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content h1 span {
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2), var(--accent-3));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  transition: transform 0.1s ease-out; /* For parallax smoothness */
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-3));
  filter: blur(120px);
  opacity: 0.3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseBlob 8s infinite alternate;
}

@keyframes pulseBlob {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.2;}
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4;}
}

.floating-dashboard {
  width: 100%;
  max-width: 380px;
  padding: 2.5rem;
  animation: floatAdvanced 7s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.7);
}

@keyframes floatAdvanced {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-25px) rotate(3deg) scale(1.02); }
  66% { transform: translateY(10px) rotate(-1deg) scale(0.98); }
  100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dash-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

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

.dash-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.dash-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.dash-value.accent {
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dash-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dash-chart-container {
  height: 80px;
  margin-top: 2rem;
  width: 100%;
}

.dash-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.dash-svg .animated-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 3s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Pain points */
.pain-points h2 { font-size: 3rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.pain-card {
  padding: 3rem 2.5rem;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
}
.pain-card:hover { 
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.neon-border {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.neon-border::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
  z-index: -1;
  border-radius: 26px;
  transition: opacity 0.3s;
}

.icon-danger, .icon-success {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transform-origin: center;
  transition: transform 0.3s;
}

.pain-card:hover .icon-danger,
.pain-card:hover .icon-success {
  transform: scale(1.1);
}

.icon-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.icon-success {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.pain-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.pain-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Featured Card Override */
.pain-card.neon-border {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  border: none;
}
.pain-card.neon-border h3 {
  color: white;
}
.pain-card.neon-border p {
  color: rgba(255, 255, 255, 0.9);
}
.pain-card.neon-border .icon-success {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: none;
}

/* Services */
.services {
  position: relative;
  z-index: 1;
}
.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.services h2 { font-size: 3rem; }

.services-grid.minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card.minimal {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: none;
  transition: border-color 0.4s, transform 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.service-card.minimal:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248, 250, 252, 0.8));
}

.service-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-1);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2rem;
}

.service-card.minimal h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card.minimal p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Proofs */
.social-proof h2 { font-size: 3rem; }

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.proof-card {
  flex: 0 0 100%;
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.4s;
  margin: 0;
  box-sizing: border-box;
  border-radius: 24px;
}

@media (min-width: 768px) {
  .proof-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  z-index: 2;
}

.proof-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 10rem;
  color: rgba(59, 130, 246, 0.05);
  font-family: serif;
  line-height: 1;
}

.growth {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.proof-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.client-info strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--accent-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.carousel-btn:hover {
  background: var(--accent-1);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 10px;
  height: 10px;
  background: rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--accent-1);
  transform: scale(1.3);
}

/* CTA Final */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgxMzksIDkyLCAyNDYsIDAuMSkiLz48L3N2Zz4=');
  z-index: -1;
}

.cta-section h2 { font-size: 3.5rem; }

/* Footer */
.footer {
  padding: 5rem 5% 3rem;
  background: transparent;
}
.copyright {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Animations Trigger Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.dl-1 { transition-delay: 0.1s; }
.dl-2 { transition-delay: 0.2s; }
.dl-3 { transition-delay: 0.3s; }
.dl-4 { transition-delay: 0.4s; }

/* Logo Ticker */
.logo-ticker-section {
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: white;
  overflow: hidden;
  position: relative;
}
.logo-ticker-section::before,
.logo-ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.logo-ticker-section::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.logo-ticker-section::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.ticker-wrapper {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTicker 30s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.ticker-item {
  min-width: 140px;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  background: #f8fafc;
}

/* About Us Overhaul */
.about-grid {
  align-items: center;
}
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder-card {
  padding: 3rem 2rem 2rem;
  width: 100%;
  max-width: 360px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
.founder-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.founder-avatar svg {
  width: 60px;
  height: 60px;
  color: var(--accent-1);
}
.founder-info .role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.founder-info h4 {
  font-size: 1.5rem;
  margin-top: 0.3rem;
  color: var(--text-primary);
}

.floating-badge {
  position: absolute;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: floatAdvanced 6s ease-in-out infinite;
}
.floating-badge.badge-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}
.floating-badge.badge-2 {
  bottom: 15%;
  right: -20px;
  animation-delay: 3s;
}
.highlight-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-1);
  line-height: 1.2;
}
.highlight-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content h2 { 
  font-size: 3.2rem; 
  margin-bottom: 1.5rem; 
  line-height: 1.1;
}
.about-content p { 
  color: var(--text-secondary); 
  font-size: 1.15rem; 
  margin-bottom: 1.2rem; 
}
.about-differences {
  margin-top: 2rem;
  list-style: none;
}
.about-differences li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.about-differences strong {
  color: var(--text-primary);
  display: block;
}
.check-icon {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: left;
}

.faq-category {
  color: var(--accent-1);
  font-size: 1.05rem;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 1rem;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}
.faq-item.active {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}
.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-1);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}
.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 400px;
}
.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Scarcity Alert & Buttons */
.scarcity-alert {
  display: block;
  width: max-content;
  max-width: 90%;
  margin: 1.5rem auto 1.5rem;
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.scarcity-alert strong {
  font-weight: 800;
  color: #b45309;
}
.btn-primary.urgency {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
.btn-primary.urgency:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}

.hover-pulse {
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-layout, .pain-grid, .services-grid.minimal, .about-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    margin: 0 auto;
  }
  
  .navbar {
    width: 95%;
    top: 4.8rem;
    padding: 1rem;
  }

  .top-notice {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .hero {
    padding-top: 10rem;
  }

  h2 { font-size: 2.2rem !important; }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 0.8rem;
    top: 5rem;
  }
  .navbar .btn-primary-sm {
    width: 100%;
    margin-top: 0;
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .top-notice {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
  .hero {
    display: block;
    padding-top: 13rem;
    height: auto;
  }
}

/* Colorful Background Variation */
.colorful-bg {
  background: linear-gradient(135deg, #EC4899, #8B5CF6, #3B82F6);
  background-size: 200% 200%;
  animation: shineBgWeb 8s ease infinite;
  color: white;
  border-radius: 40px;
  margin: 2rem 5%;
  width: auto;
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

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

.colorful-bg h2, 
.colorful-bg p.subtitle, 
.colorful-bg .web-features li {
  color: white;
}
.colorful-bg .web-features li strong {
  color: white;
  font-weight: 800;
}

.colorful-bg .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Web Dev Section */
.web-dev .align-center {
  align-items: center;
  gap: 4rem;
}

.web-dev.colorful-bg h2 span {
  -webkit-text-fill-color: white;
  background: none;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}

.web-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.web-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}
.colorful-bg .web-features li {
  color: white;
}

.colorful-bg .web-features .icon-check {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.glass-browser {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.05);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s;
}
.glass-browser:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.browser-header {
  background: rgba(0,0,0,0.02);
  padding: 1rem;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.browser-header .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.browser-body {
  padding: 2rem;
}
.skeleton-nav {
  height: 20px;
  width: 40%;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  margin-bottom: 2rem;
}
.skeleton-hero {
  height: 120px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 12px;
  margin-bottom: 2rem;
}
.skeleton-cards {
  display: flex;
  gap: 1rem;
}
.skeleton-cards div {
  height: 80px;
  flex: 1;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
}
.skeleton-btn {
  height: 40px;
  width: 150px;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
  border-radius: 50px;
  margin-top: 2rem;
  opacity: 0.8;
}


/* Exit Intent Popup */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  width: 90%;
  max-width: 500px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  transform: translateY(50px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  border-radius: 24px;
}
.popup-overlay.active .popup-content {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.popup-close:hover {
  color: var(--text-primary);
}
.popup-content h3 {
  font-size: 1.6rem;
  margin: 1rem 0;
  color: var(--text-primary);
}
.popup-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popup-form input {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-size: 1rem;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.3s;
}
.popup-form input:focus {
  border-color: var(--accent-1);
}
.popup-form .btn-primary {
  width: 100%;
}
