/* Landing Page Premium Styles */

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    overflow-x: hidden;
}

/* Free Banner */
.free-banner {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.free-banner i {
    margin-right: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(110, 168, 254, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a1a2e;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: #0d6efd;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-outline {
    background: white;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.btn-outline:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(13, 110, 253, 0.5);
    }
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(110, 168, 254, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    -webkit-text-fill-color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03) 0%, rgba(110, 168, 254, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(110, 168, 254, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon i {
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    -webkit-text-fill-color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tag {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    border: 2px solid rgba(13, 110, 253, 0.2);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #0d6efd;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: white;
}

.pricing-card h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 800;
}

.price {
    text-align: center;
    margin-bottom: 15px;
}

.price .currency {
    font-size: 2rem;
    color: #0d6efd;
    font-weight: 700;
    vertical-align: top;
}

.price .amount {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-description {
    text-align: center;
    color: #64748b;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.pricing-features li {
    padding: 14px 0;
    color: #1a1a2e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-actions .btn-primary {
    background: white;
    color: #0d6efd;
}

.cta-actions .btn-primary:hover {
    background: #f8f9fa;
}

.cta-note {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Access Section */
.access-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.access-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.access-card:hover::before {
    transform: scaleX(1);
}

.access-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}

.access-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(110, 168, 254, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.access-card:hover .access-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    transform: scale(1.1) rotate(5deg);
}

.access-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.access-card:hover .access-icon i {
    -webkit-text-fill-color: white;
}

.access-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.access-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.access-card .btn {
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 80px 0 30px;
    color: #94a3b8;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: white;
}

.footer-brand .logo i {
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #0d6efd;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom i {
    color: #ef4444;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .free-banner {
        font-size: 0.85rem;
        padding: 10px 0;
    }

    .navbar {
        top: 38px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .price .amount {
        font-size: 4rem;
    }
}