/* ============================================
   SIMPLY CYBER SOLUTIONS — Stylesheet
   Bold Modern Dark Tactical
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:           #060810;
  --bg2:          #0b0e18;
  --surface:      #0f1320;
  --surface2:     #151a2e;
  --border:       rgba(255,255,255,0.06);
  --border-bright:rgba(255,255,255,0.12);

  --red:          #e63946;
  --red-dim:      rgba(230,57,70,0.15);
  --red-glow:     rgba(230,57,70,0.3);
  --cyan:         #00d4ff;
  --cyan-dim:     rgba(0,212,255,0.1);
  --cyan-glow:    rgba(0,212,255,0.25);

  --text:         #d8dce8;
  --text-muted:   #7a8099;
  --text-dim:     #3d4460;
  --white:        #ffffff;
  --success:      #22c55e;
  --warning:      #f59e0b;

  --radius:       6px;
  --radius-lg:    12px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --transition:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.8);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}
h4 { font-family: var(--font-body); font-weight: 600; color: var(--white); }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
p  { color: var(--text-muted); max-width: 62ch; }

.overline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ============================================
   SCANLINE / GRID TEXTURE
   ============================================ */
.grid-bg {
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: rgba(6,8,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 18px; height: 18px; stroke: white; }
.nav-logo span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: #ff4757 !important; transform: translateY(-1px); }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.875rem; letter-spacing: 0.02em;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--transition);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 28px var(--red-glow);
}
.btn-primary:hover {
  background: #ff4757; color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 36px rgba(230,57,70,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  border-color: var(--cyan); color: var(--white);
  background: var(--cyan-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--cyan);
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--white); gap: 0.8rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: rgba(0,212,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.08);
}

/* ============================================
   THREAT BADGE / STATUS
   ============================================ */
.status-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 100px;
}
.status-live {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--success);
}
.status-live::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}
.status-alert {
  background: var(--red-dim);
  border: 1px solid rgba(230,57,70,0.25);
  color: var(--red);
}
.status-alert::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 5rem;
  position: relative; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: saturate(0.4) brightness(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(230,57,70,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0,212,255,0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,8,16,0.4) 0%, rgba(6,8,16,0.97) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.5s ease both;
}
.hero h1 {
  animation: fadeUp 0.5s 0.08s ease both;
  line-height: 1.04;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .accent-cyan { color: var(--cyan); }

.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  margin: 1.75rem 0 2.5rem;
  max-width: 54ch;
  animation: fadeUp 0.5s 0.16s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.5s 0.24s ease both; }

.hero-threat-panel {
  margin-top: 4.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  animation: fadeUp 0.5s 0.32s ease both;
}
.threat-stat { text-align: center; }
.threat-stat-num {
  font-family: var(--font-mono); font-size: 1.5rem;
  font-weight: 500; color: var(--white); display: block; line-height: 1;
}
.threat-stat-num.red { color: var(--red); }
.threat-stat-num.cyan { color: var(--cyan); }
.threat-stat-label { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.35rem; letter-spacing: 0.03em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TICKER / ALERT STRIP
   ============================================ */
.alert-strip {
  background: rgba(230,57,70,0.08);
  border-top: 1px solid rgba(230,57,70,0.2);
  border-bottom: 1px solid rgba(230,57,70,0.2);
  padding: 0.65rem 0;
  overflow: hidden;
}
.alert-strip-inner {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.alert-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); padding: 0 2.5rem;
}
.alert-item::before { content: '▸'; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header { margin-bottom: 4rem; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-dim); margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon.red { background: var(--red-dim); border: 1px solid rgba(230,57,70,0.2); }
.service-icon.cyan { background: var(--cyan-dim); border: 1px solid rgba(0,212,255,0.2); }
.service-icon svg { width: 24px; height: 24px; }
.service-icon.red svg { stroke: var(--red); }
.service-icon.cyan svg { stroke: var(--cyan); }

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.service-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px; margin-right: 0.4rem; margin-bottom: 0.4rem;
}
.service-tag.red { background: var(--red-dim); color: var(--red); border: 1px solid rgba(230,57,70,0.2); }
.service-tag.cyan { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-track {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute; left: 17px; top: 36px; bottom: 36px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-bright) 20%, var(--border-bright) 80%, transparent);
}
.process-step {
  display: flex; gap: 1.5rem; padding: 1.75rem 0;
  position: relative;
}
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--cyan); font-weight: 500;
}
.step-dot.active { background: var(--red-dim); border-color: var(--red); color: var(--red); }
.step-body h4 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.95rem; }
.step-body p { font-size: 0.85rem; max-width: 100%; }

/* ============================================
   INCIDENT RESPONSE PHASES
   ============================================ */
