/* Axiomfit V2 Design System - Vibrant Corporate Wellness Platform
Enhanced with more dynamic colors and advanced visual effects
*/

/* CSS Variables - Enhanced with vibrant colors */
:root {
    /* Base colors - Lighter and more vibrant */
    --background: hsl(220, 20%, 97%);
    --foreground: hsl(220, 15%, 20%);

    /* Card colors */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 15%, 20%);

    /* Primary brand colors - Electric Blue */
    --primary: hsl(210, 100%, 60%);
    --primary-bright: hsl(210, 100%, 65%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(210, 100%, 75%);

    /* Secondary brand colors - Vibrant Green */
    --secondary: hsl(145, 70%, 55%);
    --secondary-bright: hsl(145, 75%, 60%);
    --secondary-foreground: hsl(0, 0%, 100%);

    /* Tertiary brand colors - Royal Purple */
    --tertiary: hsl(270, 70%, 60%);
    --tertiary-bright: hsl(270, 75%, 65%);
    --tertiary-foreground: hsl(0, 0%, 100%);

    /* Muted colors */
    --muted: hsl(210, 35%, 94%);
    --muted-foreground: hsl(220, 15%, 45%);

    /* Accent colors */
    --accent: hsl(145, 70%, 95%);
    --accent-foreground: hsl(145, 70%, 25%);

    /* Status colors */
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --success: hsl(145, 70%, 55%);
    --success-foreground: hsl(0, 0%, 100%);

    /* UI colors */
    --border: hsl(210, 25%, 85%);
    --input: hsl(210, 25%, 85%);
    --ring: hsl(210, 100%, 60%);

    /* Hero section colors */
    --hero-primary: hsl(210, 100%, 60%);
    --hero-secondary: hsl(145, 70%, 55%);
    --hero-tertiary: hsl(270, 70%, 60%);
    --hero-overlay: hsl(220, 25%, 8%);

    /* Enhanced shadows with color */
    --shadow-soft: 0 2px 15px -3px hsla(210, 100%, 60%, 0.15);
    --shadow-glow: 0 0 40px hsla(210, 100%, 75%, 0.4);
    --shadow-card: 0 8px 30px -8px hsla(220, 25%, 20%, 0.15);
    --shadow-vibrant: 0 0 50px hsla(145, 70%, 55%, 0.3);

    /* Advanced animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(222, 84%, 5%);
        --foreground: hsl(210, 40%, 98%);
        --card: hsl(222, 84%, 8%);
        --card-foreground: hsl(210, 40%, 98%);
        --muted: hsl(217, 33%, 18%);
        --muted-foreground: hsl(215, 20%, 65%);
        --border: hsl(217, 33%, 25%);
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: linear-gradient(180deg, var(--background), var(--card));
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Enhanced gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-secondary), var(--hero-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced buttons with glow effects */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-bright));
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px hsla(210, 100%, 75%, 0.6);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--primary-foreground);
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-vibrant);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px hsla(145, 70%, 55%, 0.5);
}

/* Glow effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-bright));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.glow-effect:hover::before {
    opacity: 0.7;
}

/* Hero Section with floating shapes */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('src/assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(220, 25%, 8%, 0.7), hsla(220, 25%, 8%, 0.5));
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(210, 100%, 70%, 0.1), hsla(145, 70%, 60%, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding);
    background: var(--card);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--muted), hsla(210, 100%, 95%, 0.5));
    border-radius: var(--border-radius);
    border-left: 4px solid var(--destructive);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--destructive);
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.floating-element {
    animation: float-gentle 4s ease-in-out infinite;
}

/* Features Section with enhanced cards */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--muted), hsla(210, 100%, 95%, 0.3));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
    border: 1px solid hsla(210, 100%, 90%, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, hsla(210, 100%, 70%, 0.05), hsla(145, 70%, 60%, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.hover-lift:hover .card-glow {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* How It Works Section with connectors */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--card);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

.step-connector {
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
    opacity: 0.3;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Feature Deep Dive Section */
.feature-deep-dive-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--muted), hsla(145, 70%, 95%, 0.3));
}

