/* Global 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;
}

/* SEO Links */
.seo-link {
    color: #666;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.seo-link:hover {
    color: #4A90E2;
}

/* 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-img {
    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;
}

        /* Responsive */
        @media (max-width: 1000px) {
            
            .phone-img {
                max-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .phone-img {
                max-width: 250px;
            }
        }

/* What is SexMessenger Section */
.what-is-section {
    background: white;
    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;
}

.section-text ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.section-text li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    padding-left: 0px;
    position: relative;
    line-height: 1.6;
}

.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);
}

/* Global Community Section */
.community-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-flag {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-country {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
}

/* No Bots Section */
.no-bots-section {
    background: white;
    padding: 80px 0;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.pricing-header {
    background: linear-gradient(135deg, #4A90E2 0%, #50C9B7 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(even) {
    background: #f8f9fa;
}

.feature-name {
    font-weight: 600;
    color: #2c3e50;
}

.free-feature {
    text-align: center;
    color: #666;
}

.premium-feature {
    text-align: center;
    color: #50C9B7;
    font-weight: bold;
}

.pricing-cta {
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
}

.pricing-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Mobile Features Section */
.mobile-section {
    background: white;
    padding: 80px 0;
}

/* Search Features Section */
.search-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.search-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.search-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.search-feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.search-feature-desc {
    color: #666;
    line-height: 1.6;
}

/* 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)"/></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;
    font-weight: bold;
}

.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;
}

/* Features List Section */
.features-list-section {
    background: white;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-desc {
    color: #666;
    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)"/></pattern></defs><rect width="100" height="100" fill="url(%23wavystripes2)"/></svg>') repeat;
    background-size: 100%;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
}

.final-cta-content .highlight {
    color: #d5f57e;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.btn-join {
    background: linear-gradient(90deg, #71d7ff 0%, #d5f57e 100%);
    color: #003c84;
    padding: 20px 45px;
    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);
}

/* Mobile pricing cards - hidden by default */
.pricing-cards-mobile {
    display: none;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.pricing-card-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.pricing-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pricing-card-free,
.pricing-card-premium {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.pricing-card-free {
    background: #f8f9fa;
    color: #666;
    border-right: 1px solid #eee;
}

.pricing-card-premium {
    background: white;
    color: #50C9B7;
    font-weight: bold;
}

.pricing-card-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #2c3e50;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
}

.pricing-card-labels div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1000px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
    
    .testimonials-section h2 {
        font-size: 2.2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        text-align: center;
    }
     
    .hero-text .subtitle {
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
     
    .hero-text .subtitle {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-image {
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .section-text h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    /* Center all CTA buttons on mobile */
    .section-text {
        text-align: center;
    }
    
    .btn-secondary,
    .btn-join {
        display: block;
        margin: 30px auto;
        width: fit-content;
    }
    
    .pricing-cta {
        text-align: center;
    }
    
    /* Hide desktop pricing table on mobile */
    .pricing-table {
        display: none;
    }
    
    /* Show mobile pricing cards */
    .pricing-cards-mobile {
        display: block !important;
    }
}

@media (max-width: 1000px) {
    .hero-phone {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .phone-image > div {
        margin: 0 auto;
    }
} 