:root {
  --navy: #0b1f4b;
  --navy-2: #0f2a63;
  --blue: #002b7f;
  --yellow: #fcd116;
  --red: #ce1126;
  --ink: #14161c;
  --paper: #faf9f5;
  --paper-2: #f1efe6;
  --line: #e3e0d3;
  --muted: #5b5f6b;
  --white: #ffffff;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .kicker, .brand-name, .nav-link, .btn {
  font-family: "Archivo", "Work Sans", sans-serif;
}

h1 { font-weight: 900; text-wrap: balance; margin: 0; }
h2, h3 { font-weight: 700; text-wrap: balance; margin: 0 0 10px; }

p { margin: 0 0 14px; }

a { color: var(--blue); }

img { max-width: 100%; }

.tricolor-stripe { display: flex; height: 6px; }
.tricolor-stripe span { flex: 1; }
.tricolor-stripe span:nth-child(1) { background: var(--blue); }
.tricolor-stripe span:nth-child(2) { background: var(--yellow); }
.tricolor-stripe span:nth-child(3) { background: var(--red); }

/* header */
.site-header { background: var(--navy); }
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-mark { border-radius: 50%; flex: none; }
.brand-name { color: var(--white); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }

.site-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.nav-link {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--white); }
.nav-link[aria-current="page"] { color: var(--white); border-bottom-color: var(--yellow); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 5px 12px;
}
.lang-switch:hover { color: var(--white); border-color: rgba(255,255,255,.6); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a80e1f; }
.btn-secondary { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-small { padding: 8px 16px; font-size: 12.5px; }

/* hero */
.hero { background: var(--navy); color: var(--white); position: relative; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 72px 24px 76px; }
.hero-home {
  background-image:
    linear-gradient(100deg, rgba(11, 31, 75, .93) 0%, rgba(11, 31, 75, .8) 38%, rgba(11, 31, 75, .48) 100%),
    url('/img/hero-banner.jpg');
  background-size: cover;
  background-position: center 38%;
}
.hero-home .hero-inner { max-width: 820px; }
.eyebrow {
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 18px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 0.98; letter-spacing: -0.01em; }
.hero .line2 { color: var(--yellow); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 17px; max-width: 56ch; margin: 22px 0 30px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-small .hero-inner { padding: 52px 24px 56px; max-width: 1180px; }
.hero-small h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }

/* sections */
.section { padding: 64px 0; }
.section-alt { background: var(--paper-2); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-inner.narrow { max-width: 760px; }

.kicker {
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin: 0 0 14px;
}
.lede { font-size: 18px; color: var(--ink); max-width: 68ch; }
.section-sub { color: var(--muted); font-size: 15.5px; max-width: 60ch; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.text-link { font-weight: 700; text-decoration: none; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }

/* benefit cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-grid-lg { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.benefit-card h3 { font-size: 16.5px; margin: 10px 0 8px; }
.benefit-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
.benefit-card p + p { margin-top: 10px; }
.benefit-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--blue);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 3px 10px;
}

/* fee box */
.fee-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 30px;
  margin-bottom: 32px;
}
.fee-box .kicker { color: var(--yellow); margin-bottom: 10px; }
.fee-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.fee-amount { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 3rem; margin: 0 0 10px; }
.fee-amount span { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.75); }
.fee-was {
  text-decoration: line-through;
  font-size: 1.7rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-right: 14px;
}
.fee-note { color: rgba(255,255,255,.82); font-size: 14.5px; max-width: 60ch; margin: 0; }

/* steps */
.step-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; }
.step-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; }
.step-num {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* about — team */
.team-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  max-width: 420px;
}
.team-avatar {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper-2);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-weight: 700; margin: 0; }
.team-role { color: var(--blue); font-size: 13.5px; font-weight: 600; margin: 2px 0 0; }

.empty-state { text-align: left; }

/* contact form */
.form-banner {
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14.5px;
}
.form-banner-success { background: #e4f3e8; border: 1px solid #bfe2c9; color: #1f6b37; }
.form-banner-error { background: #fbe9e7; border: 1px solid #f0c2bc; color: #a02f22; }

.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-weight: 600; font-size: 14px; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  font: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.form-row-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-row-checkbox input { margin-top: 4px; flex: none; }
.form-row-checkbox label { font-weight: 400; font-size: 13.5px; color: var(--muted); }
.form-required-note { font-size: 12.5px; color: var(--muted); margin: -6px 0 4px; }
.contact-form .btn { align-self: flex-start; }

/* footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand { display: flex; gap: 12px; align-items: flex-start; max-width: 360px; }
.footer-name { color: var(--white); font-weight: 700; margin: 2px 0 4px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.65); margin: 0; }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-title { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.5); margin: 0 0 4px; }
.footer-nav a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 24px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 880px) {
  .header-inner { flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; gap: 16px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid-lg { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .header-actions .btn-small { display: none; }
}
