/* ══════════════════════════════════════════
   MELLON SECURITY — Shared Stylesheet
   ══════════════════════════════════════════ */

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

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --bg:          #0e0d14;
  --bg-footer:   #0a0910;
  --surface:     #16151f;
  --surface-2:   #1d1c28;
  --purple:      #7c5cff;
  --purple-dark: #5b3fd1;
  --purple-soft: #a78bfa;
  --purple-15:   rgba(124,92,255,0.15);
  --purple-glow: rgba(124,92,255,0.25);

  --white:    #ffffff;
  --w80:      rgba(255,255,255,0.8);
  --w70:      rgba(255,255,255,0.7);
  --w60:      rgba(255,255,255,0.6);
  --w50:      rgba(255,255,255,0.5);
  --w40:      rgba(255,255,255,0.4);
  --w10:      rgba(255,255,255,0.1);
  --w06:      rgba(255,255,255,0.06);
  --w05:      rgba(255,255,255,0.05);
  --w04:      rgba(255,255,255,0.04);
  --w03:      rgba(255,255,255,0.03);
  --w02:      rgba(255,255,255,0.02);
  --border:       rgba(255,255,255,0.1);
  --border-faint: rgba(255,255,255,0.05);

  /* Radii */
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 9999px;

  /* Layout */
  --content-max: 1280px;
  --content-pad: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 11px;
  font-weight: 400;
  color: var(--purple-soft);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
}
h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--white);
}
h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: var(--white);
}
.lead {
  font-size: clamp(15px, 1.35vw, 18px);
  color: var(--w60);
  line-height: 1.65;
  font-weight: 400;
}
p, .body-text {
  font-size: 14px;
  color: var(--w60);
  line-height: 1.65;
}
.gradient-text {
  background: linear-gradient(90deg, #a78bfa 0%, #7c5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
  padding: 14px 26px;
  cursor: pointer;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px var(--purple-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(124,92,255,0.4); }
.btn-secondary {
  background: var(--w05);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--content-pad);
  height: 72px;
  background: rgba(14,13,20,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-faint);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo svg { display: block; }
/* On mobile, keep the full logo but scale it to fit */
@media (max-width: 991px) {
  .nav-logo svg {
    width: 140px;
    height: auto;
  }
}
@media (max-width: 360px) {
  .nav-logo svg {
    width: 120px;
    height: auto;
  }
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--w70);
  border-radius: var(--r-pill);
  transition: background .15s, color .15s;
}
.nav-links a:hover { color: var(--white); background: var(--w05); }
.nav-links a.active { color: var(--white); background: var(--w10); }
.nav-cta { padding: 10px 20px; font-size: 14px; }

/* ── MOBILE NAV ACTIONS (right side of navbar) ── */
.nav-mobile-actions {
  display: none;           /* hidden on desktop */
  align-items: center;
  gap: 8px;
}

/* Purple phone button */
.nav-phone-btn {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-phone-btn:hover { opacity: 0.85; }
.nav-phone-btn img { width: 20px; height: 20px; }

/* Menu / close toggle button */
.nav-hamburger {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--w05);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--w10); }
.nav-hamburger .icon-burger { display: block; }
.nav-hamburger .icon-close  { display: none; }
/* When open: swap icons */
.nav-hamburger.open .icon-burger { display: none; }
.nav-hamburger.open .icon-close  { display: block; }

/* ── MOBILE DROPDOWN MENU ── */
/* Sits directly below the navbar, slides down */
.mobile-menu {
  display: none;           /* hidden on desktop */
  position: fixed;
  top: 72px;               /* navbar height */
  left: 0; right: 0;
  z-index: 99;
  background: rgba(14,13,20,0.95);
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  /* Slide animation */
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  max-height: 500px;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}
.mobile-menu-link {
  display: block;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--w80);
  letter-spacing: -0.16px;
  transition: background .15s, color .15s;
}
.mobile-menu-link:hover    { background: var(--w05); color: var(--white); }
.mobile-menu-link.active   { background: var(--w10); color: var(--white); }

