:root {
  --bg: #f7fafc;
  --bg-soft: #eaf2f8;
  --card: #ffffff;
  --text: #10243d;
  --muted: #5f7287;
  --primary: #1565c0;
  --primary-dark: #0b3d73;
  --accent: #18b77a;
  --accent-2: #22b8d6;
  --warning: #f2a900;
  --border: #d8e2ec;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(16, 36, 61, 0.08);
  --shadow-soft: 0 6px 18px rgba(16, 36, 61, 0.05);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 184, 214, 0.09), transparent 35%),
    radial-gradient(circle at 92% 0%, rgba(21, 101, 192, 0.07), transparent 32%),
    linear-gradient(180deg, #f9fcff 0%, var(--bg) 45%, var(--bg-soft) 100%);
  color: var(--text);
  font-family: 'Bahnschrift', 'Segoe UI', 'Trebuchet MS', sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(247, 250, 252, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: 'Franklin Gothic Medium', 'Bahnschrift', sans-serif;
  letter-spacing: 0.04em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 40px;
  display: inline-block;
  border: 2px solid var(--primary);
  border-bottom-width: 3px;
  border-radius: 12px 12px 14px 14px;
  clip-path: polygon(50% 0%, 93% 17%, 93% 56%, 50% 100%, 7% 56%, 7% 17%);
  background: linear-gradient(175deg, #ffffff 0%, rgba(34, 184, 214, 0.08) 100%);
  box-shadow: 0 8px 18px rgba(21, 101, 192, 0.18);
}

.brand-mark::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 9px;
  left: 9px;
  top: 12px;
  border: 2px solid var(--text);
  border-radius: 8px;
  transform: rotate(-12deg);
}

.brand-mark::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 6px;
  right: 7px;
  top: 18px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.brand-text {
  font-size: 1.34rem;
  font-weight: 700;
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--primary-dark);
  padding: 0.45rem 0.65rem;
}

.site-nav ul {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a.active {
  color: var(--primary-dark);
  background: rgba(21, 101, 192, 0.12);
  box-shadow: inset 0 0 0 1px rgba(21, 101, 192, 0.15);
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: rgba(34, 184, 214, 0.14);
}

main {
  padding-block: 3rem 4rem;
}

.hero {
  margin-top: 0.5rem;
  background:
    radial-gradient(circle at 88% 10%, rgba(34, 184, 214, 0.14), transparent 35%),
    radial-gradient(circle at 12% 90%, rgba(24, 183, 122, 0.11), transparent 35%),
    linear-gradient(155deg, #ffffff 0%, #f4f9ff 50%, #edf5fb 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
}

.hero::before {
  width: 230px;
  height: 230px;
  background: rgba(21, 101, 192, 0.11);
  right: -80px;
  top: -100px;
}

.hero::after {
  width: 200px;
  height: 200px;
  background: rgba(34, 184, 214, 0.1);
  left: -90px;
  bottom: -80px;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(21, 101, 192, 0.07);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.2;
}

h1 {
  font-family: 'Franklin Gothic Medium', 'Bahnschrift', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.35rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.55rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 72ch;
}

.btn-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1.18rem;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 22px rgba(11, 61, 115, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(11, 61, 115, 0.24);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--card);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(21, 101, 192, 0.08);
}

.section {
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section p {
  color: var(--muted);
}

.grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
  color: var(--primary-dark);
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.95rem;
}

ul.clean {
  margin: 0;
  padding-left: 1.1rem;
}

.badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 169, 0, 0.38);
  background: rgba(242, 169, 0, 0.12);
  color: #9a6800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-box {
  border-left: 4px solid var(--warning);
  background: linear-gradient(135deg, rgba(242, 169, 0, 0.11), rgba(255, 255, 255, 0.9));
  border-radius: 12px;
  padding: 1rem;
}

.disclaimer-box p {
  margin: 0;
  color: #6d5400;
}

.cta {
  background:
    radial-gradient(circle at 10% 20%, rgba(24, 183, 122, 0.1), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(34, 184, 214, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f2f8ff);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2.4rem;
  padding: 1.5rem 0 2.4rem;
  background: linear-gradient(180deg, rgba(234, 242, 248, 0.3), rgba(247, 250, 252, 0));
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-intro {
  margin-bottom: 1rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: var(--card);
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--primary-dark);
  background: rgba(21, 101, 192, 0.08);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 1rem auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(247, 250, 252, 0.98);
    box-shadow: var(--shadow);
    padding: 0.8rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.35rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.35rem));
  }

  .hero,
  .section {
    border-radius: 18px;
  }

  main {
    padding-top: 2rem;
  }
}
