*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark:   #0D2B3E;
  --green:  #0D3B10;
  --gm:     #1B5E20;
  --orange: #E8621A;
  --teal:   #2C7280;
  --white:  #FFFFFF;
  --light:  #F7F6F2;
  --text:   #1A1A1A;
  --muted:  #5A5A5A;
  --border: #E2E2E2;
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: Arial, Helvetica, sans-serif; background: #fff; color: var(--text); font-size: 15px; line-height: 1.7; padding-top: 100px; }
a { text-decoration: none; color: inherit; }

/* TOP BAR */
.topbar { background: var(--green); color: #A5D6A7; font-size: 0.72rem; text-align: center; padding: 7px 4%; letter-spacing: .3px; position: fixed; top: 0; left: 0; right: 0; z-index: 210; }
.topbar a { color: #fff; font-weight: 700; }

/* NAV */
.nav-outer { background: #fff; padding: 12px 4%; display: flex; align-items: center; gap: 16px; box-shadow: 0 1px 0 var(--border); position: fixed; top: 34px; left: 0; right: 0; z-index: 200; }
.logo-link { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand-wordmark { height: 42px; width: auto; object-fit: contain; display: block; }
.brand-wordmark.sm { height: 34px; }
.brand-wordmark-badge { background: #fff; border-radius: 10px; padding: 6px 10px; display: inline-flex; align-items: center; }
.nav-pill { background: var(--dark); border-radius: 60px; padding: 6px 8px; display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-pill a { color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600; padding: 7px 16px; border-radius: 50px; white-space: nowrap; transition: all .2s; }
.nav-pill a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-pill a.cta { background: var(--orange); color: #fff; margin-left: auto; }
.nav-pill a.cta:hover { background: #c9521a; }

/* NAV — MOBILE TOGGLE */
.nav-toggle { display: none; width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0; padding: 0; margin-left: auto; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; position: absolute; width: 22px; height: 2.5px; border-radius: 2px; background: var(--dark); transition: transform .25s, opacity .25s, background .25s; }
.nav-toggle span { position: relative; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-outer { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-pill { display: none; flex: 1 1 100%; order: 3; flex-direction: column; align-items: stretch; gap: 4px; margin-top: 12px; border-radius: 16px; padding: 10px; }
  .nav-pill.open { display: flex; }
  .nav-pill a { padding: 13px 16px; font-size: .88rem; text-align: left; border-radius: 10px; }
  .nav-pill a.cta { margin-left: 0; margin-top: 6px; text-align: center; }
}

/* HERO */
.hero { background: #fff; padding: 72px 4% 80px; }
.hero-in { display: flex; align-items: center; gap: 52px; max-width: 1140px; margin: 0 auto; flex-wrap: wrap; }
.hero-copy { flex: 1 1 380px; }
.hero-tag { font-size: .7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; display: block; }
.hero-in h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.08; color: var(--dark); margin-bottom: 20px; }
.hero-in h1 em { color: var(--orange); font-style: normal; }
.hero-desc { font-size: .98rem; color: var(--muted); line-height: 1.85; max-width: 460px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-pill { padding: 13px 28px; border-radius: 50px; font-weight: 800; font-size: .88rem; display: inline-block; transition: all .2s; }
.btn-pill.primary { background: var(--orange); color: #fff; }
.btn-pill.primary:hover { background: #c9521a; transform: translateY(-2px); }
.btn-pill.outline { background: transparent; color: var(--dark); border: 2.5px solid var(--dark); }
.btn-pill.outline:hover { background: var(--dark); color: #fff; }

/* HERO IMAGE */
.hero-img-zone { flex: 0 0 auto; position: relative; }
.hero-blob { width: 420px; height: 480px; border-radius: 60% 60% 48% 52% / 62% 62% 38% 38%; overflow: hidden; background: #d0e8df; position: relative; box-shadow: 0 20px 60px rgba(13,43,62,0.18); }
.hero-blob img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.blob-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(transparent, rgba(13,43,62,0.22)); pointer-events: none; }
.deco-circle-1 { position: absolute; top: -32px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--orange); opacity: .9; z-index: -1; }
.deco-circle-1b { position: absolute; top: -20px; right: -28px; width: 114px; height: 114px; border-radius: 50%; border: 3px solid white; opacity: .6; z-index: 0; }
.deco-circle-2 { position: absolute; bottom: 16px; left: -28px; width: 90px; height: 90px; border-radius: 50%; background: var(--teal); opacity: .25; z-index: -1; }
.deco-ring { position: absolute; inset: -14px; border-radius: 62% 62% 50% 54% / 64% 64% 40% 40%; border: 3px solid var(--orange); opacity: .18; z-index: -1; }
.hero-badge { position: absolute; bottom: 32px; left: -16px; background: #fff; border-radius: 50px; padding: 10px 18px 10px 14px; font-size: 0.8rem; font-weight: 800; color: var(--dark); box-shadow: 0 4px 20px rgba(0,0,0,0.13); display: flex; align-items: center; gap: 8px; z-index: 2; white-space: nowrap; }
.hero-badge .badge-dot { width: 10px; height: 10px; border-radius: 50%; background: #22C55E; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
@media (max-width: 900px) {
  .hero-blob { width: 100%; height: 340px; }
  .hero-img-zone { width: 100%; }
  .hero-badge { left: 12px; }
  .deco-circle-1 { top: -20px; right: -16px; width: 100px; height: 100px; }
  .deco-circle-1b { top: -12px; right: -10px; width: 82px; height: 82px; }
  .deco-circle-2 { left: -12px; }
}
@media (max-width: 480px) {
  .hero-in h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-badge { font-size: .72rem; padding: 9px 14px 9px 10px; bottom: 20px; }
}

/* STATS */
.stats { background: var(--light); padding: 36px 4%; }
.stats-row { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: wrap; }
.stat { flex: 1 1 150px; text-align: center; padding: 16px 20px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat .val { font-size: 2.2rem; font-weight: 900; color: var(--dark); }
.stat .lbl { font-size: .78rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }
@media (max-width: 640px) {
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 10px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+3) { border-bottom: none; }
}

/* SECTIONS */
.sec { padding: 80px 4%; }
.sec-bg { background: var(--light); }
.sec-in { max-width: 1140px; margin: 0 auto; }
.eyebrow { font-size: .68rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 10px; }
.sec h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 12px; }
.sec .lead { font-size: .92rem; color: var(--muted); max-width: 600px; margin-bottom: 48px; line-height: 1.85; }
@media (max-width: 640px) {
  .hero { padding: 52px 5% 56px; }
  .sec { padding: 56px 5%; }
  .sec .lead { margin-bottom: 32px; }
  .cta-band { padding: 56px 5%; }
}

/* WHO WE HELP */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.who-card { background: #fff; border-radius: 18px; padding: 26px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.who-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.who-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.who-card h3 { font-size: .88rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.who-card p { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* SERVICES */
.svc-tabs { display: flex; gap: 4px; background: var(--light); border-radius: 50px; padding: 5px; width: fit-content; margin-bottom: 28px; }
.tab-btn { padding: 9px 22px; border-radius: 50px; border: none; background: transparent; font-size: .8rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .2s; }
.tab-btn.active { background: var(--dark); color: #fff; }
.tab-btn:hover:not(.active) { background: rgba(0,0,0,.06); }
.svc-panel { display: none; }
.svc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .svc-panel.active { grid-template-columns: 1fr; } }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.svc-card-head { padding: 18px 22px; display: flex; align-items: center; gap: 10px; }
.svc-card-head h3 { font-size: .88rem; font-weight: 800; color: #fff; }
.svc-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: rgba(255,255,255,.18); flex-shrink: 0; }
.hd-green { background: var(--gm); }
.hd-teal { background: #006D77; }
.hd-orange { background: var(--orange); }
.hd-dark { background: var(--dark); }
.svc-card-body { padding: 18px 22px; }
.svc-card-body p { font-size: .8rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-list li { font-size: .79rem; padding-left: 18px; position: relative; line-height: 1.5; color: var(--text); }
.svc-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; color: var(--gm); }
.roles-row { grid-column: 1 / -1; }
.roles-row h3 { font-size: .88rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill { background: var(--light); color: var(--dark); border: 1px solid var(--border); border-radius: 50px; padding: 5px 14px; font-size: .75rem; font-weight: 600; }
.pill.o { background: #FFF0E8; color: var(--orange); border-color: #ffd0b5; }
.callout-row { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 4px; }
@media (max-width: 700px) { .callout-row { grid-template-columns: 1fr; } }
.callout { border-radius: 18px; padding: 24px; }
.callout.orange { background: var(--orange); color: #fff; }
.callout.dark { background: var(--dark); color: #fff; }
.callout h3 { font-size: .88rem; font-weight: 800; margin-bottom: 6px; }
.callout p { font-size: .78rem; opacity: .9; line-height: 1.6; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.step-card { text-align: center; padding: 20px 12px; }
.step-num { width: 40px; height: 40px; background: var(--dark); color: #fff; border-radius: 50%; font-size: .95rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-card h3 { font-size: .85rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.step-card p { font-size: .76rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testi { background: #fff; border-radius: 18px; padding: 26px; border: 1px solid var(--border); }
.t-accent { height: 4px; border-radius: 4px 4px 0 0; margin: -26px -26px 24px; }
.t-green { background: var(--gm); }
.t-orange { background: var(--orange); }
.t-dark { background: var(--dark); }
.testi blockquote { font-size: .83rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.t-name { font-weight: 800; font-size: .82rem; color: var(--dark); }
.t-role { font-size: .73rem; color: var(--muted); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.c-left h3 { font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; margin-top: 18px; }
.c-left h3:first-child { margin-top: 0; }
.c-left p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 2px; }
.c-left a { color: var(--gm); font-weight: 700; }
.kw-list { display: flex; flex-direction: column; gap: 6px; margin-top: 7px; }
.kw-item { display: flex; align-items: center; gap: 7px; font-size: .79rem; }
.kw-tag { background: var(--dark); color: #fff; font-size: .68rem; font-weight: 800; padding: 2px 8px; border-radius: 4px; flex-shrink: 0; }
.kw-desc { color: var(--muted); }
.divider { height: 1px; background: var(--border); margin: 14px 0; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
@media (max-width: 600px) { .form-card { padding: 22px; } }
.form-card h3 { font-size: 1rem; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.form-card .sub { font-size: .78rem; color: var(--muted); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.fg label { font-size: .72rem; font-weight: 800; color: var(--text); }
.fg input, .fg select, .fg textarea { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: .82rem; font-family: Arial; color: var(--text); width: 100%; background: #fff; transition: border-color .2s, box-shadow .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--gm); box-shadow: 0 0 0 3px rgba(27,94,32,.1); }
.fg input[type="file"] { padding: 7px 12px; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 80px; }
.fg .hint { font-size: .68rem; color: var(--muted); }
.form-btn { width: 100%; padding: 14px; background: var(--dark); color: #fff; border: none; border-radius: 50px; font-size: .92rem; font-weight: 800; cursor: pointer; margin-top: 4px; transition: background .2s; }
.form-btn:hover { background: #0a1f2e; }
.form-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-note { text-align: center; font-size: .7rem; color: var(--muted); margin-top: 10px; }
.form-status { text-align: center; font-size: .78rem; font-weight: 700; margin-top: 12px; display: none; }
.form-status.show { display: block; }
.form-status.success { color: var(--gm); }
.form-status.error { color: #C62828; }

/* CTA BAND */
.cta-band { background: var(--dark); color: #fff; text-align: center; padding: 80px 4%; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-w { background: #fff; color: var(--dark); padding: 13px 28px; border-radius: 50px; font-weight: 800; font-size: .88rem; transition: background .2s; }
.btn-w:hover { background: #f0f0f0; }
.btn-ow { background: transparent; color: #fff; padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: .88rem; border: 2px solid rgba(255,255,255,.38); transition: border-color .2s; }
.btn-ow:hover { border-color: #fff; }

/* FOOTER */
footer { background: #071F09; color: #7CB97E; padding: 48px 4% 24px; }
.fg-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1140px; margin: 0 auto 32px; }
@media (max-width: 700px) { .fg-grid { grid-template-columns: 1fr; gap: 24px; } }
.fb-p { font-size: .78rem; color: #7CB97E; line-height: 1.75; margin-top: 12px; }
.fb-contacts { margin-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.fb-contacts a { color: #A5D6A7; font-size: .78rem; }
.fc h4 { color: #fff; font-size: .78rem; font-weight: 800; margin-bottom: 12px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fc ul li a { color: #7CB97E; font-size: .75rem; transition: color .2s; }
.fc ul li a:hover { color: #fff; }
.footer-bot { max-width: 1140px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px; display: flex; justify-content: space-between; font-size: .7rem; color: #4A7A4C; flex-wrap: wrap; gap: 6px; }