/* ── CERTIFICATIONS BANNER ── */
.certs-banner {
  background: var(--w02);
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  padding: 48px 0;
  overflow: hidden;
}
.certs-label {
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  color: var(--w50);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.certs-track-wrap {
  overflow: hidden;
  position: relative;
}
.certs-track-wrap::before,
.certs-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.certs-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.certs-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.certs-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLeft 28s linear infinite;
}
.certs-track:hover { animation-play-state: paused; }
.cert-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 13px 22px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.cert-pill span { font-size: 15px; color: var(--w80); letter-spacing: 0.3px; }

/* ── CARDS ── */
.card {
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }

.card-link {
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: background .2s, border-color .2s, transform .2s;
}
.card-link:hover { background: #201f28; border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* ── ICON CIRCLE ── */
.icon-circle {
  border-radius: var(--r-pill);
  background: var(--purple-15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle-sm { width: 48px; height: 48px; }
.icon-circle-md { width: 64px; height: 64px; }

/* ── SECTION ── */
.section { padding: 96px 0; }
.section-header { margin-bottom: 48px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-faint);
  padding: 72px var(--content-pad) 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  line-height: 0;
}
.footer-logo svg { display: block; }
.footer-logo-icon { display: none; } /* no longer used */
.footer-logo-name { display: none; } /* text is baked into SVG */
.footer-tagline {
  font-size: 13px;
  color: var(--w50);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--w70);
  transition: color .2s;
}
.footer-contact:hover { color: var(--white); }
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 13px;
  color: var(--w60);
  font-weight: 400;
  transition: color .2s;
}
.footer-col-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal {
  font-size: 10.5px;
  color: var(--w40);
  line-height: 1.7;
}

