/* ════════════════════════════════════════════
   Secure Monitoring — Enterprise Static Stylesheet
   ════════════════════════════════════════════ */

:root {
  /* ── Brand palette sampled from logo ──
     Navy #004D83 · Red #E60105 · White #F7F3EF */
  --background: #07090d;            /* near-black base */
  --background-2: #0a0e14;          /* slightly lifted black */
  --foreground: #F7F3EF;            /* logo white */
  --card: #0d1219;                  /* dark navy-black panel */
  --primary: #1267a8;               /* brand navy, brightened for UI */
  --primary-deep: #004D83;          /* exact logo navy */
  --primary-foreground: #ffffff;
  --muted: #131a24;
  --muted-foreground: #8a97a8;      /* gray-blue body text */
  --accent-red: #E60105;            /* exact logo red */
  --accent-red-bright: #ff1f24;     /* hover red */
  --border: #1a2533;                /* slate-navy border */
  --input: #0b1018;
  /* aliases kept so existing rules resolve to brand colors */
  --cyan: #2f8fd6;                  /* bright brand blue accent (was cyan) */
  --cyan-dim: #1267a8;
  --grid-color: rgba(26, 37, 51, 0.55);
  --radius: 0.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

.mono { font-family: 'Geist Mono', 'SF Mono', 'Roboto Mono', ui-monospace, monospace; }

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.relative { position: relative; }
.z10 { position: relative; z-index: 10; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.h2 { font-size: clamp(2rem, 4vw, 3rem); }
.lead { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
.muted { color: var(--muted-foreground); }
.cyan { color: var(--cyan); }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-number {
  background: linear-gradient(135deg, #3da0e0, #1267a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Geist Mono', monospace;
}

/* ── Decorative patterns ── */
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, rgba(47,143,214,0.6), transparent);
  animation: scan 4s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 0 rgba(230,1,5,0.6);
  animation: pulse-ring 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(230,1,5,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(230,1,5,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,1,5,0); }
}

/* ── Glassmorphism ── */
.glass {
  background: rgba(13,18,25,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(40,58,80,0.5);
}
.glass-strong {
  background: rgba(8,11,16,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(40,58,80,0.6);
}

/* ── Corner brackets ── */
.bracket { position: relative; }
.bracket::before, .bracket::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border-color: var(--cyan); border-style: solid;
}
.bracket::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.bracket::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--accent-red); color: #fff; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-red-bright), var(--accent-red));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 0 26px rgba(230,1,5,0.5); transform: translateY(-1px); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: rgba(47,143,214,0.6); color: var(--cyan); transform: translateY(-1px); }

/* ── Navigation ── */
.logo-img { height: 2.5rem; width: auto; display: block; }
.footer .logo-img { height: 2.75rem; }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #080b10;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(40,58,80,0.35);
  /* Safe-area: extend background behind status bar but don't squeeze nav-inner */
  padding-top: env(safe-area-inset-top, 0px);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled { border-bottom-color: rgba(40,58,80,0.7); box-shadow: 0 10px 30px -15px rgba(0,0,0,0.8); }
/* nav-inner always a fixed height — never affected by safe-area padding */
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; min-height: 4.5rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 2.25rem; height: 2.25rem; border: 1px solid rgba(47,143,214,0.6);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.logo-mark span { color: var(--cyan); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.15em; }
.logo-mark .dot { position: absolute; top: -4px; right: -4px; width: 8px; height: 8px; }
.logo-title { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.18em; color: rgba(47,143,214,0.7); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground);
  position: relative; transition: color 0.2s;
}
.nav-link:hover { color: var(--foreground); }
.nav-link.active { color: var(--cyan); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 1px; background: var(--cyan); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.1em; color: var(--cyan);
  border: 1px solid rgba(47,143,214,0.45); padding: 0.5rem 1rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: rgba(47,143,214,0.14); }
.nav-cta svg { width: 12px; height: 12px; }
.hamburger { display: none; background: none; border: none; color: var(--foreground); cursor: pointer; padding: 0.5rem; }
.hamburger svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(7,9,13,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link { font-size: 1.5rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); padding: 0.9rem; transition: color 0.2s; }
.mobile-menu a.m-link:hover, .mobile-menu a.m-link.active { color: var(--cyan); }
.mobile-social { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-fade { position: absolute; inset: 0; background: linear-gradient(to right, var(--background), rgba(7,9,13,0.85) 45%, rgba(7,9,13,0.2)); }
.hero-content { padding: 10rem 0 8rem; }
.hero-badge { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-badge span { font-family: 'Geist Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }
.hero h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); margin-bottom: 1.5rem; max-width: 56rem; }
.hero .lead { max-width: 36rem; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 3rem; }
.hero-trust .item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted-foreground); }
.hero-trust .item svg { width: 14px; height: 14px; color: var(--cyan); }
.hero-trust .divider { width: 1px; height: 1rem; background: var(--border); }
.hero-status { position: absolute; top: 6rem; right: 1.5rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; font-family: 'Geist Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; color: rgba(47,143,214,0.45); }

/* ── Ticker ── */
.ticker { background: rgba(18,103,168,0.12); border-top: 1px solid rgba(18,103,168,0.22); border-bottom: 1px solid rgba(18,103,168,0.22); padding: 0.75rem 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 4rem; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-inner span { font-family: 'Geist Mono', monospace; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.stat-item { text-align: center; }
.stat-item .num { font-size: clamp(2.75rem, 5vw, 3.75rem); font-weight: 700; margin-bottom: 0.5rem; }
.stat-item .label { font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.stat-item .sub { font-size: 0.72rem; color: var(--muted-foreground); }

/* ── Cards / grids ── */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { padding: 1.5rem; transition: all 0.3s ease; }
.card:hover { border-color: rgba(47,143,214,0.45); }
.card-icon { width: 3rem; height: 3rem; border: 1px solid rgba(47,143,214,0.32); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: border-color 0.3s; }
.card:hover .card-icon { border-color: rgba(47,143,214,0.6); }
.card-icon svg { width: 22px; height: 22px; color: var(--cyan); }
.card h3 { font-size: 1rem; margin-bottom: 0.75rem; transition: color 0.3s; }
.card:hover h3 { color: var(--cyan); }
.card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.card ul li svg { width: 12px; height: 12px; color: var(--cyan); flex-shrink: 0; margin-top: 0.2rem; }

/* ── Split sections ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-narrow { gap: 3rem; }
.img-frame { position: relative; }
.img-frame::before { content: ''; position: absolute; inset: -1rem; border: 1px solid rgba(47,143,214,0.14); pointer-events: none; }
.img-frame img { width: 100%; object-fit: cover; }
.img-badge { position: absolute; bottom: 1rem; left: 1rem; padding: 0.5rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.img-badge span { font-family: 'Geist Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--cyan); }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 1rem; }
.feature-bullet { width: 1.25rem; height: 1.25rem; border: 1px solid rgba(47,143,214,0.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.15rem; }
.feature-bullet span { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

/* Value cards */
.value-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; }
.value-card .vc-icon { width: 2.5rem; height: 2.5rem; border: 1px solid rgba(47,143,214,0.32); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-card .vc-icon svg { width: 18px; height: 18px; color: var(--cyan); }
.value-card .vc-title { font-weight: 600; margin-bottom: 0.25rem; }
.value-card .vc-desc { font-size: 0.875rem; color: var(--muted-foreground); }

/* ── Video band ── */
.video-band { position: relative; height: 70vh; min-height: 30rem; overflow: hidden; }
.video-band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-band .v-fade { position: absolute; inset: 0; background: linear-gradient(to top, var(--background), rgba(7,9,13,0.6) 45%, rgba(7,9,13,0.2)); }
.video-band .v-content { position: absolute; inset: 0; display: flex; align-items: center; }

/* ── Workflow ── */
.workflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.workflow .step { position: relative; }
.workflow .step .connector { display: none; }
.workflow .step .num { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.workflow .step h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.workflow .step p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ── Services preview with video bg ── */
.svc-preview { position: relative; overflow: hidden; }
.svc-preview .svc-video { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; }
.svc-preview .svc-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.svc-preview .svc-video .fade { position: absolute; inset: 0; background: linear-gradient(to right, var(--background), transparent); }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.svc-list .item { display: flex; gap: 0.75rem; align-items: flex-start; }
.svc-list .item .sb { width: 1.25rem; height: 1.25rem; border: 1px solid rgba(47,143,214,0.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.15rem; }
.svc-list .item .sb span { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }
.svc-list .item .st { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.15rem; }
.svc-list .item .sd { font-size: 0.72rem; color: var(--muted-foreground); }

/* ── Testimonials ── */
.testi { position: relative; max-width: 56rem; margin: 0 auto; }
.testi-card { padding: 2rem; position: relative; overflow: hidden; }
.testi-stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testi-stars svg { width: 16px; height: 16px; fill: #fbbf24; color: #fbbf24; }
.testi-quote { font-size: 1.125rem; line-height: 1.7; font-style: italic; margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.testi-avatar { width: 2.5rem; height: 2.5rem; border: 1px solid rgba(47,143,214,0.45); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-weight: 700; }
.testi-name { font-weight: 600; }
.testi-role { font-size: 0.8rem; color: var(--muted-foreground); }
.testi-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }
.testi-btn { padding: 0.75rem; border: 1px solid var(--border); background: none; color: var(--foreground); cursor: pointer; transition: all 0.2s; }
.testi-btn:hover { border-color: rgba(47,143,214,0.5); color: var(--cyan); }
.testi-btn svg { width: 20px; height: 20px; }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot { height: 1px; width: 1rem; background: var(--border); transition: all 0.3s; cursor: pointer; border: none; padding: 0; }
.testi-dot.active { width: 2rem; background: var(--cyan); }

/* ── Comparison table ── */
.table-wrap { overflow-x: auto; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.cmp th { padding: 1.25rem 1.5rem; text-align: center; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); border-bottom: 1px solid var(--border); }
table.cmp th:first-child { text-align: left; }
table.cmp th.hl { color: var(--cyan); }
table.cmp td { padding: 1rem 1.5rem; text-align: center; border-bottom: 1px solid rgba(26,37,51,0.6); }
table.cmp td:first-child { text-align: left; font-weight: 500; }
table.cmp tr:hover { background: rgba(255,255,255,0.025); }
.yes { color: var(--cyan); font-weight: 700; }
.no { color: rgba(230,1,5,0.75); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-card { padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; transition: all 0.2s; }
a.contact-card:hover { border-color: rgba(47,143,214,0.45); }
.contact-card .cc-icon { width: 2.5rem; height: 2.5rem; border: 1px solid rgba(47,143,214,0.32); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .cc-icon svg { width: 16px; height: 16px; color: var(--cyan); }
.contact-card .cc-label { font-family: 'Geist Mono', monospace; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.contact-card .cc-value { font-size: 0.875rem; font-weight: 500; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-family: 'Geist Mono', monospace; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.form-input, .form-textarea {
  width: 100%; background: var(--background); border: 1px solid var(--border);
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--foreground);
  font-family: inherit; transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-foreground); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: rgba(47,143,214,0.6); }
.form-textarea { resize: vertical; min-height: 7rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success .fs-icon { width: 4rem; height: 4rem; border: 1px solid rgba(47,143,214,0.5); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success .fs-icon svg { width: 24px; height: 24px; color: var(--cyan); }

/* ── CTA ── */
.cta { position: relative; overflow: hidden; padding: 7rem 0; }
.cta .cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(18,103,168,0.22), var(--background) 50%, rgba(230,1,5,0.1)); }

/* ── Footer ── */
.footer { background: var(--card); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer h4 { font-family: 'Geist Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact a { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; margin-bottom: 1rem; }
.footer-contact a:hover { color: var(--cyan); }
.footer-contact svg { width: 15px; height: 15px; color: rgba(47,143,214,0.6); flex-shrink: 0; }
.footer-brand p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin: 1.25rem 0; }
.footer-status { display: flex; align-items: center; gap: 0.5rem; font-family: 'Geist Mono', monospace; font-size: 0.72rem; color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted-foreground); }
.footer-bottom .fb-tag { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted-foreground); }
.footer-bottom .fb-tag svg { width: 12px; height: 12px; color: rgba(47,143,214,0.6); }

/* ── Page hero (inner pages) ── */
.page-hero { position: relative; padding: 9rem 0 6rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(18,103,168,0.12), var(--background) 60%); }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

/* ── Helpers ── */
.mt1 { margin-top: 1rem; } .mt2 { margin-top: 2rem; } .mt3 { margin-top: 3rem; }
.mb1 { margin-bottom: 1rem; } .mb2 { margin-bottom: 2rem; } .mb3 { margin-bottom: 3rem; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.bg-card { background: rgba(13,18,25,0.5); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ════════ Responsive ════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-preview .svc-video { display: none; }
  .svc-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .logo-img { height: 2rem; }
  .logo-title { font-size: 0.72rem; }
  .logo-sub { font-size: 0.55rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split .order-1 { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .hero-status { display: none; }
  .hero-trust { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   ENHANCEMENT LAYER — modern professional polish
   ════════════════════════════════════════════ */

/* Refined image frames: depth, hover lift, subtle zoom */
.img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(47,143,214,0.12);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.img-frame img { transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.img-frame:hover { transform: translateY(-4px); box-shadow: 0 32px 70px -18px rgba(0,0,0,0.8), 0 0 0 1px rgba(47,143,214,0.3); }
.img-frame:hover img { transform: scale(1.04); }
.img-frame::before { border-radius: 14px; }

/* Cinematic gradient on framed images */
.img-frame { position: relative; }
.img-frame .img-grad {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(7,9,13,0.55), transparent 55%);
}

/* Page hero with background photo (immersive inner-page headers) */
.page-hero-media {
  position: relative;
  padding: 11rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media .ph-bg {
  position: absolute; inset: 0; z-index: -2;
}
.page-hero-media .ph-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.page-hero-media .ph-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(7,9,13,0.96) 0%, rgba(7,9,13,0.82) 45%, rgba(7,9,13,0.55) 100%),
    linear-gradient(to top, var(--background), transparent 60%);
}
.page-hero-media .eyebrow { color: var(--cyan); }

/* Section divider line accent */
.accent-line {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary));
  margin-bottom: 1.5rem;
}
.section-head .accent-line { margin-left: auto; margin-right: auto; }

/* Card depth + smoother hover */
.glass.card {
  border-radius: 10px;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.glass.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px -24px rgba(0,0,0,0.85);
}
.card-icon { border-radius: 8px; background: rgba(47,143,214,0.06); transition: all 0.35s ease; }
.glass.card:hover .card-icon { background: rgba(47,143,214,0.14); transform: scale(1.06); }

/* Stat tiles get subtle panel treatment */
.stat-item {
  padding: 1.75rem 1rem;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(18,103,168,0.06), transparent);
  border: 1px solid rgba(26,37,51,0.6);
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.stat-item:hover { border-color: rgba(47,143,214,0.3); transform: translateY(-3px); }

/* Button: crisper, tactile */
.btn { border-radius: 8px; letter-spacing: 0.1em; }
.btn-primary { box-shadow: 0 8px 24px -10px rgba(230,1,5,0.6); }

/* Nav refinement */
.nav-link { transition: color 0.2s ease; border-radius: 6px; }

/* Value cards / contact cards rounded + depth */
.value-card, .contact-card, .testi-card, .workflow .step, table.cmp, .img-badge,
.form-input, .form-textarea { border-radius: 10px; }
.value-card { transition: transform 0.35s ease, border-color 0.35s ease; }
.value-card:hover { transform: translateX(4px); }

/* Feature list bullets pop */
.feature-bullet { border-radius: 6px; background: rgba(47,143,214,0.06); transition: all 0.3s ease; }
.feature-list li:hover .feature-bullet { background: rgba(47,143,214,0.18); }

/* Glow accent behind section heads */
.section-head { position: relative; }

/* Mono label chip */
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Geist Mono', monospace; font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan);
  padding: 0.4rem 0.9rem; border: 1px solid rgba(47,143,214,0.3);
  border-radius: 100px; background: rgba(47,143,214,0.06);
}

/* Stat band image accent (about page operations) */
.media-strip { border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 28px 64px -24px rgba(0,0,0,0.8); }
.media-strip img { width: 100%; height: 100%; object-fit: cover; }

/* Improved testimonial card */
.testi-card { box-shadow: 0 24px 60px -28px rgba(0,0,0,0.8); }
.testi-card::after {
  content: '"'; position: absolute; top: -1rem; right: 1.5rem;
  font-size: 7rem; line-height: 1; color: rgba(47,143,214,0.1);
  font-family: Georgia, serif; pointer-events: none;
}

/* Subtle hover on comparison rows already present; add brand tint to highlighted col */
table.cmp th.hl { background: rgba(230,1,5,0.06); }
table.cmp td:nth-child(2) { background: rgba(18,103,168,0.05); font-weight: 600; }

/* Image reveal animation helper */
.zoom-in { opacity: 0; transform: scale(0.98); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1); }
.zoom-in.in { opacity: 1; transform: scale(1); }

@media (max-width: 768px) {
  .page-hero-media { padding: 8rem 0 4rem; }
  .page-hero-media .ph-overlay { background: linear-gradient(to top, var(--background) 5%, rgba(7,9,13,0.8) 60%, rgba(7,9,13,0.65)); }
}
