/* ===========================
   Global Styles
   =========================== */
:root {
    --primary-color: #6DAEDB;
    --secondary-color: #88D498;
    --accent-color: #F49D6E;
    --text-dark: #2C3E50;
    --text-light: #5A6C7D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: 
        linear-gradient(135deg, rgba(109, 174, 219, 0.9) 0%, rgba(136, 212, 152, 0.9) 100%),
        url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    width: 100%;
    padding: 2rem 0;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.pain-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.pain-point i {
    width: 24px;
    height: 24px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease-out 0.6s both;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(244, 157, 110, 0.4);
    background-color: #f28a54;
    color: var(--white);
    text-decoration: none;
}

.social-proof {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ===========================
   Section Dividers
   =========================== */
.section-divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

.section-divider.reverse {
    transform: rotate(180deg);
}

/* ===========================
   Problem Section
   =========================== */
.problem-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.transition-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pain-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-card i {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pain-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===========================
   Solution Section
   =========================== */
.solution-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.features-container {
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-mockup {
    margin-top: auto;
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 2px solid var(--bg-light);
    overflow: hidden;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.feature-mockup:hover .feature-screenshot {
    transform: scale(1.02);
}

.mockup-placeholder {
    color: var(--text-light);
    font-style: italic;
}

.launch-tease {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    width: 24px;
    height: 24px;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    min-height: 150px;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===========================
   CTA Footer Section
   =========================== */
.cta-footer-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.email-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-form .form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.email-form .submit-button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-form .submit-button:hover {
    background-color: #f28a54;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-perks {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 10px;
    display: none;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-message.success {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-message.error {
    background-color: rgba(255, 100, 100, 0.4);
    color: var(--white);
    display: flex !important;
    border: 2px solid rgba(255, 100, 100, 0.7);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.social-icons i {
    width: 24px;
    height: 24px;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Modal removed - using single form in footer */

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pain-points {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 20% 1rem;
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
}
