:root {
  --bg: #f4f7fb;
  --bg-alt: #edf2f7;
  --card: #ffffff;
  --card-soft: rgba(255, 255, 255, 0.9);
  --text: #0c1b2b;
  --muted: #516175;
  --accent: #10c9d6;
  --accent-2: #2f7df6;
  --line: rgba(12, 27, 43, 0.12);
  --shadow: 0 24px 60px rgba(12, 27, 43, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1120px;
  --font-display: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Noto Sans", "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(16, 201, 214, 0.2), transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, rgba(47, 125, 246, 0.15), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.bg-orbit {
  position: fixed;
  inset: -30% 0 auto 0;
  height: 70vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 201, 214, 0.18), transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(47, 125, 246, 0.15), transparent 50%);
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 96%, rgba(12, 27, 43, 0.04) 96%),
    linear-gradient(90deg, transparent 96%, rgba(12, 27, 43, 0.04) 96%);
  background-size: 90px 90px;
  opacity: 0.4;
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-badge {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  position: relative;
  top: -18px;
  margin-bottom: -18px;
}

.logo {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: 0 16px 30px rgba(16, 201, 214, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 35px rgba(16, 201, 214, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(16, 201, 214, 0.12);
  border: 1px solid rgba(16, 201, 214, 0.4);
  color: var(--text);
  box-shadow: none;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.trust-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  box-shadow: 0 12px 25px rgba(12, 27, 43, 0.08);
}

.trust-value {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.trust-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1.2rem;
  z-index: 1;
}

.shield-card {
  background: linear-gradient(145deg, #0b2340, #133d63);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  color: #e6f1ff;
}

.shield-top {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.shield-glow {
  position: absolute;
  inset: -30% auto auto -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 201, 214, 0.5), transparent 65%);
  filter: blur(2px);
}

.shield-icon {
  width: 64px;
  height: 64px;
}

.shield-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(230, 241, 255, 0.75);
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(16, 201, 214, 0.8);
}

.shield-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(230, 241, 255, 0.2);
}

.metric-title {
  color: rgba(230, 241, 255, 0.7);
  font-size: 0.85rem;
}

.metric-value {
  font-weight: 700;
}

.shield-highlights {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(230, 241, 255, 0.2);
  display: grid;
  gap: 0.75rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 201, 214, 0.15);
  border: 1px solid rgba(16, 201, 214, 0.4);
  color: #e6f1ff;
}

.shield-card-alert {
  background: linear-gradient(145deg, #3a1212, #6a1f1f);
}

.shield-glow-alert {
  background: radial-gradient(circle, rgba(255, 122, 107, 0.55), transparent 65%);
}

.dot-alert {
  background: #ff7a6b;
  box-shadow: 0 0 12px rgba(255, 122, 107, 0.8);
}

.chip-alert {
  background: rgba(255, 122, 107, 0.18);
  border: 1px solid rgba(255, 122, 107, 0.5);
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.5;
}

.orb-one {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 201, 214, 0.35), transparent 70%);
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.orb-two {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(47, 125, 246, 0.4), transparent 70%);
  bottom: 5%;
  left: 10%;
  animation: float 9s ease-in-out infinite reverse;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(12, 27, 43, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 201, 214, 0.5);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: 0 12px 26px rgba(12, 27, 43, 0.06);
}

.cert-strip {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 150px;
  min-width: 260px;
  flex: 1 1 260px;
}

.cert-logo {
  height: 120px;
  width: auto;
  display: block;
  max-width: 320px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}

.industry-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(12, 27, 43, 0.06);
}

.case-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2rem;
}

.case-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(12, 27, 43, 0.08);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(16, 201, 214, 0.6);
  opacity: 0.8;
}

.tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 201, 214, 0.5);
  font-size: 0.75rem;
  color: var(--accent-2);
  background: rgba(16, 201, 214, 0.12);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.logo-pill {
  padding: 1rem;
  background: #ffffff;
  border-radius: 999px;
  text-align: center;
  border: 1px dashed rgba(81, 97, 117, 0.35);
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
  padding: 1.6rem;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(12, 27, 43, 0.06);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.person {
  margin-top: 1rem;
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mission {
  display: grid;
  gap: 1.2rem;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1.6rem;
  box-shadow: 0 12px 24px rgba(12, 27, 43, 0.06);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-grid details {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1rem 1.4rem;
  box-shadow: 0 12px 22px rgba(12, 27, 43, 0.06);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-grid p {
  color: var(--muted);
  margin-top: 0.8rem;
}

.cta {
  padding-bottom: 6rem;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 201, 214, 0.2), rgba(47, 125, 246, 0.18));
  border: 1px solid rgba(16, 201, 214, 0.4);
  box-shadow: var(--shadow);
}

.cta-copy {
  flex: 1 1 280px;
}

.cta-form {
  flex: 1 1 320px;
  max-width: 420px;
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(16, 201, 214, 0.5);
  border-color: rgba(16, 201, 214, 0.8);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer {
  background: #0b2340;
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce8f6;
}

.site-footer a {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  color: #ffffff;
}

.footer-brand p {
  color: rgba(220, 232, 246, 0.8);
  margin-top: 0.8rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 201, 214, 0.14);
  border: 1px solid rgba(16, 201, 214, 0.45);
  font-size: 0.75rem;
}

.footer-bottom {
  text-align: center;
  color: rgba(220, 232, 246, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
