@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Semi+Condensed:wght@500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate: #1C2731;
  --slate-deep: #141C24;
  --green: #168A53;
  --green-hover: #117543;
  --green-soft: rgba(22,138,83,0.08);
  --green-border: rgba(22,138,83,0.2);
  --red: #C83C2E;
  --red-soft: rgba(200,60,46,0.08);
  --red-border: rgba(200,60,46,0.18);
  --bg-warm: #F8F7F4;
  --white: #FFFFFF;
  --text-main: #333D3A;
  --text-muted: #5F6D68;
  --text-soft: #8FA09A;
  --border: #D4DCD7;
  --light-on-dark: #C0CCC5;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text-main); background: var(--white); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.nav { background: var(--slate); padding: 0 48px; height: 66px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--green); }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--light-on-dark); font-size: 15px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-btn { background: var(--green); color: #fff; border: none; border-radius: 6px; padding: 10px 22px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Barlow', sans-serif; transition: background 0.15s; }
.nav-btn:hover { background: var(--green-hover); }
.nav-phone { color: var(--light-on-dark); font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.nav-phone svg { width: 15px; height: 15px; stroke: var(--green); fill: none; stroke-width: 2; }
.nav-phone a { color: var(--light-on-dark); }
.nav-phone a:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }

.footer { background: var(--slate-deep); padding: 28px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; border-top: 3px solid var(--green); }
.footer-logo img { height: 28px; width: auto; }
.footer-mid { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--green); }
.footer-socials { display: flex; gap: 14px; align-items: center; }
.footer-socials a { color: var(--text-muted); transition: color 0.15s; display: flex; align-items: center; }
.footer-socials a:hover { color: var(--green); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

.eyebrow { display: inline-block; background: var(--green-soft); border: 1px solid var(--green-border); border-radius: 4px; padding: 4px 14px; font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.sec-eyebrow { font-size: 12px; color: var(--green); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; text-align: center; margin-bottom: 8px; }
.sec-title { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 36px; font-weight: 700; color: var(--slate); text-align: center; line-height: 1.1; margin-bottom: 10px; }
.sec-sub { font-size: 16px; color: var(--text-muted); text-align: center; line-height: 1.7; max-width: 540px; margin: 0 auto 48px; }

.btn-primary { background: var(--green); color: #fff; border: none; border-radius: 6px; padding: 14px 30px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: 'Barlow', sans-serif; transition: background 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--green-hover); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 14px 30px; font-size: 16px; font-weight: 500; cursor: pointer; font-family: 'Barlow', sans-serif; transition: border-color 0.15s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
.btn-outline { background: transparent; color: var(--slate); border: 1px solid var(--border); border-radius: 6px; padding: 14px 30px; font-size: 16px; font-weight: 500; cursor: pointer; font-family: 'Barlow', sans-serif; display: inline-block; transition: border-color 0.15s; }
.btn-outline:hover { border-color: var(--slate); }

.cta-section { background: var(--slate); padding: 80px 48px; text-align: center; }
.cta-section h2 { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 36px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.cta-section h2 em { color: var(--green); font-style: normal; }
.cta-section > p { color: var(--text-soft); font-size: 16px; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

.red-bar { height: 4px; background: var(--red); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 69px; left: 0; right: 0; background: var(--slate); padding: 20px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.06); z-index: 99; }
  .footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
