:root {
  --green-900: #09220d;
  --green-700: #0b3a1c;
  --green-500: #0f5a2b;
  --mint-100: #f2f7f2;
  --mint-200: #e7efe8;
  --text-900: #0b1c12;
  --text-600: #3b4d43;
  --text-400: #637268;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(8, 20, 12, 0.12);
  --cta-overlap: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--text-900);
  background: var(--mint-100);
}

a {
  color: inherit;
  text-decoration: none;
}


.hero {
  min-height: 92vh;
  padding: 120px 7vw 90px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(120deg, rgba(9, 34, 13, 0.7), rgba(9, 34, 13, 0.4)),
    url("images/bg1.jpg");
  background-size: cover;
  background-position: center;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 34, 13, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 0;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.nav-shell {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform;
}

.nav-shell.nav-hidden {
  transform: translateY(-140%);
  opacity: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(9, 34, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(8, 20, 12, 0.3);
  backdrop-filter: blur(10px);
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 500;
}

.menu a {
  color: #ffffff;
  position: relative;
  padding: 6px 2px;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: #ffffff;
  transition: width 0.25s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  box-shadow: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  display: block;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #f4c661;
  color: #2d2204;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(8, 20, 12, 0.25);
  white-space: nowrap;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(200px, 0.7fr);
  gap: 40px;
  align-items: center;
  margin-top: 110px;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: #ffffff;
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin: 18px 0 18px;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--green-900);
  color: #ffffff;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(8, 20, 12, 0.2);
}

.btn.ghost {
  background: rgba(9, 34, 13, 0.3);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(8, 20, 12, 0.25);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 22px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-width: 200px;
}

.hero-card-header {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-900);
}

.hero-card-sub {
  color: var(--text-600);
  margin-bottom: 14px;
}

.section {
  padding: 80px 7vw;
}

.section-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.cta-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-700);
  background: rgba(9, 34, 13, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.services .section-tag,
.services h2,
.services .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services .section-inner {
  text-align: center;
}

.services h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services .section-lead {
  max-width: 720px;
}

.services .section-tag {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.services .service-grid,
.services .service-card,
.services .service-body,
.services .service-body h3,
.services .service-body p {
  text-align: left;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 12px;
}

.section p {
  color: var(--text-600);
  line-height: 1.7;
}

.section-lead {
  max-width: 720px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.approach-single {
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 1fr);
}

.about-layout.swap .about-media {
  order: 2;
}

.about-layout.swap .about-content {
  order: 1;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-media.stacked {
  min-height: auto;
  display: grid;
  gap: 16px;
}

.about-media.stacked .about-img.top,
.about-media.stacked .about-img.bottom {
  max-width: 100%;
  margin: 0;
}

.about-media.single {
  min-height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.about-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

.about-img.single {
  max-width: 540px;
  height: 520px;
}

.about-img.top {
  max-width: 360px;
  margin-left: auto;
}

.about-img.bottom {
  max-width: 420px;
  margin-top: -80px;
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.partners-swap .partners-media {
  order: 2;
}

.partners-swap .partners-content {
  order: 1;
}

.partners-media {
  position: relative;
  min-height: 420px;
}

.partners-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

.partners-img.top {
  max-width: 360px;
  margin-left: auto;
}

.partners-img.bottom {
  max-width: 420px;
  margin-top: 25px;
}

.partners-content {
  display: grid;
  gap: 18px;
}

.partners-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f3f6;
  color: var(--text-900);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  width: fit-content;
}

.partners-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.partners-chips span {
  background: var(--white);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text-900);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.partners-chips span:hover {
  background: var(--green-900);
  color: #ffffff;
  transform: translateY(-2px);
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f3f6;
  color: var(--text-900);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  width: fit-content;
}

.about-cards {
  display: grid;
  gap: 16px;
}

.about-cards .about-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  background: #f4f5f7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-cards .about-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.about-cards .about-card p {
  margin: 0;
  color: var(--text-600);
}

.about-cards .about-card:hover {
  background: var(--green-900);
  color: #ffffff;
  transform: translateY(-4px);
}

.about-cards .about-card:hover h3,
.about-cards .about-card:hover p {
  color: #ffffff;
}

.about-cards .about-card:hover .about-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.about-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--green-700);
  box-shadow: var(--shadow);
}

.about-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.about-btn {
  width: fit-content;
  background: #f4c661;
  color: #2d2204;
  margin-bottom: 100px;
  margin-top: 50px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-item p {
  margin: 4px 0 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-700);
  margin-top: 6px;
}

.about-card {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.services {
  position: relative;
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  display: grid;
  gap: 14px;
}

.service-card:hover {
  background: var(--green-900);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8, 20, 12, 0.18);
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.service-image {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
}

.service-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.service-body p {
  margin: 0;
  color: var(--text-600);
}


.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.industry-chips span {
  background: var(--white);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text-900);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.industry-chips span:hover {
  background: var(--green-900);
  color: #ffffff;
  transform: translateY(-2px);
}

.muted {
  background: var(--mint-200);
}

.approach .section-tag {
  margin-bottom: 18px;
}

.approach .section-inner {
  align-items: center;
}

.approach .about-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(8, 20, 12, 0.16);
}

.approach .about-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.approach .about-card p {
  margin: 0;
  color: var(--text-600);
}

.approach .checklist {
  margin-top: 22px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  color: var(--text-600);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 700;
}

.cta-section{

  z-index: 1;
  margin-top: -80px;
}


.cta-panel{
  background: var(--green-900);
  color: #ffffff;
  padding: 34px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
  margin-bottom: calc(-1 * var(--cta-overlap));





  position: relative;
  z-index: 5;
}



.cta-panel-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 12px;
  color: #ffffff;
}


