/* 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: #212529;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: #212529;
    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: #212529;
    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: #212529;
}

/* 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: #212529; /* 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;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(60, 187, 178, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(93, 124, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.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;
    position: relative;
}

.features h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3CBBB2, #5D7CE9);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

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

/* Stagger animation for cards */
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: linear-gradient(135deg, #f5f6f8, #ffffff);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3CBBB2, #5D7CE9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'THICCCBOI', monospace;
    opacity: 0.1;
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.feature-card-1 .feature-number { color: #3CBBB2; }
.feature-card-2 .feature-number { color: #5D7CE9; }
.feature-card-3 .feature-number { color: #F59E0B; }
.feature-card-4 .feature-number { color: #3CBBB2; }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3CBBB2, #5D7CE9);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(60, 187, 178, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(60, 187, 178, 0.5);
}

.feature-card-1 .feature-icon {
    background: linear-gradient(135deg, #3CBBB2, #24a098);
}

.feature-card-2 .feature-icon {
    background: linear-gradient(135deg, #5D7CE9, #4461d7);
}

.feature-card-3 .feature-icon {
    background: linear-gradient(135deg, #F59E0B, #d97706);
}

.feature-card-4 .feature-icon {
    background: linear-gradient(135deg, #3CBBB2, #2a9bc4);
}

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

.feature-card-1:hover h3 { color: #3CBBB2; }
.feature-card-2:hover h3 { color: #5D7CE9; }
.feature-card-3:hover h3 { color: #F59E0B; }
.feature-card-4:hover h3 { color: #3CBBB2; }

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

/* Target Audience Section */
.target-audience {
    background: #212529!important;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(60, 187, 178, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(93, 124, 233, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.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;
    position: relative;
}

.target-audience h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3CBBB2, #5D7CE9);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

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

.audience-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3CBBB2, #5D7CE9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(60, 187, 178, 0.3);
}

/* Stagger animation for solution cards */
.audience-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.solution-card-1 { animation-delay: 0.1s; }
.solution-card-2 { animation-delay: 0.2s; }
.solution-card-3 { animation-delay: 0.3s; }

.audience-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.solution-card-1:hover h3 { color: #3CBBB2; }
.solution-card-2:hover h3 { color: #5D7CE9; }
.solution-card-3:hover h3 { color: #3CBBB2; }

.solution-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

.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;
    margin-top: 1.5rem;
}

.audience-card li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.audience-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3CBBB2;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.solution-card-1 li::before { color: #3CBBB2; }
.solution-card-2 li::before { color: #5D7CE9; }
.solution-card-3 li::before { color: #3CBBB2; }

.audience-card:hover li {
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.audience-card li:hover::before {
    transform: scale(1.3);
}

/* 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: #212529;
    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%;
    }
    
    /* Fix select height to match inputs on mobile */
    .demo-form input,
    .demo-form select {
        height: 50px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        line-height: 1.5;
        padding: 15px;
    }
    
    /* Add custom arrow for select on mobile */
    .demo-form select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 20px;
        padding-right: 45px;
    }
}

@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, #1a1a2e 0%, #16213e 50%, #0f1419 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;
}