/* ═══════════════════════════════════════════
   Ventra Cyber — Shared Stylesheet
   Enterprise Cybersecurity for Australian Practices
   ═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  font: inherit; border: 0; vertical-align: baseline;
}
html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s, box-shadow .3s;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  transform: translateZ(0);
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
  height: 4.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo svg { color: #3b82f6; }
.nav-logo span { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; }
.nav-logo .accent { color: #3b82f6; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.55);
  transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-actions { display: flex; gap: .75rem; align-items: center; }

.btn-ghost {
  padding: .6rem 1.1rem; border-radius: 10px; font-weight: 600; font-size: .9rem;
  color: rgba(255,255,255,.7); transition: color .2s, background .2s;
  background: transparent; cursor: pointer; border: none;
  display: inline-flex; align-items: center;
}
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.06); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: 10px; font-weight: 700; font-size: .9rem;
  background: #3b82f6; color: #fff; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(59,130,246,0);
}
.btn-primary:hover {
  background: #2563eb; transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(59,130,246,.25);
}

.btn-secondary-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: 10px; font-weight: 700; font-size: .9rem;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.1); cursor: pointer;
  transition: background .2s, transform .15s, border-color .2s;
}
.btn-secondary-dark:hover {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: .5rem; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 4.5rem; left: 0; right: 0;
  background: rgba(10,10,10,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .5rem 0; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: .9rem 2rem;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.6);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: #fff; background: rgba(255,255,255,.04);
}

/* ── HERO ── */
.hero {
  padding: 10rem 0 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -50%; left: -20%; width: 140%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(59,130,246,.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 40%, rgba(99,102,241,.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ── BACKGROUND PATHS ── */
.bg-paths {
  display: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: 999px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2);
  font-size: .82rem; font-weight: 600; color: #60a5fa;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #3b82f6;
  box-shadow: 0 0 8px rgba(59,130,246,.6);
}

.hero-title {
  font-size: 4.2rem; font-weight: 900; line-height: 1.05; letter-spacing: -.04em;
  max-width: 800px; margin-bottom: 1.25rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #3b82f6, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.5); max-width: 600px;
  line-height: 1.7; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* Hero dashboard cards */
.hero-dashboard {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 1.25rem;
  margin-top: 1rem;
}
.dash-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: border-color .3s, transform .3s;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  transform: translateZ(0);
}
.dash-card:hover { border-color: rgba(59,130,246,.25); transform: translateZ(0) translateY(-2px); }
.dash-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.dash-card-title { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.6); }
.dash-card-link { font-size: .78rem; font-weight: 600; color: #3b82f6; }
.dash-metric { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: .25rem; }
.dash-metric-sub { font-size: .82rem; color: rgba(255,255,255,.4); }

.dash-threat-list { display: flex; flex-direction: column; gap: .6rem; }
.dash-threat-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .75rem; border-radius: 10px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.threat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.threat-dot.red { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,.4); }
.threat-dot.yellow { background: #eab308; box-shadow: 0 0 8px rgba(234,179,8,.4); }
.threat-dot.green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.4); }
.dash-threat-name { font-size: .82rem; font-weight: 600; flex: 1; }
.dash-threat-status { font-size: .75rem; color: rgba(255,255,255,.4); }

.dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: .75rem; }
.dash-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #3b82f6, rgba(59,130,246,.3));
}

