
:root {
  --primary-red: #c62828;
  --accent-red: #e40a1b;
  --deep-red: #8f1515;
  --dark: #333333;
  --charcoal: #1f1f1f;
  --muted: #666666;
  --line: #e6ded8;
  --warm-gray: #f7f4f1;
  --cream: #fffaf5;
  --white: #ffffff;
  --gold: #d4a017;
  --logo-blue: #1f5f9f;
  --deep-blue: #153f6f;
  --soft-blue: #eaf3fb;
  --blue-line: #c8dced;
  --shadow: 0 20px 50px rgba(51, 51, 51, .12);
  --radius: 22px;
  --container: 1180px;
  --header-container: 1580px;
}
* { 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(--dark);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--logo-blue); }
img { max-width: 100%; height: auto; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--charcoal); color: #f8f1ea; font-size: .92rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; flex-wrap: wrap; }
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 3px solid var(--blue-line); box-shadow: 0 10px 30px rgba(31,95,159,.08); }
.header .container { width: min(var(--header-container), calc(100% - 72px)); }
.nav { min-height: 96px; display: grid; grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) auto; align-items: center; column-gap: clamp(18px, 2.6vw, 52px); }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; letter-spacing: -.03em; color: var(--charcoal); }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-red), var(--deep-red)); color: white; display: grid; place-items: center; font-weight: 900; box-shadow: var(--shadow); }
.brand-logo-link {
  min-width: 0;
  flex-shrink: 0;
}
.site-logo {
  display: block;
  width: min(268px, 24vw);
  max-height: 72px;
  object-fit: contain;
}
.footer-brand-logo {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 14px;
}
.site-logo-footer {
  width: min(280px, 100%);
  max-height: 72px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 8px;
}
@media (max-width: 560px) {
  .site-logo { width: min(230px, 58vw); max-height: 52px; }
}