.cta-panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-panel-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
}

.cta-panel-input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.95rem;
}

.cta-panel-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.cta-panel-btn {
  grid-column: span 2;
  background: #f4c661;
  color: #2d2204;
}

.label {
  font-size: 0.8rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.value {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 0.85rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(9, 34, 13, 0.15);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-900);
  background: #f6faf6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(9, 34, 13, 0.12);
}

.form-status {
  min-height: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.success {
  color: var(--green-700);
}

.form-status.error {
  color: #b42318;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.footer{
  padding: calc(40px + var(--cta-overlap)) 7vw 30px;

}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 24px;
}

.footer-brand p {
  margin: 12px 0 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--green-700);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  background: var(--green-900);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 20, 12, 0.2);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 6px;
  color: var(--text-900);
}

.footer-col a,
.footer-col span {
  color: var(--text-600);
}

.footer-bottom {
  border-top: 1px solid rgba(9, 34, 13, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: #ffffff;
  box-shadow: var(--shadow);
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 10;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }


  .cta-panel {
    position: relative;
    z-index: 5;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }


  .cta-panel-form {
    grid-template-columns: 1fr;
  }

  .cta-panel-btn {
    grid-column: 1;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .approach-single {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: auto;
  }

  .about-img.top {
    max-width: 100%;
  }

  .about-img.bottom {
    max-width: 100%;
    margin-top: 16px;
  }

  .partners-layout {
    grid-template-columns: 1fr;
  }

  .partners-swap .partners-media,
  .partners-swap .partners-content {
    order: initial;
  }

  .partners-media {
    min-height: auto;
  }

  .partners-img.top,
  .partners-img.bottom {
    max-width: 100%;
    margin: 0;
    margin-bottom: 25px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  .nav-wrap {
    flex-wrap: wrap;
    row-gap: 12px;
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(9, 34, 13, 0.95);
    border-radius: 16px;
    box-shadow: var(--shadow);
    width: min(70vw, 240px);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease;
    z-index: 5;
  }

  .menu.open {
    opacity: 1;
    transform: translateY(0);
    max-height: 320px;
    padding: 14px 16px;
    pointer-events: auto;
  }

  .nav-cta {
    display: none !important;
  }

  .menu-cta {
    margin-top: 6px;
    background: #f4c661;
    color: #2d2204;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 16px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}



.footer-grid,
.footer-bottom {
  max-width: 1150px;   /* same as .section-inner */
  margin-left: auto;
  margin-right: auto;
}
