/* Dataova - Data Intelligence Reimagined */
/* main.css - UTF-8 no BOM */

/* =========================================
   CSS Variables
   ========================================= */
:root {
  --bg: #0a0d17;
  --surface: #111520;
  --surface2: #161b2e;
  --text: #e8eaf0;
  --text-muted: #8892a4;
  --accent: #3b82f6;
  --accent-dark: #1d4ed8;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --gap: 2rem;
  --nav-height: 72px;
  --funding-bar-h: 0px;
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg) !important;
  color: var(--text) !important;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px !important;
  line-height: 1.9;
}
#page-wrapper { background-color: var(--bg) !important; }
#wrapper      { background-color: var(--bg) !important; }
#main         { background-color: var(--bg) !important; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #93c5fd; }
ul { list-style: none; }

/* =========================================
   Typography
   ========================================= */
h1 { font-size: 61px !important; font-weight: 700; line-height: 1.1; color: #ffffff; }
h2 { font-size: 43px !important; font-weight: 700; line-height: 1.2; color: #ffffff; }
h3 { font-size: 28px !important; font-weight: 600; line-height: 1.3; color: #ffffff; }
h4 { font-size: 1.1rem; font-weight: 600; color: #ffffff; }
p { line-height: 1.9; color: var(--text); }

/* =========================================
   Layout
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.page-top { padding-top: var(--nav-height); }
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--surface2); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title { color: #ffffff; margin-bottom: 1rem; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =========================================
   Navigation
   ========================================= */
#site-nav {
  position: fixed !important;
  top: var(--funding-bar-h, 0px) !important;
  left: 0 !important; right: 0 !important;
  height: var(--nav-height) !important;
  z-index: 1000 !important;
  background-color: rgba(10,13,23,0.95) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--border) !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 5% !important;
  transition: top 0.3s ease !important;
}
#site-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  flex-shrink: 0;
}
#site-nav .nav-logo img { height: 36px !important; width: auto !important; max-width: 180px !important; }
#site-nav .nav-logo .logo-text {
  font-size: 1.2em;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
#site-nav .nav-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  gap: 0 !important;
}
#site-nav .nav-menu li a {
  display: flex !important;
  align-items: center !important;
  height: var(--nav-height) !important;
  padding: 0 1.1em !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  transition: color 0.2s !important;
}
#site-nav .nav-menu li a:hover,
#site-nav .nav-menu li.active a {
  color: #ffffff !important;
}
#site-nav .nav-menu li.active a {
  border-bottom: 2px solid var(--accent);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 980px) {
  #site-nav .nav-menu { display: none !important; }
  .nav-toggle { display: block !important; }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  background-image: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('../images/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(10,15,40,0.35);
  background-blend-mode: multiply;
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 0;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; }
.hero h1 { color: #ffffff !important; margin-bottom: 1.2rem; }
.hero p.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  background-image: linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)), url('../images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 120px 5% 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 0;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { color: #ffffff !important; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 2em;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff !important;
}
.btn-primary:hover { background: var(--accent-dark); color: #ffffff !important; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #ffffff !important;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #ffffff !important; }
.btn-accent-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent) !important;
}
.btn-accent-outline:hover { background: var(--accent); color: #ffffff !important; }

/* =========================================
   Cards
   ========================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  align-items: stretch;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(59,130,246,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon i { color: var(--accent); font-size: 1.4rem; }
.card h3 { color: #ffffff; margin-bottom: 0.75rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* =========================================
   Features / Stats
   ========================================= */
.stats-bar {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* =========================================
   Feature Split (Platform page)
   ========================================= */
.platform-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.platform-feature.reverse { direction: rtl; }
.platform-feature.reverse > * { direction: ltr; }
.platform-feature h3 { color: #ffffff; margin-bottom: 1rem; }
.platform-feature p { color: var(--text-muted); margin-bottom: 1.5rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.feature-list li i { color: var(--accent); margin-top: 0.2em; flex-shrink: 0; }
.platform-feature-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.platform-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .platform-feature { grid-template-columns: 1fr; direction: ltr; }
  .platform-feature.reverse { direction: ltr; }
}

/* =========================================
   Team Cards
   ========================================= */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8em 2em;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 1.8em !important;
  text-align: left !important;
}
.team-card img {
  width: 88px !important;
  height: 88px !important;
  min-width: 88px !important;
  border-radius: 50% !important;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
  margin: 0 !important;
  flex-shrink: 0;
}
.team-info { flex: 1; min-width: 0; }
.team-info h3 { color: #ffffff; margin-bottom: 0.2rem; }
.team-role { color: var(--accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.6rem; }
.team-bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
@media (max-width: 600px) {
  .team-card { flex-direction: column !important; align-items: center !important; text-align: center !important; }
}

/* =========================================
   Blog
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.card-thumb {
  width: 100%;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(59,130,246,0.1);
  padding: 0.2em 0.6em;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.blog-card h3 { color: #ffffff; margin-bottom: 0.5rem; font-size: 1.05rem; }
.blog-card h3 a { color: #ffffff !important; }
.blog-card h3 a:hover { color: var(--accent) !important; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; flex: 1; }
.blog-meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }
.article-card.pinned {
  border-left: 3px solid var(--accent);
  background: rgba(59,130,246,0.06);
}
.blog-tag.funding {
  background: var(--accent);
  color: #fff;
}

/* =========================================
   About Page
   ========================================= */
.spotlight-section {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4em;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4em 2em;
}
.story-text h2 { color: #ffffff; margin-bottom: 1.2rem; }
.story-text p { color: var(--text-muted); margin-bottom: 1rem; }
.story-img { width: 100%; overflow: hidden; border-radius: var(--radius); }
.story-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}
@media (max-width: 768px) { .spotlight-section { grid-template-columns: 1fr; } }

/* =========================================
   Contact
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {  }
.contact-info h3 { color: #ffffff; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9em; margin-bottom: 1.2rem; }
.contact-item i { color: var(--accent); font-size: 1.1rem; margin-top: 0.2em; flex-shrink: 0; }
.contact-item p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.contact-form h3 { color: #ffffff; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.65em 1em;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* =========================================
   Footer
   ========================================= */
#footer {
  background-color: var(--surface) !important;
  border-top: 1px solid var(--border);
  padding: 4em 5% 2em;
  width: 100%;
}
#footer .inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3em;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4em;
  align-items: start;
  box-sizing: border-box;
}
#footer h2 {
  color: #ffffff;
  font-size: 0.95rem !important;
  font-weight: 600;
  margin: 0 0 1em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#footer p {
  color: var(--text-muted);
  font-size: 0.88em;
  line-height: 1.7;
  margin: 0;
}
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0.5em; }
.footer-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.88em; transition: color 0.2s; }
.footer-nav a:hover { color: #ffffff; }
#footer .copyright {
  color: var(--text-muted);
  font-size: 0.82em;
  text-align: center;
  margin: 2.5em auto 0;
  padding-top: 1.5em;
  border-top: 1px solid var(--border);
  max-width: 1100px;
}
@media (max-width: 768px) { #footer .inner { grid-template-columns: 1fr 1fr; padding: 0 1em; } }
@media (max-width: 480px) { #footer .inner { grid-template-columns: 1fr; } }

/* =========================================
   Cookie Banner
   ========================================= */
#cookie-banner {
  background: var(--surface);
  color: var(--text);
  padding: 1.2em 2em;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10003;
}
#cookie-banner p { margin: 0; font-size: 0.88em; }
#cookie-banner a { color: var(--accent); }
#cookie-banner button { border: none; padding: 0.45em 1.2em; border-radius: 6px; cursor: pointer; font-size: 0.85em; }
#cookie-banner #cookie-accept { background: var(--accent); color: #fff; }
#cookie-banner #cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }

/* =========================================
   Advantages / Why Us
   ========================================= */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4em 1.6em;
}
.advantage-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  width: 32px;
}
.advantage-item p { color: var(--text); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  padding: 80px 5%;
  text-align: center;
}
#main .cta-section h2,
#main .cta-section h3,
#main .cta-section p { color: #ffffff !important; }
.cta-section h2 { color: #ffffff !important; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9) !important; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn-white {
  background: #ffffff;
  color: var(--accent-dark) !important;
}
.cta-section .btn-white:hover { background: #f0f4ff; }

/* =========================================
   Legal Pages
   ========================================= */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.legal-content h2 { color: #ffffff; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { color: var(--text); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content a { color: var(--accent); }

/* =========================================
   Solutions Page
   ========================================= */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.solution-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(59,130,246,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.solution-icon i { color: var(--accent); font-size: 1.6rem; }
.solution-card h3 { color: #ffffff; margin-bottom: 0.8rem; }
.solution-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* =========================================
   Feature Image Wrappers
   ========================================= */
.feature-img-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.feature-img-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
  h1 { font-size: 40px !important; }
  h2 { font-size: 30px !important; }
  h3 { font-size: 22px !important; }
  .hero { padding: 120px 5% 60px; min-height: 480px; }
  .hero-cta { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
}
@media (max-width: 480px) {
  
  #footer .inner { grid-template-columns: 1fr; padding: 0; }
}

/* Mobile nav open state */
@media (max-width: 980px) {
  #site-nav .nav-menu.nav-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: var(--nav-height) !important;
    left: 0 !important; right: 0 !important;
    background: var(--bg) !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 1rem 5% 1.5rem !important;
    z-index: 999 !important;
  }
  #site-nav .nav-menu.nav-open li a {
    height: auto !important;
    padding: 0.7rem 0 !important;
    font-size: 1rem !important;
  }
}

/* === Card Grid Equal Height Fix === */
.features-grid,
.services-grid,
.cards-grid,
.solutions-grid,
.advantages-grid {
  align-items: start;
}

.card-custom,
.service-card,
.solution-card,
.advantage-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-custom p,
.service-card p,
.solution-card p,
.advantage-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* === Card Equal Height (stretch to tallest card) === */
.features-grid,
.services-grid,
.cards-grid,
.solutions-grid,
.advantages-grid,
.platform-grid,
[class*="-grid"] {
  align-items: stretch;
}

.card-custom,
.service-card,
.solution-card,
.advantage-card,
.feature-card,
.platform-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-sizing: border-box;
}

.card-custom h3,
.card-custom h4,
.service-card h3,
.solution-card h3 {
  flex-shrink: 0;
}

.card-custom p:last-of-type,
.service-card p:last-of-type,
.solution-card p:last-of-type {
  flex: 1;
}

/* === Odd-count card grid: last card centered === */
.features-grid > .card-custom:last-child:nth-child(odd),
.services-grid > .card-custom:last-child:nth-child(odd),
.cards-grid > .card-custom:last-child:nth-child(odd),
.solutions-grid > .card-custom:last-child:nth-child(odd),
.advantages-grid > .card-custom:last-child:nth-child(odd),
.features-grid > *:last-child:nth-child(odd),
.services-grid > *:last-child:nth-child(odd),
[class*="-grid"] > .card-custom:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 1rem);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ---- Integrations Grid ---- */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.integration-category {
  background: var(--surface, #11131f);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 1.5em;
}
.integration-category h4 {
  color: var(--text, #e8eaf0) !important;
  font-size: 15px !important;
  font-weight: 700;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.integration-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.integration-category ul li {
  color: var(--text-muted, #8892a4);
  font-size: 14px;
  padding: 0.3em 0;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.05));
}
.integration-category ul li:last-child { border-bottom: none; }
@media (max-width: 992px) { .integrations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .integrations-grid { grid-template-columns: 1fr; } }

/* ---- Security Grid ---- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.security-item {
  background: var(--surface, #11131f);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 2em 1.5em;
}
.security-icon {
  width: 48px; height: 48px;
  background: rgba(99,102,241,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3em;
  color: var(--accent, #6366f1);
  margin-bottom: 1em;
}
.security-item h3 { color: var(--text, #e8eaf0) !important; margin-bottom: 0.5em; font-size: 20px !important; }
.security-item p { color: var(--text-muted, #8892a4); margin: 0; font-size: 0.92em !important; }
@media (max-width: 992px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .security-grid { grid-template-columns: 1fr; } }

/* ---- Steps Grid ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.step-item {
  background: var(--surface, #11131f);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 2em 1.5em;
  text-align: center;
}
.step-num {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--accent, #6366f1);
  line-height: 1;
  margin-bottom: 0.5em;
  display: block;
}
.step-item h3 { color: var(--text, #e8eaf0) !important; margin-bottom: 0.5em; font-size: 18px !important; }
.step-item p { color: var(--text-muted, #8892a4); margin: 0; font-size: 0.9em !important; }
@media (max-width: 992px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---- Platform Feature Content ---- */
.platform-feature-content { display: flex; flex-direction: column; justify-content: center; }
.platform-feature-content h3 { color: var(--text, #e8eaf0) !important; margin-bottom: 0.75em; }
.platform-feature-content p { color: var(--text-muted, #8892a4); }

/* ---- Blog Card Content ---- */
.blog-card-content { padding: 1.5em; flex: 1; display: flex; flex-direction: column; }
.blog-date { color: var(--text-muted, #8892a4); font-size: 0.82em; display: block; margin-bottom: 0.5em; }

/* ---- Article Section ---- */
.article-section { margin-top: 2.5em; padding-top: 2em; border-top: 1px solid var(--border, rgba(255,255,255,0.08)); }
.article-section h2 { color: var(--text, #e8eaf0) !important; margin-bottom: 1em; }
.article-section ul { color: var(--text-muted, #8892a4); padding-left: 1.5em; line-height: 2; }

/* ---- Legal Section ---- */
.legal-section { margin-top: 2.5em; }
.legal-section h2 { color: var(--text, #e8eaf0) !important; font-size: 22px !important; margin-bottom: 0.75em; }
.legal-section p, .legal-section ul { color: var(--text-muted, #8892a4); }