.dash-person {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.dash-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}
.dash-person-info { flex: 1; }
.dash-person-name { font-size: .82rem; font-weight: 700; }
.dash-person-role { font-size: .75rem; color: rgba(255,255,255,.4); }
.dash-person-tag {
  font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: 6px;
  background: rgba(59,130,246,.15); color: #60a5fa;
}

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.section-dark { background: #0a0a0a; }
.section-darker { background: #050505; border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }

.section-label {
  display: inline-flex; padding: .35rem .85rem; border-radius: 999px;
  background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.15);
  font-size: .78rem; font-weight: 700; color: #60a5fa;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-title {
  font-size: 2.8rem; font-weight: 900; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.section-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ── ADVANTAGES / CARD GRID ── */
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.adv-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 2rem;
  transition: border-color .3s, transform .3s;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  transform: translateZ(0);
}
.adv-card:hover { border-color: rgba(59,130,246,.2); transform: translateZ(0) translateY(-3px); }
.adv-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.15);
  font-size: .82rem; font-weight: 800; color: #60a5fa;
  margin-bottom: 1.25rem;
}
.adv-title { font-size: 1.2rem; font-weight: 800; margin-bottom: .6rem; letter-spacing: -.02em; }
.adv-text { font-size: .92rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ── WHAT WE DO ── */
.what-we-do-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.wwd-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 2rem;
  transition: border-color .3s, transform .3s;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  transform: translateZ(0);
}
.wwd-card:hover { border-color: rgba(59,130,246,.2); transform: translateZ(0) translateY(-3px); }
.wwd-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.wwd-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .6rem; letter-spacing: -.02em; }
.wwd-card p { font-size: .92rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.wwd-summary {
  text-align: center; max-width: 650px; margin: 0 auto;
  padding: 2rem; border-radius: 16px;
  background: rgba(59,130,246,.04); border: 1px solid rgba(59,130,246,.1);
}
.wwd-summary p { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── FEATURE ROWS ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 6rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: -1; }

.feature-label {
  font-size: .78rem; font-weight: 700; color: #60a5fa;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem;
}
.feature-title {
  font-size: 2.2rem; font-weight: 900; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.feature-text {
  font-size: 1rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.5rem;
}
.feature-list { display: flex; flex-direction: column; gap: .6rem; }
.feature-list-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.7);
}
.feature-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.2);
  display: flex; align-items: center; justify-content: center;
}
.feature-check svg { width: 12px; height: 12px; color: #22c55e; }

.feature-visual {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 2rem; position: relative;
}

.visual-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 1.25rem; margin-bottom: 1rem;
}
.visual-card:last-child { margin-bottom: 0; }
.visual-card-row { display: flex; justify-content: space-between; align-items: center; }
.visual-card-label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.5); }
.visual-card-value { font-size: .9rem; font-weight: 700; }
.visual-card-value.green { color: #22c55e; }
.visual-card-value.red { color: #ef4444; }
.visual-card-value.blue { color: #3b82f6; }

.status-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .2rem .6rem; border-radius: 6px; font-size: .72rem; font-weight: 700;
}
.status-badge.secure { background: rgba(34,197,94,.1); color: #22c55e; }
.status-badge.warning { background: rgba(234,179,8,.1); color: #eab308; }
.status-badge.critical { background: rgba(239,68,68,.1); color: #ef4444; }

/* Team list */
.team-list { display: flex; flex-direction: column; gap: .5rem; }
.team-member {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem .75rem; border-radius: 10px; background: rgba(255,255,255,.03);
}
.team-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800;
}
.team-member-info { flex: 1; }
.team-member-name { font-size: .82rem; font-weight: 700; }
.team-member-loc { font-size: .72rem; color: rgba(255,255,255,.35); }
.team-member-status { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); }

/* Globe visual */
.globe-container {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border-radius: 16px; padding: 2rem; text-align: center;
  position: relative; overflow: hidden; margin-bottom: 1.5rem;
}
.globe-container::before {
  content: "";
  position: absolute; top: 50%; left: 50%; width: 200px; height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,130,246,.2), transparent 70%);
}
.globe-emoji { font-size: 5rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 20px rgba(59,130,246,.3)); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .25rem;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.4); font-weight: 500; }

/* ── PRICING ── */
.pricing-toggle { display: inline-flex; align-items: center; gap: .75rem; margin-top: 1.5rem; }
.pricing-toggle-label { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.5); }
.pricing-toggle-label.active { color: #fff; }
.toggle-switch {
  width: 44px; height: 24px; border-radius: 12px;
  background: #3b82f6; position: relative; cursor: pointer; border: none;
}
.toggle-switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; transition: transform .2s;
}
.toggle-switch.monthly::after { transform: translateX(20px); }

