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

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

:root {
  --black:   #000000;
  --dark:    #0a0a0f;
  --card:    #0f0f18;
  --blue:    #2563eb;
  --blue2:   #1d4ed8;
  --silver:  #b0b8c8;
  --white:   #ffffff;
  --text:    #d1d5db;
  --border:  rgba(37,99,235,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 44px; width: 44px; object-fit: contain; }
.nav-logo span {
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  background: linear-gradient(90deg, #c0c8d8, #2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--silver);
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue2) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: #60a5fa;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #60a5fa; animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700; font-size: 15px;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--blue); color: #60a5fa; }

/* ── STATS ── */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 64px auto 0;
  max-width: 700px;
  overflow: hidden;
}
.stat {
  background: var(--dark);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-size: 2rem; font-weight: 900; color: var(--white);
  background: linear-gradient(90deg, #c0c8d8, #2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: var(--silver); margin-top: 4px; }

/* ── SECTION ── */
section { padding: 100px 24px; }

.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: #60a5fa; text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem; color: var(--silver);
  max-width: 560px; line-height: 1.7;
}

/* ── THREAT SECTION ── */
.threats { background: var(--dark); }

.threat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}

.threat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.threat-card:hover { border-color: var(--blue); transform: translateY(-2px); }

.threat-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}

.threat-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.threat-card p { font-size: 14px; color: var(--silver); line-height: 1.6; }

/* ── SERVICES PAGE ── */
.services-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,0.1) 0%, transparent 70%);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px; margin-top: 64px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(37,99,235,0.08) 0%, var(--card) 60%);
}

.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 16px; border-radius: 100px;
  text-transform: uppercase;
}

.pricing-name { font-size: 13px; font-weight: 700; color: #60a5fa; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-price {
  font-size: 3rem; font-weight: 900; color: var(--white);
  margin-bottom: 4px; line-height: 1;
}
.pricing-price span { font-size: 1.2rem; font-weight: 500; color: var(--silver); vertical-align: super; }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-period { font-size: 1rem; font-weight: 500; color: var(--silver); margin-left: 4px; }
.pricing-desc { font-size: 14px; color: var(--silver); margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li::before {
  content: '✓'; color: #60a5fa; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pricing-features li.feature-off { color: #4b5563; }
.pricing-features li.feature-off::before { content: '—'; color: #374151; }

.what-you-get { margin-top: 80px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 48px;
}
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.step-num {
  font-size: 11px; font-weight: 700; color: #60a5fa;
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--silver); line-height: 1.5; }

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 160px 24px 80px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,0.1) 0%, transparent 70%);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 80px;
}

.about-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
}

.about-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; background: rgba(37,99,235,0.06);
  border: 1px solid var(--border); border-radius: 10px;
}
.about-stat-icon { font-size: 24px; }
.about-stat-text strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.about-stat-text span { font-size: 13px; color: var(--silver); }

.about-text p { color: var(--silver); line-height: 1.8; margin-bottom: 20px; }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 64px;
}
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
}
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--silver); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,0.1) 0%, transparent 70%);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 64px; margin-top: 64px; align-items: start;
}

.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px; background: rgba(37,99,235,0.12);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--silver); }

.contact-form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--silver); margin-bottom: 8px; letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px; font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: rgba(37,99,235,0.06); }
.form-group select option { background: #0f0f18; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none; border-radius: 8px;
  padding: 14px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--blue2); transform: translateY(-1px); }

.form-success {
  display: none; text-align: center; padding: 32px;
}
.form-success .checkmark { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: var(--silver); font-size: 14px; }

/* ── PROCESS SECTION (HOME) ── */
.process { background: var(--dark); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 64px; position: relative;
}
.process-step { text-align: center; padding: 32px 16px; position: relative; }
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  color: var(--border); font-size: 20px;
}
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(37,99,235,0.12); border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #60a5fa;
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--silver); }

/* ── CTA BAND ── */
.cta-band {
  text-align: center; padding: 80px 24px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, transparent 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-band p { color: var(--silver); margin-bottom: 36px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 36px; }
.footer-logo span {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  background: linear-gradient(90deg, #c0c8d8, #2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--silver); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: #4b5563; margin-top: 24px; text-align: center; }

/* ── FLOATING CONTACT BUTTON & POPUP ── */
.float-contact {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); border: none; cursor: pointer;
  font-size: 22px; box-shadow: 0 4px 20px rgba(37,99,235,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.float-contact:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,99,235,0.7); }

.quick-contact-popup {
  position: fixed; bottom: 100px; right: 32px; z-index: 1000;
  width: 320px;
  background: #0f0f18;
  border: 1px solid #1e2a4a;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  overflow: hidden;
}
.qc-header {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--blue); padding: 14px 18px;
  font-weight: 700; font-size: 14px; color: #fff;
}
.qc-close {
  background: none; border: none; color: #fff;
  font-size: 16px; cursor: pointer; line-height: 1;
  padding: 0 4px;
}
.qc-close:hover { opacity: 0.7; }
.quick-contact-popup form {
  display: flex; flex-direction: column; gap: 10px; padding: 16px;
}
.quick-contact-popup input,
.quick-contact-popup textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 12px;
  color: #fff; font-size: 13px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.quick-contact-popup input:focus,
.quick-contact-popup textarea:focus { border-color: var(--blue); }
.quick-contact-popup textarea { resize: none; height: 80px; }
.quick-contact-popup button[type="submit"] {
  background: var(--blue); color: #fff;
  border: none; border-radius: 8px;
  padding: 11px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.quick-contact-popup button[type="submit"]:hover { background: var(--blue2); }

/* ── MONITORING TOGGLE SWITCH ── */
.mon-toggle {
  position: relative; display: inline-block;
  width: 56px; height: 30px; cursor: pointer;
}
.mon-toggle input { opacity: 0; width: 0; height: 0; }
.mon-slider {
  position: absolute; inset: 0;
  background: #1e2a4a;
  border: 1px solid #2563eb;
  border-radius: 30px;
  transition: background 0.3s;
}
.mon-slider::before {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  left: 3px; top: 3px;
  background: #9ca3af;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
.mon-toggle input:checked + .mon-slider { background: #1a3a1a; border-color: #22c55e; }
.mon-toggle input:checked + .mon-slider::before { transform: translateX(26px); background: #22c55e; }

/* ── FLOATING CONTACT BUTTON ── */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,99,235,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.float-contact:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(0,0,0,0.97); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .stats { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
