:root {
  --blue: #1a2e44;
  --blue-2: #233b56;
  --red: #e5322b;
  --green: #3f4b31;
  --green-dark: #27301f;
  --soft: #f5f6f7;
  --cream: #fbf8f1;
  --white: #ffffff;
  --text: #243024;
  --muted: #667061;
  --border: #e2e5df;
  --shadow: 0 18px 45px rgba(26, 46, 68, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: 'Nunito Sans', Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(850px, calc(100% - 40px)); }
.site-header { position: sticky; top: 0; z-index: 50; background: var(--blue); color: white; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.nav-wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; min-height: 76px; display:flex; align-items:center; justify-content:space-between; gap: 20px; }
.brand, .footer-brand { display:flex; align-items:center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand img, .footer-brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; background: #fff; }
.site-nav { display:flex; align-items:center; gap: 2px; }
.site-nav a { padding: 10px 14px; font-weight: 700; font-size: .96rem; color: rgba(255,255,255,.9); border-radius: 4px; }
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,.12); color: #fff; }
.site-nav .nav-button { background: var(--red); color:#fff; margin-left:8px; padding-inline:18px; }
.menu-toggle { display:none; background:none; border:0; padding:8px; }
.menu-toggle span { display:block; width:26px; height:2px; background:white; margin:5px 0; }
h1,h2,h3 { margin:0; font-family:'Libre Baskerville', Georgia, serif; line-height:1.15; color: var(--green-dark); }
h1 { font-size: clamp(2.35rem, 4.8vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
h3 { font-size: 1.45rem; }
.section-label { color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .82rem; margin:0 0 16px; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: rgba(255,255,255,.88); max-width: 720px; margin:22px 0 0; }
.hero-section { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: white; padding: 84px 0; }
.hero-section h1 { color:white; }
.hero-grid { display:grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items:center; }
.hero-logo-card { background:white; border-radius: 18px; padding: 36px; box-shadow: var(--shadow); }
.hero-logo-card img { width: 100%; max-width: 430px; margin: 0 auto; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.button { display:inline-flex; justify-content:center; align-items:center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 800; border: 2px solid transparent; cursor:pointer; }
.button.primary { background: var(--red); color:white; box-shadow:0 12px 28px rgba(229,50,43,.25); }
.button.secondary { background:white; color: var(--blue); }
.button.full { width:100%; }
.intro-section, .cards-section, .feature-section, .contact-section, .content-section { padding: 74px 0; }
.intro-section { background:white; }
.split { display:grid; grid-template-columns: .9fr 1.1fr; gap:50px; align-items:start; }
.intro-text p, .feature-text, .contact-copy p, .prose-card p { margin:0 0 18px; color: var(--muted); font-size: 1.05rem; }
.cards-section { background: var(--soft); }
.section-heading { text-align:center; max-width:760px; margin:0 auto 38px; }
.cards-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:24px; }
.cards-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card { background:white; border:1px solid var(--border); border-top:5px solid var(--red); padding:30px; border-radius:12px; box-shadow:0 12px 28px rgba(26,46,68,.07); min-height:250px; display:flex; flex-direction:column; }
.service-card span { color: var(--green); font-weight:800; text-transform:uppercase; letter-spacing:.08em; font-size:.78rem; margin-bottom:12px; }
.service-card p { color:var(--muted); margin:16px 0 24px; }
.service-card a { margin-top:auto; color: var(--red); font-weight:800; }
.feature-section { background:white; }
.feature-box { background: var(--cream); border:1px solid var(--border); border-radius:18px; padding:42px; box-shadow:0 12px 32px rgba(63,75,49,.08); }
.check-list { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.check-list li { background:white; border-left:4px solid var(--red); padding:14px 16px; border-radius:8px; color: var(--green-dark); font-weight:700; box-shadow:0 8px 20px rgba(0,0,0,.04); }
.contact-section { background: var(--cream); }
.contact-box { display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:start; background:white; border:1px solid var(--border); border-radius:18px; padding:44px; box-shadow:var(--shadow); }
.contact-copy h2 { color: var(--green-dark); }
.contact-copy a { color: var(--red); font-weight:800; }
.contact-form label { display:block; color: var(--green); font-weight:800; margin-bottom:16px; }
.contact-form input, .contact-form textarea { width:100%; margin-top:7px; padding:14px 16px; border:1px solid #d7dcd2; border-radius:8px; font: inherit; color: var(--text); background:#fff; }
.contact-form input:focus, .contact-form textarea:focus { outline:3px solid rgba(229,50,43,.15); border-color: var(--red); }
.h-captcha { margin: 10px 0 16px; }
.form-status { margin: 12px 0 0; color: var(--muted); font-weight:700; }
.page-title-section { background: var(--blue); padding:74px 0; color:white; }
.page-title-section h1 { color:white; }
.prose-card { background:white; border:1px solid var(--border); border-radius:16px; padding:46px; box-shadow:var(--shadow); }
.prose-card h2 { font-size:1.55rem; margin:32px 0 12px; }
.site-footer { background: var(--blue); color:white; padding:38px 0 18px; }
.footer-wrap { width:min(1120px, calc(100% - 40px)); margin:0 auto; display:flex; justify-content:space-between; gap:24px; align-items:flex-start; }
.footer-brand img { width:52px; height:52px; }
.site-footer p { margin:12px 0 0; color:rgba(255,255,255,.74); }
.footer-links { display:flex; flex-wrap:wrap; gap:14px 20px; justify-content:flex-end; }
.footer-links a { color:rgba(255,255,255,.86); font-weight:700; }
.copyright { width:min(1120px, calc(100% - 40px)); margin:24px auto 0; padding-top:18px; border-top:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.65); font-size:.92rem; text-align:center; }
.simple-page { min-height: 100vh; display:grid; place-items:center; padding: 40px; background: var(--cream); }
.simple-card { max-width:660px; background:white; padding:42px; border-radius:18px; box-shadow:var(--shadow); }
@media (max-width: 900px) {
  .menu-toggle { display:block; }
  .site-nav { display:none; position:absolute; top:76px; left:0; right:0; background: var(--blue); padding:14px 20px 24px; flex-direction:column; align-items:stretch; }
  .site-nav.open { display:flex; }
  .hero-grid, .split, .contact-box { grid-template-columns:1fr; }
  .hero-section { padding:60px 0; }
  .cards-grid, .cards-count-2 { grid-template-columns:1fr; }
  .footer-wrap { flex-direction:column; }
  .footer-links { justify-content:flex-start; }
}
