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

:root {
    --live-blue: #2563EB;
    --sync-green: #00CC66;
    --neutral-gray: #F8FAFC;
    --accent-orange: #FF8C00;
    --stream-purple: #8B5CF6;
    --dark-bg: #0F172A;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --white: #FFFFFF;
    
    --font-tech: 'JetBrains Mono', monospace;
    --font-interface: 'Inter', sans-serif;
}

body {
    font-family: var(--font-interface);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--neutral-gray);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept {
    background: var(--sync-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-interface);
    font-size: 1rem;
}

.btn-accept:hover {
    background: #00aa55;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-tech);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--live-blue);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--live-blue);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--live-blue);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    color: var(--white);
    overflow: hidden;
}

.data-stream-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            var(--live-blue) 50px,
            var(--live-blue) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            var(--sync-green) 50px,
            var(--sync-green) 51px
        );
    animation: streamFlow 20s linear infinite;
}

@keyframes streamFlow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.sync-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--sync-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-dot.small {
    width: 8px;
    height: 8px;
}

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

.status-text {
    font-family: var(--font-tech);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--live-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
}

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

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

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--live-blue);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    font-family: var(--font-tech);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sync-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-block;
    background: var(--sync-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid var(--sync-green);
}

.cta-button:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.3);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dashboard-card {
    background: var(--neutral-gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-bottom: 1px solid #E2E8F0;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.update-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--sync-green);
    font-family: var(--font-tech);
}

.card-content {
    position: relative;
    overflow: hidden;
}

.card-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dashboard-card:hover .card-overlay {
    transform: translateY(0);
}

/* Technologies Section */
.technologies {
    background: var(--neutral-gray);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-card:hover {
    border-color: var(--live-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--live-blue);
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--white);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.feature-points {
    list-style: none;
}

.feature-points li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sync-green);
    font-weight: 700;
}

/* Data Sources Section */
.data-sources {
    background: linear-gradient(135deg, var(--live-blue) 0%, var(--stream-purple) 100%);
    color: var(--white);
}

.data-sources .section-title,
.data-sources .section-subtitle {
    color: var(--white);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.source-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.source-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.source-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--sync-green);
}

.source-icon svg {
    width: 100%;
    height: 100%;
}

.source-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.source-card p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Update Frequency Section */
.update-frequency {
    background: var(--neutral-gray);
}

.frequency-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.frequency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.frequency-card:hover {
    border-color: var(--live-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.frequency-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.frequency-badge.live {
    background: rgba(0, 204, 102, 0.1);
    color: var(--sync-green);
}

.frequency-badge.high {
    background: rgba(37, 99, 235, 0.1);
    color: var(--live-blue);
}

.frequency-badge.medium {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange);
}

.frequency-badge.custom {
    background: rgba(139, 92, 246, 0.1);
    color: var(--stream-purple);
}

.frequency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.frequency-value {
    font-family: var(--font-tech);
    font-size: 2rem;
    font-weight: 700;
    color: var(--live-blue);
    margin-bottom: 1rem;
}

.frequency-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.frequency-features {
    list-style: none;
    text-align: left;
}

.frequency-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.frequency-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sync-green);
    font-weight: 700;
}

/* Integration Section */
.integration {
    background: var(--white);
}

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

.integration-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.integration-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.integration-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--live-blue) 0%, var(--stream-purple) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 1.125rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Audit Section */
.audit {
    background: var(--neutral-gray);
}

.audit-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.audit-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.audit-image {
    border-radius: 8px;
    overflow: hidden;
}

.audit-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.audit-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Monitoring Section */
.monitoring {
    background: var(--white);
}

.monitoring-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.monitor-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.monitor-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.monitor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.monitor-card:hover img {
    transform: scale(1.1);
}

.monitor-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.monitor-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Security Section */
.security {
    background: var(--dark-bg);
    color: var(--white);
}

.security .section-title,
.security .section-subtitle {
    color: var(--white);
}

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

.security-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
}

.security-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--sync-green);
}

.security-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.security-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.security-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact {
    background: var(--neutral-gray);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--live-blue);
}

.info-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-family: var(--font-interface);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--live-blue);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--live-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-interface);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(0, 204, 102, 0.1);
    color: var(--sync-green);
    border: 1px solid var(--sync-green);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    font-family: var(--font-tech);
    color: var(--live-blue);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact {
    font-size: 0.875rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--live-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .tech-grid,
    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item,
    .integration-content,
    .audit-feature,
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-grid,
    .tech-grid,
    .sources-grid,
    .frequency-options,
    .monitoring-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--live-blue) 0%, var(--stream-purple) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content .lead {
    font-size: 1.5rem;
    opacity: 0.9;
}

.mission {
    background: var(--white);
}

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

.mission-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.mission-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.values {
    background: var(--neutral-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 56px;
    height: 56px;
    color: var(--live-blue);
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.story {
    background: var(--white);
}

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

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.expertise {
    background: var(--neutral-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.expertise-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.expertise-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.commitment {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.commitment .section-title,
.commitment .section-subtitle {
    color: var(--white);
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.commitment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sync-green);
}

.commitment-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.technology-focus {
    background: var(--white);
}

.tech-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-focus-card {
    background: var(--neutral-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-focus-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.tech-focus-content {
    padding: 2rem;
}

.tech-focus-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-focus-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.location {
    background: var(--neutral-gray);
}

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

.location-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
}

.location-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--live-blue);
}

.location-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.location-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.location-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.cta-section {
    background: linear-gradient(135deg, var(--live-blue) 0%, var(--stream-purple) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .mission-content,
    .story-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .commitment-features {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .tech-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content .lead {
        font-size: 1.125rem;
    }
    
    .expertise-grid,
    .tech-focus-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: var(--white);
    padding: 6rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 0.875rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--live-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--stream-purple);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--neutral-gray);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--live-blue);
    color: var(--white);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--white);
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}
