:root {
    /* Core Colors */
    --primary-color: #201534;
    --secondary-color: #4a90e2;
    --text-color: #333;
    --light-bg: #f8f9fa;

    /* Button Gradients */
    --button-gradient-left: #ff8f00;
    --button-gradient-right: #ee4848;
    --button-gradient-hover-left: #ff7800;
    --button-gradient-hover-right: #ea2929;

    /* Card Colors */
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.05);
    --card-border-hover: rgba(255, 255, 255, 0.1);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-accent: #60a5fa;

    /* Background Colors */
    --bg-gradient-start: #0a0a1a;
    --bg-gradient-end: #1a1a3a;
    --bg-accent: rgba(59, 130, 246, 0.2);

    /* Effects */
    --shadow-normal: rgba(0, 0, 0, 0.3);
    --glow-effect: rgba(255, 255, 255, 0.3);
    --card-blur: blur(10px);

    /* Transitions */
    --transition-normal: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;

    --modal-z-index: 9999;
    --modal-content-z-index: 10000;
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Background Setup */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 27, 46, 0.95) 0%, rgba(45, 27, 105, 0.95) 100%);
}

/* Content Styles */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.highlight {
    color: var(--text-accent);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.cta-main {
    background: linear-gradient(to right, var(--button-gradient-left), var(--button-gradient-right));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    border-radius: 8px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.badge-icon {
    font-size: 1.25rem;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        gap: 1rem;
    }

    .badge-item {
        font-size: 0.875rem;
    }
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Add responsive adjustments if needed */
@media (max-width: 768px) {
    .hero-logo img {
        max-width: 300px; /* Slightly smaller on mobile */
    }
    .hero-logo {
        margin-bottom: 2rem;
    }
}

/* Enhanced Problem & Solution Styles */
.problem-solution {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Add subtle background pattern */
.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(238, 72, 72, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.pain-points-card {
    background: var(--card-bg);
    backdrop-filter: var(--card-blur);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.pain-points-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 40px var(--shadow-normal);
}

/* Image Container Styles */
.card-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pain-points-card:hover .card-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.problem-overlay {
    background: linear-gradient(to bottom, rgba(238, 72, 72, 0.2), rgba(26, 27, 46, 0.9));
}

.solution-overlay {
    background: linear-gradient(to bottom, rgba(74, 144, 226, 0.2), rgba(26, 27, 46, 0.9));
}

/* Card Content */
.card-content {
    padding: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.icon-wrapper.problem {
    background: rgba(238, 72, 72, 0.1);
    color: #ee4848;
}

.icon-wrapper.solution {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

.card-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* List Styles */
.pain-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-points-list li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.pain-points-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-accent);
}

/* Benefits Section */
.benefit-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-normal);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-image-container {
        height: 150px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.25rem;
    }

    .pain-points-card {
        margin-bottom: 2rem;
    }
}

/* App Showcase Section Styles */
.app-showcase {
    background: var(--bg-gradient-start);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.value-proposition {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.highlight-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-accent);
    border-radius: 20px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.lead-text {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0;
}

/* App Card Styles */
.app-card {
    background: var(--card-bg);
    backdrop-filter: var(--card-blur);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.app-card::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: 0.5s;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 40px var(--shadow-normal);
}

.app-card:hover::before {
    left: 100%;
}

.app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 64px;
    height: 64px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.icon {
    width: 32px;
    height: 32px;
    stroke: var(--text-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.basic {
    background: rgba(238, 72, 72, 0.1);
    color: #ee4848;
}

.status-badge.free {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

.status-active {
    background-color: #28a745 !important; /* Green */
    color: white;
}

.status-lifetime {
    background-color: #007bff !important; /* Blue */
    color: white;
}

.status-canceled {
    background-color: #dc3545 !important; /* Red */
    color: white;
}

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

.app-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.app-features li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.app-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-accent);
}

.try-now-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--button-gradient-left), var(--button-gradient-right));
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.try-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-normal);
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--card-border);
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.soon-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(74, 144, 226, 0.1);
    color: var(--text-accent);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.banner-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.banner-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .app-card {
        margin-bottom: 1.5rem;
    }

    .value-proposition {
        padding: 1rem;
    }

    .lead-text {
        font-size: 1.125rem;
    }
}

/* Enhanced How It Works Styles */
.how-it-works {
    background: linear-gradient(135deg, #0f1428 0%, #151937 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(41, 98, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 51, 0.1) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Section Header */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #a0aec0;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Media Container */
.step-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.step-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 20, 40, 0) 0%, rgba(15, 20, 40, 0.8) 70%, rgba(15, 20, 40, 1) 100%);
}

/* Step Number */
.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #ff5733;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 0 20px rgba(255, 87, 51, 0.5);
}

/* Content Area */
.step-content {
    padding: 2rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.icon {
    width: 100%;
    height: 100%;
    stroke: #4299e1;
    stroke-width: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.step-content p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

/* Features List */
.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    color: #a0aec0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4299e1;
}

/* Quick Start CTA */
.quick-start-cta {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-start-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    color: #a0aec0;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #ff5733 0%, #ff8133 100%);
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 87, 51, 0.3);
}

