﻿:root {
  --ink: #0a0f14;
  --slate: #1f2a38;
  --steel: #3a4a5b;
  --mist: #c7d2de;
  --cloud: #eef2f6;
  --ocean: #0c8ef0;
  --ocean-2: #0a6fc4;
  --gold: #f5b000;
  --gold-soft: #ffd166;
  --accent: #ff2d82;
  --accent-2: #d81d6a;
  --success: #79cc2b;
  --surface: #ffffff;
  --shadow: 0 24px 60px rgba(10, 20, 30, 0.16);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1200px;
}

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

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--slate);
  background:
    radial-gradient(circle at 10% 10%, rgba(12, 142, 240, 0.08), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(255, 45, 130, 0.08), transparent 35%),
    radial-gradient(circle at 25% 85%, rgba(121, 204, 43, 0.08), transparent 40%),
    #f5f7fb;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 251, 0.88);
  border-bottom: 1px solid rgba(12, 142, 240, 0.12);
}

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

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

.logo {
  width: 220px;
  height: 90px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--ink);
}

.brand-tag {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--success));
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--ocean), var(--accent));
  color: #fff;
  box-shadow: 0 12px 30px rgba(12, 142, 240, 0.35),
    0 0 18px rgba(245, 176, 0, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid rgba(12, 142, 240, 0.35);
  color: var(--ocean-2);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(47, 59, 73, 0.3);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(12, 142, 240, 0.18), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255, 45, 130, 0.14), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(121, 204, 43, 0.14), transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(245, 176, 0, 0.16), transparent 45%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 520px;
}

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

.pill {
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 142, 240, 0.12);
  color: var(--ocean-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 142, 240, 0.18);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  background: #f4f7fb;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ocean-2);
  border: 1px solid rgba(12, 142, 240, 0.15);
  box-shadow: 0 4px 10px rgba(121, 204, 43, 0.08);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--steel);
  max-width: 650px;
}

.card-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(12, 142, 240, 0.14);
  box-shadow: 0 12px 30px rgba(10, 20, 30, 0.08);
  display: grid;
  gap: 12px;
}

.card .pill {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 45, 130, 0.12);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.stat {
  background: #0b0f14;
  color: #fff;
  padding: 22px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 176, 0, 0.35), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(12, 142, 240, 0.2), transparent 60%);
  opacity: 0.7;
}

.stat strong {
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

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

.surface {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 142, 240, 0.18);
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.list li {
  list-style: none;
  padding-left: 26px;
  position: relative;
}

.list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--ocean), var(--accent));
  position: absolute;
  left: 0;
  top: 6px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--steel);
}

.footer {
  background: #0b0f14;
  color: #c7d2de;
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer a {
  color: inherit;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(199, 210, 222, 0.7);
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(47, 59, 73, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.hidden {
  position: absolute;
  left: -9999px;
}

.map {
  height: 220px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 25% 30%, rgba(12, 142, 240, 0.5), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(255, 45, 130, 0.45), transparent 45%),
    linear-gradient(120deg, #0b0f14, #122238);
  border: 1px solid rgba(12, 142, 240, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 5%;
    flex-direction: column;
    background: var(--surface);
    padding: 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(12, 142, 240, 0.2);
    width: min(320px, 90%);
  }

  .nav.open {
    display: flex;
  }

  .cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 60px;
  }

  .site-header .container {
    gap: 12px;
  }

  .brand-name {
    font-size: 0.75rem;
  }
}

