:root {
  --bg-dark: #07090F;
  --bg-panel: rgba(20, 24, 35, 0.7);
  --accent-cyan: #00F0FF;
  --accent-blue: #0A66C2;
  --accent-purple: #B200FF;
  --text-main: #FFFFFF;
  --text-muted: #8E9BAE;
  --border-light: rgba(255, 255, 255, 0.1);
  --font-heading: 'Syncopate', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 240, 255, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(178, 0, 255, 0.05), transparent 25%);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Glassmorphism Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 9, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

nav a:hover {
  color: var(--accent-cyan);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-cyan);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

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

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Data Stats / Trust Section */
.stats-section {
  padding: 60px 50px;
  display: flex;
  justify-content: space-around;
  background: var(--bg-panel);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

/* Features/Capabilities Grid */
.capabilities {
  padding: 100px 50px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--accent-cyan);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact/Inquiry Form */
.inquiry-section {
  padding: 100px 50px;
  background: linear-gradient(to top, #000, transparent);
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-panel);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

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

/* Footer */
footer {
  padding: 50px;
  background: #000;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

/* Directory/SEO Links */
.seo-directory {
  padding: 50px;
  text-align: center;
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}
.seo-links a {
  background: var(--bg-panel);
  padding: 8px 15px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.seo-links a:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.page-wrap {
  padding-top: 100px;
}

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto 18px;
  padding: 0 50px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.breadcrumb a:hover {
  color: var(--accent-cyan);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px 90px;
}

.article h1 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin: 12px 0 10px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.article-cover {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
  overflow: hidden;
  margin: 22px 0 26px;
  position: relative;
}

.article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
  background: rgba(0, 0, 0, 0.65);
}

.logo-badge img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.logo-badge span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prose {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.85;
}

.prose h2 {
  margin: 34px 0 12px;
  font-size: 1.6rem;
}

.prose h3 {
  margin: 22px 0 10px;
  font-size: 1.15rem;
}

.prose p {
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.84);
}

.prose ul {
  margin: 10px 0 10px 22px;
  color: rgba(255, 255, 255, 0.84);
}

.prose li {
  margin: 8px 0;
}

.cta-panel {
  margin-top: 34px;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: rgba(20, 24, 35, 0.65);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.06);
}

.cta-panel h3 {
  margin-bottom: 10px;
}

.cta-panel p {
  margin: 8px 0 18px;
  color: var(--text-muted);
}

.blog-toolbar {
  max-width: 1100px;
  margin: 0 auto 26px;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}

.blog-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.post-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.post-card .thumb {
  position: relative;
  height: 180px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border-light);
}

.post-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card .content {
  padding: 18px 18px 20px;
}

.post-card h3 {
  font-size: 1.05rem;
  margin: 10px 0 10px;
}

.post-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.pagination button {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pagination button:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.pagination button[aria-current="page"] {
  border-color: var(--accent-cyan);
  color: #fff;
  background: rgba(0, 240, 255, 0.08);
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-inline a {
  color: var(--accent-cyan);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .stats-section { flex-direction: column; gap: 40px; }
  header { flex-direction: column; padding: 20px; gap: 20px; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .blog-toolbar { grid-template-columns: 1fr; padding: 0 20px; }
  .blog-list { padding: 0 20px 70px; }
  .article { padding: 0 20px 80px; }
  .breadcrumb { padding: 0 20px; }
}
