/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/


:root {
  --green: #0e5c49;
  --green-d: #0a3f32;
  --green-l: #12795f;
  --orange: #ef8018;
  --orange-l: #f7a03a;
  --ink: #0b1417;
  --body: #42504f;
  --muted: #6b7876;
  --line: #e5e9e8;
  --bg: #ffffff;
  --bg-soft: #f5f7f6;
  --bg-green: #06231c;
  --radius: 16px;
  --max: 1300px;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-l);
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.section {
  padding: 96px 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section.soft {
  background: var(--bg-soft);
}

.center {
  text-align: center;
}

p.lead {
  font-size: 1.15rem;
  color: var(--body);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-l);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #1e2b2e;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-white {
  background: #fff;
  color: var(--ink);
}

.btn-white:hover {
  background: #eef1f0;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Navigation */
header.header-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  overflow: visible;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.nav-in {
  display: flex;
  align-items: center;
  overflow: visible;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
  transform: translateY(-4px);
  position: relative;
  z-index: 10001;
  overflow: visible;
}

.nav-item {
  position: relative;
  overflow: visible;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-weight: 500;
  color: #2d3a38;
  border-radius: 8px;
}

.nav-item > a:hover {
  color: var(--green);
  background: var(--bg-soft);
}

.caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid #9aa6a4;
  border-bottom: 2px solid #9aa6a4;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: 0.2s;
}

.nav-item:hover .caret {
  border-color: var(--green);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(6, 35, 28, 0.14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s;
  z-index: 10002;
}


.nav-item:last-child .dropdown {
  left: auto;
  right: 0;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 0.9rem;
  color: #33403e;
}

.dropdown a b {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.dropdown a span {
  font-size: 0.8rem;
  color: var(--muted);
}

.dropdown a:hover {
  background: var(--bg-soft);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transform: translateY(-4px);
  position: relative;
  z-index: 1;
}

.nav-right .btn {
  padding: 10px 20px;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: 75vh;
  overflow: auto;
}

.mobile.open {
  display: block;
}

.mobile details {
  border-bottom: 1px solid var(--line);
}

.mobile summary {
  padding: 14px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mobile summary::-webkit-details-marker {
  display: none;
}

.mobile .sub a {
  display: block;
  padding: 10px 36px;
  color: var(--body);
  font-size: 0.92rem;
}

.mobile > a {
  display: block;
  padding: 14px 24px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 1040px) {
  .nav-menu {
    display: flex;
  }
  .burger {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 84px 0 72px;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 110px 0 96px;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 800;
}

.hero .lead {
  margin-top: 22px;
  max-width: 36rem;
}

.hero .btns {
  margin-top: 32px;
}

.hero-badges {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-art {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(6, 35, 28, 0.16);
  aspect-ratio: 4 / 3;
  background: #06231c;
}

.hero-art img,
.hero-art .hero-graphic-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

/* Page Hero (Subpages) */
.phero {
  background: var(--bg-green);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.phero .wrap {
  position: relative;
  z-index: 1;
  padding: 96px 24px 84px;
}

.phero .crumb {
  font-size: 0.8rem;
  color: #9fcabb;
  letter-spacing: 0.04em;
}

.phero .crumb a:hover {
  color: #fff;
}

.phero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  margin-top: 14px;
  max-width: 20ch;
}

.phero p {
  margin-top: 20px;
  max-width: 44rem;
  color: #cfe3db;
  font-size: 1.12rem;
}

.phero .btns {
  margin-top: 30px;
}

.phero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(239, 128, 24, 0.28), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(18, 121, 95, 0.5), transparent 45%);
  z-index: 0;
}

/* Logo Strip */
.strip {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.strip p {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.strip-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}

.strip-row span {
  font-weight: 800;
  font-size: 1.15rem;
  color: #b4bfbc;
  letter-spacing: 0.02em;
}

/* Cards/Features */
.grid {
  display: grid;
  gap: 22px;
}

.g2 {
  grid-template-columns: 1fr;
}

.g3 {
  grid-template-columns: 1fr;
}

.g4 {
  grid-template-columns: 1fr 1fr;
}

.g5 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 720px) {
  .g2 {
    grid-template-columns: 1fr 1fr;
  }
  .g3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .g3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.2s;
}

.card:hover {
  border-color: #cfe0da;
  box-shadow: 0 18px 40px rgba(6, 35, 28, 0.09);
  transform: translateY(-3px);
}

.card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.card.alt .ic {
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--body);
  font-size: 0.95rem;
}

.card a.more {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

.card a.more:hover {
  color: var(--orange);
}

.head-block {
  max-width: 60rem;
  margin-bottom: 52px;
}

.head-block h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  margin-top: 14px;
}

.head-block p {
  margin-top: 16px;
  color: var(--body);
  font-size: 1.08rem;
}

.head-block.center {
  margin-left: auto;
  margin-right: auto;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 820px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: #fff;
  padding: 34px 26px;
}

.stat .n {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
}

.stat .l {
  margin-top: 6px;
  color: var(--body);
  font-size: 0.95rem;
}

/* Split */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split.rev .txt {
    order: 2;
  }
}

.split .art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 5 / 4;
  background: #06231c;
  width: 100%;
}

