/* ============================================================
   Securafy.biz — Shared Stylesheet
   Aesthetic: Military-grade precision meets enterprise authority
   Dark navy foundation, teal accents, gold highlights
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0A1628;
  --navy-mid:   #112040;
  --navy-light: #1A2F50;
  --navy-card:  #0f1e38;
  --blue:       #0CC5B0;
  --blue-light: #0DDDC7;
  --blue-glow:  rgba(12,197,176,0.15);
  --cyan:       #0CC5B0;
  --gold:       #C9A84C;
  --gold-light: rgba(201,168,76,0.15);
  --white:      #FFFFFF;
  --grey:       #8A99B0;
  --grey-light: #C8D4E8;
  --red:        #E85454;
  --amber:      #C9A84C;
  --green:      #22C55E;
  --border:     rgba(255,255,255,0.08);
  --border-blue:rgba(12,197,176,0.25);
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 8px 40px rgba(10,22,40,0.35);
  --shadow-blue:0 0 40px rgba(12,197,176,0.15);
  --font-head:  'Barlow', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --max-w:      1200px;
  --nav-h:      72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--grey-light); line-height: 1.75; }
a  { color: var(--blue-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan); }
strong { color: var(--white); font-weight: 600; }

.text-blue  { color: var(--blue-light); }
.text-cyan  { color: var(--cyan); }
.text-grey  { color: var(--grey); }
.text-white { color: var(--white); }
.text-center{ text-align: center; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8   { gap: 8px; }
.gap-16  { gap: 16px; }
.gap-24  { gap: 24px; }
.gap-32  { gap: 32px; }
.mt-8    { margin-top: 8px; }
.mt-16   { margin-top: 16px; }
.mt-24   { margin-top: 24px; }
.mt-32   { margin-top: 32px; }
.mt-48   { margin-top: 48px; }
.mt-64   { margin-top: 64px; }
.mb-8    { margin-bottom: 8px; }
.mb-16   { margin-bottom: 16px; }
.mb-24   { margin-bottom: 24px; }
.mb-32   { margin-bottom: 32px; }
.mb-48   { margin-bottom: 48px; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(12,197,176,0.15);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue-light); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--grey-light); font-size: 0.875rem; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: var(--navy-light); }
.nav-links a.active { color: var(--blue-light); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px; min-width: 240px;
  box-shadow: var(--shadow); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 16px; border-radius: var(--radius);
  color: var(--grey-light); font-size: 0.875rem;
}
.nav-dropdown-menu a:hover { color: var(--white); background: var(--navy-light); }
.nav-cta {
  background: var(--blue); color: var(--navy) !important;
  padding: 8px 20px !important; border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--blue-light) !important; color: var(--navy) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 24px; overflow-y: auto; z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 14px 0; color: var(--white); font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.925rem; font-weight: 600;
  cursor: pointer; transition: all .2s; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--navy);
  box-shadow: 0 0 0 0 rgba(12,197,176,0);
}
.btn-primary:hover {
  background: var(--blue-light); color: var(--navy);
  box-shadow: 0 0 20px rgba(12,197,176,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--border-blue);
}
.btn-outline:hover {
  background: var(--blue-glow); border-color: var(--blue);
  color: var(--white);
}
.btn-ghost {
  background: transparent; color: var(--grey-light);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--navy-light); color: var(--white); }
.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-icon { width: 16px; height: 16px; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.card-icon {
  width: 48px; height: 48px; background: var(--blue-glow);
  border: 1px solid var(--border-blue); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card-body  { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-blue   { background: var(--blue-glow); color: var(--blue-light); border: 1px solid var(--border-blue); }
.badge-green  { background: rgba(34,197,94,0.1);  color: var(--green);  border: 1px solid rgba(34,197,94,0.3);  }
.badge-amber  { background: rgba(201,168,76,0.12); color: var(--gold);  border: 1px solid rgba(201,168,76,0.3); }
.badge-red    { background: rgba(255,59,59,0.1); color: var(--red);     border: 1px solid rgba(255,59,59,0.3); }

/* ── SECTION LABELS ──────────────────────────────────────── */
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 16px; display: block;
}
.section-title { margin-bottom: 16px; }
.section-sub   { font-size: 1.1rem; color: var(--grey); max-width: 640px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 80px); padding-bottom: 96px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(12,197,176,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-light); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 6px 16px;
}
.hero-eyebrow::before { display: none; }
.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--blue-light); }
.hero-desc { font-size: 1.1rem; color: var(--grey); margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--white);
}
.hero-stat-label { font-size: 0.8rem; color: var(--grey); margin-top: 2px; }
.hero-visual {
  position: relative; display: flex; flex-direction: column;
  align-items: stretch; justify-content: center;
}
.hero-panel {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(12,197,176,0.2);
  border-radius: var(--radius-lg); padding: 24px; width: 100%;
  box-shadow: var(--shadow);
}
.threat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.threat-item:last-child { border-bottom: none; }
.threat-level {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap; margin-top: 2px;
}
.threat-critical { background: rgba(255,59,59,0.15); color: var(--red); }
.threat-high     { background: rgba(255,184,0,0.15);  color: var(--amber); }
.threat-medium   { background: rgba(12,197,176,0.15); color: var(--blue-light); }
.threat-text { font-size: 0.875rem; color: var(--grey-light); }

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider {
  height: 1px; background: var(--border); margin: 0;
}
.divider-section { padding: 64px 0; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--grey);
  display: flex; align-items: center; gap: 8px;
}
.trust-item::before { content: '✦'; color: var(--blue-light); font-size: 0.6rem; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonial {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 16px; left: 24px;
  font-family: var(--font-head); font-size: 5rem; color: var(--blue-glow);
  line-height: 1; pointer-events: none;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--grey-light); line-height: 1.75;
  margin-bottom: 24px; padding-top: 20px;
}
.testimonial-author { font-weight: 600; color: var(--white); font-size: 0.875rem; }
.testimonial-role   { font-size: 0.8rem; color: var(--grey); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; background: var(--navy-card); color: var(--white);
  padding: 20px 24px; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  border: none; transition: background .2s;
}
.faq-question:hover { background: var(--navy-light); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--blue-light); transition: transform .3s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 20px 24px; background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.faq-answer p { font-size: 0.925rem; color: var(--grey-light); }
.faq-answer.open { display: block; }

