:root {
  --bg-deep: #07151f;
  --bg-soft: #102736;
  --surface: #f2f5f7;
  --text: #14212b;
  --text-light: #e9f0f4;
  --accent: #ff7f11;
  --accent-soft: #ffb703;
  --line: #d6dee4;
  --ok: #1f7a3f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #143850 0%, #081822 38%, #06131c 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: rgba(7, 21, 31, 0.88);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 20;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  text-decoration: none;
}

.brand span {
  color: var(--accent-soft);
}

.nav-toggle {
  display: none;
}

.nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.92;
}

.nav-list a:hover,
.nav-list a:focus {
  opacity: 1;
  color: var(--accent-soft);
}

.hero {
  color: var(--text-light);
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.36) 0%, rgba(255, 183, 3, 0) 70%);
  right: -150px;
  top: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.hero h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 16ch;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 183, 3, 0.18);
  border: 1px solid rgba(255, 183, 3, 0.34);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 28px;
  max-width: 58ch;
  color: #d6e1e8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  color: #171717;
  box-shadow: 0 8px 28px rgba(255, 127, 17, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--text-light);
}

.hero-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
}

.section {
  background: var(--surface);
  margin: 18px auto;
  border-radius: 24px;
  padding: 56px 0;
}

.section h2 {
  margin-top: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
}

.section-intro {
  margin-top: 0;
  color: #3d4f5c;
}

.service-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(17, 27, 35, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 16px;
}

.service-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.badge {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 14px;
}

.area-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.area-card {
  background: linear-gradient(155deg, #f9fbfc 0%, #edf3f7 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.area-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.area-card a {
  color: #0a4b73;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 18px;
}

.contact-card h3 {
  margin-top: 0;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 10px 0 0;
}

.legal-link {
  color: var(--ok);
  font-weight: 700;
}

.footer {
  color: #e8f1f5;
  padding: 28px 0 36px;
}

.footer a {
  color: #e8f1f5;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-in-up 680ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 360ms;
}

.legal-page {
    background: var(--surface);
  border-radius: 24px;
  margin: 24px auto;
  padding: 38px 0;
}

.legal-page h1,
.legal-page h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.legal-page section {
  margin-bottom: 26px;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .service-grid,
  .contact-grid,
  .benefits,
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--text-light);
    background: transparent;
    border-radius: 10px;
    padding: 8px 12px;
  }

  .nav-list {
    position: absolute;
    right: 4vw;
    top: 60px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 21, 31, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    min-width: 220px;
    padding: 14px;
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 42px 0;
  }

  .hero-grid,
  .service-grid,
  .contact-grid,
  .benefits,
  .area-grid {
    grid-template-columns: 1fr;
  }
}