.brand small { display: block; color: var(--muted); font-weight: 700; letter-spacing: .04em; font-size: .72rem; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px clamp(16px, 1.8vw, 38px); font-weight: 850; font-size: clamp(.84rem, .82vw, 1rem); line-height: 1.18; text-transform: uppercase; letter-spacing: .035em; min-width: 0; }
.nav-links a { padding: 8px 0; text-align: center; white-space: normal; }
.nav-links a.active { color: var(--logo-blue); }
.nav-links a.active, .nav-links a:hover { border-bottom: 3px solid var(--logo-blue); }
.nav-actions { display: flex; gap: 14px; align-items: center; justify-content: flex-end; white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 12px 18px; border-radius: 999px; font-weight: 900; border: 2px solid transparent; transition: .18s ease; cursor: pointer; }
.btn-primary { background: var(--primary-red); color: #fff; box-shadow: 0 12px 30px rgba(198, 40, 40, .25); }
.btn-primary:hover { background: var(--deep-red); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--charcoal); color: #fff; }
.btn-secondary:hover { background: var(--primary-red); color: #fff; }
.btn-outline { border-color: var(--logo-blue); color: var(--logo-blue); background: #fff; }
.btn-outline:hover { background: var(--logo-blue); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; font-weight: 900; color: var(--charcoal); }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 76% 12%, rgba(31,95,159,.16), transparent 28%), radial-gradient(circle at 14% 88%, rgba(198,40,40,.10), transparent 26%), linear-gradient(135deg, #fff 0%, #fff7f1 48%, #edf5fb 100%); }
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 42px; padding: 80px 0; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--logo-blue); font-weight: 900; letter-spacing: .11em; text-transform: uppercase; font-size: .78rem; }
.kicker::before { content: ""; width: 34px; height: 3px; border-radius: 2px; background: var(--logo-blue); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; margin: 0 0 18px; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 7vw, 4.75rem); max-width: 900px; }
h2 { font-size: clamp(1.75rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }
p.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); color: #4b4b4b; max-width: 720px; }
.hero-card { background: var(--charcoal); color: #fff; border-radius: 30px; padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::after { content: ""; position: absolute; inset: auto -40px -60px auto; width: 180px; height: 180px; background: var(--primary-red); border-radius: 50%; opacity: .55; }
.hero-card h3, .hero-card p { color: #fff; position: relative; z-index: 1; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; padding: 16px; position: relative; z-index: 1; }
.stat strong { display: block; font-size: 1.55rem; color: #fff; }
.section { padding: 78px 0; }
.section.alt { background: linear-gradient(135deg, var(--soft-blue), var(--warm-gray)); }
.section.dark { background: var(--charcoal); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #e9e2dc; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 34px; }
.section-head p { max-width: 620px; color: var(--muted); margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 8px 28px rgba(51,51,51,.06); }
.card.red-rail { border-left: 7px solid var(--primary-red); }
.card:nth-child(even) { border-top: 4px solid var(--blue-line); }
.grid-3 .card:nth-child(2), .grid-2 .card:nth-child(2) { border-left-color: var(--logo-blue); }
.card.dark-card { background: #2a2a2a; color: #fff; border-color: #494949; }
.card.dark-card h3 { color: #fff; }
.card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 48px; height: 48px; border-radius: 16px; background: rgba(31,95,159,.10); color: var(--logo-blue); display: grid; place-items: center; font-size: 1.35rem; font-weight: 900; margin-bottom: 18px; }
.grid-3 .card:first-child .icon { background: rgba(198,40,40,.1); color: var(--primary-red); }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(31,95,159,.10); color: var(--logo-blue); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.cta-band { background: linear-gradient(135deg, var(--logo-blue), var(--primary-red)); color: #fff; border-radius: 30px; padding: 42px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; box-shadow: 0 20px 50px rgba(31,95,159,.18); }
.cta-band h2, .cta-band p { color: #fff; margin-bottom: 10px; }
.form { display: grid; gap: 14px; }
.form input, .form textarea, .form select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; font: inherit; background: #fff; color: var(--dark); }
.form textarea { min-height: 130px; resize: vertical; }
.footer { background: #191919; color: #eee; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
.footer h3 { color: #fff; font-size: 1.05rem; letter-spacing: 0; }
.footer a { display: block; color: #d5d5d5; margin: 8px 0; }
.footer-bottom { border-top: 1px solid #333; margin-top: 30px; padding-top: 18px; color: #aaa; font-size: .9rem; }
.page-hero { background: linear-gradient(135deg, var(--deep-blue), var(--charcoal)); color: #fff; padding: 76px 0; }
.page-hero h1, .page-hero p { color: #fff; }
.page-hero p { max-width: 720px; font-size: 1.2rem; }
.list-check { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.list-check li { padding-left: 30px; position: relative; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--primary-red); font-weight: 900; }
.notice { background: #fff7e5; border: 1px solid #f1d28d; border-left: 7px solid var(--gold); border-radius: 18px; padding: 20px; }
@media (max-width: 1220px) {
  .header .container { width: min(100% - 40px, var(--header-container)); }
  .nav { grid-template-columns: minmax(205px, 245px) minmax(0, 1fr) auto; column-gap: 18px; }
  .site-logo { width: min(238px, 23vw); }
  .nav-links { gap: 4px clamp(12px, 1.55vw, 22px); font-size: clamp(.78rem, .92vw, .9rem); letter-spacing: .025em; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding-inline: 14px; }
}
@media (max-width: 1080px) {
  .menu-toggle { display: inline-flex; }
  .header .container { width: min(100% - 32px, var(--header-container)); }
  .nav { min-height: 82px; display: grid; grid-template-columns: 1fr auto auto; gap: 12px; }
  .site-logo { width: min(230px, 52vw); max-height: 58px; }
  .nav-links { display: none; grid-column: 1 / -1; width: 100%; flex-direction: column; align-items: flex-start; padding-bottom: 18px; }
  .nav-links.open { display: flex; }
  .nav-actions { margin-left: auto; }
  .hero .container, .grid-3, .grid-2, .footer-grid, .cta-band { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .timeline-item { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-actions .btn-outline { display: none; }
  .hero .container { padding: 52px 0; }
  .section { padding: 54px 0; }
  .cta-band { padding: 26px; }
}
