@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #030811;
  --bg-elev: #0a1324;
  --bg-soft: #0d1b33;
  --brand-primary: #525f7f;
  --brand-accent: #0074d4;
  --text: #ffffff;
  --text-muted: #a6bcdc;
  --line: rgba(174, 201, 255, 0.12);
  --line-strong: rgba(174, 201, 255, 0.24);
  --brand: #4a90e2;
  --brand-2: #34c7b2;
  --accent: #ffd87c;
  --ok: #34c7b2;
  --danger: #ff6b6b;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(74, 144, 226, 0.25);
  --inner-light: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.02);
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(74, 144, 226, 0.15), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(52, 199, 178, 0.12), transparent 50%),
    radial-gradient(circle at 50% 120%, rgba(255, 216, 124, 0.08), transparent 50%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.6;
}

body.nav-open-lock {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 0.12s linear;
}

.utility-bar {
  background: var(--bg-elev);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.utility-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  min-height: 38px;
  align-items: center;
}

.utility-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.utility-link:hover,
.utility-link:focus-visible {
  color: var(--text);
}

.utility-link svg {
  color: var(--brand);
}

.site-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  background: rgba(3, 8, 17, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-header {
  position: relative;
  border-bottom: none;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 26px;
  object-fit: contain;
}

.brand-mark {
  font-family: Sora, Manrope, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  background: rgba(9, 22, 41, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(123, 224, 207, 0.55);
  outline: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  border-color: var(--line);
  outline: none;
}

.nav-link.active {
  color: var(--text);
  border-color: rgba(123, 224, 207, 0.5);
  background: rgba(123, 224, 207, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.4rem 1.05rem !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand));
  color: #fff;
  border: none;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.66rem 1.04rem;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, filter 0.2s ease, background 0.3s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, #2f65ce 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.45);
  filter: brightness(1.1);
  outline: none;
}

.btn.secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid transparent;
  color: var(--text-muted);
  background: transparent;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 3rem 0 1.4rem;
}

.hero-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(52, 199, 178, 0.06), transparent 50%),
    linear-gradient(240deg, rgba(74, 144, 226, 0.12), transparent 50%),
    rgba(10, 19, 36, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: var(--shadow), var(--inner-light);
  position: relative;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.26;
  pointer-events: none;
}

.hero-shell::before {
  background: var(--brand);
  top: -110px;
  left: -90px;
  animation: float-a 10s ease-in-out infinite;
}

.hero-shell::after {
  background: var(--brand-2);
  bottom: -120px;
  right: -90px;
  animation: float-b 12s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  padding: 1.6rem;
}

.eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.hero h1 {
  margin: 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.12;
}

.hero p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  max-width: 64ch;
}

.hero-note {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: #d8e6ff;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-visual {
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 290px;
  background: #051425;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.hero-stats {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(10, 20, 40, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.55rem 0.65rem;
  box-shadow: var(--shadow-sm);
}

.hero-stat strong {
  display: block;
  font-size: 1.05rem;
}

.hero-stat span {
  font-size: 0.78rem;
  color: #c8d6f1;
}

.cap-strip {
  padding: 1rem 0 0.2rem;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.cap-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  box-shadow: var(--inner-light);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm), var(--inner-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.cap-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.cap-card p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

section.block {
  padding: 3.2rem 0 0.5rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-head h2 {
  margin: 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(170deg, rgba(16, 30, 56, 0.8), rgba(8, 19, 35, 0.9));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: clip;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 170px;
}

.service-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-summary {
  padding: 0.9rem;
}

.service-summary h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.service-summary p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.service-toggle {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 0.44rem 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.service-page-link {
  margin-top: 0.6rem;
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.service-card.open .service-details {
  max-height: 260px;
}

.service-details-inner {
  padding: 0 0.9rem 0.9rem;
}

.service-details dl {
  margin: 0;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 0.5rem 0.7rem;
}

.service-details dt {
  color: #c5d3ee;
  font-weight: 700;
}

.service-details dd {
  margin: 0;
  color: var(--text-muted);
}

.breadcrumbs {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #cfe3ff;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration: underline;
}

.service-facts {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #d5e4ff;
}

.service-facts li+li {
  margin-top: 0.35rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.detail-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.detail-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.detail-item p {
  margin: 0;
  color: var(--text-muted);
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.technology-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgba(14, 32, 58, 0.9), rgba(8, 20, 38, 0.86));
  padding: 1rem;
}

.technology-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.86rem;
  background: rgba(123, 224, 207, 0.16);
  color: var(--brand-2);
  border: 1px solid rgba(123, 224, 207, 0.42);
}

.technology-item h3 {
  margin: 0.72rem 0 0.4rem;
  font-size: 1.05rem;
}

.technology-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.technology-note {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.95rem 1rem;
}

.technology-note h3 {
  margin: 0;
  font-size: 1.02rem;
}

.technology-note p {
  margin: 0.42rem 0 0;
  color: var(--text-muted);
}

.qa-list {
  display: grid;
  gap: 0.65rem;
}

.qa-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 0.85rem;
}

.qa-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #def0ff;
}

.qa-item p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 1rem;
  position: relative;
  box-shadow: var(--inner-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm), var(--inner-light);
  background: rgba(255, 255, 255, 0.04);
}