.deep-dive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.deep-dive-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.deep-dive-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deep-dive-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.deep-dive-feature i {
    color: var(--success);
    font-size: 1.2rem;
    background: hsla(145, 70%, 55%, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.recommendation-mockup {
    background: var(--card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-vibrant);
    border: 1px solid hsla(145, 70%, 90%, 0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.mockup-header i {
    font-size: 1.5rem;
    background: hsla(210, 100%, 60%, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.mockup-content h4 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.mockup-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.mockup-btn, .glow-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.mockup-btn:hover, .glow-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Enhanced Comparison Section with Cards */
.comparison-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--muted), hsla(210, 100%, 95%, 0.3));
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: var(--transition-elastic);
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.negative-card {
    border-color: hsla(0, 84%, 60%, 0.2);
}

.negative-card::before {
    background: linear-gradient(90deg, var(--destructive), hsl(0, 84%, 70%));
}

.negative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px hsla(0, 84%, 60%, 0.15);
}

.positive-card {
    border-color: hsla(145, 70%, 55%, 0.2);
}

.positive-card::before {
    background: linear-gradient(90deg, var(--success), var(--primary));
}

.positive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px hsla(145, 70%, 55%, 0.2);
}

.card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.negative-card .card-header {
    background: linear-gradient(135deg, hsla(0, 84%, 60%, 0.05), hsla(0, 84%, 60%, 0.02));
}

.positive-card .card-header {
    background: linear-gradient(135deg, hsla(145, 70%, 55%, 0.05), hsla(210, 100%, 60%, 0.03));
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.negative-card .card-header i {
    color: var(--destructive);
}

.positive-card .card-header i {
    color: var(--success);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.comparison-card .feature-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.05);
}

.comparison-card .feature-item:last-child {
    border-bottom: none;
}

.comparison-card .feature-item i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.negative-card .feature-item i {
    background: hsla(0, 84%, 60%, 0.1);
    color: var(--destructive);
}

.positive-card .feature-item i {
    background: hsla(145, 70%, 55%, 0.1);
    color: var(--success);
    animation: checkmark-pop 0.3s ease-out;
}

.comparison-card .feature-item span {
    color: var(--foreground);
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--muted), hsla(270, 70%, 95%, 0.3));
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-vibrant);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--tertiary));
    opacity: 0.1;
    z-index: -1;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--primary-foreground);
    padding: 0.5rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.pricing-button{
    text-align: center;
    margin-top: 4rem;
}


.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.period {
    color: var(--muted-foreground);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: var(--success);
    font-size: 1.1rem;
    background: hsla(145, 70%, 55%, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--muted-foreground);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* FAQ Section with working accordion */
.faq-section {
    padding: var(--section-padding);
    background: var(--card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    background: transparent;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

/* Final CTA Section */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--tertiary));
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.bg-circle-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.cta-icon i {
    font-size: 4rem;
    color: white;
    animation: pulse-glow 2s infinite;
}

.sparkle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

.sparkle-1 {
    top: -8px;
    right: -8px;
    animation-delay: 0.5s;
}

.sparkle-2 {
    bottom: -4px;
    left: -4px;
    animation-delay: 1s;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.trust-indicators {
    margin-bottom: 2rem;
}

.trust-text {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px hsla(210, 100%, 70%, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px hsla(210, 100%, 70%, 0.6);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes checkmark-pop {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger animations */
.fade-in-stagger:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.fade-in-stagger:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.fade-in-stagger:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    :root {
        --section-padding: 4rem 0;
    }

    .problem-content,
    .deep-dive-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-item {
        justify-content: center;
        text-align: center;
    }

    .comparison-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-name {
        justify-content: center;
        text-align: center;
        background: var(--muted);
        font-weight: 600;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .comparison-cards {
        grid-template-columns: 1fr; /* força um card por linha */
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}