:root {
    /* Color Palette */
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #00f2ff;
    /* Cyan/Electric Blue */
    --primary-glow: rgba(0, 242, 255, 0.5);
    --secondary: #00ff88;
    /* Electric Green */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --base-font-size: 16px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(ellipse at 10% 10%, rgba(0,242,255,0.02), transparent 20%), radial-gradient(ellipse at 90% 90%, rgba(0,255,136,0.02), transparent 20%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Images responsive */
img, .mockup-img, .feature-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Improve focus visibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 3px solid rgba(0, 242, 255, 0.15);
    outline-offset: 3px;
}

/* Skip link visible on focus */
.skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    z-index: 2000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus {
    top: 8px;
}

/* Slightly larger base font on desktops */
html { font-size: var(--base-font-size); }

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Decorative separators between sections */
/* Full-width subtle divider with centered ornament */
section + section {
    position: relative;
    padding-top: 2.6rem;
}

section + section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0.6rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,242,255,0.16), transparent);
    opacity: 0.22;
    pointer-events: none;
}

section + section::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(180deg, #00f2ff, #00ff88);
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(0,242,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
    section + section { padding-top: 1.6rem; }
    section + section::after { width: 10px; height: 10px; top: -4px; }
}

/* Ensure anchor targets are visible below the fixed header (uses --scroll-offset set by JS) */
section[id],
[id] {
    scroll-margin-top: var(--scroll-offset, 100px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(90deg, #00dfff, #00b3ff);
    color: #041018;
    box-shadow: 0 8px 30px rgba(0, 242, 255, 0.12);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.997); }

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    /* Reduced from 1.5rem to balance larger logo */
    transition: all 0.4s ease;
}


.header.scrolled {
    padding: 0.6rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled .side-icon {
    height: 35px;
}

.header.scrolled .logo-img {
    height: 45px;
}

.header.scrolled .logo-text {
    font-size: 1.4rem;
}



.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.side-icon {
    height: 55px;
    /* Enlarged from ~40px */
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: height 0.4s ease;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header.scrolled .logo-text {
    font-size: 1.2rem;
}


/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.contact-section {
    padding: 8rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Ensure nav items align vertically (fix for "İletişime Geç" button) */
.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links .btn.btn-secondary {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-links .btn.btn-secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu Logic */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    /* Burger Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.1;
}

.hero-mouse-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: left 0.1s ease-out, top 0.1s ease-out;
}


.mission-bridge {
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.mission-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    opacity: 0.8;
}

.line-glow {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin: 2rem auto 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Stats Section Refinement */
.stats-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    margin-top: 0;
    /* Removed negative margin to prevent overlap */
}

.stats-grid {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem;
    border-radius: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.goals-header {
    text-align: center;
    margin-bottom: 5rem;
}

.goals-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.goals-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    background: none;
    -webkit-text-fill-color: #fff;
}

.stats-items-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
}


.stat-item {
    position: relative;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover::before {
    opacity: 0.2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)),
        url('https://images.unsplash.com/photo-1617788130335-53a473c5efdf?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

#hero-img {
    display: none;
    /* Hide since it failed to generate */
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    padding-bottom: 0.5rem;
}

/* Make hero heading friendlier on smaller screens */
@media (max-width: 900px) {
    .hero h1 { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 300;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

/* Features */
.features-section {
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: all 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.feature-card:hover .feature-img {
    opacity: 1;
    transform: scale(1.15);
}

.feature-card-content {
    padding: 3rem 2rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Audience */
.audience-section {
    padding: 6rem 0;
    text-align: center;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.audience-item {
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
    cursor: default;
}

.audience-item:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.05);
}

/* Why Section */
.why-section {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--secondary);
    background: rgba(0, 255, 136, 0.05);
}

.why-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.why-item p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Platform */
.platform-section {
    padding: 8rem 0;
}

.platform-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.platform-features {
    list-style: none;
    margin-top: 2rem;
}

.platform-features li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-features li i {
    color: var(--primary);
    font-size: 1.5rem;
}

.platform-visual {
    padding: 1rem;
    position: relative;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.platform-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(0, 255, 136, 0.1));
    border-radius: 24px;
    filter: blur(50px);
    z-index: -1;
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    transition: transform 0.5s ease;
}

.platform-visual:hover .mockup-img {
    transform: scale(1.02) translateY(-5px);
}

.platform-visual::after {
    display: none;
}

/* CTA */
.cta-section {
    padding: 8rem 0;
}

.cta-card {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(2,2,2,0.9), #000);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations - Initial Reveal */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
    animation: reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.reveal-text-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.4s forwards;
}

.reveal-text-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
}

.reveal-text-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Roadmap */
.roadmap-section {
    padding: 8rem 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    margin-top: 4rem;
}

.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.2;
    z-index: 0;
}

.roadmap-item {
    position: relative;
    z-index: 1;
}

.roadmap-dot {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.roadmap-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--glass-border);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.roadmap-dot.current {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.roadmap-dot.current::after {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.roadmap-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* FAQ */
.faq-section {
    padding: 8rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .stats-items-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .roadmap-grid::before {
        display: none;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 2rem;
        border-left: 1px solid rgba(0, 242, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .stats-grid {
        padding: 3rem 1.5rem;
    }

    .stats-items-wrapper {
        grid-template-columns: 1fr;
    }

    .goals-title {
        font-size: 1.8rem;
    }

    .audience-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .audience-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .audience-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}