.split .art img,
.split .art .hero-graphic-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.split h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
}

.split p {
  margin-top: 16px;
  color: var(--body);
  font-size: 1.05rem;
}

.blist {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blist li {
  display: flex;
  gap: 12px;
  color: #2d3a38;
}

.blist li::before {
  display: none;
  content: '';
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(14, 92, 73, 0.1);
  background-image: linear-gradient(135deg, var(--green), var(--green-l));
  mask: none;
  position: relative;
}

.blist li b {
  font-weight: 600;
}

.tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Feature Rows */
.frow {
  display: grid;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 820px) {
  .frow {
    grid-template-columns: 64px 1fr 1.1fr;
    gap: 36px;
    align-items: start;
  }
}

.frow .fn {
  font-weight: 800;
  color: var(--orange);
  font-size: 1.1rem;
}

.frow h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.frow .fb {
  color: var(--body);
}

.frow ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frow ul li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: #2d3a38;
}

/* CTA */
.cta {
  background: var(--bg-green);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.cta .wrap {
  position: relative;
  z-index: 1;
  padding: 88px 24px;
  text-align: center;
}

.cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  max-width: 20ch;
  margin: 0 auto;
}

.cta p {
  margin: 18px auto 0;
  max-width: 40rem;
  color: #cfe3db;
  font-size: 1.1rem;
}

.cta .btns {
  justify-content: center;
  margin-top: 32px;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(239, 128, 24, 0.3), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(18, 121, 95, 0.55), transparent 45%);
  z-index: 0;
}

/* Prose (About/News/Blog) */
.prose {
  max-width: 44rem;
}

.prose h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 36px 0 12px;
}

.prose p {
  margin-top: 14px;
  color: var(--body);
}

.tiles {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: 0.2s;
}

.tile:hover {
  box-shadow: 0 18px 40px rgba(6, 35, 28, 0.09);
  transform: translateY(-3px);
}

.tile .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile.alt .thumb {
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile .body {
  padding: 22px;
}

.tile .date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.tile h3 {
  font-size: 1.08rem;
  margin-top: 8px;
}

/* Contact Form */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}

.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 16px 0 6px;
  color: #2d3a38;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-row .k {
  font-weight: 700;
  min-width: 120px;
}

/* Powered by Sanciti Badge */
.sanciti-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0c0c0c;
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
}

.sanciti-badge img {
  height: 22px;
}

.sanciti-badge span {
  color: #cdb473;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Footer */
footer.ft {
  background: var(--bg-green);
  color: #cfe3db;
  padding: 72px 0 40px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ft-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .ft-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.ft-grid img {
  height: 40px;
  margin-bottom: 16px;
}

.ft-about {
  font-size: 0.92rem;
  color: #a9c6bd;
  max-width: 22rem;
}

.ft h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ft ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft ul a {
  color: #bcd6cc;
  font-size: 0.9rem;
}

.ft ul a:hover {
  color: #fff;
}

.ft-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8fb0a6;
}

.ft-social {
  display: flex;
  gap: 16px;
}

.ft-social a:hover {
  color: #fff;
}

/* People/Leadership */
.person {
  text-align: center;
}

.person .ph {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.person .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.person h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.person p {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 2px;
}

.person.lead-ceo {
  max-width: 320px;
  margin: 0 auto;
}

.logos {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.logo-tile {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: 0.2s;
}

.logo-tile:hover {
  box-shadow: 0 14px 30px rgba(6, 35, 28, 0.09);
}

.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.jobdiva-frame {
  width: 100%;
  min-height: 1200px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.jobs-section {
  padding-top: 24px;
  padding-bottom: 40px;
}

.jobs-section {
  padding-top: 0;
  padding-bottom: 32px;
}







