/* Variables */
:root {
    --primary: #5d5de9;
    --primary-dark: #4141c8;
    --primary-gradient: linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%);
    --secondary: #00d0c2;
    --secondary-gradient: linear-gradient(135deg, #00d0c2 0%, #01ead9 100%);
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #00d97e;
    --danger: #ff6b6b;
    --warning: #ffbe0b;
    --info: #4cc9f0;
}

/* Base Styles */
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--dark);
    background-color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

.btn-primary {
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    border: none;
    box-shadow: 0 4px 15px rgba(93, 93, 233, 0.3);
}

.btn-primary:hover {
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 93, 233, 0.4);
}

.btn-secondary {
    background: var(--secondary-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 208, 194, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 208, 194, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 93, 233, 0.4);
}

.section-title {
    margin-bottom: 70px;
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--secondary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
}

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

.navbar.scrolled {
    padding: 10px 0;
}

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

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

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 12px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    z-index: 0;
}

.hero-shape-1 {
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(93, 93, 233, 0.3) 0%, rgba(127, 127, 243, 0.1) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob 8s infinite ease-in-out;
}

.hero-shape-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 208, 194, 0.2) 0%, rgba(0, 217, 126, 0.1) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob 12s infinite ease-in-out alternate;
}

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

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

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 14px;
    gap: 8px;
}

.hero-badge i {
    color: var(--primary);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 93, 233, 0.05) 0%, rgba(0, 208, 194, 0.05) 100%);
    z-index: -1;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    transition: all 0.3s ease;
    z-index: -1;
}

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

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    box-shadow: 0 10px 20px rgba(93, 93, 233, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(93, 93, 233, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card .learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.feature-card .learn-more i {
    transition: all 0.3s ease;
}

.feature-card:hover .learn-more {
    color: var(--primary-dark);
}

.feature-card:hover .learn-more i {
    transform: translateX(5px);
}

/* Pricing Section */
.pricing {
    background-color: #f8f9fa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-shape {
    position: absolute;
    z-index: 0;
}

.pricing-shape-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(93, 93, 233, 0.1) 0%, rgba(127, 127, 243, 0.05) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.pricing-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 208, 194, 0.1) 0%, rgba(0, 217, 126, 0.05) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
}

.pricing-switch-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

input:checked + .slider {
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(93, 93, 233, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card.popular::before {
    content: 'Populaire';
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px 0 0 30px;
    z-index: 2;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(93, 93, 233, 0.03) 0%, rgba(127, 127, 243, 0.03) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.popular .pricing-header {
    background: linear-gradient(135deg, rgba(93, 93, 233, 0.1) 0%, rgba(127, 127, 243, 0.1) 100%);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 5px;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-description {
    font-size: 15px;
    color: var(--gray);
    margin-top: 15px;
}

.pricing-body {
    padding: 40px 30px;
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.pricing-feature i {
    color: var(--success);
    margin-right: 12px;
    font-size: 18px;
}

.pricing-feature.disabled {
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-feature.disabled i {
    color: var(--gray);
}

.pricing-action {
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
}

.pricing-badge.success {
    background-color: rgba(0, 217, 126, 0.1);
    color: var(--success);
}

.pricing-badge.warning {
    background-color: rgba(255, 190, 11, 0.1);
    color: var(--warning);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-shape {
    position: absolute;
    z-index: 0;
}

.cta-shape-1 {
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.cta-shape-2 {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Subscription Form */
.subscription {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.subscription-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.subscription-header {
    padding: 40px;
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.subscription-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.subscription-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.subscription-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(93, 93, 233, 0.1);
    outline: none;
}

.form-check {
    margin-bottom: 25px;
}

.form-check-label {
    margin-left: 10px;
    color: var(--gray);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.subscription-plans {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.plan-option {
    flex: 1;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.plan-option.selected {
    border-color: var(--primary);
    background-color: rgba(93, 93, 233, 0.25);
	outline: 2px solid red;
    outline-offset: 2px; 
}

.plan-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.plan-name {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.plan-price .period {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.plan-feature {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: var(--dark,#1a1a2e);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    z-index: 0;
}

.footer-shape-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.footer-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
}

.footer-text {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

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

.footer-link {
    margin-bottom: 15px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link a:hover {
    color: white;
    padding-left: 5px;
}

.footer-link a i {
    font-size: 14px;
    color: var(--primary);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter-input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 60px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient,linear-gradient(135deg, #5d5de9 0%, #7f7ff3 100%));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(93, 93, 233, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(93, 93, 233, 0.4);
    color: white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Alert styles */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.alert-danger {
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: var(--danger);
}

.alert-success {
    background-color: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.2);
    color: var(--success);
}

/* Billing Selection */
.billing-selection {
    background-color: rgba(93, 93, 233, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-image img {
        transform: none;
        margin-top: 40px;
    }
    
    .feature-grid, .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .subscription-plans {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .subscription-header, .subscription-body {
        padding: 30px 20px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.btn-black-text{
	color: black;
}

.btn-black-text:hover{
	color: black;
}