:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --text: #173055;
  --muted: #5d6e87;
  --line: rgba(20, 48, 85, 0.12);
  --brand: #1f5fbf;
  --brand-dark: #143c77;
  --shadow: 0 20px 50px rgba(13, 34, 66, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(38, 99, 189, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(20, 48, 85, 0.08);
}

.compact-header { position: static; }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand:hover { text-decoration: none; }
.brand-logo { width: auto; height: 213px; display: block; }
.brand-wordmark { font-size: 1.1rem; }

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid,
.contact-box {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-grid-visual {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy,
.hero-visual-card,
.feature-card,
.contact-card,
.legal-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 48, 85, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: 32px;
}

.hero-visual-card {
  border-radius: 32px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.hero-visual-caption {
  margin: 14px 6px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.lead,
.feature-card p,
.contact-card p,
.legal-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 95, 191, 0.28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.section {
  padding: 30px 0 56px;
}

.section-alt { padding-top: 10px; }
.section-head { margin-bottom: 22px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.contact-card,
.legal-card {
  border-radius: 24px;
  padding: 28px;
}

.contact-box {
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.contact-note,
.legal-note {
  font-size: 0.95rem;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 20px 0 40px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-page .section {
  padding-top: 42px;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

@media (max-width: 980px) {
  .hero-grid-visual,
  .feature-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 44px; }
  .hero-copy,
  .hero-visual-card,
  .feature-card,
  .contact-card,
  .legal-card { padding: 22px; }
  .brand-logo { height: 174px; }
  .top-nav { gap: 12px; }
}


.placeholder-inline {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.12);
  color: #9a5a00;
  font-size: 0.95rem;
}
