:root {
  --bg: #0b1220;
  --bg-soft: #111b2f;
  --surface: #ffffff;
  --text: #1a2333;
  --text-light: #dce4f3;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --muted: #5b677a;
  --border: #d9e2ef;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #f5f8fc;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
}

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

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #edf3fb;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(11, 18, 32, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #d9e5fa;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 36px;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(135deg, var(--bg), var(--bg-soft));
  color: var(--text-light);
  padding-top: 5.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: #7dd3fc;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.hero p {
  color: #cedaf0;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #05202e;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #f3f8ff;
}

.btn-secondary {
  border-color: #3f506b;
  color: #dce7fb;
}

.btn-secondary:hover {
  border-color: #7ca2da;
}

.hero-media img {
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(14, 42, 74, 0.04);
}

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

.list-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.policy {
  border-left: 4px solid var(--primary);
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid var(--border);
}

.policy p {
  margin: 0.55rem 0;
}

.contact {
  text-align: center;
  max-width: 760px;
}

.contact a:not(.btn) {
  color: #0a5f86;
  font-weight: 600;
}

.footer {
  background: #07101d;
  color: #c5d2e8;
  padding: 1.8rem 0;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 2rem;
  justify-content: space-between;
}

.footer a {
  color: #7dd3fc;
}

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 1rem;
    width: min(88vw, 280px);
    background: #0c172a;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 3.2rem 0;
  }
}
