@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --bg: #f4f7fb;
  --bg-deep: #eaf0f8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --ink: #162233;
  --ink-soft: #4c5d73;
  --brand: #0f3f78;
  --brand-strong: #0a2d57;
  --accent: #ca2027;
  --accent-soft: rgba(202, 32, 39, 0.12);
  --border: rgba(15, 42, 76, 0.12);
  --shadow: 0 20px 40px rgba(16, 50, 91, 0.1);
  --radius: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 63, 120, 0.14), transparent 38%),
    radial-gradient(circle at 90% 8%, rgba(202, 32, 39, 0.13), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 52%, #eef3fa 100%);
}

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

a:hover {
  text-decoration: underline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(248, 251, 255, 0.9);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
}

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

.brand img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #f3ead6;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.99rem;
  letter-spacing: 0.01em;
  color: #101f32;
}

.brand-copy span {
  font-size: 0.72rem;
  color: #5b6c81;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.2rem;
}

.lang-switch a {
  border-radius: 999px;
  padding: 0.24rem 0.66rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #607286;
}

.lang-switch a:hover {
  text-decoration: none;
}

.lang-switch a.active {
  background: var(--brand);
  color: #f4f8ff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  padding: 0.4rem 0.86rem;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  color: #3e5066;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
}

.site-nav a.active,
.site-nav a:hover {
  text-decoration: none;
  color: var(--brand);
  background: rgba(15, 63, 120, 0.1);
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.6rem 1.2rem 5rem;
}

.hero {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(130deg, rgba(15, 63, 120, 0.12), transparent 45%),
    linear-gradient(200deg, rgba(202, 32, 39, 0.12), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2.6rem);
}

.eyebrow {
  margin: 0;
  width: fit-content;
  border: 1px solid rgba(15, 63, 120, 0.28);
  color: var(--brand);
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.72rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  color: #11203a;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: -0.015em;
}

h1 {
  margin-top: 0.95rem;
  font-size: clamp(1.9rem, 5.2vw, 3.2rem);
  max-width: 17ch;
}

h2 {
  font-size: clamp(1.45rem, 3.9vw, 2.35rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 0.85rem;
  max-width: 70ch;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.68rem 1rem;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #f2f7ff;
  box-shadow: 0 12px 24px rgba(15, 63, 120, 0.22);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary {
  border-color: rgba(15, 63, 120, 0.28);
  color: var(--brand);
  background: #fff;
}

.metrics {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem 1rem;
}

.metric-card strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--brand);
  font-size: 1.28rem;
}

.section {
  margin-top: 3.2rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 76ch;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  padding: 1.02rem;
}

.card h3,
.card h4 {
  margin-bottom: 0.45rem;
}

.card p,
.card li {
  color: var(--ink-soft);
}

.card ul {
  margin: 0.55rem 0 0;
  padding-left: 1.08rem;
}

.pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
}

.pill-row span {
  display: inline-flex;
  border: 1px solid rgba(15, 63, 120, 0.18);
  border-radius: 999px;
  background: rgba(15, 63, 120, 0.1);
  color: var(--brand);
  font-weight: 600;
  padding: 0.38rem 0.72rem;
  font-size: 0.88rem;
}

.timeline {
  display: grid;
  gap: 0.78rem;
}

.timeline .step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.8rem;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem;
}

.step .num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 63, 120, 0.25);
  color: var(--brand);
  background: rgba(15, 63, 120, 0.08);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.badge-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-list span {
  border-radius: 999px;
  border: 1px solid rgba(202, 32, 39, 0.26);
  background: var(--accent-soft);
  color: #8b1d24;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.28rem 0.62rem;
}

.cta-band {
  margin-top: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(15, 63, 120, 0.1), transparent 46%),
    linear-gradient(220deg, rgba(202, 32, 39, 0.08), transparent 52%),
    #fff;
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: center;
}

.cta-band p {
  color: var(--ink-soft);
  max-width: 68ch;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card address {
  margin-top: 0.55rem;
  font-style: normal;
  color: var(--ink-soft);
}

.form {
  display: grid;
  gap: 0.5rem;
}

.form label {
  font-weight: 650;
  color: #22344f;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(15, 42, 76, 0.22);
  border-radius: 10px;
  padding: 0.67rem;
  background: #fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(15, 63, 120, 0.24);
  border-color: var(--brand);
}

.form-status {
  min-height: 1.2em;
  font-weight: 600;
  color: var(--brand);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: rgba(243, 247, 252, 0.7);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.2rem 1.5rem;
  color: #5c6f86;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: space-between;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .metrics,
  .grid.two,
  .grid.three,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand-copy span {
    display: none;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: 3.2rem;
    min-width: 230px;
    display: none;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .page {
    padding-top: 3.5rem;
  }

  .section-head {
    display: grid;
    gap: 0.5rem;
  }
}
