:root {
  --green: #91c330;
  --green-dark: #7eac24;
  --blue: #1875ff;
  --blue-dark: #0d62e4;
  --navy: #0f2147;
  --navy-deep: #0c1b3a;
  --ink: #122047;
  --muted: #5d6b82;
  --line: #e5ebf3;
  --soft: #f5f8fb;
  --white: #fff;
  --shadow: 0 14px 40px rgba(15, 33, 71, 0.08);
  --container: 1170px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.skip {
  position: absolute; left: 12px; top: -40px; background: var(--blue); color: #fff;
  padding: 8px 12px; z-index: 100; border-radius: 4px;
}
.skip:focus { top: 12px; }

.topbar { background: var(--green); color: #fff; font-size: 13.5px; }
.topbar-inner, .header-inner, .footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.topbar-inner { min-height: 46px; flex-wrap: wrap; padding: 8px 0; }
.topbar a:hover { opacity: 0.85; }
.topbar-left, .topbar-right, .socials { display: flex; align-items: center; gap: 16px; }
.topbar-left a { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 16px; height: 16px; fill: currentColor; flex: 0 0 auto; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.top-note { opacity: 0.95; }
.socials a, .icon-btn {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: transparent; border: 0; cursor: pointer; padding: 0;
}
.socials svg, .icon-btn svg { width: 15px; height: 15px; fill: currentColor; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: #fff;
  box-shadow: 0 1px 0 rgba(15, 33, 71, 0.06);
}
.header-inner { min-height: 86px; }
.logo { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.logo img { width: 42px; height: 48px; }
.logo span {
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 28px;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1;
}
.logo.light span { color: #fff; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 14px; color: var(--ink);
  padding: 8px 12px; border-radius: 30px; transition: 0.2s ease;
}
.nav a:hover, .nav a.active { background: var(--blue); color: #fff; }
.header-tools { display: flex; align-items: center; gap: 6px; }
.header-tools .icon-btn { color: var(--ink); width: 38px; height: 38px; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 3px; padding: 12px 22px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 14px;
  transition: 0.2s ease; line-height: 1.2;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #09162f; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.topbar .btn { padding: 8px 14px; font-size: 13px; border-radius: 2px; }

.hero { position: relative; min-height: 640px; color: #fff; overflow: hidden; background: var(--navy); }
.slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  background-size: cover; background-position: center; opacity: 0; transition: opacity 0.6s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 48, 0.78) 0%, rgba(8, 20, 48, 0.45) 52%, rgba(8, 20, 48, 0.25) 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
.eyebrow {
  display: inline-block; color: var(--green); font-family: "Poppins", sans-serif;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px;
}
.hero h1 { color: #fff; font-size: 58px; font-weight: 700; margin-bottom: 16px; overflow-wrap: anywhere; }
.hero p { color: rgba(255,255,255,0.88); font-size: 17px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; gap: 8px;
}
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer;
}
.hero-dots button.active { background: var(--green); border-color: var(--green); }

.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-head h2, .split h2 { font-size: 36px; font-weight: 700; }
.green { color: var(--green); }
.center { text-align: center; }

.about-grid, .split, .mission-grid, .quote-grid, .detail-grid, .contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.photo-frame { position: relative; }
.photo-frame img { width: 100%; height: 420px; object-fit: cover; border-radius: 4px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; margin: 0 0 10px; color: var(--ink); }
.checks svg { flex: 0 0 auto; margin-top: 4px; }
.bars { margin-top: 22px; }
.bar-label { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.bar { height: 8px; background: #e8eef6; border-radius: 20px; overflow: hidden; margin-bottom: 14px; }
.bar span { display: block; height: 100%; width: 0; background: var(--green); border-radius: 20px; transition: width 1s ease; }
.bar.blue span { background: var(--blue); }
.stats { display: grid; gap: 22px; }
.stat { display: flex; gap: 16px; align-items: center; }
.stat-ico {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex: 0 0 auto;
}
.stat-ico.blue { background: var(--blue); }
.stat-ico.green { background: var(--green); }
.stat strong { display: block; font-family: "Poppins", sans-serif; font-size: 32px; color: var(--ink); line-height: 1; }
.stat em { font-style: normal; color: var(--muted); font-size: 14px; }

.services { background: var(--navy); color: #c9d4e8; }
.services h2, .services h3 { color: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card { background: #0c1a36; overflow: hidden; color: #c5d0e4; transition: transform 0.2s ease; }
.service-card:hover { transform: translateY(-6px); }
.service-card img { width: 100%; height: 150px; object-fit: cover; }
.service-card div { padding: 16px 14px 20px; }
.service-card h3 { font-size: 16px; margin-bottom: 6px; }
.service-card p { font-size: 13.5px; margin: 0; line-height: 1.6; }
.service-card a.more { color: var(--green); font-weight: 600; font-size: 13px; display: inline-block; margin-top: 8px; }

.mission { background: var(--green); color: #fff; }
.mission h2, .mission p { color: #fff; }
.mission img { width: 100%; height: 320px; object-fit: cover; border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,.15); }

.why-photos { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; }
.why-photos img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.why-photos img:first-child { grid-row: span 2; min-height: 380px; }
.feature-list { display: grid; gap: 16px; margin-top: 18px; }
.feature-list article { display: grid; grid-template-columns: 46px 1fr; gap: 12px; }
.feature-list h3 { font-size: 18px; margin: 0 0 4px; }
.feature-list p { margin: 0; }
.ico-bubble {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(145,195,48,.15); color: var(--green);
  display: grid; place-items: center;
}

.bg-soft { background: var(--soft); position: relative; }
.bg-soft::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.45;
  background-image: radial-gradient(rgba(15,33,71,.18) 1px, transparent 1px);
  background-size: 22px 22px;
}
.bg-soft .container { position: relative; }

.team-grid, .card-grid, .price-grid, .project-grid, .story-grid, .insight-grid, .pillar-grid {
  display: grid; gap: 24px;
}
.team-grid { grid-template-columns: repeat(3, 1fr); }
.team-card { background: #fff; box-shadow: var(--shadow); text-align: center; }
.team-card img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.team-card div { padding: 18px 16px 22px; }
.team-card h3 { font-size: 20px; margin-bottom: 2px; }
.role { color: var(--green); font-size: 14px; margin-bottom: 10px; }
.mini-socials { display: flex; justify-content: center; gap: 8px; }
.mini-socials button, .mini-socials a {
  width: 32px; height: 32px; border-radius: 50%; border: 0; background: #eef2f7; color: #607089;
  display: grid; place-items: center; cursor: pointer;
}
.mini-socials button:hover, .mini-socials a:hover { background: var(--blue); color: #fff; }
.mini-socials svg { width: 13px; height: 13px; fill: currentColor; }

.price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); padding: 36px 28px 32px; text-align: center; position: relative;
  box-shadow: var(--shadow);
}
.price-card.featured { border: 2px solid var(--green); transform: translateY(-14px); }
.ribbon {
  position: absolute; top: 16px; right: -8px; background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 12px; letter-spacing: 0.04em;
}
.price { font-family: "Poppins", sans-serif; font-size: 48px; color: var(--ink); font-weight: 700; line-height: 1; }
.price span { font-size: 16px; color: var(--muted); font-weight: 500; }
.price-card ul { margin: 20px 0 26px; text-align: left; }
.price-card li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid #f0f3f8; color: var(--ink); }
.price-card li::before { content: ""; position: absolute; left: 0; top: 14px; width: 12px; height: 7px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

.stories { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px; align-items: center; }
.quote-card { background: #fff; box-shadow: var(--shadow); padding: 28px; min-height: 240px; }
.stars { color: #f5b400; letter-spacing: 2px; margin-bottom: 8px; }
.quote-card h3 { margin: 12px 0 0; font-size: 18px; }
.person { display: flex; gap: 12px; align-items: center; margin-top: 16px; }
.person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.t-nav { display: flex; gap: 8px; margin-top: 16px; }
.t-nav button {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--ink);
}
.t-nav button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.protect {
  position: relative; color: #fff; text-align: center; padding: 110px 0;
  background-size: cover; background-position: center;
}
.protect::before { content: ""; position: absolute; inset: 0; background: rgba(10, 24, 52, 0.72); }
.protect .container { position: relative; z-index: 1; }
.protect h2 { color: #fff; font-size: 40px; max-width: 760px; margin: 0 auto 18px; }
.round-go {
  width: 74px; height: 74px; border-radius: 50%; border: 0; background: var(--green); color: #fff;
  display: grid; place-items: center; margin: 10px auto 0; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.round-go:hover { background: var(--green-dark); }

.quote-panel { background: #fff; box-shadow: var(--shadow); padding: 28px; }
.quote-grid > img, .quote-panel img.side { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.insight-grid, .project-grid, .story-grid { grid-template-columns: repeat(3, 1fr); }
.insight, .project-card, .story {
  background: #fff; box-shadow: var(--shadow); overflow: hidden;
}
.insight img, .project-card img, .story img { width: 100%; height: 210px; object-fit: cover; }
.insight div, .project-card div, .story div { padding: 18px 18px 22px; }
.meta { color: var(--green); font-size: 13px; font-weight: 600; }
.insight h3, .project-card h3, .story h3 { font-size: 18px; }
.tag {
  display: inline-block; background: rgba(145,195,48,.15); color: #5d8a16; font-size: 12px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px; margin-bottom: 8px;
}

.page-hero {
  position: relative; min-height: 280px; display: grid; place-items: center; text-align: center; color: #fff;
  background-size: cover; background-position: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(8, 18, 40, 0.62); }
.page-hero .container { position: relative; z-index: 1; padding: 70px 0; }
.page-hero h1 { color: #fff; font-size: 48px; margin-bottom: 8px; }
.crumb { color: #fff; }
.crumb a { color: var(--green); }

.pillar-grid { grid-template-columns: repeat(4, 1fr); }
.pillar { padding-right: 16px; }
.pillar h3 { font-size: 20px; }
.band {
  background: var(--blue); color: #fff; text-align: center; padding: 72px 0;
  background-image: linear-gradient(rgba(24,117,255,.82), rgba(15,33,71,.78)), url("../images/handshake.jpg");
  background-size: cover; background-position: center;
}
.band h2 { color: #fff; font-size: 34px; margin-bottom: 8px; }
.band p { color: rgba(255,255,255,.92); margin-bottom: 18px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.filters button {
  border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 30px;
  padding: 8px 16px; cursor: pointer; font-family: "Poppins", sans-serif; font-weight: 600;
}
.filters button.active, .filters button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.table-wrap { overflow-x: auto; background: #fff; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--navy); color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; }
td:not(:first-child), th:not(:first-child) { text-align: center; }

.accordion details { background: #fff; border: 1px solid var(--line); margin-bottom: 10px; padding: 14px 16px; }
.accordion summary { cursor: pointer; font-family: "Poppins", sans-serif; font-weight: 600; color: var(--ink); }
.accordion p { margin: 10px 0 0; }

.prose { max-width: 900px; }
.prose h2 { font-size: 26px; margin-top: 1.6em; }
.prose h3 { font-size: 20px; margin-top: 1.2em; }
.prose ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.prose li { margin: 0.35em 0; }
.note {
  background: #f3f8e8; border-left: 4px solid var(--green); padding: 14px 16px; color: var(--ink); margin: 18px 0;
}

.form-card, .quote-panel {
  background: #fff; box-shadow: 0 10px 40px rgba(15,33,71,.08); padding: 34px 32px;
}
.form-card { max-width: 720px; margin: 0 auto; }
.form-card h2 {
  color: var(--green); font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px;
}
.form-card h2::after, .underline::after {
  content: ""; display: block; width: 48px; height: 2px; background: var(--ink); margin-top: 8px;
}
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label.field { display: block; color: var(--ink); font-size: 14px; font-weight: 600; }
label.field span { display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; border: 1px solid #e1e7f0; background: #fff; color: var(--ink);
  padding: 12px 14px; border-radius: 2px; outline: none;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green); }
input.invalid, select.invalid, textarea.invalid { border-color: #d14343; }
.field-error { color: #d14343; font-size: 12.5px; font-weight: 500; display: block; margin-top: 4px; }
.check { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: 14px; margin: 6px 0 12px; }
.check input { width: auto; margin-top: 4px; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin: 6px 0 12px; }
.form-success {
  display: none; background: #f3f8e8; border: 1px solid #d5e7ad; color: var(--ink);
  padding: 18px 16px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 18px;
}
.form-success.show { display: block !important; }
.footer .form-success { font-size: 14px; }

.footer { background: var(--navy-deep); color: #b7c3d7; padding-top: 54px; }
.footer-brand { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 32px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-left: 8px;
}
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); }
.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr; gap: 28px; }
.footer h3 { color: #fff; font-size: 20px; margin-bottom: 16px; }
.footer a:hover { color: var(--green); }
.footer li { margin: 0 0 8px; }
.mail-link { color: var(--green); font-weight: 600; }
.news-item { display: flex; gap: 12px; margin-bottom: 14px; }
.news-item img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.news-item strong { display: block; color: #fff; font-weight: 600; font-size: 14px; line-height: 1.4; }
.news-item span { color: var(--green); font-size: 12px; }
.footer input { background: #091428; border-color: #24365c; color: #fff; margin-bottom: 10px; }
.footer .check { color: #d5deec; }
.legal {
  margin-top: 28px; border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 14px;
}
.legal nav { display: flex; gap: 16px; flex-wrap: wrap; }
.legal a { color: #fff; }
.legal a:hover { color: var(--green); }

.search-modal {
  position: fixed; inset: 0; background: rgba(8,16,36,.55); z-index: 80;
  display: none; align-items: flex-start; justify-content: center; padding: 12vh 16px 16px;
}
.search-modal.open { display: flex; }
.search-card { width: min(640px, 100%); background: #fff; padding: 22px; box-shadow: var(--shadow); }
.search-card input { margin-bottom: 12px; }
.search-card li a { display: block; padding: 10px 8px; border-bottom: 1px solid var(--line); color: var(--ink); }
.search-card li a:hover { color: var(--blue); }
.search-card small { color: var(--muted); display: block; }

.to-top {
  position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border: 0; border-radius: 3px;
  background: var(--green); color: #fff; cursor: pointer; display: none; z-index: 40;
}
.to-top.show { display: grid; place-items: center; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; padding: 22px 18px; box-shadow: var(--shadow); }
.step b {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-family: "Poppins", sans-serif; margin-bottom: 10px;
}
.bio-list article { display: grid; grid-template-columns: 180px 1fr; gap: 22px; background: #fff; box-shadow: var(--shadow); padding: 18px; margin-bottom: 18px; }
.bio-list img { width: 180px; height: 210px; object-fit: cover; object-position: top; }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .nav a { padding: 8px 9px; font-size: 13px; }
  .hero h1 { font-size: 46px; }
  .footer-grid, .pillar-grid, .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; background: #fff;
    display: none; flex-direction: column; align-items: stretch; padding: 10px 16px 16px;
    box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }
  .nav.open { display: flex; }
  .nav a { border-radius: 6px; }
  .about-grid, .split, .mission-grid, .quote-grid, .detail-grid, .contact-grid, .stories, .why-photos, .bio-list article {
    grid-template-columns: 1fr;
  }
  .why-photos img:first-child { grid-row: auto; min-height: 220px; }
  .team-grid, .price-grid, .insight-grid, .project-grid, .story-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .top-note { display: none; }
  .hero { min-height: 520px; }
  .section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .service-grid, .team-grid, .price-grid, .insight-grid, .project-grid, .story-grid, .pillar-grid, .steps, .footer-grid, .form-grid.two, .choices {
    grid-template-columns: 1fr;
  }
  .hero h1, .page-hero h1 { font-size: 34px; }
  .section-head h2, .split h2, .protect h2 { font-size: 28px; }
  .logo span { font-size: 22px; }
  .header-inner { min-height: 70px; }
  .topbar .btn { padding: 7px 10px; }
  .form-card, .quote-panel { padding: 22px 16px; }
  .legal { flex-direction: column; }
  .photo-frame img, .team-card img { height: 240px; }
}
