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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1a1a2e;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b5cf6;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    color: #64748b;
    font-weight: 500;
}

.btn-login:hover {
    color: #8b5cf6;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a2e;
}

.hero {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-large {
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-secondary {
    background: white;
    color: #1a1a2e;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.designed-for-teams {
    padding: 80px 0;
}

.teams-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.teams-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.feature-text p {
    color: #64748b;
    font-size: 0.95rem;
}

.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.preview-header {
    background: #f1f5f9;
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-dots span:first-child {
    background: #f87171;
}

.preview-dots span:nth-child(2) {
    background: #fbbf24;
}

.preview-dots span:nth-child(3) {
    background: #34d399;
}

.preview-content {
    display: flex;
    min-height: 300px;
}

.preview-sidebar {
    width: 60px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    height: 35px;
    background: #e2e8f0;
    border-radius: 8px;
}

.sidebar-item.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.preview-main {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.preview-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4ff 100%);
    border-radius: 10px;
    height: 80px;
}

.preview-chart {
    grid-column: span 2;
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    border-radius: 10px;
    height: 120px;
}

.everything-section {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

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

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature-card-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.feature-card-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.feature-card-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.feature-card-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.feature-card-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.feature-card-icon.teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
}

.how-it-works {
    padding: 80px 0;
}

.concept-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 10px;
    vertical-align: middle;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
}

.step-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 100%);
    flex-shrink: 0;
}

.pricing {
    padding: 80px 0;
    background: #f8f9ff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-toggle span {
    color: #64748b;
    font-weight: 500;
}

.pricing-toggle span.active {
    color: #1a1a2e;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.toggle-switch input:checked + label:before {
    transform: translateX(24px);
}

.save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
}

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

.pricing-card.popular {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.pricing-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.pricing-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.pricing-price .period {
    color: #64748b;
    font-size: 1rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #64748b;
}

.pricing-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 12px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.pricing-card .btn-primary {
    display: block;
    text-align: center;
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #64748b;
}

.pricing-note a {
    color: #8b5cf6;
    font-weight: 500;
}

.who-for {
    padding: 80px 0;
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.who-card {
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.who-card:hover {
    transform: translateY(-5px);
}

.purple-card {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.blue-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.orange-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.green-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.who-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}

.purple-card .who-icon {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.blue-card .who-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.orange-card .who-icon {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.green-card .who-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.who-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.who-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonials {
    padding: 80px 0;
    background: #f8f9ff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-card > p {
    color: #1a1a2e;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.purple-bg {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.blue-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.orange-bg {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

.author-info span {
    color: #64748b;
    font-size: 0.85rem;
}

.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question i {
    color: #8b5cf6;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: #f8f9ff;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #f97316 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: white;
    color: #8b5cf6;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand > p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #8b5cf6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-column ul li a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .teams-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .who-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        gap: 15px;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-buttons {
        display: none;
        position: absolute;
        top: calc(100% + 180px);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        gap: 10px;
    }

    .nav-buttons.mobile-active {
        display: flex;
    }

    .nav-buttons .btn-primary {
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-line {
        width: 2px;
        height: 30px;
    }

    .who-cards {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}
