:root {
  --bg: #050911;
  --panel: #0b1221;
  --card: #0f1b2d;
  --muted: #9fb0c9;
  --text: #e8edf7;
  --accent: #5ce1e6;
  --accent-2: #ff8a5c;
  --outline: rgba(255, 255, 255, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-1: 0 20px 80px rgba(5, 8, 20, 0.45);
  --shadow-2: 0 10px 40px rgba(0, 0, 0, 0.45);
  --max-width: 1200px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(92, 225, 230, 0.12), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(255, 138, 92, 0.16), transparent 25%),
    linear-gradient(160deg, #050911 0%, #0a1225 55%, #0a182f 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

main {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 9, 17, 0.8);
  border-bottom: 1px solid var(--outline);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #6dfdba);
  display: grid;
  place-items: center;
  color: #031018;
  font-weight: 800;
  box-shadow: var(--shadow-2);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text span:first-child {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-text span:last-child {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-link {
  padding: 9px 14px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0b1221;
  background: linear-gradient(135deg, var(--accent), #7cf6ff);
  box-shadow: 0 10px 30px rgba(92, 225, 230, 0.4);
}

.contact-inline {
  color: var(--muted);
  font-weight: 600;
  display: none;
}

.button,
button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #7cf6ff);
  color: #041422;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(92, 225, 230, 0.3);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 48px rgba(92, 225, 230, 0.35);
}

.button.ghost {
  border: 1px solid var(--outline);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--outline);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero {
  padding: 56px 0 40px;
}

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

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.9rem);
  margin: 12px 0 12px;
  line-height: 1.15;
}

.lead {
  color: #dbe5f5;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--outline);
  padding: 10px 12px;
  border-radius: 12px;
}

.bullet-list li::before {
  content: "•";
  color: var(--accent-2);
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  background: linear-gradient(160deg, rgba(92, 225, 230, 0.2), rgba(255, 138, 92, 0.12));
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.hero-visual img {
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.45));
}

.section {
  padding: 30px 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.section-title {
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 900px;
}

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

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

.card {
  background: linear-gradient(180deg, #0e1628 0%, #0b1221 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-2);
}

.feature-card h3,
.card h3 {
  margin: 8px 0;
}

.muted {
  color: var(--muted);
}

.stat-card {
  background: linear-gradient(135deg, rgba(92, 225, 230, 0.12), rgba(92, 225, 230, 0));
  border: 1px solid rgba(92, 225, 230, 0.2);
}

.info-block {
  background: linear-gradient(135deg, rgba(255, 138, 92, 0.12), rgba(255, 138, 92, 0));
  border: 1px solid rgba(255, 138, 92, 0.3);
}

.image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--outline);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--outline);
  border-radius: 16px;
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #7cf6ff);
  display: grid;
  place-items: center;
  color: #041422;
  font-weight: 800;
  box-shadow: var(--shadow-2);
}

.callout {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 18px;
}

.order-section {
  background: linear-gradient(135deg, rgba(92, 225, 230, 0.2), rgba(255, 138, 92, 0.16));
  border: 1px solid var(--outline);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: center;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 600;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(4, 12, 24, 0.75);
  color: var(--text);
  font-size: 1rem;
}

.input:focus {
  outline: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(92, 225, 230, 0.18);
}

.footer {
  margin-top: 40px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--outline);
  background: rgba(5, 9, 17, 0.7);
}

.footer-grid {
  display: grid;
  gap: 12px;
}

.footer a {
  color: var(--text);
  font-weight: 600;
}

.footer small {
  color: var(--muted);
}

.content-page {
  padding: 42px 0 24px;
}

.content-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

.content-card h1,
.content-card h2 {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 16px;
}

.list-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  gap: 10px;
}

.blog-card img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--outline);
}

.blog-card h3 {
  margin: 0;
}

.blog-meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.post-hero {
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--outline);
}

.post-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.legal-text p {
  color: #dbe5f5;
}

.legal-text p strong {
  color: var(--accent);
}

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

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

  .contact-inline {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 22px;
    --radius-md: 14px;
  }

  body {
    background: linear-gradient(170deg, #050911 0%, #0a1225 100%);
  }

  .hero {
    padding-top: 40px;
  }

  .panel,
  .hero-card,
  .hero-visual,
  .content-card {
    padding: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }
}