.button-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.cta-button:hover .button-glow {
    animation: buttonShine 1.5s infinite;
}

@keyframes buttonShine {
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .quick-start-cta {
        padding: 2rem;
    }
}

/* Testimonials Section Styles */
.testimonials {
    background: linear-gradient(135deg, #5869af 0%, #1f1b4d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.testimonials-bg {
    position: absolute;
    inset: 0;
}

.glow-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Section Header */
.testimonial-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-badge span {
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #a0aec0;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(74, 144, 226, 0.2);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(74, 144, 226, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    color: #e2e8f0ad;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.author-info p {
    color: #a0aec0;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.rating {
    margin-left: auto;
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Success Metrics */
.success-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    color: #a0aec0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .success-metrics {
        gap: 2rem;
    }
}

/* Final CTA Section Styles */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1b2e 0%, #2d1b69 100%);
    overflow: hidden;
}

/* Background Effects */
.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.light-effect {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Content Wrapper */
.cta-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Headings */
.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #a0aec0;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Success Stats */
.success-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

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

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0aec0;
    font-size: 1rem;
}

/* CTA Button */
.cta-action {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.get-started-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #60a5fa 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-sparkles {
    margin-left: 0.5rem;
    display: inline-block;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.no-card-required {
    color: #a0aec0;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.25rem;
}

.trust-text {
    color: #a0aec0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }

    .success-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .get-started-btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/*modal*/

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.is-active {
    display: flex;
}

.modal-container {
    width: 100%;
    max-width: 32rem;
    margin: auto;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(245 248 255), rgb(21 15 94));
    pointer-events: none;
}

.modal-body {
    position: relative;
    padding: 2rem;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.2s;
    z-index: 999;
}

.close-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.access-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 143, 0, 0.1);
    color: #ff8f00;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #fff;
    font-size: 1rem;
}

.signup-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--button-gradient-left);
    box-shadow: 0 0 0 3px rgba(255, 143, 0, 0.2);
}

.signup-btn {
    position: relative;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--button-gradient-left), var(--button-gradient-right));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s;
}

.signup-btn::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    background: linear-gradient(to right, var(--button-gradient-left), var(--button-gradient-right));
    filter: blur(1rem);
    opacity: 0;
    transition: opacity 0.2s;
}

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

.signup-btn:hover::before {
    opacity: 0.5;
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.trust-icon {
    font-size: 1rem;
}

.access-badge-img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.access-badge-img:hover {
    transform: scale(1.05);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 640px) {
    .modal-body {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modal-subtitle {
        font-size: 0.875rem;
    }

    .trust-features {
        flex-direction: column;
        align-items: center;
    }
}

/*Notification after subscription*/

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    max-width: 400px;
    overflow: hidden;
    padding: 16px 24px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Success notification style */
.notification[data-type='success'] {
    border: 1px solid rgba(82, 255, 82, 0.3);
}

/* Error notification style */
.notification[data-type='error'] {
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success icon style */
.notification[data-type='success'] .notification-icon {
    background: rgba(82, 255, 82, 0.1);
}

.notification[data-type='success'] .notification-icon svg {
    color: #32cd32;
}

/* Error icon style */
.notification[data-type='error'] .notification-icon {
    background: rgba(255, 82, 82, 0.1);
}

.notification[data-type='error'] .notification-icon svg {
    color: #ff5252;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
}

.notification-text {
    flex-grow: 1;
}

.notification-title {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.notification-message {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Success progress style */
.notification[data-type='success'] .notification-progress {
    background: rgba(82, 255, 82, 0.1);
}

.notification[data-type='success'] .notification-progress-bar {
    background: linear-gradient(to right, #32cd32, #98fb98);
}

/* Error progress style */
.notification[data-type='error'] .notification-progress {
    background: rgba(255, 82, 82, 0.1);
}

.notification[data-type='error'] .notification-progress-bar {
    background: linear-gradient(to right, #ff5252, #ff8a8a);
}

.notification-progress-bar {
    height: 100%;
    width: 100%;
    animation: progress 4s linear;
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Email confirmation field styling - hidden from humans but visible to bots */
.email-confirm-group {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

/* Login Button Styles */
.login-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.login-button i {
    margin-right: 5px;
    display: inline-block !important;
    visibility: visible !important;
}

/* Responsive styles for login button */
@media (max-width: 768px) {
    .login-button {
        padding: 6px 12px;
        font-size: 0.9rem;
        border-radius: 20px;
        top: 15px;
        right: 15px;
    }
    
    .login-button i {
        font-size: 0.9rem;
    }
}

/* Special styling for login button in navbar */
.navbar .login-button,
.navbar-login-button {
    position: relative;
    top: auto;
    right: auto;
    margin-right: 15px;
}

footer {
    background-color: var(--glass-boxes);
    color: var(--text-color-light);
}

.navbar-brand img {
    height: 50px;
}
