:root {
  --blue-950: #031d46;
  --blue-900: #062b64;
  --blue-800: #063f8d;
  --blue-700: #0755ad;
  --blue-600: #0b69c5;
  --green-700: #07843d;
  --green-600: #0b9c48;
  --green-500: #17b956;
  --yellow: #ffd400;
  --white: #ffffff;
  --ink: #0c2a53;
  --muted: #5d6b7f;
  --bg: #f7f9fc;
  --shadow: 0 18px 50px rgba(5, 39, 83, .14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #073475 0%, #064a9b 65%, #063272 100%);
  color: #fff;
  box-shadow: 0 5px 18px rgba(3, 24, 56, .18);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; line-height: .9; flex-shrink: 0; }
.brand-name { font-size: 17px; letter-spacing: -.5px; }
.brand-name strong { color: var(--yellow); }
.brand-number { font-size: 34px; color: var(--yellow); letter-spacing: -2px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; }
.main-nav a { opacity: .94; transition: .2s; }
.main-nav a:hover { color: var(--yellow); opacity: 1; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 46px; padding: 0 23px; border-radius: 10px; border: 0; font-weight: 800; text-transform: uppercase; font-size: 12px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: #06366f; box-shadow: 0 8px 22px rgba(255, 212, 0, .25); }
.btn-yellow:hover { background: #ffe047; }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 6px; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: #fff; margin: 5px 0; border-radius: 10px; }

.hero {
  position: relative;
  min-height: 650px;
  background: radial-gradient(circle at 65% 22%, #1490dc 0%, #0865bd 35%, #053b83 68%, #052857 100%);
  color: #fff;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(1, 26, 65, .58), transparent);
  pointer-events: none;
}
.hero-shape { position: absolute; pointer-events: none; }
.hero-shape-green { width: 560px; height: 780px; left: -260px; top: -60px; background: linear-gradient(135deg, #13a94f, #057935); border-radius: 48% 52% 62% 38% / 60% 42% 58% 40%; transform: rotate(-22deg); box-shadow: 0 0 0 26px rgba(12, 188, 88, .4); }
.hero-shape-yellow { width: 300px; height: 300px; right: 9%; top: 35px; background: var(--yellow); transform: rotate(35deg); border-radius: 38px; opacity: .98; }
.hero-overlay { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 26px 26px; opacity: .35; }
.hero-grid { position: relative; z-index: 2; min-height: 650px; display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 40px; }
.hero-content { padding: 58px 0 50px 65px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; }
.eyebrow.yellow { background: var(--yellow); color: #083573; padding: 7px 11px; border-radius: 7px; }
.eyebrow.green { color: var(--green-600); }
.hero h1 { margin: 16px 0 15px; font-size: clamp(54px, 6vw, 88px); letter-spacing: -4px; line-height: .88; font-weight: 900; text-shadow: 0 4px 0 rgba(0,0,0,.08); }
.hero h1 span { color: var(--yellow); font-size: .74em; letter-spacing: -3px; }
.hero-slogan { font-size: clamp(18px, 2vw, 28px); line-height: 1.25; font-weight: 700; margin-bottom: 27px; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.9); color: #fff; background: rgba(0,0,0,.05); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.social-block { margin-top: 32px; }
.social-block small { font-weight: 800; font-size: 11px; display: block; margin-bottom: 12px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.25); font-weight: 900; background: rgba(255,255,255,.08); }
.hero-photo-wrap { align-self: stretch; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo { width: 100%; max-width: 635px; height: 610px; object-fit: cover; object-position: center top; border-radius: 0 0 44% 44%; filter: saturate(1.02) contrast(1.02); mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%); }
.number-card { position: absolute; right: 1%; bottom: 54px; min-width: 260px; padding: 14px 20px 15px; border-radius: 14px; background: linear-gradient(145deg, #0871c7, #0450a2); box-shadow: var(--shadow); text-align: center; border: 2px solid rgba(255,255,255,.2); }
.number-card strong { display: block; color: var(--yellow); font-size: 62px; line-height: .92; letter-spacing: -3px; }
.number-card span { display: block; font-weight: 900; font-size: 16px; letter-spacing: .3px; }
.number-card small { font-size: 8px; letter-spacing: 2px; font-weight: 700; }

.section { padding: 90px 0; }
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.about-copy h2, .section-heading h2 { margin: 7px 0 9px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -1.8px; }
.title-line { width: 38px; height: 4px; border-radius: 10px; background: var(--green-500); margin: 16px 0 25px; }
.title-line.center { margin-left: auto; margin-right: auto; }
.about-copy p { color: var(--muted); font-size: 15px; line-height: 1.85; margin: 0 0 14px; }
.btn-outline-blue { margin-top: 15px; border: 2px solid #0d58a8; background: transparent; color: #0b4d99; }
.about-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: grid; grid-template-columns: .75fr 1.25fr; min-height: 430px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; }
.about-highlights article { min-height: 180px; padding: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-left: 1px solid #e9edf3; border-bottom: 1px solid #e9edf3; gap: 12px; }
.about-highlights .icon { font-size: 35px; }
.about-highlights strong { font-size: 14px; line-height: 1.35; }

.proposals { background: radial-gradient(circle at 50% 0%, #0a58a8 0%, #052f6a 48%, #031f4b 100%); color: #fff; position: relative; overflow: hidden; }
.proposals:before { content: ""; position: absolute; width: 500px; height: 500px; border: 80px solid rgba(0,166,80,.12); border-radius: 50%; right: -250px; top: -170px; }
.section-heading.centered { text-align: center; }
.section-heading.light p { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: 14px; }
.proposal-grid { position: relative; z-index: 1; margin-top: 45px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.proposal-card { text-align: center; padding: 24px 17px; border-radius: 16px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); }
.proposal-icon { display: block; font-size: 38px; margin-bottom: 16px; filter: grayscale(.15); }
.proposal-card h3 { margin: 0 0 9px; font-size: 17px; }
.proposal-card p { margin: 0; font-size: 12px; line-height: 1.65; color: rgba(255,255,255,.74); }

.work { background: #f9fbfd; }
.work-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.work-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 35px rgba(3, 38, 82, .09); border: 1px solid #eef2f7; }
.work-card img { width: 100%; height: 230px; object-fit: cover; }
.work-card-copy { padding: 20px 20px 24px; }
.work-card h3 { margin: 0 0 8px; font-size: 16px; }
.work-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.support { position: relative; overflow: hidden; background: linear-gradient(100deg, #079142 0%, #06a049 45%, #075eb0 45%, #063f8c 100%); color: #fff; }
.support-shape { position: absolute; width: 320px; height: 320px; background: var(--yellow); border-radius: 50%; right: 26%; bottom: -150px; opacity: .92; }
.support-grid { min-height: 330px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; position: relative; z-index: 1; }
.support-copy { padding: 55px 0; }
.support-copy h2 { margin: 0 0 18px; font-size: clamp(42px, 5vw, 70px); line-height: .92; letter-spacing: -2px; }
.support-copy h2 span { color: var(--yellow); }
.support-copy p { max-width: 470px; line-height: 1.55; font-weight: 600; }
.support-photo { align-self: stretch; overflow: hidden; display: flex; justify-content: flex-end; }
.support-photo img { width: min(540px, 100%); height: 100%; object-fit: cover; object-position: center 15%; mask-image: linear-gradient(to right, transparent 0%, #000 25%); }

.site-footer { background: linear-gradient(110deg, #063773, #032455); color: #fff; padding: 68px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr 1.1fr; gap: 50px; }
.footer-brand .brand-name { font-size: 15px; }
.footer-brand .brand-number { font-size: 31px; }
.footer-slogan { color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.6; margin: 18px 0; }
.footer-grid h3 { margin: 0 0 18px; text-transform: uppercase; color: #35d762; font-size: 12px; letter-spacing: .5px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0 0 11px; font-size: 12px; color: rgba(255,255,255,.78); }
.footer-grid a:hover { color: var(--yellow); }
.footer-socials a { width: 34px; height: 34px; font-size: 12px; }
.newsletter { display: grid; gap: 10px; margin-top: 15px; }
.newsletter input { width: 100%; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.12); color: #fff; border-radius: 8px; min-height: 45px; padding: 0 14px; outline: none; }
.newsletter input::placeholder { color: rgba(255,255,255,.55); }
.newsletter .btn { width: 100%; }
.legal { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.6; }
.legal p { margin: 0; }

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .main-nav { gap: 19px; }
  .hero-content { padding-left: 25px; }
  .proposal-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { max-width: 850px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body.menu-open { overflow: hidden; }
  .nav-wrap { min-height: 72px; }
  .brand-name { font-size: 14px; }
  .brand-number { font-size: 29px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: #042d68; display: none; flex-direction: column; align-items: stretch; padding: 28px 25px; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 17px 6px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; }

  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 30px; }
  .hero-content { padding: 30px 5px 0; text-align: center; }
  .hero h1 { font-size: clamp(55px, 16vw, 84px); }
  .hero-slogan { font-size: 18px; }
  .social-block { display: none; }
  .hero-photo-wrap { min-height: 490px; margin-top: -8px; }
  .hero-photo { height: 510px; width: calc(100% + 60px); max-width: none; object-position: center top; }
  .number-card { left: 50%; right: auto; transform: translateX(-50%); bottom: 35px; min-width: 220px; }
  .number-card strong { font-size: 52px; }
  .hero-shape-green { left: -400px; }
  .hero-shape-yellow { width: 170px; height: 170px; right: -30px; top: 110px; }

  .section { padding: 68px 0; }
  .about-grid { gap: 38px; }
  .about-card { grid-template-columns: 1fr; }
  .about-photo { max-height: 410px; overflow: hidden; }
  .about-highlights article { min-height: 145px; padding: 20px 12px; }
  .proposal-grid { grid-template-columns: 1fr 1fr; }
  .proposal-card:last-child { grid-column: 1 / -1; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { display: grid; grid-template-columns: 150px 1fr; }
  .work-card img { height: 100%; min-height: 170px; }

  .support-grid { grid-template-columns: 1fr; }
  .support-copy { text-align: center; padding-bottom: 24px; }
  .support-copy p { margin-left: auto; margin-right: auto; }
  .support-photo { max-height: 420px; justify-content: center; }
  .support-photo img { width: 100%; mask-image: linear-gradient(to bottom, transparent 0%, #000 22%); }
  .support-shape { right: -130px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .legal { flex-direction: column; }
}

@media (max-width: 500px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero h1 { letter-spacing: -2px; }
  .hero h1 span { letter-spacing: -1px; }
  .proposal-grid { grid-template-columns: 1fr; }
  .proposal-card:last-child { grid-column: auto; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .work-card { display: block; }
  .work-card img { height: 230px; }
  .support-copy h2 { font-size: 46px; }
  .number-card { min-width: 205px; padding: 12px 15px; }
}
