/* StreamFlix - Main Stylesheet */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #ff4d00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6a26;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff4d00 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4d00, #ff6a26);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text span {
    color: #ff4d00;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4d00;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.btn-signin {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-signin:hover {
    color: #ffffff;
}

.btn-primary {
    padding: 10px 24px;
    background: #ff4d00;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff6a26;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
}

.hero-ring::before,
.hero-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 0, 0.2);
}

.hero-ring::before {
    inset: 0;
}

.hero-ring::after {
    inset: 40px;
    border-color: rgba(0, 212, 255, 0.1);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 20%;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 77, 0, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge svg {
    width: 16px;
    height: 16px;
    fill: #ff4d00;
}

.badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.btn-large {
    padding: 15px 32px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-tag svg {
    width: 16px;
    height: 16px;
    color: #ff4d00;
}

.section-tag span {
    font-size: 0.85rem;
    color: #ff4d00;
    font-weight: 500;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.movie-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.2);
}

.movie-image {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.movie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .movie-image img {
    transform: scale(1.1);
}

.movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 0.9;
}

.trending-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: #ff4d00;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: #ff4d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.movie-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 4px;
}

.add-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.movie-card:hover .add-btn {
    opacity: 1;
}

.add-btn:hover {
    background: #ff4d00;
}

.add-btn svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.movie-info {
    padding: 16px;
}

.movie-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.movie-card:hover .movie-title {
    color: #ff4d00;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff4d00;
}

.movie-rating svg {
    width: 14px;
    height: 14px;
    fill: #ff4d00;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 77, 0, 0.3);
    transform: translateY(-5px);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.orange {
    background: linear-gradient(135deg, #ff4d00, #ff6a26);
}

.feature-icon.cyan {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-text h3 {
    color: #ff4d00;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.mini-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mini-feature {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 77, 0, 0.3);
}

.mini-feature-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ff4d00;
}

.mini-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.mini-feature p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Pricing Section */
.pricing-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
}

.billing-toggle button {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.billing-toggle button.active {
    background: #ff4d00;
    color: white;
}

.billing-toggle button:hover:not(.active) {
    color: white;
}

.save-badge {
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 0.7rem;
    border-radius: 50px;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.1), rgba(0, 212, 255, 0.05));
    border-color: rgba(255, 77, 0, 0.3);
    transform: scale(1.02);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff4d00, #ff6a26);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ff4d00;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    color: rgba(255, 255, 255, 0.4);
}

.annual-note {
    font-size: 0.85rem;
    color: #22c55e;
    margin-top: 5px;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 77, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 10px;
    height: 10px;
    stroke: #ff4d00;
    stroke-width: 3;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn.primary {
    background: #ff4d00;
    color: white;
}

.pricing-btn.primary:hover {
    background: #ff6a26;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3);
}

.pricing-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.pricing-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.guarantee {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #ff4d00;
    transform: rotate(180deg);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    stroke: white;
    stroke-width: 2;
}

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

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

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    position: relative;
}

.footer-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin: 20px 0;
    max-width: 300px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    stroke: #ff4d00;
}

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

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4d00;
}

.newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.5);
}

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

.newsletter-form input {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 77, 0, 0.5);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

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

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

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke 0.3s ease;
}

.social-links a:hover svg {
    stroke: white;
}

.footer-logo {
    text-align: center;
    margin-top: 50px;
}

.footer-logo h2 {
    font-size: 12vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    color: white;
}

.mobile-menu-buttons {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-buttons button {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-features {
        grid-template-columns: 1fr 1fr;
    }
}
