:root {
  --blue: #0d4386;
  --blue-dark: #082e61;
  --blue-soft: #eaf3fb;
  --cyan: #1aa9dc;
  --green: #23931d;
  --green-dark: #126e22;
  --ink: #10233f;
  --muted: #5f6d7d;
  --line: #dce6ef;
  --white: #ffffff;
  --bg: #f7fafc;
  --shadow: 0 22px 60px rgba(16, 35, 63, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,67,134,.09);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 138px; height: 66px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 30px; font-weight: 600; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--green); }
.nav-call { background: var(--blue); color: var(--white) !important; padding: 12px 18px; border-radius: 999px; }
.nav-call:hover { background: var(--green); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 27px; color: var(--blue); cursor: pointer; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f8fbff 0%, #eef8f0 100%); padding: 96px 0 88px; }
.hero-bg::before, .hero-bg::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-bg::before { width: 460px; height: 460px; right: -120px; top: -140px; background: rgba(35,147,29,.10); }
.hero-bg::after { width: 360px; height: 360px; left: -140px; bottom: -170px; background: rgba(13,67,134,.10); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; }
.eyebrow.light { color: #bff0bb; }
h1 { font-size: clamp(2.75rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.055em; margin: 0 0 24px; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.035em; margin: 0 0 18px; }
.hero-text { font-size: 1.08rem; color: var(--muted); max-width: 690px; margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 12px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--green)); color: var(--white); }
.btn-secondary { border: 1px solid var(--line); background: var(--white); color: var(--blue); }
.trust-row { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: .9rem; }
.trust-row span::before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 7px; }
.hero-card { background: var(--white); border: 1px solid rgba(13,67,134,.08); border-radius: 28px; box-shadow: var(--shadow); padding: 26px; transform: rotate(1deg); }
.hero-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 18px; background: var(--white); }
.hero-card-strip { margin-top: 18px; padding: 18px; border-radius: 16px; background: linear-gradient(135deg, var(--blue), var(--green-dark)); color: white; display: grid; gap: 4px; }
.hero-card-strip span { opacity: .86; font-size: .9rem; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading p:last-child { color: var(--muted); margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(35,147,29,.35); }
.service-card .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-soft); color: var(--cyan); font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.service-card h3 { margin: 0 0 8px; color: var(--blue-dark); font-size: 1.12rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-panel p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.text-link { display: inline-block; margin-top: 12px; color: var(--green); font-weight: 800; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stats div { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px; min-height: 145px; display: flex; flex-direction: column; justify-content: center; }
.stats strong { font-size: 2.4rem; color: var(--blue); line-height: 1; }
.stats span { margin-top: 10px; color: var(--muted); }

.contact { padding-top: 74px; }
.contact-card { background: linear-gradient(120deg, var(--blue-dark), var(--blue) 52%, var(--green-dark)); color: white; padding: 52px; border-radius: 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: var(--shadow); }
.contact-card h2 { max-width: 680px; }
.contact-card p:last-child { opacity: .86; margin-bottom: 0; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.btn-white { background: white; color: var(--blue); }
.btn-outline-white { border: 1px solid rgba(255,255,255,.5); color: white; }

.footer { margin-top: 90px; background: #071c34; color: white; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 40px; }
.footer-brand img { width: 150px; border-radius: 10px; margin-bottom: 12px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 9px; }
.footer-grid p, .footer-grid a { color: #aebdcd; margin: 0; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #8093a7; font-size: .88rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { flex-direction: column; align-items: flex-start; }
  .contact-actions { flex-direction: row; width: 100%; }
  .contact-actions .btn { flex: 1; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .site-header { position: sticky; }
  .menu-toggle { display: block; }
  .nav { position: absolute; left: 14px; right: 14px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; border: 1px solid var(--line); border-radius: 16px; padding: 10px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .nav-call { margin-top: 6px; text-align: center; }
  .brand img { width: 120px; height: 58px; }
  .hero { padding: 66px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-grid { gap: 38px; }
  .service-grid, .stats { grid-template-columns: 1fr; }
  .service-card { padding: 24px; }
  .contact-card { padding: 34px 24px; }
  .contact-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