.ir-phases { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.ir-phase {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-right: none;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.ir-phase:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.ir-phase:last-child  { border-right: 1px solid var(--border); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.ir-phase::after {
  content: '›';
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); font-size: 1rem; z-index: 1;
}
.ir-phase:last-child::after { display: none; }
.ir-phase:hover { background: rgba(0,212,255,0.04); }
.ir-phase-num {
  font-family: var(--font-mono); font-size: 0.6rem;
  color: var(--text-dim); display: block; margin-bottom: 0.5rem;
}
.ir-phase-name {
  font-size: 0.78rem; font-weight: 600; color: var(--white);
  display: block; margin-bottom: 0.35rem;
}
.ir-phase-time {
  font-family: var(--font-mono); font-size: 0.6rem;
  color: var(--cyan);
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800;
  color: var(--white); line-height: 1; display: block;
}
.stat-num.red { color: var(--red); }
.stat-num.cyan { color: var(--cyan); }
.stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.4rem; }
.stat-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card { }
.testimonial-stars { color: var(--warning); font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.925rem; line-height: 1.8;
  color: var(--text); font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: white; flex-shrink: 0;
}
.t-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.t-role { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================
   FAQ
   ============================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; cursor: pointer;
  font-weight: 500; color: var(--text); font-size: 0.925rem;
  background: none; border: none; width: 100%;
  text-align: left; font-family: var(--font-body);
}
.faq-question:hover { color: var(--white); }
.faq-icon { width: 20px; height: 20px; stroke: var(--cyan); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding-bottom: 1.2rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 0.4rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   PHOTO SECTIONS
   ============================================ */
.photo-section { position: relative; overflow: hidden; }
.photo-section .bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0.3);
}
.photo-section .bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,8,16,0.98) 0%, rgba(6,8,16,0.85) 50%, rgba(6,8,16,0.98) 100%);
}
.photo-section > .container { position: relative; z-index: 2; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(230,57,70,0.12) 0%, rgba(230,57,70,0.04) 100%);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230,57,70,0.15) 0%, transparent 65%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin: 0 auto 2.5rem; font-size: 1rem; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(230,57,70,0.1) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero > .container > p { font-size: 1.1rem; max-width: 58ch; }

/* ============================================
   BOOKING
   ============================================ */
.booking-layout {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 2rem; align-items: start;
}
.booking-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky; top: 100px;
}
.booking-detail { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.booking-detail svg { width: 18px; height: 18px; stroke: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.booking-detail strong { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.booking-detail span, .booking-detail a { font-size: 0.875rem; color: var(--text); }
.cal-embed-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.cal-placeholder { text-align: center; padding: 3rem; }
.cal-placeholder svg { width: 48px; height: 48px; stroke: var(--text-dim); margin: 0 auto 1.25rem; }
.cal-placeholder h4 { margin-bottom: 0.5rem; }
.cal-placeholder p { font-size: 0.875rem; margin: 0 auto 1.5rem; }

/* ============================================
   BLOG
   ============================================ */
.blog-card-img {
  width: calc(100% + 4rem); height: 200px;
  object-fit: cover;
  margin: -2rem -2rem 1.5rem;
  transition: transform 0.4s ease;
  filter: saturate(0.6);
}
.blog-card:hover .blog-card-img { transform: scale(1.04); filter: saturate(0.8); }
.blog-tag-pill {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 3px;
  background: var(--red-dim); color: var(--red);
  border: 1px solid rgba(230,57,70,0.2);
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.25; }
.blog-card h3 a { color: var(--white); }
.blog-meta { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.75rem; }
.blog-excerpt { font-size: 0.85rem; line-height: 1.75; max-width: 100%; }
.read-more-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--cyan);
  margin-top: 1rem; transition: gap var(--transition), color var(--transition);
}
.read-more-link:hover { color: var(--white); gap: 0.7rem; }

/* ============================================
   ARTICLE
   ============================================ */
.article-content { max-width: 740px; margin: 0 auto; }
.article-content h2 { font-size: 1.7rem; margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.article-content p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.85; max-width: 100%; }
.article-content ul { margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article-content li { font-size: 1rem; color: var(--text-muted); padding-left: 1.5rem; position: relative; line-height: 1.75; }
.article-content li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); }
.article-content strong { color: var(--text); }
.article-content blockquote {
  border-left: 3px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--red-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.article-content blockquote p { color: var(--text); font-style: italic; }
.article-img { width: 100%; border-radius: var(--radius-lg); margin: 2.5rem 0; filter: saturate(0.7); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--red-dim); border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--red); }
.contact-detail strong { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail span { font-size: 0.95rem; color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo-icon {
  width: 28px; height: 28px; background: var(--red);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 16px; height: 16px; stroke: white; }
.footer-logo-name {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 800; color: var(--white);
}
.footer-logo-name span { color: var(--red); }
.footer-desc { font-size: 0.82rem; max-width: 26ch; margin-bottom: 1.5rem; }
.footer-col-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.83rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: var(--text-dim); flex-wrap: wrap; gap: 0.5rem;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-dim);
}
.footer-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.08s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.24s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.32s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.40s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .ir-phases { grid-template-columns: repeat(3, 1fr); }
  .ir-phase:nth-child(3) { border-right: 1px solid var(--border); border-radius: 0 var(--radius-lg) 0 0; }
  .ir-phase:nth-child(4) { border-radius: 0 0 0 var(--radius-lg); }
  .ir-phase::after { display: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-threat-panel { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(6,8,16,0.98); backdrop-filter: blur(20px);
    padding: 2rem; align-items: flex-start; z-index: 99;
  }
  .nav-links.open a { padding: 0.9rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links.open .nav-cta { width: 100%; text-align: center; justify-content: center; margin-top: 1rem; border-bottom: none; border-radius: var(--radius); padding: 0.75rem 1.5rem; }
  .section { padding: 4.5rem 0; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .ir-phases { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
body { animation: bodyIn 0.3s ease; }
@keyframes bodyIn { from { opacity: 0; } to { opacity: 1; } }
