:root {
    --primary-color: #6366F1;    /* Indigo 500 */
    --primary-dark: #4F46E5;     /* Indigo 600 */
    --primary-light: #818CF8;    /* Indigo 400 */
    --accent-color: #8B5CF6;     /* Violet 500 */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --dark-bg: #1E1B4B;          /* Indigo 950 */
    --light-bg: #f8fafc;
    --text-color: #1E293B;       /* Slate 800 */
    --purple-color: #6366F1;
    
    /* Light variations */
    --primary-light: #818CF8;
    --success-light: #d1fae5;
    --warning-light: #fef3c7;
    --danger-light: #fee2e2;
    --info-light: #dbeafe;
    --purple-light: #ede9fe;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-cta .btn {
    padding: 0.5rem 1.25rem;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-bg) !important;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover:after,
.nav-link.active:after {
    width: calc(100% - 32px);
}

.header-cta .btn {
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.header-cta .btn:hover {
    transform: translateY(-2px);
}

.header-cta .btn i {
    transition: all 0.3s ease;
}

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

@media (max-width: 991.98px) {
    .navbar {
        padding: 10px 0;
        background: white;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        margin-top: 10px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .nav-link:after {
        display: none;
    }
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    bottom: 20%;
    left: -10%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-color), var(--info-color));
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float-shapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-bg);
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

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

.hero-cta .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 45px;
    padding: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 2rem 1.5rem;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.demo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-header {
    margin-bottom: 2rem;
}

.profile-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.profile-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 0.25rem;
}

.profile-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.card-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-btn.whatsapp {
    background: #25D366;
    color: white;
}

.card-btn.call {
    background: var(--primary-color);
    color: white;
}

.card-btn.email {
    background: var(--info-color);
    color: white;
}

.card-btn.save {
    background: var(--success-color);
    color: white;
}

.card-btn:hover {
    transform: scale(1.1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float-cards 3s ease-in-out infinite;
}

.success-card {
    top: 15%;
    right: -20%;
    color: var(--success-color);
    animation-delay: 0s;
}

.notification-card {
    bottom: 35%;
    left: -25%;
    color: #25D366;
    animation-delay: -1s;
}

.analytics-card {
    bottom: 15%;
    right: -15%;
    color: var(--primary-color);
    animation-delay: -2s;
}

@keyframes float-cards {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.badge-container .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: white;
    color: var(--primary-color);
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.1);
}

.hero h1 {
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 30px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-1px);
}

.hero-cta .btn-outline-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
}

.hero-cta .btn-outline-dark:hover {
    background: rgba(0, 0, 0, 0.02);
}

.features-badge {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 30px;
    font-size: 0.875rem;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-badge i {
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features-badge {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Adjust hero section padding to account for fixed header */
.hero {
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.badge-container .badge {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.1);
}

.badge-container .badge i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-bg);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-cta .btn {
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    transform: translateY(-1px);
}

.hero-features {
    margin-top: 32px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-badge i {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    position: relative;
    padding: 20px;
    perspective: 1000px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.phone-frame {
    position: relative;
    width: 260px;
    height: 520px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transform: translateZ(2px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1e293b;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.floating-card,
.floating-whatsapp,
.floating-stats {
    position: absolute;
    padding: 12px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.floating-card {
    top: 10%;
    right: -15%;
    transform: translateZ(30px);
}

.floating-whatsapp {
    bottom: 30%;
    left: -15%;
    transform: translateZ(40px);
}

.floating-whatsapp i {
    color: var(--primary-color);
}

.floating-stats {
    bottom: 10%;
    right: -8%;
    transform: translateZ(50px);
}

.stats-preview i {
    color: var(--primary-color);
}

.card-preview,
.whatsapp-preview,
.stats-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-preview i,
.whatsapp-preview i,
.stats-preview i {
    font-size: 24px;
}

.whatsapp-preview i {
    color: #25D366;
}

.card-preview span,
.whatsapp-preview span,
.stats-preview span {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-50px);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

@media (max-width: 991.98px) {
    .hero {
        padding: 40px 0 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image {
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .feature-badge {
        padding: 10px 16px;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-cta {
        margin-top: 1rem;
    }
}

/* Features Section */
.features {
    padding: 20px 0 40px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.features .badge {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
}

.features h2 {
    margin: 8px 0;
    color: var(--dark-bg);
}

.features .lead {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--dark-bg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* More Features Section */
.more-features .feature-icon {
    background: var(--primary-light);
    color: var(--primary-color);
}

.more-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Enhanced Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.toggle-label {
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--primary-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.pricing .pricing-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

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

.pricing .pricing-card.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: transparent;
}

.pricing .pricing-card.active::before {
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(1);
}

.pricing .pricing-card.active .text-muted,
.pricing .pricing-card.active .features-title {
    color: rgba(255, 255, 255, 0.9) !important;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.plan-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-card.active .plan-badge {
    background: white;
    color: var(--primary-color);
}

.plan-type {
    font-size: 1.25rem;
    font-weight: 500;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price .period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.features-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.pricing-card.active .features-section {
    border-color: rgba(255, 255, 255, 0.2);
}

.features-title {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.features-list li i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.pricing-card.active .features-list li i.text-success {
    color: rgba(255, 255, 255, 0.9) !important;
}

.badge-new {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.pricing-card.active .badge-new {
    background: white;
    color: var(--primary-color);
}

.pricing-card .btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.pricing-card.active .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.pricing-card.active .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}

.pricing-card .btn-dark {
    background: #111;
    border: none;
}

.pricing-card .btn-dark:hover {
    background: #000;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-bg);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-links a {
    color: white;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Design */
/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .floating-card {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .trust-badges {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .pricing .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}

/* Custom Backgrounds */
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-success-light { background-color: var(--success-light) !important; }
.bg-warning-light { background-color: var(--warning-light) !important; }
.bg-danger-light { background-color: var(--danger-light) !important; }
.bg-info-light { background-color: var(--info-light) !important; }
.bg-purple-light { background-color: var(--purple-light) !important; }

/* Custom Text Colors */
.text-purple { color: var(--purple-color) !important; }

/* Privacy and Terms Pages */
.privacy-section,
.terms-section,
.contact-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.privacy-section h1,
.terms-section h1,
.contact-section h1 {
    margin-top: 2rem;
    color: var(--dark-bg);
}

.privacy-section .content,
.terms-section .content {
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-section h2,
.terms-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.privacy-section h3,
.terms-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--dark-bg);
}

.privacy-section ul,
.terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section ul li,
.terms-section ul li {
    margin-bottom: 0.5rem;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 1rem;
}

.privacy-section a,
.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section a:hover,
.terms-section a:hover {
    text-decoration: underline;
}

