@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --bg-dark: #0a0a0c;
  --bg-darker: #050506;
  --bg-card: #141418;
  --text-main: #f0f0f5;
  --text-muted: #9a9cae;
  --accent-purple: #9d4edd;
  --accent-purple-glow: rgba(157, 78, 221, 0.4);
  --accent-green: #06d6a0;
  --accent-green-glow: rgba(6, 214, 160, 0.4);
  --border-radius: 8px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--text-main);
  text-shadow: 0 0 8px var(--accent-green-glow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

/* Header & Navigation */
.site-header {
  background-color: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav li + li::before {
  content: '|';
  position: absolute;
  left: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  pointer-events: none;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--accent-purple);
  text-shadow: 0 0 10px var(--accent-purple-glow);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.page-hero {
  margin-top: 70px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 2rem;
   background:
    radial-gradient(circle at top left, rgba(6, 214, 160, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(157, 78, 221, 0.18), transparent 40%),
    linear-gradient(135deg, #09090b 0%, #13081f 48%, #07110f 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-short {
  min-height: 22vh;
  padding: 2rem 1rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157,78,221,0.1) 0%, transparent 60%);
  animation: pulse 10s infinite alternate;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: -webkit-linear-gradient(45deg, var(--accent-purple), var(--accent-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.45rem;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.18), rgba(6, 214, 160, 0.12));
  color: var(--text-main);
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition-speed);
  border: 1px solid rgba(157, 78, 221, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.28), rgba(6, 214, 160, 0.18));
  border-color: rgba(6, 214, 160, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 30px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(6, 214, 160, 0.45);
  outline-offset: 3px;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-green);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-img {
  width: calc(100% + 4rem);
  height: 200px;
  object-fit: cover;
  margin: -2rem -2rem 1.5rem -2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home .card-img,
.home .page-hero {
  filter: none;
  backdrop-filter: none;
}

.home .card-img {
  height: 220px;
  image-rendering: auto;
  transform: none;
  object-position: center center;
}

.home .page-hero::before {
  display: none;
}

.home .hero-content {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.home .hero-title {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #f8fbff;
  color: #f8fbff;
}

.home .hero-subtitle {
  color: rgba(245, 248, 255, 0.88);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border-color: rgba(157, 78, 221, 0.3);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(6, 214, 160, 0.18);
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px var(--accent-green-glow);
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Articles and Content */
.article-header {
  margin-top: 80px;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-purple);
}

.article-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.article-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-muted);
}

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

.article-content blockquote {
  border-left: 4px solid var(--accent-purple);
  padding: 1rem 1.5rem;
  background: rgba(157, 78, 221, 0.05);
  margin-bottom: 1.5rem;
  font-style: italic;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-content::after {
  content: '';
  display: block;
  clear: both;
}

.article-layout {
  max-width: 920px;
}

.article-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.article-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(157, 78, 221, 0.12);
  border: 1px solid rgba(157, 78, 221, 0.28);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(6, 214, 160, 0.12);
  border: 1px solid rgba(6, 214, 160, 0.22);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.article-intro-grid {
  display: block;
  margin-bottom: 2rem;
}

.article-intro-grid > div:first-child {
  margin-bottom: 1.25rem;
}

.article-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(157, 78, 221, 0.05));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
  padding: 1.2rem 1.25rem;
}

.article-panel h3,
.article-panel h4 {
  margin: 0 0 0.7rem;
  color: var(--text-main);
}

.article-panel p:last-child,
.article-panel ul:last-child,
.article-panel ol:last-child {
  margin-bottom: 0;
}

.article-fact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.article-fact-list li {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--border-radius) - 2px);
  background: rgba(255,255,255,0.025);
}

.article-fact-list li:last-child {
  padding-bottom: 0.95rem;
}

.article-fact-list strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 0.35rem;
}

.article-pullquote {
  margin: 2rem 0;
  padding: 1.6rem 1.8rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.16), rgba(6, 214, 160, 0.08));
  border: 1px solid rgba(157, 78, 221, 0.2);
  color: var(--text-main);
}

.article-pullquote p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-main);
}

.article-pullquote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-note {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), rgba(6, 214, 160, 0.08));
  border: 1px solid rgba(6, 214, 160, 0.2);
}

.article-note strong,
.article-note b {
  color: var(--text-main);
}

.article-note p:last-child {
  margin-bottom: 0;
}

.article-figure {
  width: 42%;
  margin: 0 0 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.article-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
}

.article-figure-left {
  float: left;
  margin-right: 1.8rem;
}

.article-figure-right {
  float: right;
  margin-left: 1.8rem;
}

.article-figure figcaption {
  padding: 0.8rem 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.article-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.article-data-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-radius);
  padding: 1.3rem;
}

.article-data-card h3,
.article-data-card h4 {
  margin: 0 0 0.5rem;
  color: var(--text-main);
  font-size: 1rem;
}

.article-data-card p,
.article-data-card li {
  font-size: 0.97rem;
}

.article-data-number {
  display: block;
  color: var(--accent-green);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.article-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
}

.article-table-wrap .comparison-table {
  margin-top: 0;
}