.pricing-tiers {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem; position: relative;
}
.pricing-line {
  position: absolute; top: 50%; left: 10%; right: 10%;
  height: 2px; background: rgba(255,255,255,.06);
  transform: translateY(-50%); z-index: 0;
}
.tier-dot {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1; flex: 1;
}
.tier-dot-circle {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.1);
  margin-bottom: .5rem; transition: all .3s;
}
.tier-dot.active .tier-dot-circle {
  background: #3b82f6; border-color: #3b82f6;
  box-shadow: 0 0 12px rgba(59,130,246,.5);
}
.tier-dot-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.4); }
.tier-dot.active .tier-dot-label { color: #fff; }
.tier-dot-sub { font-size: .7rem; color: rgba(255,255,255,.25); margin-top: .15rem; }

.pricing-card {
  max-width: 380px; margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 20px; padding: 2.5rem; text-align: center;
}
.pricing-card-name { font-size: 1.3rem; font-weight: 800; margin-bottom: .75rem; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-feature {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: .5rem;
  justify-content: center;
}
.pricing-feature svg { color: #3b82f6; width: 16px; height: 16px; flex-shrink: 0; }
.pricing-price {
  display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 1.5rem;
}
.pricing-from { font-size: .85rem; color: rgba(255,255,255,.4); }
.pricing-amount { font-size: 2.2rem; font-weight: 900; letter-spacing: -.03em; }
.btn-pricing {
  width: 100%; padding: .85rem 1.5rem; border-radius: 12px;
  font-weight: 700; font-size: .95rem; background: #3b82f6;
  color: #fff; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-pricing:hover { background: #2563eb; transform: translateY(-1px); }
.pricing-cta-sub { margin-top: 1.25rem; }
.pricing-cta-sub a {
  font-size: .85rem; font-weight: 600; color: #60a5fa;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ── CASE STUDY ── */
.case-study-card {
  background: rgba(239,68,68,.04);
  border: 1px solid rgba(239,68,68,.12);
  border-radius: 16px; padding: 2rem; margin-top: 2.5rem;
}
.case-study-card h4 { font-size: 1.1rem; font-weight: 800; color: #ef4444; margin-bottom: .6rem; }
.case-study-card p { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { padding: 7rem 0; }
.contact-inner { max-width: 900px; margin: 0 auto; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem;
  align-items: start;
}
.contact-info-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 2rem;
}
.contact-info-card h3 {
  font-size: 1.15rem; font-weight: 800; margin-bottom: 1rem;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.15);
  display: flex; align-items: center; justify-content: center; color: #60a5fa;
}
.contact-detail-text { flex: 1; }
.contact-detail-label { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .15rem; }
.contact-detail-value { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.8); }
.contact-detail-value a { color: #60a5fa; transition: color .2s; }
.contact-detail-value a:hover { color: #93bbfd; }

/* Contact form */
.contact-form-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 2rem;
}
.contact-form-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.5); }
.form-input, .form-textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); color: #fff;
  font-size: .92rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(59,130,246,.4);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-textarea { min-height: 120px; resize: vertical; }
select.form-input, select { color-scheme: dark; }
select option { background: #1a1a1a; color: #fff; }
.form-submit { margin-top: .5rem; }
.form-privacy-note { font-size: .78rem; color: rgba(255,255,255,.3); margin-top: .75rem; text-align: center; }
.form-privacy-note a { color: #60a5fa; text-decoration: underline; text-underline-offset: 2px; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 9rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -40%; left: -10%; width: 120%; height: 180%;
  background: radial-gradient(ellipse at 40% 30%, rgba(59,130,246,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-label {
  display: inline-flex; padding: .35rem .85rem; border-radius: 999px;
  background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.15);
  font-size: .78rem; font-weight: 700; color: #60a5fa;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.08; letter-spacing: -.04em;
  margin-bottom: .75rem; max-width: 700px;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.5); max-width: 600px; line-height: 1.7;
}

/* ── PRIVACY / PROSE ── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 {
  font-size: 1.5rem; font-weight: 800; margin-top: 2.5rem; margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.prose h3 {
  font-size: 1.15rem; font-weight: 700; margin-top: 1.75rem; margin-bottom: .5rem;
}
.prose p {
  font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 1rem;
}
.prose ul {
  margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc;
}
.prose li {
  font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: .35rem;
}
.prose a { color: #60a5fa; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #93bbfd; }
.prose strong { font-weight: 700; color: rgba(255,255,255,.8); }

/* ── FOOTER ── */
.footer {
  background: #050505; padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; padding-bottom: 2rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand { max-width: 380px; }
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.footer-logo svg { color: #3b82f6; }
.footer-logo span { font-weight: 800; font-size: 1.15rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 1.5rem; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.2);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, rgba(59,130,246,.08) 0%, rgba(99,102,241,.05) 100%);
  border-top: 1px solid rgba(59,130,246,.1);
  border-bottom: 1px solid rgba(59,130,246,.1);
}
.cta-banner h2 {
  font-size: 2.2rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: .6rem;
}
.cta-banner p {
  font-size: 1.05rem; color: rgba(255,255,255,.45); margin-bottom: 1.75rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-dashboard { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .what-we-do-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse .feature-visual { order: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .pricing-tiers { flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 8rem 0 4rem; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .section { padding: 5rem 0; }
  .hero-dashboard { grid-template-columns: 1fr; }
  .feature-title { font-size: 1.6rem; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .page-hero p { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .wwd-summary { padding: 1.5rem; }
  .wwd-card { padding: 1.5rem; }
  .adv-card { padding: 1.5rem; }
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner h2 { font-size: 1.6rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-links { gap: 1rem; }
  .case-study-card { padding: 1.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary-dark { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .stats-row { grid-template-columns: 1fr; }
  .pricing-tiers { gap: .5rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .stat-number { font-size: 2.2rem; }
  .dash-metric { font-size: 1.6rem; }
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, border-color .2s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.blog-card:hover {
  transform: translateZ(0) translateY(-4px);
  border-color: rgba(59,130,246,.35);
}
.blog-card-meta {
  font-size: .8rem;
  color: #6b7280;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: .9rem;
  color: #9ca3af;
  line-height: 1.6;
  flex: 1;
}
.blog-card-link {
  font-size: .85rem;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.blog-card-link:hover { color: #60a5fa; }
.read-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: #6b7280;
}
.blog-tag {
  display: inline-block;
  background: rgba(59,130,246,.12);
  color: #60a5fa;
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Blog post prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 .75rem; color: #f9fafb; }
.prose h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 .5rem; color: #e5e7eb; }
.prose p { margin: 0 0 1.25rem; line-height: 1.8; color: #d1d5db; }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1.25rem; color: #d1d5db; line-height: 1.8; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: #f9fafb; }
.prose a { color: #3b82f6; }
.prose a:hover { color: #60a5fa; }
.prose .callout {
  background: rgba(59,130,246,.08);
  border-left: 3px solid #3b82f6;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.prose .callout p { margin: 0; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.post-cta {
  background: #111;
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.post-cta h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.post-cta p { color: #9ca3af; margin-bottom: 1.25rem; }
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}
