/* --- RESET & FONTS --- */
:root {
    --primary-blue: #2B61FF; /* Bounce-style Blue */
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --bg-grey: #f5f5f5;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { margin: 0 0 15px 0; font-weight: 800; letter-spacing: -0.5px; }

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%; 
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: black;
    font-family: Calibri, sans-serif;
    font-style: italic;
}

.logo-n {
    font-size: 50px;
}

.logo-namo {
    font-size: 40px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
}

.partner-btn {
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}
.partner-btn:hover { border-color: var(--primary-blue); color: var(--primary-blue); }

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%; 
    background: white;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    align-self: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-highlight { color: var(--primary-blue); }

.hero-sub {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.primary-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.primary-btn:hover { background-color: #1a4bd6; }

.setup-text { font-size: 0.9rem; color: #666; font-weight: 500; }

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-self: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* --- BENEFITS GRID --- */
.benefits {
    background: var(--bg-grey);
    padding: 80px 5%;
}

.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: white;
    padding: 20px 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    text-align: left;
}
.benefit-card:hover { transform: translateY(-5px); }


.icon { font-size: 40px; margin-bottom: 20px; }
.benefit-card h3 { 
    font-size: 1.25rem; 
    margin-bottom: 15px; 
    text-align: center; 
    height: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
    line-height: 1.3;
}
.benefit-card p { color: var(--light-text); font-size: 1rem; line-height: 1.6; }
.testimonial-author { 
    font-weight: 600; 
    color: var(--dark-text); 
    margin-bottom: 15px; 
    font-size: 0.95rem;
    text-align: center;
}
.testimonial-text { 
    font-style: italic; 
    color: var(--light-text); 
    font-size: 1rem; 
    line-height: 1.6; 
}

/* --- CTA PANEL --- */
.cta-panel {
    padding: 60px 5%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-panel-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

/* --- FAQ SECTION --- */
.features { 
    padding: 80px 5%; 
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 10px 0;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-text);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 0 5px 0;
}

.faq-answer p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- CTA / FORM SECTION --- */
.cta-section {
    background: var(--primary-blue);
    padding: 80px 5%;
    color: white;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-text { flex: 1; max-width: 500px; }
.cta-text h2 { font-size: 3rem; margin-bottom: 20px; color: white; }
.cta-text p { font-size: 1.2rem; opacity: 0.9; line-height: 1.5; }

.partner-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    color: var(--dark-text);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--primary-blue); }

.submit-btn {
    width: 100%;
    background: var(--dark-text);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.2s;
}
.submit-btn:hover { opacity: 0.9; }

/* --- CUSTOM POPUP --- */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.custom-popup {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.custom-popup-message {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.custom-popup-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.custom-popup-btn:hover {
    opacity: 0.9;
}

/* --- IMAGE LIGHTBOX --- */
.image-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.image-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.image-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    color: var(--dark-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.image-lightbox-close:hover {
    opacity: 0.8;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: white;
    padding: 40px 5%;
    text-align: center;
}
footer p { margin: 0; opacity: 0.7; }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .hero { flex-direction: column-reverse; text-align: left; padding: 40px 5%; align-items: flex-start; }
    .hero h1 { font-size: 2.5rem; }
    .hero-content { padding-right: 0; width: 100%; max-width: 100%; }
    .hero-image { width: 100%; margin-bottom: 20px; }
    
    .feature-row { flex-direction: column-reverse; text-align: left; gap: 30px; margin-bottom: 60px; }
    .feature-row.reverse { flex-direction: column-reverse; }
    .feature-visual { width: 100%; height: 200px; }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container { flex-direction: column; }
    .cta-text { text-align: left; }
    .partner-form { padding: 30px 20px; }
}









