@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/Inter-ExtraBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/PlusJakartaSans-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
}

:root {
  --primary: #0F6FDE;
  --primary-dark: #0A54A8;
  --primary-light: #60A5FA;
  --primary-bg: #EFF6FF;
  --accent: #10B981;
  --accent-light: #D1FAE5;
  --accent-dark: #059669;
  --orange: #F59E0B;
  --orange-light: #FEF3C7;
  --red: #EF4444;
  --red-light: #FEE2E2;
  --text: #0F172A;
  --text-muted: #64748B;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(15,111,222,0.08);
  --shadow-lg: 0 12px 40px rgba(15,111,222,0.12);
}

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

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

a { color: inherit; }

/* ---- NAV ---- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,250,252,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 22px; color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px; display: grid; place-items: center;
  color: white; font-size: 18px; position: relative;
}
.logo-icon svg { width: 22px; height: 22px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-weight: 500; font-size: 15px; transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-phone {
  font-weight: 600; font-size: 15px; color: var(--text);
  text-decoration: none; margin-right: 8px;
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; font-weight: 600;
  font-size: 15px; text-decoration: none; border: none;
  cursor: pointer; transition: all .25s ease;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 14px rgba(15,111,222,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,111,222,0.4);
}
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--primary-bg); }
.btn-outline {
  background: white; color: var(--primary);
  border: 2px solid var(--primary-bg);
}
.btn-outline:hover { border-color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 10px; }

/* ---- HERO ---- */
.hero {
  padding: 160px 32px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(15,111,222,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: #065F46;
  padding: 8px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5vw, 60px); font-weight: 800;
  line-height: 1.1; margin-bottom: 20px;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 19px; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- TRUST BAR ---- */
.trust-bar {
  padding: 48px 32px;
  text-align: center;
}
.trust-bar p {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.partner-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-logo {
  display: flex; align-items: center; gap: 8px;
  opacity: 0.55; transition: opacity .3s;
}
.partner-logo:hover { opacity: 0.85; }
.partner-logo .p-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; font-size: 16px; color: white;
}
.partner-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--text);
}

/* ---- SERVICES ---- */
.services {
  padding: 80px 32px;
  max-width: 1200px; margin: auto;
}
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  margin-bottom: 16px; line-height: 1.2;
}
.section-desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 560px; margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s ease;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px; margin-bottom: 20px;
}
.service-card.tone-red .service-icon { background: var(--red-light); }
.service-card.tone-blue .service-icon { background: var(--primary-bg); }
.service-card.tone-green .service-icon { background: var(--accent-light); }
.service-card.tone-orange .service-icon { background: var(--orange-light); }
.service-card.tone-purple .service-icon { background: #EDE9FE; }
.service-card.tone-sky .service-icon { background: #E0F2FE; }
.service-card.tone-slate .service-icon { background: #E2E8F0; }
.service-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 8px;
}
.service-card p {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
}
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; font-size: 14px; font-weight: 600;
  color: var(--primary); text-decoration: none;
  transition: gap .2s;
}
.service-card:hover .learn-more { gap: 8px; }

/* ---- WHY US ---- */
.why-us {
  padding: 80px 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-inner { max-width: 1200px; margin: auto; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.why-content .section-label,
.why-content .section-title,
.why-content .section-desc { text-align: left; }
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-card {
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--primary);
  margin-bottom: 4px;
}
.stat-num.stat-emoji { font-size: 28px; }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.checklist { list-style: none; margin-top: 24px; }
.checklist li {
  padding: 10px 0; font-size: 15px; color: var(--text);
  display: flex; align-items: center; gap: 12px;
}
.checklist li::before {
  content: '\2713'; color: var(--accent-dark);
  font-weight: 700; font-size: 14px;
  width: 24px; height: 24px; border-radius: 8px;
  background: var(--accent-light); display: grid; place-items: center;
  flex-shrink: 0;
}

/* ---- HOW WE WORK ---- */
.how-we-work {
  padding: 80px 32px;
  max-width: 1200px; margin: auto; text-align: center;
}
.how-we-work .section-desc { margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px; text-align: left;
}
.step {
  position: relative; padding: 28px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: all .3s;
}
.step:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- CTA ---- */
.cta {
  padding: 100px 32px;
  text-align: center;
}
.cta-box {
  max-width: 720px; margin: auto;
  background: linear-gradient(135deg, var(--primary), #3B82F6);
  border-radius: 24px; padding: 64px 48px;
  color: white; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.cta-box::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}
.cta-box h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3vw, 36px); font-weight: 800; margin-bottom: 16px;
}
.cta-box p {
  font-size: 17px; opacity: 0.9; margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--primary);
  padding: 14px 32px; border-radius: 12px;
  font-weight: 700; font-size: 16px; border: none;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  text-decoration: none;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-white-outline {
  background: transparent; color: white;
  padding: 14px 32px; border-radius: 12px;
  font-weight: 700; font-size: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: all .25s;
  text-decoration: none;
}
.btn-white-outline:hover {
  border-color: white; background: rgba(255,255,255,0.1);
}

/* ---- PAGE HEADER (secondary pages) ---- */
.page-header {
  padding: 140px 32px 64px;
  max-width: 1200px; margin: auto;
  text-align: center;
}
.page-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  margin-bottom: 16px; line-height: 1.15;
}
.page-header p {
  font-size: 18px; color: var(--text-muted);
  max-width: 640px; margin: 0 auto;
}

