/* Hero Section */
.hero {
    padding: 140px 2rem 80px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 2px solid #000;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #000000 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 0.9rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Content Types Section */
.content-types {
    padding: 80px 2rem;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #6b7280;
}

.types-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.type-card {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
    cursor: pointer;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.type-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.type-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 80px 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Platforms Slider */
.platforms {
    padding: 80px 2rem;
    background: white;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
    height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s;
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.slide p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.95;
}

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #000;
    width: 35px;
    border-radius: 10px;
}

/* Privacy Controls */
.privacy {
    padding: 80px 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.privacy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.privacy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid;
    transition: all 0.3s;
}

.privacy-card:nth-child(1) {
    border-color: #3b82f6;
}

.privacy-card:nth-child(2) {
    border-color: #EF4344;
}

.privacy-card:nth-child(3) {
    border-color: #f59e0b;
}

.privacy-card:nth-child(4) {
    border-color: #8b5cf6;
}

.privacy-card:nth-child(5) {
    border-color: #10b981;
}

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

.privacy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.privacy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.privacy-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 80px 2rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fafafa;
    border: 2px solid #f3f4f6;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #000;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #000000 0%, #1e40af 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta .btn {
    background: white;
    color: #000;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .slider-container {
        height: 300px;
    }

    .slide {
        padding: 2rem;
    }
}