/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from EarnFlow palette */
    --trust-blue: #2979FF;
    --money-green: #00C853;
    --energy-yellow: #FFD600;
    --clean-white: #FAFAFA;
    --graphite-gray: #263238;
    
    /* Additional colors */
    --light-gray: #f8f9fa;
    --border-light: #e9ecef;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-green: rgba(0, 200, 83, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--trust-blue), #1565C0);
    --gradient-accent: linear-gradient(135deg, var(--money-green), #388E3C);
    --gradient-mixed: linear-gradient(135deg, var(--trust-blue), var(--money-green));
    
    /* Fonts */
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--clean-white);
    overflow-x: hidden;
    overflow-y: auto;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--money-green);
}

.beta-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.beta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f8ff 100%);
    position: relative;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    width: 100%;
    min-height: 80vh;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.hero-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Logo placeholder in hero */
.logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-mixed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-placeholder span {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center !important;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: center !important;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center !important;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(41, 121, 255, 0.4);
}

.cta-primary.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    margin: 0 auto;
    display: inline-flex;
}

.cta-secondary {
    background: transparent;
    color: var(--money-green);
    border: 2px solid var(--money-green);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-secondary:hover {
    background: var(--money-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--trust-blue);
    display: block;
}

.stat:nth-child(2) .stat-number {
    color: var(--money-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 8px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 60px 20px 20px;
    height: 100%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.app-header .app-logo {
    width: 30px;
    height: 30px;
    background: var(--gradient-mixed);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.app-header span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earnings-card {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(41, 121, 255, 0.3);
}

.earnings-label {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.earnings-amount {
    font-size: 2rem;
    font-weight: 700;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.task-item.completed {
    background: #e8f5e8;
    border-color: var(--money-green);
}

.task-icon {
    font-size: 1.2rem;
}

.task-content {
    flex: 1;
}

.task-name {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.task-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.task-reward {
    font-weight: 700;
    color: var(--money-green);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    color: var(--money-green);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
    z-index: 10;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-indicator:hover {
    color: var(--trust-blue);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:nth-child(even)::before {
    background: var(--gradient-accent);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-light);
}

.feature-card:nth-child(even):hover {
    box-shadow: 0 20px 40px var(--shadow-green);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.feature-card:nth-child(even) .feature-icon {
    background: var(--gradient-accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}



/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-mixed);
    color: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA section button alignment and visibility tweaks */
.cta-section .hero-cta {
    gap: 14px;
}

.cta-section .cta-primary.large {
    /* Remove auto margins so buttons sit next to each other */
    margin: 0;
}

.cta-section .cta-secondary {
    /* Make secondary button filled for contrast on gradient */
    background: var(--money-green);
    color: #fff;
    border-color: var(--money-green);
}

.cta-section .cta-secondary:hover {
    background: var(--money-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
}

/* Hero section: make Google Play (secondary) filled as well */
.hero .cta-secondary {
    background: var(--money-green);
    color: #fff;
    border-color: var(--money-green);
}

.hero .cta-secondary:hover {
    background: var(--money-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
}

/* Footer */
.footer {
    background: var(--graphite-gray);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.footer-logo span {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #ccc;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--money-green);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

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

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

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--money-green);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: white;
    margin: 20px auto;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--trust-blue);
}

.modal-body {
    padding: 20px 30px 30px;
    max-height: none;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form Styles */
.beta-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--money-green);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    background: #fff;
}

.radio-option:hover {
    border-color: var(--money-green);
    background: rgba(0, 200, 83, 0.05);
}

.radio-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.radio-option input[type="radio"]:checked + .radio-text {
    font-weight: 600;
    color: var(--money-green);
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--money-green);
    background: rgba(0, 200, 83, 0.1);
}

.radio-text {
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Mobile responsive for radio group */
@media (max-width: 480px) {
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .radio-option {
        justify-content: center;
    }
}

.submit-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.cta-primary, .cta-secondary, .beta-btn, .submit-btn {
    position: relative;
    overflow: hidden;
}

/* Responsive Design */

/* Desktop: Side by side layout */
@media (min-width: 769px) {
    .hero-container {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title,
    .hero-tagline,
    .hero-description {
        text-align: left;
    }
    
    .hero-cta,
    .hero-stats {
        justify-content: flex-start;
    }
}

/* Mobile: Responsive adjustments */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero {
        padding: 80px 0 30px;
        min-height: 100vh;
    }
    
    .hero-container {
        min-height: 70vh;
        gap: 30px;
        padding: 0 20px 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center !important;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .hero-visual {
        max-width: 280px;
        margin: 0 auto 30px auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    /* Modal responsive adjustments */
    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: calc(100vh - 20px);
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .beta-form {
        gap: 15px;
    }
    
    .form-group {
        gap: 6px;
    }
}

/* How It Works Section Styles */
.how-it-works {
    padding: 100px 0;
    background: #f8f9fa;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.step {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 280px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: 10px;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 10px auto;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.step:nth-child(1) .step-number {
    background: #2979FF;
    color: white;
    box-shadow: 0 4px 15px rgba(41, 121, 255, 0.3);
}

.step:nth-child(2) .step-number {
    background: #00C853;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.step:nth-child(3) .step-number {
    background: #2979FF;
    color: white;
    box-shadow: 0 4px 15px rgba(41, 121, 255, 0.3);
}

.step-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.step-content p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* Tablet responsive - keep side by side */
@media (max-width: 800px) and (min-width: 601px) {
    .step {
        width: 260px;
        height: 300px;
        padding: 30px 20px;
    }
    
    .steps {
        gap: 15px;
    }
    
    .step-content h3 {
        font-size: 1.7rem;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
}

/* Mobile responsive for How It Works */
@media (max-width: 600px) {
    .steps {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        align-items: center;
        justify-content: center;
    }
    
    .step {
        width: 280px;
        height: 300px;
        margin: 0 auto;
        padding: 30px 25px;
    }
    
    .how-it-works .section-title {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 12px auto 8px auto;
        text-align: center;
        line-height: 1;
    }
    
    .step-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .steps {
        padding: 0 15px;
    }
    
    .step {
        width: 250px;
        height: 270px;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin: 10px auto 6px auto;
        text-align: center;
        line-height: 1;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.effective-date {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.privacy-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.privacy-section ul,
.privacy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.privacy-section strong {
    color: #2d3748;
    font-weight: 600;
}

.privacy-footer {
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.privacy-footer hr {
    border: none;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 30px;
}

.privacy-footer p {
    font-size: 1.1rem;
    color: #718096;
    font-style: italic;
}

/* Privacy policy links in forms */
.checkbox-group label a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Mobile responsive for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .effective-date {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
}

/* Account Deletion Page Styles */
.delete-account {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    min-height: 100vh;
}

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

.delete-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.delete-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.delete-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.delete-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.warning-icon {
    font-size: 2.5rem;
    color: #f39c12;
    flex-shrink: 0;
}

.warning-text h3 {
    color: #d35400;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.warning-text p {
    color: #8e4e00;
    font-size: 1.1rem;
    margin: 0;
}

.delete-section {
    margin-bottom: 50px;
}

.delete-section:last-child {
    margin-bottom: 0;
}

.delete-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.delete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.delete-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.delete-item i {
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-top: 5px;
    flex-shrink: 0;
}

.delete-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.delete-item p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.method-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.method-tab {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.method-tab:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.method-tab.active {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.method-content {
    display: none;
    padding: 20px 0;
}

.method-content.active {
    display: block;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 25px;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.step-image {
    margin-top: 15px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #e2e8f0;
}

.step-image img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.email-deletion {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.email-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.email-info {
    font-size: 1.1rem;
    color: #4a5568;
}

.email-info a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
}

.email-info a:hover {
    text-decoration: underline;
}

.email-template {
    margin: 25px 0;
}

.email-template h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.email-template ul {
    padding-left: 20px;
}

.email-template li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 8px;
}

.response-time {
    font-size: 1rem;
    color: #718096;
    font-style: italic;
    margin-top: 20px;
}

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

.before-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.before-item i {
    font-size: 1.8rem;
    color: #3498db;
    margin-top: 5px;
    flex-shrink: 0;
}

.before-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.before-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.before-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.before-item a:hover {
    text-decoration: underline;
}

.help-section {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.help-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    color: white;
}

.contact-btn.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-btn.secondary:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Mobile responsive for delete page */
@media (max-width: 768px) {
    .delete-account {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .delete-header h1 {
        font-size: 2.5rem;
    }
    
    .delete-subtitle {
        font-size: 1.1rem;
    }
    
    .delete-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .delete-grid {
        grid-template-columns: 1fr;
    }
    
    .method-tabs {
        flex-direction: column;
    }
    
    .method-tab {
        justify-content: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .method-tab.active {
        border-bottom: none;
    }
    
    .steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-image {
        padding: 10px;
    }
    
    .step-image img {
        max-height: 300px;
    }
    
    .before-delete {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .delete-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .delete-header h1 {
        font-size: 2rem;
    }
    
    .delete-section h2 {
        font-size: 1.5rem;
    }
    
    .warning-box {
        padding: 20px;
    }
    
    .step {
        padding: 20px;
    }
    
    .email-deletion {
        padding: 20px;
    }
    
    .step-image img {
        max-height: 250px;
    }
}

/* Child Safety Policy Page Styles */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    min-height: 100vh;
}

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

.policy-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.policy-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.policy-section strong {
    color: #2d3748;
    font-weight: 600;
}

.reporting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.reporting-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.reporting-method i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 5px;
    flex-shrink: 0;
}

.reporting-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.reporting-method p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.reporting-method a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.reporting-method a:hover {
    text-decoration: underline;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.contact-highlight i {
    font-size: 2rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.contact-highlight h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.contact-highlight p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-highlight a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.contact-highlight a:hover {
    text-decoration: underline;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    border-top: 2px solid #e2e8f0;
}

.policy-footer p {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
}

/* Mobile responsive for policy page */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
    
    .reporting-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
} 