:root {
    --primary-color: rgb(139, 92, 246);
    --primary-hover: rgb(124, 58, 237);
    --secondary-color: rgb(79, 70, 229);
    --accent-color: rgb(220, 136, 80);
    --text-dark: rgb(17, 24, 39);
    --text-gray: rgb(55, 65, 81);
    --text-light: rgb(107, 114, 128);
    --bg-light: rgb(248, 250, 252);
    --border-color: rgb(229, 231, 235);
}

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

body {
    font-family: '__Inter_aaf875', '__Inter_Fallback_aaf875', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark) !important;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-link {
    font-weight: 500;
    color: var(--text-gray) !important;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(139, 92, 246, 0.4);
}

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    backdrop-filter: blur(10px);
}

.hero-intro {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
}

.discount-badge {
    font-size: 14px;
    font-weight: 500;
}

.avatar-group {
    display: flex;
    margin-right: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-demo {
    position: relative;
    padding: 2rem;
}

.demo-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.demo-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.linkedin-post-demo {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.post-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.post-content p {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.post-engagement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.engagement-icons {
    display: flex;
    align-items: center;
}

.engagement-icons i {
    margin-right: 4px;
}

.post-actions {
    display: flex;
    justify-content: space-around;
}

.post-actions .btn {
    border: none;
    background: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.demo-footer {
    text-align: center;
}

.featured-section {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.featured-logos {
    gap: 2rem;
}

.featured-logo {
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.featured-logo:hover {
    opacity: 1;
}

.features-section {
    background: var(--bg-light);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
}

.authority-section {
    background: white;
}

.authority-feature {
    text-align: left;
    padding: 2rem;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 16px;
}

.saved-badge {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.pricing-preview {
    background: var(--bg-light) !important;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    text-align: center;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-card .feature-list {
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card .feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.pricing-card .feature-list li:last-child {
    border-bottom: none;
}

.footer {
    background: var(--text-dark) !important;
}

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .hero-demo {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-intro {
        padding: 1.5rem;
    }
    
    .featured-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 18px;
}

.rounded-pill {
    border-radius: 50px !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

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

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

.terms-hero,
.privacy-hero {
    background: var(--bg-light);
    padding-top: 120px;
}

.terms-document,
.privacy-document {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.terms-document h2,
.privacy-document h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.terms-document h2:first-child,
.privacy-document h2:first-child {
    margin-top: 0;
}

.terms-document h3,
.privacy-document h3 {
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-document ul,
.privacy-document ul {
    margin-bottom: 1rem;
}

.terms-document li,
.privacy-document li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.contact-box {
    border-left: 4px solid var(--primary-color);
}

.pricing-hero {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
    padding-top: 120px;
}

.pricing-plans {
    background: var(--bg-light);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto;
}

.price-display {
    margin: 1.5rem 0;
}

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

.price-period {
    font-size: 16px;
    color: var(--text-light);
    display: block;
    margin-top: -8px;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-guarantee {
    border: 2px solid var(--primary-color);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

.pricing-cta {
    background: white;
}