.step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(123, 224, 207, 0.16);
  color: var(--brand-2);
  border: 1px solid rgba(123, 224, 207, 0.42);
}

.step h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.quote {
  margin: 0;
  font-size: 1.02rem;
  color: #d8e6ff;
}

.quote footer {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.metric-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(8, 23, 41, 0.75);
}

.metric strong {
  display: block;
  font-size: 1.2rem;
}

.metric span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.policy-grid {
  align-items: stretch;
}

.policy-grid .panel {
  height: 100%;
}

.about-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.about-list li+li {
  margin-top: 0.35rem;
}

.cta {
  padding-bottom: 2.5rem;
}

.cta-shell {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(88, 166, 255, 0.16), rgba(123, 224, 207, 0.11)),
    rgba(9, 21, 40, 0.9);
  padding: 1.4rem;
}

.cta h2 {
  margin: 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2.1rem);
}

.cta p {
  margin: 0.65rem 0 0;
  max-width: 65ch;
  color: #d0def7;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-subaction {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-subaction a {
  color: #d9e8ff;
}

.trust-badges {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #aebfd6;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.contact-links a {
  color: #d7e8ff;
}

.footer {
  border-top: 1px solid rgba(174, 201, 255, 0.22);
  color: var(--text-muted);
  background:
    linear-gradient(180deg, rgba(3, 10, 18, 0.88), rgba(2, 8, 16, 0.97)),
    #040b15;
  padding: 4rem 0 0;
}

.cta+.footer {
  border-top: 1px solid rgba(174, 201, 255, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-grid.compact {
  padding-bottom: 1.5rem;
  gap: 1.5rem;
}

.footer-grid.compact section h4 {
  margin-bottom: 0.2rem;
}

.footer-logo {
  width: 68px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}

.footer-brand h3 {
  margin: 0;
  color: var(--text);
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.05rem;
}

.footer-brand p {
  margin: 0.65rem 0 0;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-copyright {
  margin-top: 0.95rem;
  font-size: 0.82rem;
  color: #9fb3d3;
}

.hero-grid>div>h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(10, 24, 43, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-link:hover {
  background: var(--surface-light);
  border-color: rgba(88, 166, 255, 0.3);
  transform: translateY(-2px);
}

.quick-link-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(88, 166, 255, 0.1);
  border-radius: 8px;
}

.quick-link-text {
  font-weight: 500;
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .hero-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col h4 {
  margin: 0;
  color: #dbe9ff;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col {
  display: grid;
  align-content: start;
}

.footer-col a {
  display: block;
  margin-top: 0.68rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.56;
}

.footer-support .footer-email {
  margin-top: 0.74rem;
  color: #e4f1ff;
  font-weight: 700;
}

.footer-support .footer-email:hover,
.footer-support .footer-email:focus-visible {
  color: #ffffff;
}

.footer-utility {
  border-top: 1px solid rgba(174, 201, 255, 0.2);
  background: rgba(1, 5, 10, 0.9);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--text);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.88rem;
  padding-bottom: 0.88rem;
  font-size: 0.8rem;
  color: #8da2c5;
}

.footer-legal {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.footer-legal-links a,
.footer-legal a {
  color: #8da2c5;
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
}

.policy-updated {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: inline-block;
  background: rgba(8, 23, 41, 0.6);
}

.policy-cta {
  margin-top: 1rem;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
}

.drawer.open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 16, 0.72);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(560px, 100%);
  border-left: 1px solid var(--line);
  background: #08182f;
  transform: translateX(100%);
  transition: transform 0.26s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  color: var(--text-muted);
}

.drawer-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.field label {
  font-size: 0.85rem;
  color: #c9d8f2;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: #061324;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font: inherit;
}

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

.field.full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.drawer-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.form-meta {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-meta.error {
  color: var(--danger);
}

.form-meta.success {
  color: var(--ok);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.only-mobile {
  display: none;
}

.ops-shell {
  padding: 1.8rem 0 2.8rem;
}

.ops-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.ops-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.ops-toolbar input,
.ops-toolbar select {
  background: #061324;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.56rem 0.68rem;
  font: inherit;
}

.ops-list {
  display: grid;
  gap: 0.65rem;
}

.ops-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(8, 23, 41, 0.6);
}

.ops-item-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  justify-content: space-between;
  align-items: center;
}

.status-badge {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.2rem 0.52rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.ops-item pre {
  margin: 0.6rem 0 0;
  white-space: pre-wrap;
  font-size: 0.84rem;
  color: #cfe0ff;
}

@keyframes float-a {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(22px, 16px);
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, -14px);
  }
}

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

  .cap-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .trust-grid,
  .about-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
    justify-content: stretch;
    padding-bottom: 0.55rem;
  }

  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-header.nav-open .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.72rem;
    border-color: var(--line);
    background: rgba(7, 18, 34, 0.7);
  }

  .only-mobile {
    display: inline-flex;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-grid {
    padding: 1rem;
  }

  .cap-grid,
  .process-grid,
  .drawer-grid,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  .service-top {
    grid-template-columns: 1fr;
  }

  .service-top img {
    max-height: 190px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-row {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}