/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a{
    text-decoration: none;
}
/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.nav-brand .nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6c63ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6c63ff, #a855f7);
    transition: width 0.3s ease;
}

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

.nav-actions .nav-cta {
    background: linear-gradient(135deg, #6c63ff, #a855f7);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }
    
    .nav-content {
        padding: 0.75rem 0;
        min-height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 0.5rem;
    }
    
    .nav-content {
        padding: 0.5rem 0;
        min-height: 55px;
    }
    
    .nav-brand .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding-top: 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    

}

/* Hide hamburger on desktop */
.nav-toggle {
    display: none;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .hamburger {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* 480px specific styles */
    @media (max-width: 480px) {
        .hamburger {
            width: 22px;
            height: 2.5px;
        }
    }
}

/* Global Container and Section Title Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-content {
    position: relative;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
    margin-top: 100px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta.primary {
    background: #6c63ff;
    color: white;
}

.hero-cta.secondary {
    background: transparent;
    color: #6c63ff;
    border: 2px solid #6c63ff;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Getting Started Section */
.getting-started {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.main-connector {
    position: absolute;
    left: 20.5%;
    top: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.curly-line {
    width: 100%;
    height: 100%;
    color: #6c63ff;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-number {
    background: #6c63ff;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Earn Section */
.why-earn {
    padding: 6rem 0;
    background: #6c63ff;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 3rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Realistic Earnings Section */
.realistic-earnings {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    z-index: 2;
}

.earnings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.earnings-text {
    max-width: 600px;
}

.earnings-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.earnings-description {
    margin-bottom: 3rem;
}

.main-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondary-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.earnings-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.earnings-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.earnings-feature p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.earnings-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.earnings-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(108, 99, 255, 0.3));
}

/* User Reviews Section */
.user-reviews {
    padding: 6rem 0;
    background: #111111;
    position: relative;
    z-index: 2;
}

.reviews-staggered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
}

.review-1 {
    transform: translateY(-20px);
}

.review-2 {
    transform: translateY(15px);
}

.review-3 {
    transform: translateY(-30px);
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.stars {
    font-size: 1.1rem;
    color: #ffd700;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
}

/* Earning Tips Section */
.earning-tips {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
}

.tips-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(1px);
    padding-bottom: 3rem;
}

.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}



.tip-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.tip-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.tip-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.tip-card:hover .tip-content {
    max-height: 200px;
    opacity: 1;
}

.tip-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Security & Privacy Section */
.security-privacy {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-text {
    max-width: 600px;
}

.security-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.security-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.security-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.security-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.security-details p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.security-outro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(108, 99, 255, 0.3));
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #111111;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    max-width: 500px;
    align-content: center;
}

.contact-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group select,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select:focus {
    color: #ffffff;
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    color: #ffffff;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-group select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c63ff;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.faq-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 2rem;
}

.faq-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(108, 99, 255, 0.3));
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}


