.page-header{display: none;}
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #635a98;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #34495e;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, #62abf6 0%, #2566e6 100%);
}

h1, h2, h3 {
    color: #3f576e;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1, .hero-last h2 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #fff;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 10px;
    height: 55px;
    line-height: 55px;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #454066;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Lander Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 24px;
}

/* Full Width Screenshot Sections */
.screenshot-full {
    padding: 60px 0;
    background: var(--light);
}

.screenshot-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.screenshot-placeholder h2, .screenshot-placeholder h3 {color: #fff;}
.screenshot-placeholder {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: white;
    padding-top: 57%;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.screenshot-placeholder-text-wrap {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.screenshot-placeholder-wrap-text-center {
    padding: 24px;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: #2c3e50;
    opacity: 0.7;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;

}

.screenshot-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.screenshot-placeholder h3 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.screenshot-placeholder p {
    font-size: 19px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

/* Alternate Background Sections */
.section-alt {
    background: var(--light);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.review-stars {
    color: #f39c12;
    margin-bottom: 10px;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.choose-card {
    text-align: center;
    padding: 30px 20px;
}

.choose-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.stats-section .section-title p, .stats-section .section-title h2 {color: #fff;}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: bold;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--dark);
    color: white;
    padding: 80px 0;
}
.dashboard-preview h2, .dashboard-preview h3, .dashboard-preview h4{
    color: #fff;
}
.dashboard-content {
    text-align: center;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dashboard-feature {
    text-align: center;
    padding: 30px 20px;
}

.dashboard-feature i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Integration Section */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    text-align: center;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.integration-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: bold;
    color: var(--dark);
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Final CTA */
.final-cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 100px 0;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.product-price {
    font-size: 32px;
    color: var(--accent);
    font-weight: bold;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .screenshot-placeholder::before {
        top: 10%;
        left: 5%;
        right: 5%;
        border-top-right-radius: 50px;
        border-top-left-radius: 50px;
    }
    .screenshot-placeholder-text-wrap {
        position: absolute;
        top: 5%;
        left: 4%;
        right: 4%;
    }
    .screenshot-placeholder-wrap-text-center {
        padding: 12px;
    }
    .screenshot-placeholder h3 {
        font-size: 20px;
        margin-top: 12px;
        margin-bottom: 10px;
    }
    .screenshot-placeholder p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 0;

    }
    .screenshot-placeholder i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .screenshot-placeholder::before {
        top: 10%;
        left: 12px;
        right: 12px;

    }
    .screenshot-placeholder-text-wrap {
        position: absolute;
        top: 5%;
        left: 12px;
        right: 12px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .screenshot-placeholder h3 {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .screenshot-placeholder {
        padding-top: 0;
        min-height: 220px;
    }
}