/* WAMessenger - Clean White Theme with Stripe-Inspired Animations */

/* ========== CSS Variables ========== */
:root {
    /* Clean White Theme */
    --primary-bg: #ffffff;
    --secondary-bg: #f8fafc;
    --surface-bg: #f1f5f9;
    --border-color: #e2e8f0;
    
    /* Green Accents */
    --accent-primary: #10b981;
    --accent-secondary: #059669;
    --accent-light: #d1fae5;
    --accent-dark: #047857;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 25%, #f0fdfa 50%, #f5f3ff 75%, #fdf4ff 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(160, 64%, 85%, 0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189, 60%, 85%, 0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(270, 60%, 90%, 0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(340, 60%, 90%, 0.2) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(160, 60%, 85%, 0.3) 0px, transparent 50%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-bg);
    overflow-x: hidden;
}

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

/* Selection Color */
::selection {
    background: var(--accent-light);
    color: var(--accent-dark);
}

/* ========== Navigation ========== */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition-base);
    padding: 0.75rem 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
    transition: var(--transition-fast);
}

.navbar-brand i {
    color: var(--accent-primary);
    margin-right: 0.5rem;
    transition: var(--transition-fast);
}

.navbar-brand:hover i {
    transform: scale(1.1);
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-primary) !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* ========== Hero Section - Stripe-Style ========== */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Mesh Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    animation: meshMove 20s ease-in-out infinite;
    opacity: 1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, 2%) scale(1.02); }
    50% { transform: translate(-1%, 3%) scale(1.01); }
    75% { transform: translate(3%, -2%) scale(1.03); }
}

