/* Base Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #4d4d4d;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 40px 0;
}

.highlight {
    color: #4CAF4F;
}

button {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 28px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

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

.nav-links a {
    text-decoration: none;
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF4F;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #4CAF4F;
    font-weight: 600;
}

.signup-btn {
    padding: 10px 20px;
    border: none;
    background-color: #4CAF4F;
    color: white;
    border-radius: 6px;
    font-weight: 600;
}

.login-btn:hover {
    color: #388E3C;
}

.signup-btn:hover {
    background-color: #388E3C;
}

/* Banner Section */
.section-banner {
    background-color: #f8f9fa;
    padding: 40px 5%;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.banner-content {
    flex: 1;
    max-width: 600px;
}

.banner-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #263238;
}

.banner-content h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #4CAF4F;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5d5d5d;
}

.banner-btn {
    padding: 12px 24px;
    background-color: #4CAF4F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.banner-btn:hover {
    background-color: #388E3C;
}

.banner-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.banner-img img {
    max-width: 100%;
    max-height: 400px;
}

/* Client Section */
.section-client {
    padding: 40px 5%;
    background-color: white;
}

.client {
    max-width: 1200px;
    margin: 0 auto;
}

.client-content {
    text-align: center;
    margin-bottom: 40px;
}

.client-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #263238;
}

.client-content p {
    font-size: 16px;
    color: #5d5d5d;
}

.client-option {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

/* Community Section */
.section-community {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.community {
    max-width: 1200px;
    margin: 0 auto;
}

.community-content {
    text-align: center;
    margin-bottom: 40px;
}

.community-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #263238;
}

.community-content p {
    font-size: 16px;
    color: #5d5d5d;
}

.community-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.community-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.community-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.community-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #263238;
}

.community-card p {
    font-size: 14px;
    color: #5d5d5d;
}

/* Pixelgrade Section */
.section-pixelgrade {
    padding: 60px 5%;
}

.pixelgrade {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pixelgrade-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.pixelgrade-content {
    flex: 1;
    min-width: 300px;
}

.pixelgrade-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #263238;
    line-height: 1.3;
}

.pixelgrade-content p {
    margin-bottom: 30px;
    color: #5d5d5d;
}

.pixelgrade-btn {
    padding: 12px 24px;
    background-color: #4CAF4F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.pixelgrade-btn:hover {
    background-color: #388E3C;
}

/* Business Section */
.section-business {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.business {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.business-content {
    flex: 1;
    min-width: 300px;
}

.business-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #263238;
    line-height: 1.3;
}

.business-content p {
    color: #5d5d5d;
}

.business-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* Design Section */
.section-design {
    padding: 60px 5%;
}

.design-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.design-footer-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.design-footer-content {
    flex: 1;
    min-width: 300px;
}

.design-footer-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #263238;
    line-height: 1.3;
}

.design-footer-content p {
    margin-bottom: 30px;
    color: #5d5d5d;
}

.design-footer-btn {
    padding: 12px 24px;
    background-color: #4CAF4F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.design-footer-btn:hover {
    background-color: #388E3C;
}

/* Customer Section */
.section-customer {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.customer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-img {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    justify-content: center;
}

.customer-content {
    flex: 2;
    min-width: 300px;
}

.customer-content p {
    font-style: italic;
    margin-bottom: 30px;
    color: #5d5d5d;
    line-height: 1.8;
}

.customer-name {
    margin-bottom: 30px;
}

.customer-name h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #263238;
}

.customer-name p {
    font-style: normal;
    margin-bottom: 0;
    color: #5d5d5d;
}

.customer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo img {
    max-height: 40px;
}

.more-logo {
    cursor: pointer;
}

/* Marketing Section */
.section-marketing {
    padding: 60px 5%;
}

.marketing {
    max-width: 1200px;
    margin: 0 auto;
}

.marketing-header {
    text-align: center;
    margin-bottom: 50px;
}

.marketing-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #263238;
}

.marketing-header p {
    font-size: 16px;
    color: #5d5d5d;
    max-width: 700px;
    margin: 0 auto;
}

.marketing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.marketing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.marketing-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.marketing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marketing-card:hover .marketing-img img {
    transform: scale(1.05);
}

.marketing-content {
    padding: 20px;
}

.marketing-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #263238;
    font-weight: 500;
    line-height: 1.4;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #4CAF4F;
    font-weight: 600;
    text-decoration: none;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #388E3C;
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Demo Section */
.section-demo {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.demo {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #263238;
    line-height: 1.3;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #4CAF4F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.demo-btn:hover {
    background-color: #388E3C;
}

.demo-btn i {
    transition: transform 0.3s ease;
}

.demo-btn:hover i {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background-color: #1e2730;
    color: white;
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-brand img {
    height: 30px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    margin-bottom: 5px;
}

.rights {
    font-size: 14px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    background-color: #2c3944;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #4CAF4F;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.newsletter {
    flex: 1;
    min-width: 250px;
}

.newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
}

.email-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: #2c3944;
    color: white;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.email-input::placeholder {
    color: #adb5bd;
}

.submit-button {
    background-color: #4CAF4F;
    border: none;
    padding: 0 15px;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #388E3C;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .banner-content h1,
    .banner-content h2 {
        font-size: 40px;
    }

    .demo h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .menu-toggle:checked~.nav-links,
    .menu-toggle:checked~.auth-buttons {
        display: flex;
    }

    .menu-icon {
        display: block;
        order: 3;
    }

    .header {
        padding: 15px 5%;
        flex-wrap: wrap;
    }

    .nav-links {
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        display: none;
        order: 4;
    }

    .auth-buttons {
        display: none;
        /* Hide by default on mobile */
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
        order: 5;
    }

    .logo {
        order: 1;
    }

    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-content h1,
    .banner-content h2 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-btn {
        margin: 0 auto;
    }

    .business-content h2,
    .pixelgrade-content h2,
    .design-footer-content h2,
    .marketing-header h2 {
        font-size: 28px;
    }

    .demo h2 {
        font-size: 28px;
    }
}

@media (max-width: 320px) {
    .header {
        padding: 10px 3%;
    }

    .login-btn,
    .signup-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .banner-content h1,
    .banner-content h2 {
        font-size: 28px;
    }

    .client-content h2,
    .community-content h2,
    .business-content h2,
    .pixelgrade-content h2,
    .design-footer-content h2,
    .marketing-header h2 {
        font-size: 24px;
    }

    .client-option {
        gap: 15px;
    }

    .client-logo img {
        height: 30px;
    }

    .community-card {
        min-width: 100%;
    }

    .marketing-card {
        min-width: 100%;
    }

    .customer-img {
        min-width: 100%;
    }

    .demo h2 {
        font-size: 24px;
    }

    .footer {
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .newsletter {
        margin: 0 auto;
    }
}