/* ═══════════════════════════════════════════════
   Vrisol Digital Theme — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Design tokens ── */
:root {
  --navy:   #050d1f;
  --navy2:  #0a1628;
  --navy3:  #0f2040;
  --cyan:   #00d4ff;
  --cyan-d: #0099cc;
  --gold:   #f5a623;
  --glow:   rgba(0,212,255,0.12);
  --glow-s: rgba(0,212,255,0.06);
  --text:   #e8f4f8;
  --muted:  #7a9bb0;
  --border: rgba(0,212,255,0.14);
  --card:   rgba(10,22,40,0.85);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Layout helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--text);
}
p { line-height: 1.75; }

/* ── WordPress reset — prevent block styles adding white backgrounds ── */
body,
.wp-site-blocks,
.is-layout-flow,
.entry-content,
.wp-block-group {
	background: var(--navy) !important;
}

/* ── Section commons ── */
section        { padding: 90px 0; background: var(--navy); }
.section-alt   { background: var(--navy2) !important; }
.section-dark  { background: var(--navy) !important; }
.trust-bar     { background: var(--navy2) !important; }
.cta-band      { background: linear-gradient(135deg,rgba(0,212,255,.1),rgba(0,212,255,.04)) !important; }
.sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec-label {
  font-size: 11px; letter-spacing: 3px; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 0.7rem;
}
.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.9rem;
}
.sec-sub {
  color: var(--muted); font-size: 0.98rem;
  line-height: 1.8; max-width: 580px;
}
.sec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Buttons ── */
.btn-p {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan); color: var(--navy);
  padding: 13px 28px; border-radius: 7px;
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-p:hover { background: var(--cyan-d); transform: translateY(-1px); }

.btn-o {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); color: var(--cyan);
  padding: 13px 28px; border-radius: 7px;
  font-size: 14px; font-weight: 600;
  background: transparent; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-o:hover { background: var(--glow); border-color: var(--cyan); }

.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); color: var(--cyan);
  padding: 11px 24px; border-radius: 7px;
  font-size: 14px; font-weight: 600;
  background: transparent; transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-sm:hover { background: var(--glow); border-color: var(--cyan); }

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
#site-nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(5,13,31,0.9);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  border: 2px solid var(--cyan); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 14px;
  color: var(--cyan); letter-spacing: 1px;
  background: rgba(0,212,255,0.06);
}
.logo-text {
  font-family: 'Sora', sans-serif; font-size: 16px;
  font-weight: 700; color: var(--text); letter-spacing: 0.3px;
}
.logo-text em { font-style: normal; color: var(--cyan); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--muted); font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--cyan); }
.nav-cta {
  background: var(--cyan); color: var(--navy);
  padding: 9px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--cyan-d); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  background: var(--navy2); border-top: 1px solid var(--border);
  padding: 16px 5%;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 10px 0;
  color: var(--muted); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-menu[hidden] { display: none; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 70px;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 60% 25%, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 16px; font-size: 11px; color: var(--cyan);
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1.5rem; background: var(--glow-s);
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

h1 .hi { color: var(--cyan); }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.hero-sub {
  font-size: 1.02rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 2rem; max-width: 490px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--cyan);
}
.stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.5px; }

