/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-signup {
    background: linear-gradient(135deg, #d5f57e 0%, #b8e356 100%);
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #50C9B7 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wavystripes2" patternUnits="userSpaceOnUse" width="100" height="100" patternTransform="rotate(45)"><path d="M0,15 Q25,5 50,15 T100,15 L100,25 Q75,35 50,25 T0,25 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,40 Q25,30 50,40 T100,40 L100,50 Q75,60 50,50 T0,50 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,65 Q25,55 50,65 T100,65 L100,75 Q75,85 50,75 T0,75 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,90 Q25,80 50,90 T100,90 L100,100 Q75,110 50,100 T0,100 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23wavystripes2)"/></svg>') repeat;
    background-size: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #d5f57e;
}

.hero-text .subtitle {
    font-size: 2.2rem;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-cta {
    background: linear-gradient(90deg, #71d7ff 0%, #d5f57e 100%);
    color: #003c84;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-phone {
    position: relative;
    text-align: center;
}

.phone-image {
    max-width: 750px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    rotate: 25deg;
}

/* Community Section */
.community-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-secondary {
    background: linear-gradient(90deg, #71d7ff 0%, #d5f57e 100%);
    color: #003c84;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-image {
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Community section images standardized style */
.community-section .section-image img,
.connection-section .section-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

/* Real Connection Section */
.connection-section {
    background: white;
    padding: 80px 0;
}

.connection-section .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.connection-section h2 {
    color: #2c3e50;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #4A90E2 0%, #50C9B7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wavystripes2" patternUnits="userSpaceOnUse" width="100" height="100" patternTransform="rotate(45)"><path d="M0,15 Q25,5 50,15 T100,15 L100,25 Q75,35 50,25 T0,25 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,40 Q25,30 50,40 T100,40 L100,50 Q75,60 50,50 T0,50 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,65 Q25,55 50,65 T100,65 L100,75 Q75,85 50,75 T0,75 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,90 Q25,80 50,90 T100,90 L100,100 Q75,110 50,100 T0,100 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23wavystripes2)"/></svg>') repeat;
    background-size: 100%;
}

.testimonials-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonials-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 50px;
}

.testimonials-section .highlight {
    color: #d5f57e;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d5f57e 0%, #b8e356 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #4A90E2 0%, #50C9B7 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wavystripes2" patternUnits="userSpaceOnUse" width="100" height="100" patternTransform="rotate(45)"><path d="M0,15 Q25,5 50,15 T100,15 L100,25 Q75,35 50,25 T0,25 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,40 Q25,30 50,40 T100,40 L100,50 Q75,60 50,50 T0,50 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,65 Q25,55 50,65 T100,65 L100,75 Q75,85 50,75 T0,75 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,90 Q25,80 50,90 T100,90 L100,100 Q75,110 50,100 T0,100 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23wavystripes2)"/></svg>') repeat;
    background-size: 100%;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.final-cta-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
}

.final-cta-text .highlight {
    color: #d5f57e;
}

.final-cta-phone {
    position: relative;
    margin: 0 auto;
}

.final-phone-mockup {
    width: 260px;
    height: 460px;
    background: #333;
    border-radius: 25px;
    padding: 15px;
    transform: rotate(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.final-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d5f57e 0%, #50C9B7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.btn-join {
    background: linear-gradient(90deg, #71d7ff 0%, #d5f57e 100%);
    color: #003c84;
    padding: 20px 45px;
    border: 2px solid #003c84;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Main Features Section */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.features-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

/* Remove dots from all lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    list-style: none;
}

/* Comparison section full width */
.comparison-content {
    width: 100%;
    max-width: 100%;
}

.comparison-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.comparison-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* SEO Links */
.seo-link {
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.seo-link:hover {
    color: #50C9B7;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text .subtitle {
        font-size: 1.8rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-image {
        max-width: 300px;
    }
    
    .section-text p {
        font-size: 1.1rem;
    }
    
    .features-description {
        font-size: 1.1rem;
    }
    
    .comparison-content p {
        font-size: 1.1rem;
    }
    
    .section-text ul {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .phone-image {
        max-width: 250px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .connection-section .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Force same order for all sections in mobile: image first, then text */
    .section-image {
        order: 1;
    }
    
    .section-text {
        order: 2;
    }
    
    /* Center CTA buttons in mobile */
    .section-text .btn-secondary {
        margin: 20px auto 0 auto;
        display: block;
        width: fit-content;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta-text h2 {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
    
    .testimonials-section h2 {
        font-size: 2.2rem;
    }
    
    /* Features cards responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 