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

:root {
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --ai-green: #10B981;
    --data-purple: #8B5CF6;
    --electric-blue: #3B82F6;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --border-glow: rgba(16, 185, 129, 0.3);
    --purple-glow: rgba(139, 92, 246, 0.4);
    --blue-glow: rgba(59, 130, 246, 0.4);
}

body {
    font-family: 'Space Grotesk', 'Exo 2', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Binary Background Animation */
.binary-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--ai-green);
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.binary-background span {
    position: absolute;
    animation: binary-fall 15s linear infinite;
    opacity: 0;
}

@keyframes binary-fall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ai-green);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    font-family: 'Exo 2', sans-serif;
}

.logo:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--ai-green);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-green), var(--electric-blue));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--ai-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-darker);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) blur(2px);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero:hover .hero-bg-image {
    transform: scale(1.05);
}

.hero-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hero-overlay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-text-wrapper {
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Exo 2', sans-serif;
}

.glow-text-ai {
    color: var(--ai-green);
    text-shadow: 
        0 0 20px rgba(16, 185, 129, 0.8),
        0 0 40px rgba(16, 185, 129, 0.5),
        0 0 60px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.glow-text-data {
    color: var(--data-purple);
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.3);
    animation: pulse-glow 2s ease-in-out infinite 0.5s;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(16, 185, 129, 0.8),
            0 0 40px rgba(16, 185, 129, 0.5),
            0 0 60px rgba(16, 185, 129, 0.3);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(16, 185, 129, 1),
            0 0 60px rgba(16, 185, 129, 0.7),
            0 0 90px rgba(16, 185, 129, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
}

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

.neural-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    font-family: 'Exo 2', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
}

/* Services Section */
.services {
    background: var(--bg-darker);
}

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

.service-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--ai-green);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(16, 185, 129, 0.3);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    filter: brightness(0.9) contrast(1.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ai-green);
    font-family: 'Exo 2', sans-serif;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Space Grotesk', sans-serif;
}

/* Solutions Accordion */
.solutions {
    background: var(--bg-dark);
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.4);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--data-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.accordion-item.active {
    border-color: var(--ai-green);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.accordion-header:hover {
    background: rgba(16, 185, 129, 0.1);
}

.accordion-title {
    color: var(--text-primary);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--ai-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.icon-line:first-child {
    transform: rotate(90deg);
}

.accordion-item.active .icon-line:first-child {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-inner {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
}

.hologram-effect {
    position: relative;
}

.hologram-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(139, 92, 246, 0.1) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: hologram-scan 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes hologram-scan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.hologram-visual {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: 1px solid var(--data-purple);
    background: rgba(139, 92, 246, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 20px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.3);
}

.solution-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2) saturate(0.5);
    opacity: 0.6;
    z-index: 0;
}

.data-visualization {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.accordion-text {
    position: relative;
    z-index: 2;
}

.accordion-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ai-green);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    font-family: 'Exo 2', sans-serif;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.accordion-text ul {
    list-style: none;
    margin-top: 1rem;
}

.accordion-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
}

.accordion-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--ai-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

/* Technology Section */
.technology {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.tech-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(3px);
}

.technology .container {
    position: relative;
    z-index: 1;
}

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

.tech-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--electric-blue);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-left-color: var(--ai-green);
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(16, 185, 129, 0.2);
}

.tech-item h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Exo 2', sans-serif;
}

.tech-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Space Grotesk', sans-serif;
}

/* Benefits Section */
.benefits {
    background: var(--bg-dark);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-blue);
    min-width: 80px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    font-family: 'Exo 2', sans-serif;
}

.benefit-content h3 {
    font-size: 1.5rem;
    color: var(--ai-green);
    margin-bottom: 0.5rem;
    font-family: 'Exo 2', sans-serif;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Space Grotesk', sans-serif;
}

/* Capabilities Section */
.capabilities {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.capabilities-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.capabilities-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(3px);
}

.capabilities .container {
    position: relative;
    z-index: 1;
}

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

.capability-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.capability-box:hover::before {
    width: 300px;
    height: 300px;
}

.capability-box:hover {
    transform: translateY(-5px);
    border-color: var(--electric-blue);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.capability-box h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Exo 2', sans-serif;
}

.capability-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
}

/* Insights Section */
.insights {
    background: var(--bg-dark);
}

.insights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.insights-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.insights-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8) contrast(1.2);
}

.insights-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Contact Section */
.contact {
    background: var(--bg-darker);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--ai-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Exo 2', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Exo 2', sans-serif;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--ai-green);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ai-green);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ai-green), var(--electric-blue));
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--data-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--ai-green);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    color: var(--ai-green);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glow);
    color: var(--text-secondary);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--ai-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Exo 2', sans-serif;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--ai-green);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--electric-blue);
    text-decoration: none;
}

.footer a:hover {
    color: var(--ai-green);
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid var(--border-glow);
    color: var(--text-primary);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-notification.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-content a {
    color: var(--ai-green);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--ai-green);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.cookie-btn:hover {
    background: var(--electric-blue);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
}

/* Policy Pages Styles */
.policy-page {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-dark);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.policy-content h1 {
    color: var(--ai-green);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.policy-content h2 {
    color: var(--electric-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: 'Exo 2', sans-serif;
}

.policy-content h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-family: 'Exo 2', sans-serif;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.policy-content a {
    color: var(--electric-blue);
    text-decoration: none;
}

.policy-content a:hover {
    color: var(--ai-green);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glow);
}

/* Thanks Page */
.thanks-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-dark);
}

.thanks-content {
    max-width: 600px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.thanks-content h1 {
    color: var(--ai-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.thanks-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-glow);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .accordion-inner {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .insights-content {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .neural-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
