@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Fix horizontal scroll issues */
* {
  box-sizing: border-box !important;
}

html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  max-width: 100vw !important;
}

/* CSS Variables matching Tailwind config */
:root {
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(222, 15%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 15%, 20%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(222, 15%, 20%);
  --primary: hsl(145, 70%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(35, 90%, 50%);
  --secondary-foreground: hsl(222, 15%, 20%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 15%, 60%);
  --accent: hsl(165, 60%, 45%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 85%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(215, 15%, 85%);
  --input: hsl(215, 15%, 85%);
  --ring: hsl(145, 70%, 50%);
  --radius: 0.75rem;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #d32f2f, #e53935, #d32f2f);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    border-bottom: 3px solid #b71c1c;
}

.urgency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.urgency-banner .access-count {
    background-color: white;
    color: #c62828;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1.1rem;
    animation: pulse-urgency 1.5s infinite;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.urgency-banner-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 4s infinite;
}

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

@keyframes shine {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

@media (max-width: 768px) {
    .urgency-banner-content {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.8rem;
    }
    .urgency-banner .access-count {
        font-size: 1rem;
    }
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

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

.container, section, div {
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

/* Exception for pricing section */
#pricing .container,
#pricing section,
#pricing div {
  max-width: none !important;
  overflow: visible !important;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

/* Utility Classes */
.min-h-screen { min-height: 100vh; }
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/5 { background-color: hsl(145, 70%, 50%, 0.05); }
.bg-primary\/10 { background-color: hsl(145, 70%, 50%, 0.1); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary\/5 { background-color: hsl(35, 90%, 50%, 0.05); }
.bg-secondary\/10 { background-color: hsl(35, 90%, 50%, 0.1); }
.bg-accent { background-color: var(--accent); }
.bg-accent\/10 { background-color: hsl(165, 60%, 45%, 0.1); }
.bg-destructive { background-color: var(--destructive); }
.bg-destructive\/5 { background-color: hsl(0, 85%, 60%, 0.05); }
.bg-destructive\/20 { background-color: hsl(0, 85%, 60%, 0.2); }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary { color: var(--secondary); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-accent { color: var(--accent); }
.text-destructive { color: var(--destructive); }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-8 { border-width: 8px; }
.border-border { border-color: var(--border); }
.border-primary { border-color: var(--primary); }
.border-primary\/20 { border-color: hsl(145, 70%, 50%, 0.2); }

/* Layout */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }

.top-4 { top: 1rem; }
.top-20 { top: 5rem; }
.right-4 { right: 1rem; }
.right-10 { right: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.left-10 { left: 2.5rem; }
.left-1\/2 { left: 50%; }
.-top-4 { top: -1rem; }
.-inset-4 { top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; }

.z-50 { z-index: 50; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Flexbox */
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* Sizing */
.w-1 { width: 0.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-full { width: 100%; }

.h-3 { height: 0.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.min-w-0 { min-width: 0px; }

/* Spacing */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-0 { padding-top: 0; }
.pt-6 { padding-top: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-auto { margin-left: auto; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.625; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }

.line-through { text-decoration: line-through; }

/* Colors */
.text-yellow-400 { color: rgb(250, 204, 21); }
.text-green-300 { color: rgb(134, 239, 172); }
.text-green-500 { color: rgb(34, 197, 94); }
.text-green-600 { color: rgb(22, 163, 74); }
.bg-green-100 { background-color: rgb(220, 252, 231); }

.opacity-10 { opacity: 0.1; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* Border Radius */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Box Shadow */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* Hover Effects */
.hover\:bg-muted:hover { background-color: var(--muted); }
.hover\:bg-primary\/90:hover { background-color: hsl(145, 70%, 45%); }
.hover\:bg-gray-100:hover { background-color: rgb(243, 244, 246); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Transforms */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Background Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-muted { --tw-gradient-from: var(--muted); --tw-gradient-to: hsl(210, 40%, 96%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-background { --tw-gradient-to: hsl(210, 40%, 98%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--background), var(--tw-gradient-to); }
.to-card { --tw-gradient-to: var(--card); }
.from-destructive\/5 { --tw-gradient-from: hsl(0, 85%, 60%, 0.05); --tw-gradient-to: hsl(0, 85%, 60%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-secondary\/5 { --tw-gradient-to: hsl(35, 90%, 50%, 0.05); }
.from-primary { --tw-gradient-from: var(--primary); --tw-gradient-to: hsl(145, 70%, 50%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-accent { --tw-gradient-to: var(--accent); }
.from-primary\/5 { --tw-gradient-from: hsl(145, 70%, 50%, 0.05); --tw-gradient-to: hsl(145, 70%, 50%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-destructive\/20 { --tw-gradient-from: hsl(0, 85%, 60%, 0.2); --tw-gradient-to: hsl(0, 85%, 60%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-secondary\/20 { --tw-gradient-to: hsl(35, 90%, 50%, 0.2); }
.from-destructive\/10 { --tw-gradient-from: hsl(0, 85%, 60%, 0.1); --tw-gradient-to: hsl(0, 85%, 60%, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-secondary\/10 { --tw-gradient-to: hsl(35, 90%, 50%, 0.1); }

/* Custom Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

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

@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* Fix for heart animation container - simplified without ping */
.heart-container {
  overflow: visible !important;
  padding: 1rem;
  position: relative;
}

.heart-container > div {
  overflow: visible !important;
}

@keyframes blob {
  0%, 100% { border-radius: 50% 40% 60% 30%; }
  25% { border-radius: 40% 60% 30% 50%; }
  50% { border-radius: 60% 30% 50% 40%; }
  75% { border-radius: 30% 50% 40% 60%; }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-slide-in { animation: slideIn 0.8s ease-out; }
.animate-pulse-soft { animation: pulseSoft 3s ease-in-out infinite; }
.animate-bounce-soft { animation: bounceSoft 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* Custom Components */
.blob-bg {
  background: linear-gradient(135deg, #2ECC71 0%, #F39C12 100%);
  border-radius: 50% 40% 60% 30%;
  animation: blob 8s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, #2ECC71 0%, #16A085 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.scroll-indicator {
  background: linear-gradient(45deg, #2ECC71, #F39C12);
  animation: bounce 2s infinite;
  overflow: visible;
  padding: 10px;
  margin: 10px auto;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-bubble {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  position: relative;
}

.whatsapp-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #25d366 transparent transparent;
}

/* Sales Notification */
.sales-notification {
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  visibility: hidden;
  opacity: 0;
  max-width: 320px !important;
  width: auto !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.sales-notification .buyer-name {
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  min-width: max-content;
}

.sales-notification .flex-1 {
  min-width: 0;
  overflow: visible;
}

.sales-notification.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  display: block !important;
  pointer-events: none !important;
}

.sales-notification.hide {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}

/* Ensure notification is always visible on desktop */
@media (min-width: 768px) {
  .sales-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    max-width: 320px;
    z-index: 9999;
  }
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.faq-answer.open {
    max-height: 500px !important;
    opacity: 1;
}

.faq-question.active i {
    transform: rotate(180deg) !important;
}

/* Button Styles */
.cta-button {
  transition: all 0.3s ease;
  overflow: visible;
  position: relative;
  z-index: 10;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.cta-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

/* Ensure buttons don't get clipped by animations */
.cta-button,
.cta-button * {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Fix for pulse animation clipping */
.animate-pulse-soft {
  overflow: visible;
  will-change: transform;
}

/* Ensure containers with CTA buttons have proper overflow */
.text-center:has(.cta-button) {
  overflow: visible;
  padding: 1rem 0;
}

/* Popular tag styling for better conversion */
.popular-tag {
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .max-w-4xl { max-width: 95%; }
  .text-4xl { font-size: 2rem; line-height: 2.25rem; }
  .text-3xl { font-size: 1.75rem; line-height: 2rem; }
  .px-12 { padding-left: 2rem; padding-right: 2rem; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid { gap: 1.5rem; }
  
  /* Fix horizontal overflow */
  body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Pricing section fixes for mobile */
  #pricing .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  #pricing .bg-card {
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
  }
  
  /* Sales notification fixes for mobile - keep in top right */
  .sales-notification {
    position: fixed !important;
    top: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    max-width: 280px !important;
    width: auto !important;
    z-index: 9999 !important;
    display: block !important;
    transform: translateX(100%) !important;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  }
  
  .sales-notification.show {
    transform: translateX(0) !important;
  }
  
  .sales-notification.hide {
    transform: translateX(100%) !important;
  }
}

/* Pricing section fixes */
#pricing {
  overflow: visible;
  margin-bottom: 0;
}

#pricing .container {
  overflow: visible;
  padding-bottom: 0;
}

#pricing .grid {
  overflow: visible;
}

#pricing .bg-card,
#pricing .bg-gradient-to-br {
  overflow: visible;
  position: relative;
}

/* Guarantee section spacing */
.guarantee-section {
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
  overflow: visible;
}

/* Ensure guarantee card is never cut off */
.guarantee-section .container {
  overflow: visible;
  padding: 1rem;
}

.guarantee-section .inline-flex {
  overflow: visible;
  position: relative;
  z-index: 10;
  margin: 1rem auto;
}

/* Ensure "MAIS POPULAR" tag is always visible */
#pricing .relative {
  overflow: visible;
  z-index: 1;
}

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

/* Additional mobile fixes for pricing section */
@media (max-width: 480px) {
  /* Prevent any horizontal overflow */
  * {
    max-width: 100% !important;
  }
  
  body, html {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  
  .container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Sales notification - keep in corner */
  .sales-notification {
    position: fixed !important;
    top: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    max-width: 260px !important;
    width: auto !important;
    z-index: 9999 !important;
    transform: translateX(100%) !important;
  }
  
  #pricing .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    overflow: visible !important;
    max-width: none !important;
  }
  
  #pricing .grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    width: 100% !important;
    overflow: visible !important;
  }
  
  #pricing .bg-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }
  
  .text-4xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .text-3xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Max height for FAQ answers */
.max-h-0 { max-height: 0; }

/* Missing Tailwind-like utilities for responsive design */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* Grid responsive utilities */
.md\\:grid-cols-2 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Max width utilities */
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }