:root {
  --color-ink: #102027;
  --color-muted: #58656b;
  --color-brand: #164e63;
  --color-brand-dark: #0f3745;
  --color-accent: #e6a756;
  --color-surface: #ffffff;
  --color-soft: #f5f8f7;
  --color-border: #dfe8e5;
  --shadow: 0 22px 55px rgba(16, 32, 39, 0.12);
  --radius: 22px;
  --container: 1120px;
}

* {
  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(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--color-brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-brand-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  margin-bottom: 1.25rem;
}

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

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

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

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

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  transform: translateY(-140%);
  background: var(--color-brand);
  color: white;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 10px 30px rgba(16, 32, 39, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(250px, 62vw);
  height: auto;
}

.brand small {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--color-brand);
  color: white;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--color-ink);
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-brand);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  background: var(--color-brand);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(22, 78, 99, 0.18);
}

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

.button-secondary {
  background: white;
  color: var(--color-brand);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--color-soft);
  color: var(--color-brand-dark);
}

.button-small {
  padding: 0.72rem 1rem;
  color: white !important;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-muted {
  background: var(--color-soft);
}

.section-accent {
  background: var(--color-brand);
  color: white;
}

.section-accent p,
.section-accent .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--color-brand);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(230, 167, 86, 0.22), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -30vw auto;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: rgba(22, 78, 99, 0.07);
  pointer-events: none;
}

.hero-grid,
.split,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-card,
.feature-box,
.card,
.contact-form,
.contact-panel,
.faq-list details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  background: var(--color-soft);
  color: var(--color-brand);
  font-size: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0 0.7rem;
}

.stats div {
  padding: 1rem;
  border-radius: 16px;
  background: var(--color-soft);
}

.stats dt {
  color: var(--color-brand);
  font-size: 1.8rem;
  font-weight: 850;
  line-height: 1;
}

.stats dd {
  margin: 0.3rem 0 0;
  color: var(--color-muted);
}

.fine-print,
.form-note {
  font-size: 0.86rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card {
  padding: 1.4rem;
}

.card p:last-child,
.feature-box p:last-child,
.contact-panel p:last-child {
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 0.3rem;
  padding: 1.3rem;
  border-left: 4px solid var(--color-accent);
  border-radius: 16px;
  background: var(--color-soft);
}

.steps span {
  color: var(--color-muted);
}

.feature-box {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.contact-grid {
  align-items: start;
}

.contact-panel {
  padding: 1.2rem;
  margin-top: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--color-ink);
  background: white;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(230, 167, 86, 0.7);
  outline-offset: 3px;
}

.site-footer {
  padding: 2rem 0;
  background: #0b2028;
  color: white;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0.35rem 0 0;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .about-grid,
  .contact-grid,
  .three-column {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .button,
  .hero-actions {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 0.95rem;
  }
}

.legal-page h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-page h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}