/* BRIM Diagram */
.diagram-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; backdrop-filter: blur(12px);
}
.diag-head {
  font-size: 10px; color: var(--cyan); letter-spacing: 2.5px;
  font-weight: 700; text-transform: uppercase; margin-bottom: 1.2rem;
}
.diag-top {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 6px; align-items: center; margin-bottom: 8px;
}
.diag-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.d-node {
  background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px; padding: 12px 10px; text-align: center;
}
.d-node-icon { font-size: 18px; margin-bottom: 5px; }
.d-node-tag { font-size: 10px; font-weight: 700; color: var(--cyan); letter-spacing: 0.5px; }
.d-node-name { font-size: 10px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.d-center {
  background: linear-gradient(135deg, rgba(0,212,255,0.14), rgba(0,212,255,0.05));
  border: 1.5px solid rgba(0,212,255,0.4); border-radius: 10px;
  padding: 14px 12px; text-align: center;
}
.d-center-tag { font-size: 11px; font-weight: 700; color: var(--cyan); }
.d-center-name { font-size: 10px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.flow-arrow { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.arrow-row { display: flex; align-items: center; gap: 2px; font-size: 10px; color: rgba(0,212,255,0.4); }
.arrow-line { width: 20px; height: 1px; background: rgba(0,212,255,0.3); }
.arrow-lbl { font-size: 9px; color: var(--muted); text-align: center; margin-top: 2px; line-height: 1.3; }
.arrow-down { display: flex; justify-content: center; font-size: 16px; color: rgba(0,212,255,0.35); margin: 2px 0; }
.ai-strip {
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 8px; padding: 9px 12px;
  display: flex; align-items: center; gap: 10px; margin-top: 12px;
}
.ai-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0; animation: blink 1.8s infinite;
}
.ai-strip-text { font-size: 11px; color: var(--muted); }
.ai-strip-text strong { color: var(--cyan); }

/* ═══════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy2); padding: 22px 5%;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.svc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all 0.3s; position: relative; overflow: hidden; cursor: default;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-3px); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,212,255,0.09); border: 1px solid rgba(0,212,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1rem;
}
.svc-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--text); }
.svc-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   AI ACCELERATORS
   ═══════════════════════════════════════════════ */
.accel-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.accel-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.8rem;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.accel-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-3px); }
.accel-glow {
  position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,212,255,0.1), transparent 70%);
  pointer-events: none;
}
.accel-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.22);
  color: var(--cyan); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; padding: 4px 10px; border-radius: 100px;
  margin-bottom: 1rem; text-transform: uppercase;
}
.accel-tag.roadmap {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.25);
  color: var(--gold);
}
.accel-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.accel-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.accel-feats { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.accel-feats li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8rem; color: var(--muted); line-height: 1.5;
}
.accel-feats li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0; margin-top: 5px;
}
.accel-note { margin-top: 2.5rem; text-align: center; font-size: 13px; color: var(--muted); }
.accel-note a { color: var(--cyan); }

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.95rem; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.5rem; }
.exp-item {
  background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.11);
  border-radius: 8px; padding: 10px 14px;
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.exp-item::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.metric-stack { display: flex; flex-direction: column; gap: 0.9rem; }
.metric-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.metric-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(0,212,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.metric-val { font-family: 'Sora', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--cyan); }
.metric-label { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }

/* ═══════════════════════════════════════════════
   INSIGHTS / BLOG
   ═══════════════════════════════════════════════ */
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 3rem;
}
.insights-grid-wide { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.insight-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.insight-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-3px); }

.insight-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy3), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; border-bottom: 1px solid var(--border); flex-shrink: 0;
  overflow: hidden;
}
.insight-thumb img { width: 100%; height: 100%; object-fit: cover; }

.insight-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.insight-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; flex-wrap: wrap; }
.insight-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan); background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.18); padding: 3px 8px; border-radius: 100px;
  text-decoration: none; transition: background 0.2s;
}
.insight-cat:hover { background: rgba(0,212,255,0.15); }
.insight-date { font-size: 11px; color: var(--muted); }
.insight-read { font-size: 11px; color: var(--muted); }

.insight-card h3, .insight-card-title {
  font-size: 0.97rem; font-weight: 700; color: var(--text);
  line-height: 1.45; margin-bottom: 0.6rem;
}
.insight-card h3 a, .insight-card-title a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.insight-card h3 a:hover, .insight-card-title a:hover { color: var(--cyan); }
.insight-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; flex: 1; }
.insight-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 1.2rem; font-size: 0.82rem; font-weight: 600;
  color: var(--cyan); text-decoration: none; transition: gap 0.2s;
}
.insight-link:hover { gap: 9px; }
.insights-footer { margin-top: 2.5rem; text-align: center; }
.no-posts { text-align: center; padding: 60px 0; color: var(--muted); }
.no-posts p { margin-bottom: 24px; }

