* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #0066ff;
    --text-muted: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Video Background */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

#video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Remove overlay for hero section - show video clearly */
.hero ~ section:first-of-type {
    position: relative;
}

.hero::before {
    display: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, opacity 0.3s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button a {
    color: #000;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

button.cta-button {
    display: inline-block;
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}

/* Hero section should be transparent to show video */
.hero {
    background: transparent !important;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Use Cases Grid */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Trusted By Section */
.trusted-by {
    background: rgba(0, 0, 0, 0.8);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    opacity: 0.7;
}

.logo-item {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card a {
    color: #fff;
    text-decoration: none;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.9);
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Utility Classes */
.mt-3 {
    margin-top: 3rem;
}

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

.text-muted {
    color: rgba(255, 255, 255, 0.8);
}

.text-muted-light {
    color: rgba(255, 255, 255, 0.7);
}

.italic-text {
    font-style: italic;
}

.max-w-600 {
    max-width: 600px;
    margin: 0 auto;
}

.centered-content {
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button Variations */
.cta-button-full {
    width: 100%;
}

.cta-button-block {
    display: block !important;
    width: fit-content;
    margin: 2rem auto;
}

.cta-button-block-center {
    display: block !important;
    width: fit-content;
    margin: 0 auto;
}

.cta-button-inline {
    margin-top: 1rem;
    display: inline-block !important;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.message-alert {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.message-alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #0f0;
}

.message-alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #f00;
}

/* Section Spacing */
.section-spacing {
    margin-top: 3rem;
}

/* Home Page Specific Styles */
.control-section-content {
    margin-top: 3rem;
}

.control-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.control-section-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Attribution */
.story-attribution {
    margin-top: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Error Page Styles */
.error-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: rgba(0, 0, 0, 0.8);
}

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

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    background: rgba(0, 0, 0, 0.9);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
}

.impact-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Work Preview Section */
.work-preview-section {
    background: rgba(0, 0, 0, 0.85);
}

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

.work-preview-item {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.work-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.work-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.work-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Lab Section */
.lab-section {
    background: rgba(0, 0, 0, 0.8);
}

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

.lab-item {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.lab-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.lab-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.lab-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.lab-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Ecosystem Section */
.ecosystem-section {
    background: rgba(0, 0, 0, 0.9);
}

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

.ecosystem-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.ecosystem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.ecosystem-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Stories Section */
.stories-section {
    background: rgba(0, 0, 0, 0.85);
}

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

.story-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.story-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.story-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    display: inline-block;
}

.story-link:hover {
    opacity: 0.7;
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-item {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

/* Team Grid */
.team-grid {
    margin-top: 3rem;
}

.team-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.team-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.privacy-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-section ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.privacy-section a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.privacy-section a:hover {
    opacity: 0.7;
}

.privacy-section strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Newsletter Styles */
.newsletter-section {
    background: rgba(0, 0, 0, 0.9);
    padding: 6rem 2rem;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    width: 100%;
}

.newsletter-form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form-large .newsletter-form-group {
    flex-direction: column;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    padding: 1rem 2.5rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s, opacity 0.3s;
    white-space: nowrap;
}

.newsletter-button:hover:not(:disabled) {
    transform: translateY(-2px);
    opacity: 0.9;
}

.newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.newsletter-message.newsletter-message-success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #0f0;
}

.newsletter-message.newsletter-message-error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #f00;
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-newsletter .newsletter-form-group {
    justify-content: center;
}

.footer-newsletter .newsletter-input {
    flex: 1;
    max-width: 300px;
}

/* Reel Page Styles */
.reel-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.reel-hero-content {
    max-width: 900px;
}

.reel-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.reel-hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.reel-video-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.9);
}

.reel-video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: #000;
}

.reel-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

#reel-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.reel-projects-section {
    background: rgba(0, 0, 0, 0.85);
}

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

.reel-project-item {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.reel-project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.reel-project-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.reel-project-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reel-project-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-menu-toggle {
        display: block;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .services-grid,
    .impact-grid,
    .work-preview-grid,
    .lab-grid,
    .ecosystem-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-number {
        font-size: 3rem;
    }

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

    .footer-social {
        flex-direction: column;
        gap: 0.75rem;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-section ul {
        margin-left: 1.5rem;
    }

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

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-button {
        width: 100%;
    }

    .footer-newsletter .newsletter-input {
        max-width: 100%;
    }

    .reel-video-container {
        border-radius: 4px;
    }

    .reel-projects-grid {
        grid-template-columns: 1fr;
    }
}