/* ── TABLES ──────────────────────────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  background: var(--navy-mid); padding: 16px 20px;
  text-align: left; font-family: var(--font-head); font-size: 0.875rem;
  border-bottom: 2px solid var(--border-blue); color: var(--grey-light);
}
.comparison-table th.highlight { color: var(--blue-light); }
.comparison-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  color: var(--grey-light);
}
.comparison-table tr:hover td { background: rgba(12,197,176,0.04); }
.comparison-table .check  { color: var(--green); font-size: 1rem; }
.comparison-table .cross  { color: var(--grey); font-size: 1rem; }
.comparison-table .highlight-col { background: rgba(12,197,176,0.06); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px); padding-bottom: 64px;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(12,197,176,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before { content: ''; width: 24px; height: 2px; background: var(--blue-light); }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p  { font-size: 1.1rem; max-width: 640px; margin-bottom: 32px; }
.breadcrumb {
  font-size: 0.8rem; color: var(--grey); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--grey); }

/* ── PRICING CARDS ───────────────────────────────────────── */
.pricing-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--blue); box-shadow: var(--shadow-blue);
  position: relative;
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--navy); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; padding: 4px 14px; border-radius: 20px;
}
.pricing-tier  { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.pricing-name  { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.pricing-desc  { font-size: 0.875rem; color: var(--grey); margin-bottom: 24px; }
.pricing-price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; }
.pricing-price span { font-size: 0.875rem; font-weight: 400; color: var(--grey); font-family: var(--font-body); }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features { list-style: none; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.875rem; color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pricing-cta { margin-top: 32px; width: 100%; justify-content: center; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-blue); transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.blog-card-img {
  height: 200px; background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,197,176,0.1) 0%, transparent 60%);
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 14px; font-size: 0.8rem; color: var(--grey); }
.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); line-height: 1.4; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--grey); line-height: 1.7; flex: 1; }
.blog-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--blue-light); }
.blog-read-more:hover { color: var(--cyan); }

/* ── BLOG POST ───────────────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.post-content h2 { margin: 40px 0 16px; }
.post-content h3 { margin: 32px 0 12px; color: var(--blue-light); }
.post-content p  { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { color: var(--grey-light); margin-bottom: 8px; line-height: 1.7; }
.post-content strong { color: var(--white); }
.post-content blockquote {
  border-left: 3px solid var(--blue); padding: 16px 24px;
  background: var(--navy-card); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.post-content blockquote p { color: var(--grey-light); font-style: italic; margin: 0; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px;
}
.sidebar-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--grey); margin-bottom: 20px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(12,197,176,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p  { font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand-name span { color: var(--blue-light); }
.footer-brand-desc { font-size: 0.875rem; color: var(--grey); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--grey); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--grey); flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--grey); }
.footer-bottom a:hover { color: var(--white); }

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; color: var(--grey-light); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 0.925rem; transition: border-color .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,197,176,0.15);
}
.form-select option { background: var(--navy-card); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── STAT BLOCKS ─────────────────────────────────────────── */
.stat-block {
  text-align: center; padding: 32px 24px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--navy-card);
}
.stat-number { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--white); }
.stat-label  { font-size: 0.85rem; color: var(--grey); margin-top: 6px; }
.stat-sub    { font-size: 0.75rem; color: var(--blue-light); margin-top: 4px; font-weight: 600; }

/* ── ALERTS / BANNERS ────────────────────────────────────── */
.alert-banner {
  background: rgba(255,59,59,0.08); border: 1px solid rgba(255,59,59,0.2);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px;
}
.alert-banner-icon { color: var(--red); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.alert-banner-text { font-size: 0.875rem; color: var(--grey-light); }
.alert-banner-text strong { color: var(--white); }

/* ── UTILITY ─────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.w-full   { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── HERO STAT CARDS (2×2 grid in hero right column) ─────── */
.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(12,197,176,0.18);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color .3s, background .3s;
}
.hero-stat-card:hover {
  border-color: var(--blue);
  background: var(--blue-glow);
}
.hero-stat-card .hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-card .hero-stat-label {
  font-size: .82rem;
  color: var(--grey);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(12,197,176,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(12,197,176,0); }
}
.animate-fade-up { animation: fadeUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid  { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section { padding: 64px 0; }
  .trust-bar-inner { gap: 24px; }
  .pricing-card.featured::before { font-size: 0.6rem; }
  .hero-threat-cols { grid-template-columns: 1fr 1fr !important; }
  .hero-threat-cols .threat-item { border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; border-bottom: 1px solid var(--border) !important; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 14px 24px; }
  .hero-actions { flex-direction: column; }
  h1 { font-size: 2rem; }
}
