/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Neon Colors */
  --neon-cyan: #00fff2;
  --neon-pink: #ff0080;
  --neon-purple: #b026ff;
  --neon-blue: #0066ff;
  --neon-green: #00ff88;
  
  /* Dark Colors */
  --dark-bg: #0a0a0f;
  --dark-card: #1a1a2e;
  --dark-text: #e0e0e0;
  --dark-text-muted: #a0a0b0;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  /* Spacing */
  --section-padding: 6rem 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-cyan), transparent);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--neon-pink), transparent);
  top: 40%;
  right: -10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-purple), transparent);
  bottom: -20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(30px, 50px) scale(1.05); }
}

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

/* ===== GLASS CARD EFFECT ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 48px rgba(0, 255, 242, 0.1);
}

/* ===== NAVIGATION ===== */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  position: relative;
  font-size: 1.75rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--dark-text);
  z-index: 1;
}

.logo-text {
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: logoGlow 5s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { 
      filter: drop-shadow(0 0 8px var(--neon-cyan));
      background-position: 0% 50%;
  }
  33% { 
      filter: drop-shadow(0 0 8px var(--neon-pink));
      background-position: 50% 50%;
  }
  66% { 
      filter: drop-shadow(0 0 8px var(--neon-purple));
      background-position: 100% 50%;
  }
}

/* ===== BUTTONS ===== */
.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-glass span {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--dark-bg);
  box-shadow: 0 4px 24px rgba(0, 255, 242, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 255, 242, 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--dark-text);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 255, 242, 0.1);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.btn-primary:hover .btn-glow {
  transform: translate(-50%, -50%) scale(2);
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

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

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--dark-text-muted);
  margin-bottom: 3rem;
}

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden; /* FIX: Prevents parallax overlap */
  z-index: 1; /* FIX: Prevents .pain-section from scrolling over */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--dark-text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--dark-text-muted);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
}

.hero-visual {
  position: relative;
}

.sample-site-container {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Browser Chrome */
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(26, 26, 46, 0.8);
  border-bottom: 1px solid var(--glass-border);
}

.browser-dots {
  display: flex;
  gap: 0.4rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-text-muted);
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--dark-text-muted);
  text-align: center;
}

/* Sample Website Styles */
.sample-site {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
  padding: 0;
  min-height: 400px;
}

.sample-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sample-logo {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sample-menu {
  display: flex;
  gap: 1.5rem;
}

.sample-link {
  color: var(--dark-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.sample-link:hover,
.sample-link.active {
  color: var(--neon-cyan);
}

.sample-hero {
  text-align: center;
  padding: 3rem 2rem;
}

.sample-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sample-subtitle {
  font-size: 1rem;
  color: var(--dark-text-muted);
  margin-bottom: 1.5rem;
}

.sample-btn {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--dark-bg);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 255, 242, 0.3);
}

.sample-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 242, 0.5);
}

.sample-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}

.sample-feature {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.sample-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 255, 242, 0.3);
  transform: translateY(-3px);
}

.sample-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.sample-feature h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
}

/* Chatbot Widget */
.chatbot-widget {
  position: absolute;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.chatbot-widget.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.chatbot-info {
  flex: 1;
}

.chatbot-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-text);
}

.chatbot-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--dark-text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chatbot-messages {
  padding: 1rem;
  height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 242, 0.3);
  border-radius: 3px;
}

.chat-message {
  display: flex;
  animation: slideIn 0.3s ease;
}

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

.chat-message.bot {
  justify-content: flex-start;
}

.chat-message.user {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.chat-message.bot .message-bubble {
  background: rgba(0, 255, 242, 0.1);
  border: 1px solid rgba(0, 255, 242, 0.2);
  color: var(--dark-text);
}

.chat-message.user .message-bubble {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--dark-bg);
}

.chatbot-input {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--glass-border);
}

.chatbot-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  color: var(--dark-text);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--neon-cyan);
}

.chatbot-input input::placeholder {
  color: var(--dark-text-muted);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-send-btn:hover {
  transform: scale(1.05);
}

.chat-send-btn svg {
  width: 18px;
  height: 18px;
  color: var(--dark-bg);
}

/* Floating Chat Button */
.chat-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 255, 242, 0.4);
  transition: all 0.3s ease;
  z-index: 11;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 255, 242, 0.6);
}

.chat-icon {
  width: 28px;
  height: 28px;
  color: var(--dark-bg);
}

