/* Neuron Factory - Custom Brand CSS */

/* ===== RESET & BASE ===== */
:root {
  --nf-bg: #050a1a;
  --nf-bg2: #080f24;
  --nf-bg3: #0d1633;
  --nf-accent: #00d4ff;
  --nf-accent2: #7c3aed;
  --nf-text: #e2e8f0;
  --nf-text-muted: #94a3b8;
  --nf-border: rgba(0, 212, 255, 0.15);
  --nf-card: rgba(13, 22, 51, 0.8);
  --nf-header-h: 72px;
}

html, body {
  background-color: var(--nf-bg) !important;
  color: var(--nf-text) !important;
}

body { font-family: "Source Sans Pro", Arial, sans-serif; }

/* ===== FIXED TOP NAV ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #050a1a !important;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO TOP-LEFT */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
  border-bottom: none !important;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #050a1a;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text em {
  font-style: normal;
  color: #00d4ff;
}

/* NAV LINKS */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.125rem;
  align-items: center;
}

.site-nav ul li a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: #94a3b8 !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  border: none !important;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: #ffffff !important;
  background: rgba(0,212,255,0.08);
}

.site-nav ul li.nav-cta a {
  background: #00d4ff;
  color: #050a1a !important;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 0.5rem;
}

.site-nav ul li.nav-cta a:hover {
  background: #00b8d9;
  color: #050a1a !important;
}

.page-body {
  padding-top: 72px;
  min-height: 100vh;
  background: #050a1a;
}

/* ===== HERO ===== */
.nf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050a1a;
}

.nf-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://picsum.photos/seed/1062/1600/900");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.nf-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(124,58,237,0.25) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 50%, rgba(0,212,255,0.15) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 50%, #050a1a 100%);
  z-index: 1;
}

.nf-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.nf-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.nf-hero-badge {
  display: inline-block;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.nf-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff !important;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}

.nf-hero h1 em {
  font-style: normal;
  color: #00d4ff;
}

.nf-hero .hero-lead {
  font-size: 1.25rem;
  color: #94a3b8 !important;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #00d4ff;
  color: #050a1a !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  border-color: #00d4ff;
  color: #00d4ff !important;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #e2e8f0 !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(226,232,240,0.25);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: #94a3b8;
  color: #ffffff !important;
}

/* ===== STATS STRIP ===== */
.nf-stats {
  background: #0d1633;
  border-top: 1px solid rgba(0,212,255,0.15);
  border-bottom: 1px solid rgba(0,212,255,0.15);
  padding: 3rem 2rem;
}

.nf-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.nf-stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.nf-stat-item .stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== SECTION STYLES ===== */
.nf-section {
  padding: 6rem 2rem;
  background: #050a1a;
}

.nf-section.alt {
  background: #080f24;
}

.nf-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nf-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: #00d4ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.nf-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.nf-section-header p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURE GRID ===== */
.nf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nf-feature-card {
  background: rgba(13, 22, 51, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.nf-feature-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #00d4ff;
  font-size: 1.25rem;
}

.nf-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 0.75rem;
}

.nf-feature-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== PORTFOLIO CARDS ===== */
.nf-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.nf-portfolio-card {
  background: rgba(13, 22, 51, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
}

.nf-portfolio-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
}

.portfolio-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  position: relative;
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,10,26,0.1), rgba(5,10,26,0.5));
}

.portfolio-body {
  padding: 1.5rem;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.nf-portfolio-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 0.5rem;
}

.nf-portfolio-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,212,255,0.1);
  flex-wrap: wrap;
}

.portfolio-meta .meta-item {
  font-size: 0.8rem;
  color: #94a3b8;
}

