:root {
  --ink: #132238;
  --slate: #38516f;
  --mist: #eef4f8;
  --white: #ffffff;
  --orange: #f97316;
  --amber: #ffb703;
  --line: #d8e3eb;
  --surface: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 50px -28px rgba(19, 34, 56, 0.28);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 183, 3, 0.15), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding-top: 0;
}

.card,
.glass {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.28), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.16), transparent 25%),
    linear-gradient(135deg, #132238 0%, #1e3a5f 55%, #2b4b74 100%);
  color: var(--white);
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.hero h1,
.page-hero h1,
h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--amber);
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 44px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.15fr 0.85fr;
}

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

.stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px;
}

.stat strong {
  display: block;
  font-size: 32px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.button-row,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: #dd6510;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  border: 1px solid rgba(19, 34, 56, 0.12);
  color: var(--ink);
  background: transparent;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.section-title {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-top: 10px;
}

.section-title p {
  color: var(--slate);
  line-height: 1.75;
}

.dark-section {
  background: var(--ink);
  color: var(--white);
}

.dark-section .section-title p,
.dark-section .muted,
.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}

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

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  margin-top: 10px;
  flex: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

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

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
}

.brand-lines strong,
.brand-lines span {
  display: block;
}

.brand-lines span {
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 4px;
}

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

.nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
}

.nav a.is-active,
.nav a:hover {
  color: var(--orange);
}

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

.breadcrumbs {
  padding-top: 24px;
  color: var(--slate);
  font-size: 14px;
}

.breadcrumbs nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table-like {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 0 24px 24px;
  color: var(--slate);
  line-height: 1.7;
}

form {
  display: grid;
  gap: 18px;
}

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

label {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.field-note,
.error,
.legal-copy p,
.card p {
  line-height: 1.75;
}

.error {
  color: #c62828;
  font-size: 13px;
}

.success-note {
  color: #166534;
  font-size: 14px;
}

.hidden-field {
  display: none;
}

.footer {
  margin-top: 48px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  padding: 68px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .split,
  .split-even,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .hero,
  .page-hero {
    padding: 28px;
  }

  .split,
  .split-even,
  .grid-4,
  .grid-3,
  .grid-2,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-actions .button {
    width: 100%;
  }
}
