/* Base styles from your existing CSS, but adjusted for full width */
body {
    display: flex;
    justify-content: center; /* Keep to center the footer */
    align-items: center; /* Keep to center the footer */
    min-height: 100vh;
    padding: 0; /* Remove body padding to allow full width sections */
    background-color: var(--light-grey);
    font-family: 'Inter', sans-serif;
    color: var(--dark-grey);
    flex-direction: column; /* Stack sections and footer vertically */
    overflow-x: hidden; /* Prevent horizontal scroll from elements like shadows */
    margin: 0; /* Ensure no default body margin */
}

/* New wrapper for all content to handle full width sections */
.landing-page-wrapper {
    width: 100%; /* Take full browser width */
    flex-grow: 1; /* Allow it to take available height */
}

/* --- Global Section Styling --- */
.section {
    padding: 80px 20px; /* Generous vertical padding, fixed horizontal padding */
    text-align: center;
}

.section-content {
    max-width: 1200px; /* Max width for readability within sections */
    margin: 0 auto; /* Center the content within the full-width section */
}

.section h2 {
    font-size: 2.5em;
    color: var(--dark-grey);
    margin-bottom: 20px;
    font-weight: 700;
}

.section p.subtitle {
    font-size: 1.2em;
    color: var(--medium-grey);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* 1. Full Page Background Fix */
#hero-canvas {
    position: fixed; /* Changed from absolute to fixed */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Behind everything */
    background-color: #f0fdf4; /* Light tint to match your theme */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Background layer */
    background-color: transparent; /* Ensure gradient shows through */
}

/*.hero-content .app-logo {*/
/*    font-size: 60px;*/
/*    color: var(--primary-blue);*/
/*    margin-bottom: 20px;*/
/*}*/
.app-logo {
    /*background-color: var(--primary-blue);*/
    background-color: #02adfa;
}

.app-logo img{
    width: 60px;
    height: 60px;
    padding: 4px;
    margin-top: 3px;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white to see animation through */
    backdrop-filter: blur(1px); /* Modern glassmorphism look */
    padding: 40px;
    border-radius: 20px;

    position: relative;
    z-index: 2; /* Content layer on top of canvas */
    text-align: center; /* Center text and inline-block elements */
    max-width: 900px; /* Limit content width for readability */
    margin: 0 auto; /* Center content block */
}

.hero-content .app-logo {
    margin-bottom: 10px;
}

/* 2. Circular Logo Update */
.app-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.app-logo-circle {
    background-color: #02adfa; /* Your preferred blue */
    width: 100px;  /* Bigger size */
    height: 100px;
    border-radius: 50%; /* Perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(2, 173, 250, 0.3);
}

.app-logo-circle img {
    width: 90%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: none;
}

.app-logo-circle:hover {
    border: 2px solid #2c4753;
    border-radius: 50%; /* Perfect circle */
}


.hero-content h1 {
    /*font-size: 3.8em;*/
    font-size: 1.5em;
    color: var(--dark-grey);
    line-height: 1.5;
    /*font-weight: 800;*/
    font-weight: 700;
}
/* 3. Brand Hierarchy & Clean Text */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-sub {
    font-family: monospace;
    font-size: 0.9em; /* Smaller, cleaner subtitle */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-grey);
    font-weight: 800;
}

.brand-main {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--dark-grey);
    text-shadow: 0px 4px 15px rgba(0,0,0,0.05);
}

.quantum-link {
    color: #02adfa;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.quantum-link:hover {
    border-bottom-color: #02adfa;
}

.hero-content p {
    font-size: 1.1em;
    color: var(--dark-grey);
    line-height: 1.7;
    max-width: 800px; /* Adjusted for consistency with h1 */
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    /*background-color: var(--primary-blue);*/
    background-color: #02adfa;
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background-color: #0056b3;
    /*transform: translateY(-3px);*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-secondary {
    background-color: var(--white);
    /*color: var(--primary-blue);*/
    color: #02adfa;
    /*border: 2px solid var(--primary-blue);*/
    border: 2px solid #02adfa;
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--light-blue);
    /*transform: translateY(-3px);*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Why Probaho Section --- */
.why-probaho {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.why-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-item i {
    font-size: 45px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.6em;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-item p {
    font-size: 1.05em;
    color: var(--medium-grey);
    line-height: 1.6;
}

/* --- Features Section --- */
.features-section {
    background-color: var(--light-grey);
    border-bottom: 1px solid var(--border-color);
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-detail-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-detail-item i {
    font-size: 40px;
    color: var(--primary-blue);
}

.feature-detail-item h3 {
    font-size: 1.5em;
    color: var(--dark-grey);
    font-weight: 600;
}

.feature-detail-item p {
    font-size: 1em;
    color: var(--medium-grey);
    line-height: 1.6;
    flex-grow: 1;
}


/* --- Final Call to Action Section --- */
.final-cta-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 20px;
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.final-cta-section p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .hero-buttons .btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.final-cta-section .hero-buttons .btn-secondary:hover {
    background-color: var(--light-grey);
    /*transform: translateY(-3px);*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

section.final-cta-section:hover {
    background-color: var(--dark-grey);
}


/* Security Section Styles */
.security-section {
    padding: 30px 20px;
    backdrop-filter: blur(1px); /* Modern glassmorphism look */
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.security-card {
    padding: 40px;
    border-radius: 15px;
    background: var(--light-grey);
    text-align: center;
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: translateY(-10px);
}

.security-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.tech-stack-note {
    text-align: center;
    margin-top: 50px;
    color: var(--medium-grey);
    font-size: 0.9rem;
}


/* --- Footer --- */
.footer {
    width: 100%;
    padding: 30px 20px;
    margin-top: auto;
    text-align: center;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: var(--medium-grey);
}

.footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-grid {
    display: grid;
    /* This ensures it drops to 1 column on small screens */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .section h2 {
        font-size: 2em;
    }
    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .section {
        padding: 60px 15px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 80%;
        margin: 0 auto;
    }
    .why-items-grid, .features-grid-detailed {
        grid-template-columns: 1fr;
    }
    .why-item, .feature-detail-item {
        padding: 25px;
    }
    .why-item i, .feature-detail-item i {
        font-size: 40px;
    }

    .footer-container {
        text-align: center;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-content {
        padding: 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .section h2 {
        font-size: 1.8em;
    }
    .section p.subtitle {
        font-size: 1em;
    }
}