:root {
  --navy:#08111f;
  --navy2:#0f172a;
  --blue:#2563eb;
  --blue-dark:#1d4ed8;
  --cyan:#38bdf8;
  --cyan-soft:#e0f2fe;
  --text:#111827;
  --muted:#5b6678;
  --light:#f6f8fb;
  --border:#e5e7eb;
  --soft:#eef2ff;
  --white:#ffffff;
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

a { color:inherit; }

.wrap {
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

header {
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(8px);
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  color:var(--navy);
}

.brand img {
  width:30px;
  height:30px;
  border-radius:8px;
}

.navlinks {
  display:flex;
  gap:20px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
  flex-wrap:wrap;
}

.navlinks a {
  text-decoration:none;
}

.navlinks a:hover {
  color:var(--blue);
}

.nav-cta {
  background:var(--blue);
  color:#fff !important;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
}

.hero {
  background:
    radial-gradient(circle at 20% 15%, rgba(56,189,248,.22), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,.28), transparent 34%),
    linear-gradient(135deg, #08111f 0%, #0f172a 52%, #111827 100%);
  color:#fff;
  padding:76px 0 60px;
}

.hero.light {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color:var(--text);
}

.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

.eyebrow {
  display:inline-flex;
  background:rgba(56,189,248,.12);
  color:#dff7ff;
  border:1px solid rgba(125,211,252,.35);
  padding:7px 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
}

.hero.light .eyebrow {
  background:var(--soft);
  color:#3730a3;
  border-color:#c7d2fe;
}

h1 {
  font-size:clamp(36px, 5vw, 58px);
  line-height:1.05;
  letter-spacing:-1.5px;
  margin:20px 0 18px;
  color:inherit;
}

.lead {
  font-size:20px;
  color:#cbd5e1;
  max-width:720px;
  margin:0;
}

.hero.light .lead {
  color:var(--muted);
}

.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:11px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
}

.btn.primary {
  background:linear-gradient(135deg, var(--cyan), var(--blue));
  color:#fff;
}

.btn.primary:hover {
  filter:brightness(.96);
}

.btn.secondary {
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}

.hero.light .btn.secondary {
  background:#fff;
  color:var(--navy);
  border-color:var(--border);
}

.trust-row {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:30px;
}

.trust-item {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  padding:14px;
  color:#cbd5e1;
  font-size:14px;
}

.trust-item strong {
  display:block;
  color:#fff;
  margin-bottom:3px;
}

.form-card {
  background:#fff;
  color:var(--text);
  border:1px solid rgba(255,255,255,.22);
  border-radius:22px;
  padding:28px;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}

.form-card h2 {
  margin:0 0 8px;
  color:var(--navy);
  font-size:25px;
}

.form-card p {
  color:var(--muted);
  margin:0 0 18px;
}

form label {
  display:block;
  font-weight:700;
  margin:14px 0 6px;
  font-size:14px;
  color:var(--navy);
}

input, select, textarea {
  width:100%;
  padding:13px 12px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:15px;
  background:#fff;
}

input:focus, select:focus, textarea:focus {
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

button.btn {
  width:100%;
  margin-top:16px;
}

.small {
  font-size:13px;
  color:var(--muted);
  margin-top:10px;
}

.section {
  padding:58px 0;
  border-top:1px solid var(--border);
}

.section.alt {
  background:var(--light);
}

.section.blue {
  background:linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.section-title {
  max-width:820px;
  margin-bottom:30px;
}

.section-title h2 {
  margin:0 0 10px;
  font-size:clamp(28px,4vw,40px);
  line-height:1.15;
  color:var(--navy);
  letter-spacing:-.8px;
}

.section-title p {
  margin:0;
  color:var(--muted);
  font-size:18px;
}

.cards-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.cards-2 {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  box-shadow:0 8px 28px rgba(15,23,42,.04);
}

.card.accent {
  border-color:#bfdbfe;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.card h3 {
  margin:0 0 8px;
  color:var(--navy);
  font-size:20px;
}

.card p {
  margin:0;
  color:var(--muted);
}

.card a {
  color:var(--blue);
  font-weight:800;
  text-decoration:none;
}

.list {
  padding-left:22px;
  color:var(--muted);
}

.list li {
  margin:8px 0;
}

.process {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  counter-reset:step;
}

.step {
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
}

.step::before {
  counter-increment:step;
  content:counter(step);
  width:34px;
  height:34px;
  border-radius:50%;
  background:#dbeafe;
  color:#1d4ed8;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:14px;
}

.step h3 {
  margin:0 0 8px;
  color:var(--navy);
}

.step p {
  margin:0;
  color:var(--muted);
}

.cta {
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.28), transparent 34%),
    linear-gradient(135deg, #08111f, #0f172a);
  color:#fff;
  border-radius:24px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.cta h2 {
  color:#fff;
  margin:0 0 8px;
  font-size:30px;
}

.cta p {
  color:#cbd5e1;
  margin:0;
}

footer {
  border-top:1px solid var(--border);
  padding:28px 0 44px;
  color:var(--muted);
  font-size:14px;
  background:#fff;
}

.footer-row {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-row a {
  color:var(--muted);
  margin-left:16px;
  text-decoration:none;
}

@media (max-width:900px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .process,
  .trust-row {
    grid-template-columns:1fr;
  }

  .nav {
    align-items:flex-start;
    flex-direction:column;
  }

  .navlinks {
    gap:12px;
  }

  .cta {
    flex-direction:column;
    align-items:flex-start;
  }
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section.pattern {
  background-image: linear-gradient(135deg, rgba(8,17,31,.88), rgba(15,23,42,.92)), url('/assets/cyber-pattern-bg.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Homepage hero right column */
.hero-side {
  display: grid;
  gap: 18px;
  align-items: start;
}

.hero-side .hero-visual {
  max-width: 520px;
  margin: 0 auto;
}

.hero-side .hero-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-side .form-card {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width:900px) {
  .hero-side {
    order: 2;
  }

  .hero-side .hero-visual {
    max-width: 100%;
  }
}

/* Cleaner homepage: keep hero focused on copy + form */
.hero-grid {
  grid-template-columns: 1.1fr .9fr;
}

.hero > .wrap {
  position: relative;
}

@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
