* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #000000;
    --white: #ffffff;
    --dark: #0a0a0a;
    --dark-soft: #111111;
    --gray-900: #171717;
    --gray-800: #1f1f1f;
    --gray-700: #2a2a2a;
    --gray-600: #3d3d3d;
    --gray-500: #525252;
    --gray-400: #737373;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f5f5f5;
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-blue: #0066ff;
    --gradient-1: linear-gradient(135deg, #00f5ff 0%, #0066ff 50%, #bf00ff 100%);
    --gradient-2: linear-gradient(90deg, #00f5ff, #bf00ff);
    --gradient-3: linear-gradient(180deg, rgba(0,245,255,0.1) 0%, transparent 50%);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
::selection {
    background: var(--neon-cyan);
    color: var(--black);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 4px;
}
a {
    text-decoration: none;
    color: inherit;
}
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-wrapper.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-icon::before {
    content: 'N';
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-text span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}
.nav-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
}
.language-selector a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.language-selector a.active,
.language-selector a:hover {
    background: var(--gradient-1);
    color: var(--black);
    border-color: transparent;
}
.nav-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.nav-cta:hover {
    border-color: transparent;
    color: var(--black);
}
.nav-cta:hover::before {
    opacity: 1;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}
.hero-bg .glow-orb.cyan {
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}
.hero-bg .glow-orb.purple {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: -150px;
    left: -100px;
    opacity: 0.12;
    animation-delay: -10s;
}
.hero-bg .glow-orb.blue {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation-delay: -5s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}
.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-badge span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-300);
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}
.hero-title .line {
    display: block;
    overflow: hidden;
}
.hero-title .gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .outline-text {
    -webkit-text-stroke: 1.5px var(--white);
    -webkit-text-fill-color: transparent;
}
.hero-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 600px;
}
.hero-description strong {
    color: var(--white);
    font-weight: 600;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    color: var(--black);
    padding: 1.1rem 2.25rem;
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}
.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.btn-primary:hover svg {
    transform: translateX(5px);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    padding: 1.1rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}
.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.btn-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.btn-secondary svg {
    width: 18px;
    height: 18px;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat {
    text-align: left;
}
.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.hero-stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-visual {
    position: relative;
    height: 600px;
}
.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-image-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}
.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, transparent 50%, rgba(191, 0, 255, 0.2) 100%);
    z-index: 1;
}
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    animation: floatCard 6s ease-in-out infinite;
}
.floating-card.card-1 {
    top: 5%;
    right: 0;
    animation-delay: 0s;
}
.floating-card.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: -2s;
}
.floating-card.card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: -4s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.floating-card-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.floating-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}
.floating-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.floating-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}
.marquee-section {
    padding: 3rem 0;
    background: var(--gray-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}
.marquee-item span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
}
.marquee-item .dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.about-section {
    padding: 10rem 3rem;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.section-container {
    max-width: 1600px;
    margin: 0 auto;
}
.about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label .line {
    width: 40px;
    height: 1px;
    background: var(--gradient-2);
}
.section-label span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-cyan);
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}
.section-title .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-intro {
    padding-top: 2rem;
}
.about-intro p {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.about-intro p:first-child {
    font-size: 1.35rem;
    color: var(--gray-300);
}
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.feature-card:hover::before {
    opacity: 0.03;
}
.feature-card-inner {
    position: relative;
    z-index: 1;
}
.feature-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -10px;
    right: 0;
    line-height: 1;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}
.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
}
.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.feature-card p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.8;
}
.mission-section {
    padding: 10rem 3rem;
    background: var(--gray-900);
    position: relative;
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}
.mission-visual {
    position: relative;
}
.mission-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.mission-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.mission-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
}
.mission-overlay-text {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 2;
}
.mission-overlay-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.mission-overlay-text p {
    color: var(--gray-400);
    font-size: 1rem;
}
.mission-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}
.mission-content h2 .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mission-text {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}
.mission-list {
    list-style: none;
    margin-bottom: 3rem;
}
.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mission-list li:last-child {
    border-bottom: none;
}
.mission-list-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.mission-list-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--black);
    stroke-width: 3;
}
.mission-list-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.mission-list-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}
.stats-section {
    padding: 8rem 3rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}
