﻿:root {
  --bg-1: #020817;
  --bg-2: #07111f;
  --bg-3: #0b2f66;
  --bg-4: #0f5cff;
  --card: rgba(8, 18, 34, 0.78);
  --card-border: rgba(96, 165, 250, 0.22);
  --text: #f8fbff;
  --muted: #c7d7ee;
  --accent: #5fb4ff;
  --accent-2: #1d7cff;
  --dark-text: #020817;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --max: 1120px;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(95, 180, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(29, 124, 255, 0.2), transparent 26%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3) 72%, var(--bg-4));
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: -1;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(2, 8, 23, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.brand-mark {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(5, 12, 28, 0.98), rgba(4, 10, 22, 0.94));
  border: 1px solid rgba(96,165,250,0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.75);
}

.brand h1 {
  font-size: 28px;
  color: #e7f7fb;
  line-height: 1;
}

.brand p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--dark-text);
  font-weight: 700;
  outline: none;
}

.service-hero {
  padding: 92px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  border: 1px solid rgba(95,180,255,0.26);
  background: rgba(255,255,255,0.04);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.section-text,
.detail-card p,
.process-list p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  margin-top: 20px;
  max-width: 700px;
  font-size: 18px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--dark-text);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px rgba(29, 124, 255, 0.28);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.glass {
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.service-panel {
  border-radius: 24px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.service-panel h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-panel ul,
.detail-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-panel li,
.detail-card li {
  color: var(--muted);
  line-height: 1.55;
}

.service-panel li::before,
.detail-card li::before {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.section {
  padding: 54px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head h3 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

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

.detail-card {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}

.detail-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-list {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.process-list article {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}

.process-list article::before {
  content: counter(step, decimal-leading-zero);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--dark-text);
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.process-list h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.article-shell {
  max-width: 860px;
}

.article-hero {
  padding: 82px 0 36px;
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.article-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95,180,255,0.12);
  border: 1px solid rgba(95,180,255,0.22);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.article-cover {
  width: 100%;
  min-height: clamp(230px, 42vw, 430px);
  margin: 22px 0 0;
  border-radius: 24px;
  background: center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.article-body {
  padding: 34px;
  border-radius: 24px;
  margin-bottom: 72px;
}

.article-body h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 26px 0 12px;
}

.article-body h3:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.cta {
  padding: 34px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 54px 0 72px;
}

.cta h3 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 10px;
}

.footer-info {
  padding: 64px 0 38px;
  background: #050505;
  color: #fff;
}

.footer-info a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}

.footer-info a:hover,
.footer-info a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-info-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.footer-info-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
}

.footer-info-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.75);
}

.footer-info-brand-copy {
  display: grid;
  gap: 6px;
}

.footer-info-brand h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
}

.footer-info-brand p {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.footer-info-block h3 {
  margin-bottom: 16px;
  font-size: 16px;
  color: #fff;
}

.footer-info-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-info-list li,
.footer-info-block p {
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-size: 16px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  color: #210333;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.footer-info .footer-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 15px 24px;
  border-radius: 999px;
  background: #fff;
  color: #2f00ff;
  font-weight: 700;
  text-decoration: none;
}

.footer-info .footer-subscribe:hover,
.footer-info .footer-subscribe:focus-visible {
  color: #020817;
  background: var(--accent);
}

.footer-location-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}


footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
  }

  .hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding-top: 58px;
  }

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