.content-section {
  max-width: 820px; margin: 0 auto; padding: 24px 32px 80px;
  font-size: 16px; color: var(--text);
}
.content-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px; font-weight: 800;
  margin: 32px 0 12px;
}
.content-section p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.7; }
.content-section ul { margin: 0 0 16px 24px; color: var(--text-muted); }
.content-section li { padding: 4px 0; }

/* ---- INFOGRAPHIC ---- */
.infographic { max-width: 1100px; }
.infographic-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 32px 0 48px;
}
.infographic-node {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.infographic-node .node-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin: 0 auto 12px;
  color: var(--primary);
  background: var(--primary-bg);
}
.infographic-node .node-icon svg { width: 28px; height: 28px; }
.infographic-node .node-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16px;
  margin-bottom: 4px;
}
.infographic-node .node-sublabel {
  font-size: 13px; color: var(--text-muted);
}
.node-threat { background: #FEF2F2; border-color: #FEE2E2; }
.node-threat .node-icon { background: rgba(239,68,68,0.15); color: #B91C1C; }
.node-firewall {
  background: linear-gradient(135deg, var(--primary), #3B82F6);
  color: white; border: none;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.node-firewall .node-icon { background: rgba(255,255,255,0.2); color: white; }
.node-firewall .node-sublabel { color: rgba(255,255,255,0.88); }
.node-network { background: #ECFDF5; border-color: var(--accent-light); }
.node-network .node-icon { background: rgba(16,185,129,0.18); color: var(--accent-dark); }

.node-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center; margin-top: 14px;
}
.node-chips .chip {
  font-size: 11.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(185,28,28,0.10); color: #7F1D1D;
  letter-spacing: 0.2px;
}

.infographic-arrow { color: var(--primary-light); display: grid; place-items: center; }
.infographic-arrow svg { width: 28px; height: 28px; }

.infographic-layers-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  margin: 32px 0 20px;
}
.infographic-layers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.infographic-layers .layer {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: all .25s ease;
}
.infographic-layers .layer:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.layer-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-bg); color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.layer-icon svg { width: 22px; height: 22px; }
.layer h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 800;
  margin-bottom: 6px;
}
.layer p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
  .infographic-flow { grid-template-columns: 1fr; }
  .infographic-arrow svg { transform: rotate(90deg); }
  .node-firewall { transform: none; }
}

/* ---- CONTACT FORM ---- */
.contact-wrap {
  max-width: 720px; margin: 0 auto; padding: 0 32px 80px;
}
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.form-group .required { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; font-size: 15px;
  font-family: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,111,222,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.field-validation-error { color: var(--red); font-size: 13px; margin-top: 4px; display: block; }
.input-validation-error { border-color: var(--red) !important; }
.validation-summary-errors {
  background: var(--red-light); color: #991B1B;
  border-radius: var(--radius-sm); padding: 12px 16px;
  margin-bottom: 16px; font-size: 14px;
}
.validation-summary-errors ul { list-style: none; padding: 0; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success {
  background: var(--accent-light); color: #065F46;
  border-radius: var(--radius); padding: 20px 24px;
  font-weight: 500; margin-bottom: 24px;
}

/* ---- FOOTER ---- */
footer.site-footer {
  padding: 64px 32px 32px;
  max-width: 1200px; margin: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-muted);
  margin-top: 12px; max-width: 300px;
}
.footer-contact {
  margin-top: 16px; list-style: none;
}
.footer-contact li {
  font-size: 14px; color: var(--text-muted); padding: 3px 0;
}
.footer-contact a {
  color: var(--primary); text-decoration: none; font-weight: 500;
}
.footer-col h4 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px; color: var(--text);
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-muted);
  text-decoration: none; padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; margin-right: 16px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px 32px; gap: 8px;
  }
  .nav-links.open a { padding: 12px 0; display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { padding: 48px 28px; }
  .contact-form { padding: 28px; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p, .hero-badge, .hero-actions {
  animation: fadeUp 0.6s ease-out both;
}
.hero-badge { animation-delay: 0s; }
.hero h1 { animation-delay: 0.1s; }
.hero p { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.3s; }