.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s ease;
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}
.topics-section {
    padding: 10rem 3rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
}
.topics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}
.topics-header p {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.topic-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.topic-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}
.topic-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topic-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
}
.topic-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.topic-content p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.topic-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
}
.topic-tag:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
    color: var(--neon-cyan);
}
.why-section {
    padding: 10rem 3rem;
    background: var(--gray-900);
}
.why-container {
    max-width: 1000px;
    margin: 0 auto;
}
.why-header {
    text-align: center;
    margin-bottom: 5rem;
}
.why-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.why-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.why-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 245, 255, 0.15);
}
.why-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.why-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.why-text p {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
}
.cta-section {
    padding: 10rem 3rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(191, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-container h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.cta-container h2 .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-container p {
    font-size: 1.25rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
footer {
    background: var(--black);
    padding: 6rem 3rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-brand {
    max-width: 350px;
}
.footer-brand .logo {
    margin-bottom: 1.5rem;
}
.footer-brand p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gradient-1);
    border-color: transparent;
}
.footer-social a:hover svg {
    stroke: var(--black);
}
.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-400);
    fill: none;
}
.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    color: var(--white);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 1rem;
}
.footer-column ul a {
    font-size: 1rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column ul a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-cyan);
    min-width: 20px;
    margin-top: 3px;
}
.footer-contact-item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.footer-contact-item a {
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.footer-contact-item a:hover {
    color: var(--neon-cyan);
}
.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-copyright {
    font-size: 0.95rem;
    color: var(--gray-600);
}
.footer-legal {
    display: flex;
    gap: 2.5rem;
}
.footer-legal a {
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--neon-cyan);
}
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .hero-visual {
        height: 500px;
        order: -1;
    }
    .about-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .topics-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
    .nav-menu {
        display: none;
    }
    .language-selector {
        margin-right: 0.75rem;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-visual {
        height: 400px;
    }
    .hero-image-main {
        width: 300px;
        height: 300px;
    }
    .floating-card {
        display: none;
    }
    .about-section,
    .mission-section,
    .topics-section,
    .why-section,
    .cta-section {
        padding: 5rem 1.5rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .why-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-number {
        font-size: 3rem;
    }
    .topic-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #000000;
    --white: #ffffff;
    --dark: #0a0a0a;
    --dark-soft: #111111;
    --gray-900: #171717;
    --gray-800: #1f1f1f;
    --gray-700: #2a2a2a;
    --gray-600: #3d3d3d;
    --gray-500: #525252;
    --gray-400: #737373;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f5f5f5;
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-blue: #0066ff;
    --gradient-1: linear-gradient(135deg, #00f5ff 0%, #0066ff 50%, #bf00ff 100%);
    --gradient-2: linear-gradient(90deg, #00f5ff, #bf00ff);
    --gradient-3: linear-gradient(180deg, rgba(0,245,255,0.1) 0%, transparent 50%);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
::selection {
    background: var(--neon-cyan);
    color: var(--black);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 4px;
}
a {
    text-decoration: none;
    color: inherit;
}
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 3rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon::before {
    content: 'N';
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-text span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}
.nav-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.nav-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.nav-cta:hover {
    border-color: transparent;
    color: var(--black);
}
.nav-cta:hover::before {
    opacity: 1;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.page-hero {
    padding: 12rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.page-hero-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}
.page-hero-bg .glow-orb.cyan {
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
    top: -150px;
    left: -100px;
    opacity: 0.12;
}
.page-hero-bg .glow-orb.purple {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: -100px;
    right: -50px;
    opacity: 0.1;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.breadcrumb a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: var(--neon-cyan);
}
.breadcrumb span {
    color: var(--gray-600);
}
.breadcrumb .current {
    color: var(--gray-300);
}
.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.page-hero-title .gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-description {
    font-size: 1.3rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
.section-container {
    max-width: 1600px;
    margin: 0 auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label .line {
    width: 40px;
    height: 1px;
    background: var(--gradient-2);
}
.section-label span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-cyan);
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}
.section-title .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.story-section {
    padding: 8rem 3rem;
    background: var(--gray-900);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.story-image {
    position: relative;
}
.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.story-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}
.story-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, transparent 50%, rgba(191, 0, 255, 0.15) 100%);
    pointer-events: none;
}
.story-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--gradient-1);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
}
.story-badge h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}
.story-badge p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.story-content h2 {
    margin-bottom: 2rem;
}
.story-text {
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.story-text:first-of-type {
    font-size: 1.25rem;
    color: var(--gray-300);
}
.vision-section {
    padding: 8rem 3rem;
    background: var(--dark);
}
.vision-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}
.vision-header p {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.vision-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.vision-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.vision-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.vision-card:hover::before {
    transform: scaleX(1);
}
.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.vision-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
}
.vision-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.vision-card p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
}
.values-section {
    padding: 8rem 3rem;
    background: var(--gray-900);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}
