/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4F46E5;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-small,
.btn-full {
    font-family: inherit;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #4F46E5;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #4338CA;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: #4F46E5;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border: 2px solid #4F46E5;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #EEF2FF;
    transform: translateY(-1px);
}

.btn-primary-small {
    background: #4F46E5;
    color: #ffffff;
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary-small:hover {
    background: #4338CA;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.hero-text h1 {
    font-size: 3.1rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.4rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #4F46E5;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Hero image */
.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.image-placeholder {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.hero-photo {
    width: 100%;
    max-width: 1000px;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}


/* Section headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: #4b5563;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 1.4rem;
    border: 1px solid #E5E7EB;
}

.problem-icon {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #111827;
}

.problem-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.solution-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.solution-text .label {
    display: inline-flex;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.solution-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
}

.solution-text p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.checkmarks {
    list-style: none;
    margin-top: 0.4rem;
}

.checkmarks li {
    font-size: 0.96rem;
    color: #374151;
    margin-bottom: 0.35rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.feature-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #111827;
}

.feature-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* How It Works */
.how-it-works-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.4rem;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #4F46E5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #111827;
}

.step-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

.step-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #9CA3AF;
}

.video-placeholder {
    display: flex;
    justify-content: center;
}

.video-box {
    background: #111827;
    color: #E5E7EB;
    border-radius: 18px;
    padding: 1.5rem 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.video-box p {
    font-size: 0.95rem;
}

.pricing-section {
    padding: 80px 0;
    background: #ffffff;
}

/* ✅ Key fix: auto-fit centers 1–3 cards naturally */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;   /* centers grid tracks */
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: #F9FAFB;
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    border: 1px solid #E5E7EB;
    position: relative;
    width: 100%; /* ensures consistent sizing inside grid */
}

/* Featured card highlight */
.pricing-card.featured {
    border-color: #4F46E5;
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.15);
    background: #EEF2FF;
}

/* Badge */
.badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #4F46E5;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.03em;
}

/* Header */
.pricing-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.price {
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
}

.price-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111827;
}

.price-period {
    font-size: 0.85rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

/* Features */
.pricing-features {
    list-style: none;
    margin-bottom: 1.2rem;
    padding: 0;
}

.pricing-features li {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 0.3rem;
}

/* Guarantee */
.pricing-guarantee {
    text-align: center;
    font-size: 0.95rem;
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 90px;
    background: #F9FAFB;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1.8rem;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #111827;
}

.faq-item p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Modal (Netlify form) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1100;
}

.modal-overlay.is-visible {
    display: flex;
}

.modal {
    background: #ffffff;
    border-radius: 18px;
    max-width: 480px;
    width: 100%;
    padding: 1.8rem 1.8rem 1.6rem;
    position: relative;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
}

.modal h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.modal p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1.1rem;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

.modal-close:hover {
    color: #111827;
}

/* Form styles (modal) */
.form-row {
    margin-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #D1D5DB;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 1px #4F46E5;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.3rem;
}

.form-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #020617;
    color: #E5E7EB;
    padding: 40px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: #9CA3AF;
    max-width: 320px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.25rem;
}

.footer-column a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #111827;
    padding-top: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.footer-links a {
    font-size: 0.8rem;
    color: #9CA3AF;
    text-decoration: none;
    margin-left: 1rem;
}

.footer-links a:hover {
    color: #E5E7EB;
}

.feature-photo {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    display: block;
}

.how-it-works-image {
    max-width: 700px;
    margin: 0 auto 40px;
}

.how-it-works-photo {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.solution-photo {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .solution-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .footer-content {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    }
}

@media (max-width: 640px) {
    .nav-content {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .problem-grid,
    .features-grid,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .video-box {
        width: 100%;
    }

    .modal {
        max-width: 100%;
    }
}
