/* SafePath Landing Page - Specific Styles */

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 50%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(95, 184, 120, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(42, 92, 153, 0.2) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-accent {
    color: var(--accent-yellow);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ==================== EMAIL SIGNUP ==================== */
.email-signup {
    background: var(--background-light);
    padding: 3rem 2rem;
    text-align: center;
}

.email-signup-container {
    margin: 0 auto;
}

.email-signup h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.email-signup p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.email-form {
    display: inline-flex;
    gap: 1rem;
    margin: 0 20%;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    border-color: var(--primary-blue);
}

.email-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 92, 153, 0.4);
}

.success-message {
    display: none;
    color: var(--secondary-green);
    font-weight: 600;
    margin-top: 1rem;
}

.error-message {
    display: none;
    color: var(--accent-coral);
    margin-top: 1rem;
}

/* ==================== PROBLEM STATEMENT ==================== */
.problem-statement {
    background: var(--white);
}

.problem-statement p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.problem-list {
    list-style: none;
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

.problem-list li {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.problem-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

/* ==================== FEATURES ==================== */
.features {
    background: var(--background-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 92, 153, 0.15);
}

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

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
}

/* ==================== SCREENSHOTS ==================== */
.screenshots {
    background: var(--background-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.phone-mockup {
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.phone-mockup img {
    width: 95%;
    height: 95%;
    object-fit: fill;
    border-radius: 30px;
}

.screenshot-card p {
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==================== WHO IT'S FOR ==================== */
.who-its-for {
    background: var(--white);
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.persona-card {
    text-align: center;
    padding: 2rem;
}

.persona-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.persona-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.persona-card p {
    color: var(--text-secondary);
}

/* ==================== MISSION ==================== */
.mission {
    background: var(--background-light);
}

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

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.final-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.app-badge {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}
.grecaptcha-badge {
    visibility: hidden;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .email-form {
        flex-direction: column;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}


