﻿:root {
  --navy: #162B53;
  --navy-soft: #233d71;
  --orange: #F47B20;
  --orange-soft: #FFF2E8;
  --bg: #F6F8FC;
  --surface: #FFFFFF;
  --muted: #64748B;
  --border: #E2E8F0;
  --shadow: 0 18px 45px rgba(22, 43, 83, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: radial-gradient(circle at top left, rgba(244, 123, 32, 0.12), transparent 34rem), var(--bg);
  line-height: 1.6;
}

a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 800;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  font-size: 0.94rem;
}

.nav a {
  color: var(--navy-soft);
}

main {
  flex: 1;
  padding: 22px 0 44px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 28px;
  padding: 42px 0 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 950;
}

h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.15;
}

.lead,
.hero-note {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 650;
}

.hero-note {
  margin-top: 14px;
  color: var(--navy-soft);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 950;
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(244, 123, 32, 0.24);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
}

.hero-card,
.card,
.content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.hero-logo {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(244, 123, 32, 0.24);
}

.hero-card p,
.card p,
.content-card p {
  color: var(--muted);
  font-weight: 650;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.card {
  padding: 22px;
}

.content-card {
  padding: clamp(22px, 5vw, 42px);
}

.content-card.narrow {
  max-width: 780px;
}

.content-card h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.legal-text {
  margin: 22px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--navy);
  font: inherit;
  font-weight: 650;
  line-height: 1.72;
}

.contact-list {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: var(--orange-soft);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer p span {
  color: var(--muted);
  font-weight: 650;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .cards {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    font-size: 1.12rem;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .hero-card,
  .card,
  .content-card {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
  }

  .nav {
    gap: 8px 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-card,
  .card,
  .content-card {
    border-radius: 22px;
  }
}