.values-intro h2 {
    margin-bottom: 2rem;
}
.values-intro p {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 2rem;
}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.value-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.4s ease;
}
.value-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 245, 255, 0.15);
    transform: translateX(10px);
}
.value-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 50px;
}
.value-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.value-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}
.topics-deep-section {
    padding: 8rem 3rem;
    background: var(--dark);
}
.topics-deep-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}
.topics-deep-header p {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.topics-deep-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.topic-deep-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}
.topic-deep-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}
.topic-deep-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.topic-deep-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
}
.topic-deep-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.topic-deep-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.timeline-section {
    padding: 8rem 3rem;
    background: var(--gray-900);
}
.timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}
.timeline-header p {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    z-index: 1;
}
.timeline-marker::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.3;
}
.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}
.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.timeline-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}
.approach-section {
    padding: 8rem 3rem;
    background: var(--dark);
}
.approach-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}
.approach-content h2 {
    margin-bottom: 2rem;
}
.approach-text {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 2rem;
}
.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.approach-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.approach-item-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.approach-item-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--black);
    stroke-width: 3;
}
.approach-item span {
    font-size: 1.1rem;
    color: var(--gray-300);
}
.approach-visual {
    position: relative;
}
.approach-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.approach-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.approach-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, transparent 50%, rgba(191, 0, 255, 0.1) 100%);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    color: var(--black);
    padding: 1.1rem 2.25rem;
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}
.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.btn-primary:hover svg {
    transform: translateX(5px);
}
.cta-section {
    padding: 10rem 3rem;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(191, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-container h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.cta-container p {
    font-size: 1.25rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
footer {
    background: var(--black);
    padding: 6rem 3rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-brand {
    max-width: 350px;
}
.footer-brand .logo {
    margin-bottom: 1.5rem;
}
.footer-brand p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gradient-1);
    border-color: transparent;
}
.footer-social a:hover svg {
    stroke: var(--black);
}
.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-400);
    fill: none;
}
.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    color: var(--white);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 1rem;
}
.footer-column ul a {
    font-size: 1rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column ul a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-cyan);
    min-width: 20px;
    margin-top: 3px;
}
.footer-contact-item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.footer-contact-item a {
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.footer-contact-item a:hover {
    color: var(--neon-cyan);
}
.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-copyright {
    font-size: 0.95rem;
    color: var(--gray-600);
}
.footer-legal {
    display: flex;
    gap: 2.5rem;
}
.footer-legal a {
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--neon-cyan);
}
@media (max-width: 1200px) {
    .story-grid,
    .values-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .vision-cards {
        grid-template-columns: 1fr;
    }
    .topics-deep-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }
    .story-section,
    .vision-section,
    .values-section,
    .topics-deep-section,
    .timeline-section,
    .approach-section,
    .cta-section {
        padding: 5rem 1.5rem;
    }
    .topics-deep-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
        gap: 0;
    }
    .timeline-item .timeline-content {
        text-align: left !important;
    }
    .timeline-marker {
        left: 20px;
    }
    .story-badge {
        bottom: -20px;
        right: 20px;
        padding: 1rem 1.5rem;
    }
    .story-badge h4 {
        font-size: 2rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #000000;
    --white: #ffffff;
    --dark: #0a0a0a;
    --dark-soft: #111111;
    --gray-900: #171717;
    --gray-800: #1f1f1f;
    --gray-700: #2a2a2a;
    --gray-600: #3d3d3d;
    --gray-500: #525252;
    --gray-400: #737373;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f5f5f5;
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-blue: #0066ff;
    --gradient-1: linear-gradient(135deg, #00f5ff 0%, #0066ff 50%, #bf00ff 100%);
    --gradient-2: linear-gradient(90deg, #00f5ff, #bf00ff);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
::selection {
    background: var(--neon-cyan);
    color: var(--black);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 4px;
}
a {
    text-decoration: none;
    color: inherit;
}
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 3rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon::before {
    content: 'N';
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-text span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}
.nav-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.nav-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.nav-cta:hover {
    border-color: transparent;
    color: var(--black);
}
.nav-cta:hover::before {
    opacity: 1;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.page-hero {
    padding: 12rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.page-hero-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}
.page-hero-bg .glow-orb.cyan {
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
    top: -150px;
    right: -100px;
    opacity: 0.12;
}
.page-hero-bg .glow-orb.purple {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: -100px;
    left: -50px;
    opacity: 0.1;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.breadcrumb a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: var(--neon-cyan);
}
.breadcrumb span {
    color: var(--gray-600);
}
.breadcrumb .current {
    color: var(--gray-300);
}
.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.page-hero-title .gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-description {
    font-size: 1.3rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
.section-container {
    max-width: 1600px;
    margin: 0 auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label .line {
    width: 40px;
    height: 1px;
    background: var(--gradient-2);
}
.section-label span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-cyan);
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}
.section-title .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-section {
    padding: 6rem 3rem 10rem;
    background: var(--gray-900);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}
.contact-info h2 {
    margin-bottom: 1.5rem;
}
.contact-intro {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 3rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.contact-method:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateX(10px);
}
.contact-method-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-method-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
}
.contact-method-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-method-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.contact-method-content a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}
.contact-method-content a:hover {
    color: var(--neon-cyan);
}
.social-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.social-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-5px);
}
.social-link:hover svg {
    stroke: var(--black);
}
.social-link svg {
    width: 22px;
    height: 22px;
    stroke: var(--gray-400);
    fill: none;
}
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.contact-form-header {
    margin-bottom: 2.5rem;
}
.contact-form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.contact-form-header p {
    font-size: 1rem;
    color: var(--gray-500);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-300);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 245, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
}
.form-group select option {
    background: var(--gray-900);
    color: var(--white);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
}
.form-checkbox label {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
}
.form-checkbox label a {
    color: var(--neon-cyan);
    transition: opacity 0.3s ease;
}
.form-checkbox label a:hover {
    opacity: 0.8;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    color: var(--black);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}