.chat-notification {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #ff0080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.mockup-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple), var(--neon-cyan));
  opacity: 0.2;
  filter: blur(60px);
  animation: rotate 10s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.interactive-label {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

.interactive-label svg {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
}

/* ===== PAIN SECTION ===== */
.pain-section {
  padding: var(--section-padding);
}

.pain-content {
  padding: 4rem;
  text-align: center;
}

.pain-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.pain-subtext {
  color: var(--dark-text-muted);
  font-weight: 400;
}

.solution-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.solution-subtext {
  color: var(--dark-text);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem;
  position: relative;
}

.quote-icon {
  width: 48px;
  height: 48px;
  color: var(--neon-cyan);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: var(--section-padding);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--dark-bg);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-text {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-padding);
}

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

.pricing-card {
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 12px 48px rgba(0, 255, 242, 0.2);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: var(--dark-bg);
  padding: 0.5rem 1.5rem;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-period {
  color: var(--dark-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-description {
  color: var(--dark-text-muted);
  margin-bottom: 2rem;
  min-height: 80px;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-padding);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
}

.process-arrow {
  flex-shrink: 0;
}

.process-arrow svg {
  width: 32px;
  height: 32px;
  color: var(--neon-cyan);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
}

.about-content {
  padding: 4rem;
  text-align: center;
}

.about-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ===== CTA & FORM (REMOVED) ===== */
/* ... (You are using Calendly, so the old form styles are not needed) ... */
.success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--neon-green);
}

.success-message h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.success-message p {
  color: var(--dark-text-muted);
}

.hidden {
  display: none !important;
}


/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 10, 15, 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
}

.footer-tagline {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
}

.footer-links-section h4,
.footer-social-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

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

.footer-links a {
  color: var(--dark-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--dark-text-muted);
  transition: color 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  border-color: transparent;
  transform: translateY(-3px);
}

.social-link:hover svg {
  color: var(--dark-bg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-copy {
  color: var(--dark-text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: var(--dark-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--neon-cyan);
}

.footer-legal .separator {
  color: var(--dark-text-muted);
  opacity: 0.5;
}


/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-padding);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--dark-text);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--neon-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.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;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

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

/* ===== CALENDLY & CTA SECTION ===== */
.cta-grid-full {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cta-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-alternative {
  text-align: center;
  margin-top: 2rem;
}

.contact-alternative p {
  font-size: 1.125rem;
  color: var(--dark-text-muted);
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-grid,
  .cta-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
  }
  
  .process-steps {
      flex-direction: column;
  }
  
  .process-arrow {
      transform: rotate(90deg);
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .stats-grid-full {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
      padding: 0 1rem; /* FIX: Reduced side padding */
  }

  section {
      padding: 4rem 0; /* FIX: Reduced vertical padding */
  }
  
  .hero {
      padding: 8rem 0 4rem;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-cta {
      flex-direction: column;
  }

  .sample-features {
      grid-template-columns: 1fr; /* FIX: Stacks sample features */
      gap: 1rem;
      padding: 1.5rem;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
  }
  
  .benefits-grid {
      grid-template-columns: 1fr;
  }
  
  .pain-text,
  .about-text {
      font-size: 1.5rem;
  }
  
  /* FIX: Reduced padding on content cards */
  .pain-content,
  .about-content {
      padding: 2.5rem 1.5rem;
  }
  
  .pricing-card {
      padding: 2.5rem 1.5rem;
  }
  
  .solution-text {
      font-size: 1.25rem;
  }
  
  .cta-title {
      font-size: 2rem;
  }
  
  .footer-content {
      grid-template-columns: 1fr; /* FIX: Changed from flex to grid */
      gap: 2rem;
      text-align: center;
  }
  
  .stats-grid-full {
      grid-template-columns: 1fr;
  }
  
  .stat-number {
      font-size: 2.5rem;
  }
  
  .calendly-container {
      padding: 1rem;
  }
  
  /* --- ADD THESE NEW RULES --- */
  
  /* FIX for Nav Button */
  .glass-nav .btn-primary {
      padding: 0.75rem 1rem; /* Smaller padding */
      font-size: 0.9rem;     /* Slightly smaller text */
  }

  /* FIX for Footer */
  .footer-bottom {
      justify-content: center; /* Center the copyright text */
      text-align: center;
  }

  /* FIX for Footer Social Logos */
  .footer-social {
    justify-content: center; /* This centers the logos */
  }
}