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

html {
    scroll-behavior: smooth;
}

/* Import THICCCBOI fonts */
@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-BLACK.TTF') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-BOLD.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-SEMIBOLD.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-MEDIUM.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-REGULAR.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-LIGHT.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Import Google Fonts for tech/digital typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'THICCCBOI', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
    background: #140F13;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #140F13;
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    background: #140F13;
    border-radius: 12px;
    padding: 0;
    object-fit: contain;
}

.logo h1 {
    font-family: 'THICCCBOI', monospace;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.3rem 0;
    line-height: 1;
}

.logo p {
    color: #3CBBB2;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
    font-family: 'THICCCBOI', sans-serif;
}

/* Navigation Styles */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'THICCCBOI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #3CBBB2;
    transform: translateY(-1px);
}

/* Button Styles */
.cta-button {
    background-color: #3CBBB2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 208, 164, 0.3);
    font-family: 'THICCCBOI', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 208, 164, 0.4);
}

.cta-primary {
    background-color: #3CBBB2;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'THICCCBOI', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(63, 208, 164, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(63, 208, 164, 0.6);
    background-color: #24a098;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'THICCCBOI', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3CBBB2;
    color: #3CBBB2;
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 80px;
    background: #140F13;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 0 100px;
    color: white;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(20, 15, 19, 0.6) 0%,
        rgba(20, 15, 19, 0.5) 25%,
        rgba(20, 15, 19, 0.55) 50%,
        rgba(20, 15, 19, 0.6) 75%,
        rgba(20, 15, 19, 0.7) 100%
    );
    background-attachment: fixed;
    background-color: #140F13; /* Fallback color if image doesn't load */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-with-tree-bg {
    background-image: url('../images/tree.png');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.85) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'THICCCBOI', monospace;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero p {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    background: white;
    padding: 100px 0;
    color: #333;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3CBBB2;
    font-family: 'THICCCBOI', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #f5f6f8, #ffffff);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(63, 208, 164, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #5D7CE9;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: #3CBBB2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

/* Target Audience Section */
.target-audience {
    background: #140F13;
    padding: 80px 0;
    color: white;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-family: 'THICCCBOI', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.audience-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(63, 208, 164, 0.3);
}

.audience-card h3 {
    color: #3CBBB2;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-label {
    color: #5d7ce9;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'THICCCBOI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(93, 124, 233, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(93, 124, 233, 0.3);
}

.audience-card ul {
    list-style: none;
    padding: 0;
}

.audience-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

.audience-card li:last-child {
    border-bottom: none;
}

.audience-card li::before {
    content: "✓";
    color: #3CBBB2;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 100px 0;
    color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'THICCCBOI', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #5D7CE9;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefit-item p {
    opacity: 0.9;
    font-size: 0.9rem;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 100px 0;
    text-align: center;
    color: #333;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #3CBBB2;
    margin-bottom: 1rem;
    font-family: 'THICCCBOI', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

/* Demo Form Styles */
.demo-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.demo-form input,
.demo-form select {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: #3CBBB2;
    box-shadow: 0 0 0 3px rgba(63, 208, 164, 0.2);
    background: white;
}

.demo-form input::placeholder {
    color: #999;
}

.demo-form select option {
    background: white;
    color: #333;
}

.demo-form button {
    margin-top: 1rem;
}

/* Footer Styles */
footer {
    background: #140F13;
    color: white;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #3CBBB2;
    margin-bottom: 1rem;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

.footer-section ul li a:hover {
    color: #3CBBB2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #ccc;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 990px) {
    .cta-button {
        display: none;
    }
}
@media (max-width: 768px) {
    /* Center header nav content on index page for small screens */
    .index-page header nav.container {
        justify-content: center;
    }

    /* Ensure all navs center at this width (per request) */
    nav {
        justify-content: center;
    }

    /* Center the logo block within the nav */
    .logo {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .demo-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features,
    .target-audience,
    .benefits,
    .cta-section {
        padding: 60px 0;
    }
}

/* Loading and Error States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.error {
    border-color: #ef4444 !important;
}

.success {
    border-color: #3CBBB2 !important;
    box-shadow: 0 0 0 3px rgba(63, 208, 164, 0.2);
}

/* Form Validation Styles */
.form-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-success {
    color: #3CBBB2;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

/* Index2 Page Specific Styles */
.index2-page #features .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.index2-page #products .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.index2-page #products h2 { 
    color: #3CBBB2; 
}

.index2-page #products .audience-card {
    padding: 16px;
}

/* Index2 Background Styles */
.hero-index2-gradient {
    background: linear-gradient(135deg, #0c86ff 0%, #eef2ff 100%);
}

.features-white-bg {
    background: #ffffff;
}

.products-gradient-bg {
    background: linear-gradient(135deg, #c6cedb 0%, #eef2ff 100%);
}

.demo-gradient-bg {
    background: linear-gradient(135deg, #e4e7eb 0%, #eef2ff 100%);
}

.text-accent {
    color: #3CBBB2;
}

/* Index2 Responsive Styles */
@media (max-width: 768px) {
    .index2-page #features .features-grid { 
        grid-template-columns: 1fr; 
    }
    .index2-page #products .audience-grid { 
        grid-template-columns: 1fr; 
    }
}

/* Policy Page Styles */
.policy-page {
    background: #ffffff;
    color: #333333;
    font-weight: 500;
}

.policy-page main {
    background: #ffffff;
    padding: 100px 0;
}

.policy-page main h1 {
    font-family: 'THICCCBOI', monospace;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    color: #3CBBB2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.policy-page main h2 {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: #333333;
    letter-spacing: 0.02em;
}

.policy-page main p {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #444444;
}

.policy-page main ul {
    margin: 0 0 1rem 1.25rem;
}

.policy-page main li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444444;
    font-weight: 600;
}