.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.btn-submit:hover svg {
    transform: translateX(5px);
}
.form-success-overlay {
    position: absolute;
    inset: 0;
    background: var(--gray-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 10;
}
.contact-form:valid:target ~ .form-success-overlay,
.contact-form-wrapper:target .form-success-overlay {
    opacity: 1;
    visibility: visible;
}
.form-submit-trigger:focus-within ~ .form-success-overlay {
    opacity: 1;
    visibility: visible;
}
#form-submitted {
    display: none;
}
#form-submitted:checked ~ .contact-form {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}
#form-submitted:checked ~ .form-success-message {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.form-success-message {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(191, 0, 255, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 10;
}
.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(0, 245, 255, 0); }
}
.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--black);
    stroke-width: 3;
    fill: none;
}
.form-success-message h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.form-success-message p {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 2rem;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-cyan);
}
.map-section {
    padding: 0 3rem 10rem;
    background: var(--gray-900);
}
.map-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.map-header {
    padding: 2.5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.map-header-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.map-header-text p {
    font-size: 1rem;
    color: var(--gray-500);
}
.map-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}
.map-address svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-cyan);
    min-width: 24px;
}
.map-address span {
    font-size: 1rem;
    color: var(--gray-300);
}
.map-embed {
    height: 450px;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder {
    text-align: center;
    padding: 4rem;
}
.map-placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.map-placeholder-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--black);
}
.map-placeholder h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.map-placeholder p {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.faq-section {
    padding: 8rem 3rem;
    background: var(--dark);
}
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.faq-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.faq-item:hover {
    border-color: rgba(0, 245, 255, 0.15);
}
.faq-toggle {
    display: none;
}
.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-question h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-400);
    transition: all 0.4s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-content {
    padding: 0 2rem 1.5rem;
}
.faq-answer p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
}
.faq-toggle:checked + .faq-question {
    background: rgba(255, 255, 255, 0.02);
}
.faq-toggle:checked + .faq-question h3 {
    color: var(--neon-cyan);
}
.faq-toggle:checked + .faq-question .faq-icon {
    background: var(--gradient-1);
}
.faq-toggle:checked + .faq-question .faq-icon svg {
    stroke: var(--black);
    transform: rotate(45deg);
}
.faq-toggle:checked ~ .faq-answer {
    max-height: 300px;
}
footer {
    background: var(--black);
    padding: 6rem 3rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-brand {
    max-width: 350px;
}
.footer-brand .logo {
    margin-bottom: 1.5rem;
}
.footer-brand p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gradient-1);
    border-color: transparent;
}
.footer-social a:hover svg {
    stroke: var(--black);
}
.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-400);
    fill: none;
}
.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    color: var(--white);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 1rem;
}
.footer-column ul a {
    font-size: 1rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column ul a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-cyan);
    min-width: 20px;
    margin-top: 3px;
}
.footer-contact-item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.footer-contact-item a {
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.footer-contact-item a:hover {
    color: var(--neon-cyan);
}
.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-copyright {
    font-size: 0.95rem;
    color: var(--gray-600);
}
.footer-legal {
    display: flex;
    gap: 2.5rem;
}
.footer-legal a {
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--neon-cyan);
}
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }
    .contact-section,
    .faq-section {
        padding: 5rem 1.5rem;
    }
    .map-section {
        padding: 0 1.5rem 5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
    .map-header {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .map-embed {
        height: 300px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .form-success-message h3 {
        font-size: 1.5rem;
    }
    .success-icon {
        width: 80px;
        height: 80px;
    }
    .success-icon svg {
        width: 40px;
        height: 40px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #000000;
    --white: #ffffff;
    --dark: #0a0a0a;
    --dark-soft: #111111;
    --gray-900: #171717;
    --gray-800: #1f1f1f;
    --gray-700: #2a2a2a;
    --gray-600: #3d3d3d;
    --gray-500: #525252;
    --gray-400: #737373;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f5f5f5;
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-blue: #0066ff;
    --gradient-1: linear-gradient(135deg, #00f5ff 0%, #0066ff 50%, #bf00ff 100%);
    --gradient-2: linear-gradient(90deg, #00f5ff, #bf00ff);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
::selection {
    background: var(--neon-cyan);
    color: var(--black);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 4px;
}
a {
    text-decoration: none;
    color: inherit;
}
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 3rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon::before {
    content: 'N';
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-text span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}
.nav-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.nav-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.nav-cta:hover {
    border-color: transparent;
    color: var(--black);
}
.nav-cta:hover::before {
    opacity: 1;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.page-hero {
    padding: 12rem 3rem 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.page-hero-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}
.page-hero-bg .glow-orb.cyan {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
}
.page-hero-bg .glow-orb.purple {
    width: 300px;
    height: 300px;
    background: var(--neon-purple);
    bottom: -50px;
    right: 10%;
    opacity: 0.08;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.breadcrumb a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: var(--neon-cyan);
}
.breadcrumb span {
    color: var(--gray-600);
}
.breadcrumb .current {
    color: var(--gray-300);
}
.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.page-hero-title .gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-description {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.page-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.page-hero-meta-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-cyan);
}
.page-hero-meta-item span {
    font-size: 0.95rem;
    color: var(--gray-500);
}
.privacy-section {
    padding: 4rem 3rem 10rem;
    background: var(--gray-900);
}
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}
.toc {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
}
.toc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.toc-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--black);
}
.toc-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}
.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.toc-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
}
.toc-list a:hover {
    background: rgba(0, 245, 255, 0.05);
    color: var(--neon-cyan);
    transform: translateX(5px);
}
.toc-list a span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--neon-cyan);
    font-size: 0.85rem;
}
.privacy-block {
    margin-bottom: 3.5rem;
    scroll-margin-top: 120px;
}
.privacy-block-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.privacy-block-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    background: var(--gradient-1);
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.privacy-block-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    padding-top: 3px;
}
.privacy-block-content {
    padding-left: 60px;
}
.privacy-block-content p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.privacy-block-content p:last-child {
    margin-bottom: 0;
}
.privacy-block-content strong {
    color: var(--white);
    font-weight: 600;
}
.privacy-block-content a {
    color: var(--neon-cyan);
    transition: opacity 0.3s ease;
}
.privacy-block-content a:hover {
    opacity: 0.8;
}
.privacy-subsection {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}
.privacy-subsection h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}
.privacy-subsection p {
    margin-bottom: 1rem;
}
.privacy-subsection p:last-child {
    margin-bottom: 0;
}
.data-list {
    list-style: none;
    margin: 1.25rem 0;
}
.data-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: var(--gray-400);
}
.data-list li:last-child {
    border-bottom: none;
}
.data-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--gradient-2);
    border-radius: 50%;
    margin-top: 8px;
}
.info-box {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.25rem;
}
.info-box-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-box-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--black);
}
.info-box-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.info-box-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 0;
}
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
}
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}
.contact-card-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.contact-card-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-card-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-cyan);
    min-width: 20px;
    margin-top: 3px;
}
.contact-card-item-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 0;
}
.contact-card-item-content a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}
.contact-card-item-content a:hover {
    color: var(--neon-cyan);
}
footer {
    background: var(--black);
    padding: 6rem 3rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-brand {
    max-width: 350px;
}
.footer-brand .logo {
    margin-bottom: 1.5rem;
}
.footer-brand p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gradient-1);
    border-color: transparent;
}
.footer-social a:hover svg {
    stroke: var(--black);
}
.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-400);
    fill: none;
}
.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    color: var(--white);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 1rem;
}
.footer-column ul a {
    font-size: 1rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column ul a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-cyan);
    min-width: 20px;
    margin-top: 3px;
}
.footer-contact-item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.footer-contact-item a {
    color: var(--gray-500);
    transition: color 0.3s ease;
}
.footer-contact-item a:hover {
    color: var(--neon-cyan);
}
.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-copyright {
    font-size: 0.95rem;
    color: var(--gray-600);
}
.footer-legal {
    display: flex;
    gap: 2.5rem;
}
.footer-legal a {
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--neon-cyan);
}
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .contact-card-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }
    .privacy-section {
        padding: 3rem 1.5rem 6rem;
    }
    .toc-list {
        grid-template-columns: 1fr;
    }
    .privacy-block-content {
        padding-left: 0;
        margin-top: 1rem;
    }
    .privacy-block-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    .page-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    .info-box {
        flex-direction: column;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}