:root {
    --primary-purple: #7149dd;
    --secondary-purple: #5d50d1;
    --light-bg: #f7fafb;
    --light-blue-bg: #eef9ff;
    --border-purple: #5f33a6;
    --text-dark: #000000;
    --text-light: #ffffff;
    --gradient-primary: linear-gradient(135deg, #7149dd 0%, #5d50d1 100%);
    --gradient-secondary: linear-gradient(135deg, #eef9ff 0%, #f7fafb 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-secondary);
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(113, 73, 221, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-purple);
    text-decoration: none;
}

.navbar-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(113, 73, 221, 0.3);
    color: var(--text-light);
}

.btn-outline-primary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    width: 100%;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(113, 73, 221, 0.3);
}

.hero-section {
    padding: 120px 0 80px;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(113, 73, 221, 0.05) 100%);
    z-index: 1;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 69px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-cta-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(113, 73, 221, 0.1);
    position: relative;
    z-index: 2;
    margin-left: 2rem;
}

.hero-card .card-header {
    margin-bottom: 1.5rem;
}

.logo-small {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.logo-small i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #4CAF50;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 14px;
}

.feature-item span {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.form-section {
    margin-top: 1.5rem;
}

.form-section label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-dark);
}

.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(113, 73, 221, 0.25);
    outline: none;
}

.hero-mascot {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.7;
}

.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(113, 73, 221, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.pricing-preview-section {
    padding: 80px 0;
    background: var(--light-blue-bg);
}

.pricing-highlights {
    margin: 2rem 0;
}

.pricing-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-item .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-right: 1rem;
    min-width: 80px;
}

.pricing-item .channel {
    font-weight: 600;
    color: var(--text-dark);
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-purple);
    font-size: 20px;
    padding: 15px 30px;
}

.cta-section .btn-primary:hover {
    background: var(--light-bg);
    color: var(--primary-purple);
}

.cta-note {
    margin-top: 1rem;
    font-size: 14px;
    opacity: 0.8;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.footer-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--primary-purple);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
    width: 20px;
}

.pricing-hero,
.contact-hero,
.legal-hero {
    padding: 120px 0 60px;
    background: var(--gradient-secondary);
    text-align: center;
}

.pricing-hero h1,
.contact-hero h1,
.legal-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-document p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

.contact-details {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(113, 73, 221, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-purple);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-purple);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-purple);
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-purple);
}

.price .period {
    font-size: 16px;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 16px;
}

.pricing-features i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 14px;
}

.features-comparison {
    padding: 80px 0;
    background: var(--light-bg);
}

.comparison-table .feature-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.comparison-table .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.comparison-table h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-faq {
    padding: 80px 0;
    background: white;
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    background: var(--light-bg);
    border: none;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-purple);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(113, 73, 221, 0.25);
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form {
    margin-top: 2rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.checkbox-group {
    margin-top: 0.5rem;
}

.form-check {
    margin-bottom: 0.75rem;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-check-label {
    font-weight: 500;
    color: var(--text-dark);
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.thank-you-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.thank-you-message h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 14px;
    color: #666;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card small {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-card {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}
