@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Special+Gothic+Expanded+One&display=swap');

/* Base Styles */
:root {
    --primary-color: #b100b1;
    --primary-light: #ffd0ff;
    --primary-hover: #9a009a;
    --secondary-color: #b100b1;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #f8f9fa;
    --bg-light: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --gradient-text: linear-gradient(90deg, #b100b1 0%, #ffd0ff 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--bg-color);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* Badge */
.badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 50px;
    margin-left: 8px;
    font-weight: 500;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 0;
}

nav {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--text-color);
}

.logo-hype {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 50px 0 60px;
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 208, 255, 0.1) 0%, rgba(248, 249, 250, 0) 70%);
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(177, 0, 177, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 40px;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.hero-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.email-signup {
    max-width: 500px;
    margin: 0 auto 60px;
    display: flex;
    gap: 8px;
}

.email-signup input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: white;
    font-size: 1rem;
}

.email-signup button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.email-signup button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats {
    padding: 40px 0;
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Special Gothic Expanded One', 'Arial Black', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-tabs {
    margin-bottom: 40px;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background-color: white;
    border: 1px solid var(--border-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-panel.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

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

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 12px;
}

.feature-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-image img {
    display: block;
    transition: var(--transition);
}

.features-all {
    text-align: center;
}

/* Dashboard Section */
.dashboard {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.dashboard-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.dashboard-content {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
}

.dashboard-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.dashboard-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.dashboard-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.dashboard-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.dashboard-link:hover i {
    transform: translateX(4px);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: var(--shadow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 8px;
}

.amount {
    font-family: 'Special Gothic Expanded One', 'Arial Black', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.25rem;
    color: var(--text-light);
}

.save {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 12px;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--bg-color);
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-color);
}

.comparison-table i.fa-check {
    color: var(--primary-color);
}

.comparison-table i.fa-times {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

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

.cta .btn-outline {
    border-color: white;
    color: white;
    background-color: transparent;
}

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

/* Footer */
footer {
    background-color: white;
    color: var(--text-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.footer-newsletter h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer-newsletter p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 20px;
}

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

.feature-category h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature-category ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .tab-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .feature-content {
        order: 1;
    }
    
    .feature-image {
        order: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-color);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .tabs-navigation {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 16px;
        justify-content: flex-start;
    }
    
    .tab-btn {
        flex: 0 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-signup {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}