.article-checklist {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.article-checklist h3 {
  margin-top: 0;
}

.article-checklist ul {
  margin-bottom: 0;
}

.article-divider {
  height: 1px;
  border: 0;
  margin: 2.5rem 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.article-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.article-mini-card {
  padding: 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
}

.article-mini-card h3,
.article-mini-card h4 {
  margin: 0 0 0.6rem;
  color: var(--text-main);
  font-size: 1rem;
}

.article-mini-card p:last-child {
  margin-bottom: 0;
}

.article-step-list {
  counter-reset: article-steps;
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.article-step-list li {
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
}

.article-step-list li::before {
  counter-increment: article-steps;
  content: counter(article-steps);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
  color: white;
  font-weight: 800;
}

.article-step-list strong {
  color: var(--text-main);
}

.article-qa {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.article-qa-item {
  padding: 1.25rem 1.4rem;
  border-radius: var(--border-radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
}

.article-qa-item h3,
.article-qa-item h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--text-main);
}

.article-qa-item p:last-child {
  margin-bottom: 0;
}

.article-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin: 2rem 0;
}

.article-band-item {
  padding: 1rem 1.1rem;
  border-radius: var(--border-radius);
  background: rgba(6, 214, 160, 0.06);
  border: 1px solid rgba(6, 214, 160, 0.16);
}

.article-band-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.article-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 2rem 0;
}

.article-columns > div {
  padding: 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
}

.article-columns h3,
.article-columns h4 {
  margin-top: 0;
}

.article-columns p:last-child,
.article-columns ul:last-child {
  margin-bottom: 0;
}

/* Accordions / FAQs */
.accordion {
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  background: var(--bg-card);
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background var(--transition-speed);
}

.accordion-header:hover {
  background: rgba(255,255,255,0.05);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: var(--bg-darker);
}

.accordion.active .accordion-content {
  padding: 1.5rem;
  max-height: 500px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-banner {
  margin-top: 70px;
  padding: 5.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(6, 214, 160, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(157, 78, 221, 0.18), transparent 40%),
    linear-gradient(135deg, #09090b 0%, #13081f 48%, #07110f 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: auto -8% -35% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.22), transparent 68%);
  filter: blur(10px);
}

.contact-header {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.contact-title .hero-title,
.contact-title .hero-subtitle {
  text-align: left;
}

.contact-title .hero-title {
  margin-bottom: 1rem;
}

.contact-box,
.contact-list-box,
.form-box {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 214, 160, 0.12);
  border: 1px solid rgba(6, 214, 160, 0.18);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-box h2,
.form-intro h2 {
  margin: 0 0 0.75rem;
  color: var(--text-main);
  font-size: 1.45rem;
}

.contact-box p,
.form-intro p {
  margin: 0;
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.contact-page {
  padding-top: 2.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-box,
.contact-list-box {
  padding: 1.5rem;
}

.contact-list-box h3 {
  margin: 0 0 1rem;
  color: var(--text-main);
  font-size: 1.1rem;
}

.form-box {
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
    radial-gradient(circle at top right, rgba(157, 78, 221, 0.18), transparent 30%);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(20, 20, 24, 0.92);
  color: var(--text-main);
  font-family: inherit;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple-glow);
  transform: translateY(-1px);
}

.form-group select {
  appearance: none;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.submit-button {
  min-width: 220px;
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

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

.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #666;
  font-size: 0.9rem;
}

/* Platform Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(157,78,221,0.2), rgba(6,214,160,0.1));
}

.comparison-table th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent-purple);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
  background: rgba(157,78,221,0.05);
}

.comparison-table .check {
  color: var(--accent-green);
  font-weight: 800;
  font-size: 1.2rem;
}

.comparison-table .cross {
  color: #ff6b6b;
  font-weight: 800;
  font-size: 1.2rem;
}

.comparison-table .partial {
  color: #ffd166;
  font-weight: 700;
}

/* CTA Newsletter Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a0b2e 0%, var(--bg-darker) 50%, rgba(6,214,160,0.15) 100%);
  border: 1px solid rgba(157,78,221,0.3);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-green), var(--accent-purple));
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  color: var(--text-main);
  font-family: inherit;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green-glow);
}

/* About / Mission Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.highlight-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.highlight-item h4 {
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.highlight-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Expert Quotes */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quote-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-purple);
  position: relative;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 5rem;
  color: rgba(157,78,221,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.quote-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.quote-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Topic Tags */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--bg-card);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-speed);
  cursor: pointer;
  text-decoration: none;
}

.topic-tag:hover {
  border-color: var(--accent-purple);
  color: var(--text-main);
  background: rgba(157,78,221,0.1);
  box-shadow: 0 0 15px var(--accent-purple-glow);
  transform: translateY(-2px);
}

.topic-tag .tag-icon {
  font-size: 1.1rem;
}

/* Timeline / Milestones */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-purple), var(--accent-green));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-purple);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px var(--accent-purple-glow);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .article-fact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-header,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-short {
    min-height: 26vh;
    padding: 2.5rem 1.25rem;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 6, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .main-nav li + li::before {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .article-content {
    padding: 2rem 1rem;
  }

  .contact-banner {
    padding: 4.5rem 1.25rem 3rem;
  }

  .form-box,
  .contact-box,
  .contact-list-box {
    padding: 1.25rem;
  }

  .form-row,
  .form-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .submit-button {
    width: 100%;
    min-width: 0;
  }

  .article-intro-grid,
  .article-columns {
    grid-template-columns: 1fr;
  }

  .article-fact-list {
    grid-template-columns: 1fr;
  }

  .article-figure,
  .article-figure-left,
  .article-figure-right {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
  }

  .article-figure img {
    height: 220px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .cta-form {
    flex-direction: column;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem 0.8rem;
  }

  .timeline {
    padding-left: 2rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}