/* ── PAGE HEADER ── */
.page-header {
  padding-top: 160px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
/* ── CONTACT FORM CARD ── */
.contact-card {
  border: 1px solid var(--border);
  border-radius: 40px;
  background: linear-gradient(135deg, #1D1C28 0%, #0E0D14 100%);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #252433;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 21px;
  transition: background .2s;
}
.contact-info-item:hover { background: #2c2b3d; }
.ci-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--purple-15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.ci-title { font-size: 15px; color: var(--white); font-weight: 400; }
.ci-sub { font-size: 13px; color: var(--w50); margin-top: 2px; }

/* ── FORM FIELDS ── */
.form-group { display: flex; flex-direction: column; gap: 16px; }
/* Name + email are always full width — no side-by-side columns */
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field {
  background: #252433;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--white);
  width: 100%;
  transition: border-color .2s, background .2s;
  outline: none;
  appearance: none;
}
.field::placeholder { color: var(--w50); }
.field:focus { border-color: var(--purple); background: #2a2840; }
textarea.field { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 11px;
  color: var(--w40);
  text-align: center;
  line-height: 1.6;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: linear-gradient(180deg, #1B1A20 0%, #131218 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.service-card:hover { border-color: rgba(255,255,255,0.18); background: linear-gradient(180deg, #201F26 0%, #161520 100%); transform: translateY(-3px); }
.service-card-body { flex: 1; }
.service-card-icon { margin-bottom: 24px; }
.service-card-title { font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: -0.2px; }
.service-card-desc { font-size: 14px; color: var(--w60); line-height: 1.6; }
.service-expand-btn {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--w10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--white);
  transition: background .2s;
}
.service-card:hover .service-expand-btn { background: var(--purple-15); }

/* ── PARTNERS / ABOUT ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partner-card {
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s, border-color .2s, transform .2s;
}
.partner-card:hover { background: #201f28; border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.partner-name { font-size: 17px; font-weight: 600; color: var(--white); }
.partner-desc { font-size: 13px; color: var(--w60); line-height: 1.6; }
.partner-tag {
  display: inline-block;
  background: var(--purple-15);
  color: var(--purple-soft);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.blog-card:hover { border-color: rgba(255,255,255,0.12); background: #201f28; transform: translateY(-3px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.blog-card-body { padding: 28px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-tag {
  background: var(--purple-15);
  color: var(--purple-soft);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.blog-date { font-size: 12px; color: var(--w50); }
.blog-title { font-size: 17px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--w60); line-height: 1.6; }
.blog-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--purple-soft);
  margin-top: 16px;
  font-weight: 400;
  transition: gap .2s;
}
.blog-card:hover .blog-link { gap: 9px; }

/* ── ABOUT STATS ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.stat-card {
  background: #1a1920;
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: background .2s, border-color .2s;
}
.stat-card:hover { background: #201f28; border-color: var(--border); }
.stat-val { font-size: 32px; font-weight: 600; color: var(--white); letter-spacing: -1px; margin: 16px 0 6px; }
.stat-lbl { font-size: 14px; color: var(--w60); }

/* ── CYBERSECURITY ── */
.cyber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── EXPLORE LINKS ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.explore-card {
  display: flex;
  flex-direction: column;
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  gap: 10px;
  transition: background .2s, border-color .2s, transform .2s;
}
.explore-card:hover { background: #201f28; border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.explore-title { font-size: 17px; font-weight: 600; color: var(--white); }
.explore-desc { font-size: 13px; color: var(--w60); line-height: 1.6; flex: 1; }
.explore-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--purple-soft);
  margin-top: 6px;
}
.explore-card:hover .explore-link-arrow { transform: translateX(3px); }
.explore-link-arrow { transition: transform .2s; }

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 13px;
  color: var(--w80);
  letter-spacing: -0.1px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.7;
}

/* ── ANIMATIONS ── */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-1 { animation: fadeInUp .65s .05s ease both; }
.fade-in-2 { animation: fadeInUp .65s .15s ease both; }
.fade-in-3 { animation: fadeInUp .65s .25s ease both; }
.fade-in-4 { animation: fadeInUp .65s .35s ease both; }
.fade-in-5 { animation: fadeInUp .65s .45s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --content-pad: 40px; }
  .explore-grid  { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  :root { --content-pad: 24px; }
  .site-nav { padding: 0 24px; }
  .nav-links        { display: none; }
  .nav-cta          { display: none; }
  .nav-mobile-actions { display: flex; }
  .mobile-menu      { display: block; }
}
@media (max-width: 768px) {
  .contact-card  { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .cyber-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .explore-grid  { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  h1 { letter-spacing: -1px; }
  .page-header { padding-top: 110px; }
}


/* ══════════════════════════════════════════
   BLOG — extracted from blog.html + new
   ══════════════════════════════════════════ */

/* ── Filter pills ── */
.filter-pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.filter-pill {
  padding:8px 18px; border-radius:var(--r-pill); font-size:13px;
  font-family:'Manrope',sans-serif; cursor:pointer;
  border:1px solid var(--border); background:#1a1920; color:var(--w70);
  transition:background .2s, color .2s, border-color .2s;
}
.filter-pill.active, .filter-pill:hover {
  background:var(--purple-15); border-color:rgba(124,92,255,0.3); color:var(--purple-soft);
}

/* ── Featured article ── */
.blog-featured {
  background:linear-gradient(160deg,var(--w06),var(--w02));
  border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; margin-bottom:40px;
  transition:border-color .2s, transform .2s; cursor:pointer;
  text-decoration:none;
}
.blog-featured:hover { border-color:rgba(255,255,255,0.18); transform:translateY(-2px); }
.blog-featured-img {
  background:linear-gradient(135deg,#1d1c28 0%,#16151f 60%,rgba(124,92,255,0.1) 100%);
  display:flex; align-items:center; justify-content:center;
  font-size:72px; min-height:320px;
}
.blog-featured-body { padding:48px; display:flex; flex-direction:column; justify-content:center; }
.blog-featured-title { font-size:26px; font-weight:600; color:var(--white); line-height:1.3; margin-bottom:16px; letter-spacing:-0.3px; }
.blog-featured-excerpt { font-size:15px; color:var(--w60); line-height:1.7; margin-bottom:24px; }

/* ── Blog post inner page ── */
.post-header { padding-top:140px; padding-bottom:48px; }
.post-header-inner { max-width:760px; margin:0 auto; }
.post-body {
  max-width:760px; margin:0 auto;
  padding-bottom:80px;
}
.post-body h2 { font-size:24px; font-weight:600; margin:40px 0 16px; letter-spacing:-0.2px; }
.post-body h3 { font-size:19px; font-weight:600; margin:32px 0 12px; }
.post-body p  { font-size:16px; color:var(--w70); line-height:1.75; margin-bottom:20px; }
.post-body ul, .post-body ol {
  padding-left:24px; margin-bottom:20px;
  display:flex; flex-direction:column; gap:8px;
}
.post-body li { font-size:16px; color:var(--w70); line-height:1.7; }
.post-body blockquote {
  border-left:3px solid var(--purple);
  padding:16px 24px; margin:32px 0;
  background:var(--purple-15); border-radius:0 var(--r-md) var(--r-md) 0;
}
.post-body blockquote p { color:var(--w80); margin:0; font-style:italic; }
.post-body .callout {
  background:var(--w04); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:24px 28px; margin:32px 0;
}
.post-share {
  display:flex; align-items:center; gap:12px;
  padding:28px 0; border-top:1px solid var(--border-faint);
  margin-top:48px;
}
.post-share-label { font-size:13px; color:var(--w50); }
.post-share-btn {
  padding:8px 16px; border-radius:var(--r-pill);
  background:var(--w05); border:1px solid var(--border);
  font-size:13px; color:var(--w80); cursor:pointer;
  transition:background .2s, color .2s;
  font-family:'Manrope',sans-serif;
}
.post-share-btn:hover { background:var(--w10); color:var(--white); }

/* ── Related posts ── */
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }

/* ── Empty state ── */
.blog-empty {
  text-align:center; padding:80px 24px;
  color:var(--w50); font-size:15px;
  display:none;
}
.blog-empty.visible { display:block; }

/* ── Newsletter form states ── */
.newsletter-form { display:flex; gap:12px; max-width:400px; margin:0 auto; flex-wrap:wrap; }
.newsletter-msg { font-size:14px; margin-top:12px; min-height:20px; text-align:center; }
.newsletter-msg.success { color:#22c55e; }
.newsletter-msg.error   { color:#f87171; }

/* ── Blog responsive ── */
@media (max-width:768px) {
  .blog-featured { grid-template-columns:1fr; }
  .blog-featured-img { min-height:180px; font-size:48px; }
  .blog-featured-body { padding:28px; }
  .related-grid { grid-template-columns:1fr; }
  .post-header { padding-top:110px; }
  .post-body h2 { font-size:20px; }
}

/* ── Icon circle img sizing ── */
.icon-circle img  { display: block; flex-shrink: 0; }
.icon-circle-sm img { width: 20px; height: 20px; }
.icon-circle-md img { width: 24px; height: 24px; }

/* ci-icon (contact page) */
.ci-icon img { width: 20px; height: 20px; flex-shrink: 0; }

/* Nav icons */
.nav-phone-btn img { display: block; }
.nav-hamburger img { display: block; }
img.icon-burger { display: block; }
img.icon-close  { display: none; }
.nav-hamburger.open img.icon-burger { display: none; }
.nav-hamburger.open img.icon-close  { display: block; }
.nav-cta img { display: block; }

/* Footer contact icons */
.footer-contact img { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.85; }


/* ══════════════════════════════════════════
   CYBERSECURITY PAGE
   ══════════════════════════════════════════ */
.cyber-wrap {
  background: linear-gradient(135deg, #1D1C28 0%, #0E0D14 100%);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cyber-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cyber-service-card {
  background: #1a1920;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}
.cyber-service-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 8px;
  letter-spacing: -0.1px;
}
.cyber-service-card p {
  font-size: 13px;
  color: var(--w60);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PARTNERS PAGE
   ══════════════════════════════════════════ */
.partners-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.partner-card-new {
  background: linear-gradient(180deg, #1B1A20 0%, #131218 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  transition: background .2s, border-color .2s, transform .2s;
}
.partner-card-new:hover {
  background: linear-gradient(180deg, #201F26 0%, #161520 100%);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.partner-card-new h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 6px;
  letter-spacing: -0.1px;
}
.partner-card-new p { font-size: 13px; color: var(--w50); }
.partner-cta-card {
  background: linear-gradient(135deg, #1D1C28 0%, #0E0D14 100%);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  margin-top: 20px;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-box {
  background: #1a1920;
  border: 1px solid var(--border-faint);
  border-radius: 20px;
  padding: 28px;
  transition: background .2s;
}
.about-stat-box:hover { background: #1e1d25; }
.about-stat-num {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1;
}
.about-stat-lbl { font-size: 14px; color: var(--w60); }

/* ══════════════════════════════════════════
   BLOG PAGE
   ══════════════════════════════════════════ */
.blog-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--w05);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 12px 20px;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.btn-all-articles:hover { background: var(--w10); transform: translateY(-1px); }
.blog-card-img-area {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, rgba(55,40,110,0.9) 0%, rgba(18,16,32,0.98) 100%);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  /* When image is present, add a dark overlay via pseudo-element */
}
.blog-card-img-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,20,60,0.55) 0%, rgba(14,13,20,0.3) 100%);
  border-radius: inherit;
  pointer-events: none;
}
/* Category tag must sit above the overlay */
.blog-card-category { position: relative; z-index: 1; }
.blog-card-category {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1px;
}
/* Old placeholder fallback — hidden */
.blog-card-img-placeholder { display: none; }
.blog-tag-pill { display: none; /* removed per design */
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--w50);
  margin-bottom: 12px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--purple-soft);
  margin-top: 16px;
  font-weight: 400;
  transition: gap .2s;
}
.blog-card:hover .blog-read-more { gap: 9px; }

/* ══════════════════════════════════════════
   RESPONSIVE — new pages
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .cyber-wrap { grid-template-columns: 1fr; padding: 32px; gap: 40px; }
  .partners-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .partner-cta-card { padding: 40px 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 540px) {
  .cyber-services-grid { grid-template-columns: 1fr; }
  .partners-grid-3 { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════
   HERO STAT CARDS (homepage)
   Match Figma: dark card, solid purple icon circle, large val
   ══════════════════════════════════════════ */
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 72px auto 0;
}
.hero-stat-card {
  background: #1a1920;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 28px;
  text-align: left;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-stat-card:hover {
  background: #201f28;
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124,92,255,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-soft);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.hero-stat-val {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.hero-stat-lbl {
  font-size: 14px;
  color: var(--w50);
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-stat-grid { grid-template-columns: 1fr; max-width: 100%; margin-top: 48px; }
}


/* ══════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════ */
.legal-body { display: flex; flex-direction: column; gap: 0; }
.legal-section { padding: 32px 0; border-bottom: 1px solid var(--border-faint); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}
.legal-section p {
  font-size: 15px;
  color: var(--w60);
  line-height: 1.75;
}


/* ══════════════════════════════════════════
   CLASSES REPLACING INLINE STYLES
   ══════════════════════════════════════════ */

/* ── Page sections ── */
.section-page    { padding-top: 140px; }
.section-inner   { padding-top: 48px; }
.section-contact { padding-top: 0; margin-top: -40px; }

/* ── Hero ── */
.hero-header    { text-align: center; padding-bottom: 80px; }
.hero-container { position: relative; z-index: 1; }
.hero-h1        { margin-bottom: 0; }
.hero-lead      { max-width: 540px; margin: 28px auto 0; }
.hero-buttons   {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ── Section header centered variant ── */
.section-header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

/* ── About page ── */
.about-heading { margin-bottom: 28px; }

/* ── Cybersecurity page ── */
.cyber-heading { margin-bottom: 24px; }

/* ── Partners page ── */
.partner-cta-lead {
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Legal pages ── */
.legal-wrap    { max-width: 760px; margin: 0 auto; }
.legal-header  { margin-bottom: 48px; }
.legal-title   { font-size: clamp(32px,4vw,48px); letter-spacing: -1px; margin-bottom: 16px; color: var(--white); }
.legal-date    { font-size: 13px; color: var(--w40); }
.legal-divider { border: none; border-top: 1px solid var(--border-faint); margin-bottom: 48px; }
.footer-dpo-link { color: var(--w60); }
.footer-dpo-link:hover { color: var(--white); }

/* ── Blog post pages ── */
.post-back-link {
  font-size: 13px;
  color: var(--w50);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  transition: color .2s;
}
.post-back-link:hover { color: var(--w80); }
.post-title {
  font-size: clamp(24px,4vw,44px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 600;
}
.post-related { max-width: 760px; margin: 0 auto 80px; }
.related-heading { margin-bottom: 24px; }
.post-inline-link { color: var(--purple-soft); }
.post-inline-link:hover { color: var(--white); }
.callout-list {
  margin-top: 12px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.callout-list li { font-size: 14px; color: var(--w70); }
.callout-p { margin-top: 12px; }

/* Service card extra text */
.service-card-extra p { font-size: 13px; color: var(--w60); line-height: 1.7; margin-top: 12px; }

/* ══════════════════════════════════════════
   BLOG POST — MOBILE FIXES
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Prevent content overflowing viewport */
  .post-body      { padding-left: 0; padding-right: 0; overflow-wrap: break-word; word-break: break-word; }
  .post-header    { padding-top: 100px; padding-bottom: 32px; }
  .post-header-inner { padding: 0; }

  /* blog-meta: stack tag + date vertically on very small screens */
  .blog-meta      { flex-wrap: wrap; gap: 8px; }
  .post-back-link { font-size: 12px; }
  .post-title     { font-size: clamp(22px, 5vw, 36px); }

  /* Related posts grid → single column */
  .related-grid   { grid-template-columns: 1fr; }
  .post-related   { margin-bottom: 48px; }

  /* Callout boxes don't overflow */
  .callout        { padding: 16px 20px; }

  /* Post share bar wraps */
  .post-share     { flex-wrap: wrap; gap: 10px; }
}

/* Mobile menu top aligns with 72px nav height */
.mobile-menu { top: 72px; }


/* ══════════════════════════════════════════
   TYPING ANIMATION — hero heading
   ══════════════════════════════════════════ */
.typing-text {
  /* gradient applied via .gradient-text */
}
.typing-cursor {
  display: inline-block;
  background: linear-gradient(90deg, #a78bfa 0%, #7c5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.75s step-end infinite;
  /* matches h1 size */
  font-size: inherit;
  line-height: inherit;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
/* Cursor hidden once typing is complete */
.typing-cursor.done { animation: none; opacity: 0; }

.cyber-cta-btn { margin-top: 32px; align-self: flex-start; }

/* ── body-lead: lead styling without the class conflict ── */
.body-lead {
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--w70);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}


/* ── Newsletter card (blog page) ── */
.newsletter-card {
  background: linear-gradient(135deg, #1D1C28 0%, #0E0D14 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.newsletter-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.newsletter-sub {
  font-size: 14px;
  color: var(--w60);
  line-height: 1.6;
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-field {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
}
.newsletter-msg {
  font-size: 14px;
  margin-top: 14px;
  min-height: 20px;
}
.newsletter-msg.success { color: #22c55e; }
.newsletter-msg.error   { color: #f87171; }