.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Footer Section */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-contact {
    max-width: 500px;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.contact-item .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #6c63ff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .main-connector {
        display: none;
    }
    
    .earnings-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .earnings-text .section-title {
        text-align: center;
    }
    
    .earnings-text {
        max-width: 100%;
    }
    
    .reviews-staggered-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-1,
    .review-2,
    .review-3 {
        transform: translateY(0);
    }
    
    .tip-card:hover {
        transform: translateX(0);
        padding-bottom: 2rem;
    }
    
    /* Disable hover effects on mobile */
    .tip-card:hover .tip-content {
        max-height: 200px;
        opacity: 1;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .security-text .section-title {
        text-align: center;
    }
    
    .security-text {
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .faq-visual {
        position: static;
        order: 1;
    }
    
    .faq-list {
        order: 2;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-contact {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .why-earn .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 3rem;
    }
    
    /* Tips always visible on mobile */
    .tip-card {
        padding-bottom: 3rem;
    }
    
    .tip-content {
        max-height: 200px;
        opacity: 1;
    }
    
    .tip-header {
        margin-bottom: 1rem;
    }
    
    .title-line {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 3rem;
    }
    
    .steps-container {
        gap: 2rem;
    }
    
    .step {
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .main-connector {
        width: 120px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .earnings-content {
        gap: 2rem;
    }
    
    .main-text {
        font-size: 1.1rem;
    }
    
    .secondary-text {
        font-size: 1rem;
    }
    
    .reviews-staggered-grid {
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-name {
        font-size: 1.2rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .tip-card {
        padding: 1.2rem 1.5rem;
    }
    
    .tip-title {
        font-size: 1.2rem;
    }
    
    .tip-icon {
        font-size: 1.3rem;
    }
    
    .tip-content p {
        font-size: 0.95rem;
    }
    
    .security-content {
        gap: 2rem;
    }
    
    .security-intro {
        font-size: 1.1rem;
    }
    
    .security-features {
        gap: 1.5rem;
    }
    
    .security-feature {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .security-icon {
        font-size: 1.5rem;
    }
    
    .security-details h3 {
        font-size: 1.1rem;
    }
    
    .security-details p {
        font-size: 0.95rem;
    }
    
    .security-outro {
        font-size: 1rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .contact-form-fields {
        gap: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-content {
        gap: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .contact-details {
        gap: 1.2rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .contact-item .contact-icon {
        font-size: 1.3rem;
    }
    
    .contact-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .why-earn .container {
        padding: 0 0.5rem;
    }
    
    .hero-container {
        padding: 0 0.5rem;
        gap: 2rem;
    }
    
    /* Tips always visible on small mobile */
    .tip-card {
        padding-bottom: 2.5rem;
    }
    
    .tip-content {
        max-height: 200px;
        opacity: 1;
    }
    
    .tip-header {
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .main-connector {
        display: none;
    }
    
    .feature-card {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 12px;
        max-width: calc(100% - 1rem);
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .earnings-features {
        gap: 1rem;
    }
    
    .earnings-feature {
        gap: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.3rem;
    }
    
    .earnings-feature p {
        font-size: 0.95rem;
    }
    
    .review-card {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .tip-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .tip-title {
        font-size: 1.1rem;
    }
    
    .tip-icon {
        font-size: 1.2rem;
    }
    
    .tip-content p {
        font-size: 0.9rem;
    }
    
    .security-feature {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .security-icon {
        font-size: 1.3rem;
    }
    
    .security-details h3 {
        font-size: 1rem;
    }
    
    .security-details p {
        font-size: 0.9rem;
    }
    
    .security-outro {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .contact-form-fields {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 0.7rem;
        gap: 0.7rem;
        border-radius: 10px;
    }
    
    .contact-item .contact-icon {
        font-size: 1.2rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        gap: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-link {
        font-size: 0.8rem;
    }
    
    .footer-separator {
        font-size: 0.8rem;
    }
}

/* Terms and Conditions Page */
.terms-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #0a0a0a;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6c63ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.terms-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6c63ff;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(108, 99, 255, 0.3);
    padding-bottom: 0.5rem;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-info-terms {
    background: rgba(108, 99, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    margin-top: 1rem;
}

.contact-info-terms p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-terms strong {
    color: #6c63ff;
}

/* Responsive Terms Page */
@media (max-width: 768px) {
    .terms-page {
        padding-top: 80px;
    }
    
    .terms-header {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .terms-page {
        padding-top: 70px;
    }
    
    .terms-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .terms-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 0.95rem;
    }
}

/* Privacy Policy Page */
.privacy-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #0a0a0a;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6c63ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6c63ff;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(108, 99, 255, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-info-privacy {
    background: rgba(108, 99, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    margin-top: 1rem;
}

.contact-info-privacy p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-privacy strong {
    color: #6c63ff;
}

/* Responsive Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-page {
        padding-top: 80px;
    }
    
    .privacy-header {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding-top: 70px;
    }
    
    .privacy-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .privacy-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}