/* Archive page */
.archive-hero {
  padding: 120px 24px 60px;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.archive-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 28px 24px;
}
.filter-btn {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--muted);
  text-decoration: none; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(0,212,255,0.1);
  border-color: var(--cyan); color: var(--cyan);
}
.archive-pagination {
  margin-top: 60px; display: flex; justify-content: center;
}
.archive-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.archive-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--muted);
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: rgba(0,212,255,0.1); border-color: var(--cyan); color: var(--cyan);
}
.archive-pagination .prev, .archive-pagination .next {
  width: auto; padding: 0 16px;
}

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
  padding: 70px 5%;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,212,255,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.cta-band p { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info-col { padding-top: 0.5rem; }
.contact-info-col p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.cd { display: flex; align-items: center; gap: 12px; margin-bottom: 0.9rem; }
.cd-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.cd-label { font-size: 0.75rem; color: var(--muted); }
.cd-val { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.cd-val a { color: var(--cyan); }

.contact-form, .contact-form-wrap .wpcf7 {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); margin-bottom: 0.45rem; letter-spacing: 0.5px;
}
.fg input, .fg textarea, .fg select,
.wpcf7 input, .wpcf7 textarea, .wpcf7 select {
  width: 100%; background: rgba(0,212,255,0.04);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 0.88rem; color: var(--text);
  font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus,
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  border-color: var(--cyan);
}
.fg select option, .wpcf7 select option { background: var(--navy2); }
.fg textarea, .wpcf7 textarea { resize: vertical; min-height: 108px; }
.submit, .wpcf7 input[type="submit"] {
  width: 100%; background: var(--cyan); color: var(--navy);
  border: none; border-radius: 8px; padding: 13px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.submit:hover, .wpcf7 input[type="submit"]:hover { background: var(--cyan-d); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
#site-footer {
  background: var(--navy); border-top: 1px solid var(--border);
  padding: 60px 5% 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-cols { display: contents; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.35);
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col li a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════ */
.single-post-page { padding-top: 68px; }
.post-hero {
  background: var(--navy2); padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.post-hero-inner { max-width: 780px; }
.post-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 16px 0; }
.post-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.post-meta .sep { color: var(--border); }
.post-featured-img {
  max-width: 780px; margin: 40px auto 0;
}
.post-featured-img img { border-radius: var(--radius); width: 100%; }

.post-body { max-width: 780px; margin: 0 auto; padding: 48px 24px 80px; }
.post-content {
  font-size: 1.05rem; line-height: 1.85; color: #c8dde8;
}
.post-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: var(--text); }
.post-content h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--text); }
.post-content p { margin-bottom: 1.4rem; }
.post-content ul, .post-content ol { margin: 0 0 1.4rem 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content a { color: var(--cyan); border-bottom: 1px solid rgba(0,212,255,0.3); transition: border-color 0.2s; }
.post-content a:hover { border-color: var(--cyan); }
.post-content blockquote {
  border-left: 3px solid var(--cyan);
  margin: 2rem 0; padding: 1rem 1.5rem;
  background: rgba(0,212,255,0.05);
  border-radius: 0 8px 8px 0; color: var(--muted);
  font-style: italic;
}
.post-content code {
  background: rgba(0,212,255,0.08); color: var(--cyan);
  padding: 2px 6px; border-radius: 4px; font-size: 0.9em;
}
.post-content pre {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0;
}
.post-content pre code { background: none; padding: 0; color: var(--text); }
.post-content img { border-radius: 8px; margin: 1.5rem 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.post-content th {
  background: rgba(0,212,255,0.08); color: var(--cyan);
  padding: 10px 14px; text-align: left; font-weight: 700;
  border: 1px solid var(--border);
}
.post-content td { padding: 10px 14px; border: 1px solid var(--border); color: var(--muted); }

.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2.5rem; }
.post-tag {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; border: 1px solid var(--border);
  color: var(--muted); text-decoration: none; transition: all 0.2s;
}
.post-tag:hover { border-color: var(--cyan); color: var(--cyan); }

.post-share {
  display: flex; align-items: center; gap: 12px;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.share-btn {
  padding: 7px 16px; border-radius: 6px; font-size: 12px;
  font-weight: 700; text-decoration: none; transition: all 0.2s;
}
.share-linkedin { background: rgba(10,102,194,0.15); color: #0a66c2; border: 1px solid rgba(10,102,194,0.3); }
.share-linkedin:hover { background: rgba(10,102,194,0.25); }
.share-whatsapp { background: rgba(37,211,102,0.1); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.share-whatsapp:hover { background: rgba(37,211,102,0.2); }
.share-twitter { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border); }
.share-twitter:hover { border-color: var(--cyan); color: var(--cyan); }

.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-nav a { color: var(--cyan); font-size: 14px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.post-nav a:hover { opacity: 0.75; }
.nav-dir { font-size: 11px; color: var(--muted); font-weight: 400; display: block; margin-bottom: 4px; }
.post-nav-next { text-align: right; }

.related-posts { padding: 60px 24px 80px; max-width: 1200px; margin: 0 auto; }
.related-posts h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--text); }

/* ═══════════════════════════════════════════════
   GENERIC PAGE
   ═══════════════════════════════════════════════ */
.page-default { padding-top: 68px; }
.page-hero {
  background: var(--navy2); padding: 64px 24px 48px;
  border-bottom: 1px solid var(--border);
}
.page-body { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.page-content { font-size: 1.02rem; line-height: 1.8; color: #c8dde8; }
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.page-content p { margin-bottom: 1.2rem; }
.page-content a { color: var(--cyan); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 90px 5% 50px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 1.2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .accel-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-tagline { display: none; }
  .trust-inner { gap: 20px; }
  .post-nav { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .diag-top { grid-template-columns: 1fr; gap: 8px; }
  .flow-arrow { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .sec-title { font-size: 1.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-btns { flex-direction: column; }
  .cta-acts { flex-direction: column; align-items: center; }
}