.portfolio-meta .round-badge {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== TEAM CARDS ===== */
.nf-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.nf-team-card {
  background: rgba(13, 22, 51, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  text-align: center;
  padding: 2rem 1.5rem;
}

.nf-team-card:hover {
  border-color: rgba(0,212,255,0.4);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(0,212,255,0.2);
  display: block;
  aspect-ratio: 3/4;
  object-position: center top;
}

.nf-team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 0.25rem;
}

.nf-team-card .team-role {
  font-size: 0.85rem;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.nf-team-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* ===== NEWS CARDS ===== */
.nf-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.nf-news-card {
  background: rgba(13, 22, 51, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.nf-news-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
  text-decoration: none;
}

.news-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.nf-news-card:hover .news-img {
  transform: scale(1.04);
}

.news-body {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.news-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.nf-news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 0.625rem;
  line-height: 1.4;
}

.nf-news-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* ===== CO-INVESTOR SECTION ===== */
.nf-coinvestors {
  padding: 3.5rem 2rem;
  background: #0d1633;
  border-top: 1px solid rgba(0,212,255,0.15);
  border-bottom: 1px solid rgba(0,212,255,0.15);
  text-align: center;
}

.coinvestor-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  display: block;
}

.coinvestor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.coinvestor-card {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  min-height: 70px;
}

.coinvestor-card img {
  height: 36px;
  width: auto;
  display: block;
}

.coinvestor-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 5rem 2rem 4rem;
  background: #080f24;
  border-bottom: 1px solid rgba(0,212,255,0.15);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}

/* ===== FOOTER ===== */
#site-footer {
  background: #080f24;
  border-top: 1px solid rgba(0,212,255,0.15);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: #94a3b8 !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #00d4ff !important; }

.footer-bottom {
  border-top: 1px solid rgba(0,212,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

.footer-bottom a {
  color: #94a3b8 !important;
  text-decoration: none;
}

.footer-bottom a:hover { color: #00d4ff !important; }

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0d1633;
  border-top: 1px solid rgba(0,212,255,0.2);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#cookie-banner.hidden { display: none; }

#cookie-banner p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

#cookie-banner a {
  color: #00d4ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: #00d4ff;
  color: #050a1a;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

.cookie-decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(0,212,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}

/* ===== BREADCRUMB ===== */
.nf-breadcrumb {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.nf-breadcrumb a {
  color: #94a3b8 !important;
  text-decoration: none;
}

.nf-breadcrumb a:hover { color: #00d4ff !important; }

/* ===== ARTICLE PAGE ===== */
.article-header {
  padding: 5rem 2rem 3rem;
  background: #080f24;
  border-bottom: 1px solid rgba(0,212,255,0.15);
}

.article-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.article-meta .cat-tag {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: #00d4ff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.article-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.article-header .lead {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-content {
  padding: 4rem 2rem;
  background: #050a1a;
}

.article-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-content-inner p {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-content-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 2.5rem 0 1rem;
}

.article-content-inner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 2rem 0 0.75rem;
}

.article-content-inner ul,
.article-content-inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.article-content-inner li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.article-content-inner blockquote {
  border-left: 3px solid #00d4ff;
  padding: 1rem 1.5rem;
  background: rgba(13,22,51,0.8);
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  color: #e2e8f0;
  font-style: italic;
  font-size: 1.1rem;
}

.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,212,255,0.1);
}

.article-tag {
  background: rgba(13,22,51,0.8);
  border: 1px solid rgba(0,212,255,0.15);
  color: #94a3b8;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 1rem;
}

.contact-info .contact-intro {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,212,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: none;
}

.contact-detail-text a:hover { color: #00d4ff; }

.contact-form-wrap {
  background: rgba(13,22,51,0.8);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 0.5rem;
}

.contact-form-wrap .form-intro {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #00d4ff;
}

.form-group textarea { height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  background: #00d4ff;
  color: #050a1a;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-submit:hover { background: #00b8d9; }

/* ===== ABOUT PAGE ===== */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-text p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(0,212,255,0.15);
  display: block;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.thesis-item {
  background: rgba(13,22,51,0.8);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
  padding: 1.5rem;
}

.thesis-item h4 {
  color: #00d4ff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}

.thesis-item p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== LEGAL PAGE ===== */
.legal-content {
  padding: 4rem 2rem;
  background: #050a1a;
}

.legal-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-effective {
  background: rgba(13,22,51,0.8);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.legal-content-inner h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}

.legal-content-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 1.75rem 0 0.75rem;
}

.legal-content-inner p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-content-inner ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content-inner li {
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content-inner a {
  color: #00d4ff;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nf-features { grid-template-columns: repeat(2, 1fr); }
  .nf-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-team-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nf-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nf-features { grid-template-columns: 1fr; }
  .nf-portfolio-grid { grid-template-columns: 1fr; }
  .nf-team-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .nf-hero h1 { font-size: 2.25rem; }
  .nf-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .thesis-grid { grid-template-columns: 1fr; }
}