/* Floating Orbs */
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: floatOrb 15s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, 50px); }
    66% { transform: translate(20px, -30px); }
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    top: 10%;
    left: -100px;
    animation: shapeFloat1 12s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    bottom: 20%;
    right: 5%;
    animation: shapeFloat2 15s ease-in-out infinite;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
    top: 40%;
    right: 30%;
    animation: shapeFloat3 10s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 40px) rotate(10deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -30px) rotate(-10deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

/* Hero Stats */
.hero-stats {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Buttons */
.hero-actions {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-success {
    background: var(--gradient-accent);
    border: none;
    color: white;
    box-shadow: var(--shadow-md), 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 8px 25px rgba(16, 185, 129, 0.4);
    background: var(--gradient-accent);
}

.btn-success:active {
    transform: translateY(0);
}

/* Button Shine Effect */
.btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

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

.btn-outline-success {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline-success:hover {
    background: var(--accent-light);
    border-color: var(--accent-primary);
    color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Hero Features List */
.hero-features {
    font-size: 0.95rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-features .row > div {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: var(--accent-primary);
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

.hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card .card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 1rem;
}

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

/* ========== Section Styles ========== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* Animated Underline for Section Titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width var(--transition-slow);
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title:hover::after {
    width: 100px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ========== Features Section ========== */
.features-section {
    background: var(--primary-bg);
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition-base);
    height: 100%;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-base);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== Pricing Section ========== */
.pricing-section {
    background: var(--secondary-bg);
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card .card {
    border: 2px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition-base);
    background: var(--primary-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover .card {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular .card {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.pricing-card.popular .card-header {
    padding-top: 2.5rem;
}

.pricing-card .card-header h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.pricing-card .card-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.75rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card.popular .price .amount {
    color: var(--accent-primary);
}

.pricing-card .card-body {
    padding: 1.5rem 2rem;
    flex: 1;
}

.pricing-card .card-body ul li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-card .card-body ul li:last-child {
    border-bottom: none;
}

.pricing-card .card-body ul li i {
    margin-right: 0.875rem;
    width: 18px;
    text-align: center;
}

.pricing-card .card-body ul li.text-muted i {
    color: var(--text-muted);
}

.pricing-card .card-footer {
    background: transparent;
    border-top: none;
    padding: 1.5rem 2rem 2rem;
    margin-top: auto;
}

.pricing-card .card-footer .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ========== Demo Section ========== */
.demo-section {
    background: var(--primary-bg);
}

.video-placeholder {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

/* ========== Trust Section ========== */
.trust-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--text-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(at 20% 80%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 20%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ========== Footer ========== */
.footer {
    background: var(--text-primary) !important;
    padding: 60px 0 30px;
}

.footer h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--accent-primary) !important;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations - Add 'animate' class via JS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

/* ========== Responsive Design ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-section::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ========== Utility Classes ========== */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-subtle {
    background: var(--gradient-hero);
}

.glow-effect {
    box-shadow: var(--shadow-glow);
}

/* Number Counter Animation */
.counter {
    display: inline-block;
}

/* Pulse Animation for Important Elements */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--accent-primary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.price .amount.custom-price {
    font-size: 2rem;
    color: var(--text-secondary);
}
/* ========== NEW BUTTON STYLES ========== */
/* Primary: Stripe Style | Secondary: Apple Style */

/* Base Button Reset */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* ========== PRIMARY BUTTONS - Stripe Style ========== */
.btn-success,
.btn-primary {
    background: linear-gradient(to right, #10b981, #14b8a6);
    color: white !important;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.25), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-success:hover,
.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 7px 14px rgba(16, 185, 129, 0.3), 0 3px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    color: white !important;
    background: linear-gradient(to right, #10b981, #14b8a6);
}

.btn-success:active,
.btn-primary:active {
    transform: translateY(0);
}

/* Remove old shine effect */
.btn-success::before {
    display: none;
}

/* Large primary buttons */
.btn-success.btn-lg,
.btn-primary.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========== SECONDARY BUTTONS - Apple Style ========== */
.btn-outline-success,
.btn-secondary-apple {
    background: transparent;
    color: #10b981 !important;
    border: none;
    padding: 14px 20px;
    font-weight: 600;
    border-radius: 0;
    box-shadow: none;
}

.btn-outline-success:hover,
.btn-secondary-apple:hover {
    background: transparent;
    color: #059669 !important;
    transform: none;
    box-shadow: none;
}

.btn-outline-success i,
.btn-secondary-apple i {
    transition: transform 0.2s ease;
}

.btn-outline-success:hover i,
.btn-secondary-apple:hover i {
    transform: translateX(4px);
}

/* Large secondary buttons */
.btn-outline-success.btn-lg,
.btn-secondary-apple.btn-lg {
    padding: 16px 24px;
    font-size: 1rem;
}

/* ========== CTA SECTION BUTTONS ========== */
.cta-section .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-section .btn-light {
    background: white;
    color: #0f172a !important;
    border-radius: 8px;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-section .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    color: #0f172a !important;
}

.cta-section .btn-outline-light {
    background: transparent;
    color: white !important;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 200px;
}

.cta-section .btn-outline-light:hover {
    color: #a7f3d0 !important;
    background: transparent;
    transform: none;
}

.cta-section .btn-outline-light i {
    transition: transform 0.2s ease;
}

.cta-section .btn-outline-light:hover i {
    transform: translateX(4px);
}

/* ========== HERO SECTION BUTTONS ========== */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions .btn-success {
    min-width: 180px;
}

.hero-actions .btn-outline-success {
    min-width: auto;
}

/* ========== RESPONSIVE - Mobile ========== */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .hero-actions .btn-outline-success {
        padding: 14px 20px;
    }
    
    /* CTA Section Mobile */
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }
    
    .cta-section .btn-outline-light {
        margin-top: 8px;
    }
    
    .cta-title {
        font-size: 1.75rem !important;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ========== PRICING CARD BUTTONS ========== */
.pricing-card .card-footer .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card .card-footer .btn-success {
    padding: 14px 24px;
}

.pricing-card .card-footer .btn-outline-success {
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 12px 24px;
}

.pricing-card .card-footer .btn-outline-success:hover {
    background: #d1fae5;
    border-color: #10b981;
}

/* ========== DEMO SECTION ========== */
.demo-section .btn-success {
    margin-top: 1rem;
}

/* ========== CTA SECTION BUTTONS - FIXED ========== */
.cta-section .animate-delay-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-section .btn-light {
    background: white;
    color: #0f172a !important;
    border-radius: 8px;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 0 !important;
}

.cta-section .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    color: #0f172a !important;
}

.cta-section .btn-outline-light {
    background: transparent;
    color: white !important;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 200px;
    margin: 0 !important;
}

.cta-section .btn-outline-light:hover {
    color: #a7f3d0 !important;
    background: transparent;
    transform: none;
    border: none;
}

/* Mobile CTA */
@media (max-width: 768px) {
    .cta-section .animate-delay-2 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        padding: 14px 28px;
    }
}

/* Remove me-3 margin override */
.cta-section .me-3 {
    margin-right: 0 !important;
}

/* ========== HERO BUTTON FIXES - Override old styles ========== */

/* Primary button - remove old animations and border */
.hero-actions .btn-success {
    background: linear-gradient(to right, #10b981, #14b8a6) !important;
    color: white !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.25), 0 1px 3px rgba(0,0,0,0.1) !important;
    padding: 14px 28px !important;
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-success:hover {
    filter: brightness(1.05);
    box-shadow: 0 7px 14px rgba(16, 185, 129, 0.3), 0 3px 6px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px);
    background: linear-gradient(to right, #10b981, #14b8a6) !important;
    border: none !important;
}

/* Remove shine animation completely */
.hero-actions .btn-success::before {
    display: none !important;
    content: none !important;
}

/* Secondary button - Apple style, no border */
.hero-actions .btn-outline-success {
    background: transparent !important;
    color: #10b981 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 14px 20px !important;
    border-radius: 0 !important;
}

.hero-actions .btn-outline-success:hover {
    background: transparent !important;
    color: #059669 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.hero-actions .btn-outline-success i {
    transition: transform 0.2s ease;
}

.hero-actions .btn-outline-success:hover i {
    transform: translateX(4px);
}

/* ========== GLOBAL BTN-SUCCESS OVERRIDE ========== */
.btn-success {
    border: none !important;
}

.btn-success::before {
    display: none !important;
}

.btn-outline-success {
    border: none !important;
}

/* But keep border for pricing cards */
.pricing-card .card-footer .btn-outline-success {
    border: 2px solid #10b981 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #10b981 !important;
}

.pricing-card .card-footer .btn-outline-success:hover {
    background: #d1fae5 !important;
    border: 2px solid #10b981 !important;
}

/* ========== NAVBAR BUTTON FIX ========== */
.navbar .btn-success {
    background: linear-gradient(to right, #10b981, #14b8a6) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
}

.navbar .btn-success::before {
    display: none !important;
}

/* ========== HERO STATS - Labels Below Numbers ========== */
.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== TRUST SECTION - Eye-Catching Animated ========== */
.trust-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

/* Animated background orbs */
.trust-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -100px;
    animation: floatOrb1 12s ease-in-out infinite;
}

.trust-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    animation: floatOrb2 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -20px) scale(1.15); }
}

/* Trust stats container */
.trust-section .container {
    position: relative;
    z-index: 10;
}

/* Individual stat cards */
.trust-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.trust-stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
}

.trust-stat:hover::before {
    left: 100%;
}

/* Trust numbers with gradient */
.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Trust labels */
.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animated border effect on hover */
.trust-stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #14b8a6, #22d3ee);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.trust-stat:hover::after {
    width: 60%;
}

/* Stagger animation delays */
.trust-stat.animate-delay-1 .trust-number { animation-delay: 0.2s; }
.trust-stat.animate-delay-2 .trust-number { animation-delay: 0.4s; }
.trust-stat.animate-delay-3 .trust-number { animation-delay: 0.6s; }

/* Mobile responsive */
@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
    
    .trust-stat {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
}
