/* --- Reset & Variables --- */
:root {
  --font-family: "Inter", sans-serif;
  --color-text-main: #121212;
  --color-text-light: #5F5C64;
  --color-dark-green: #4A6117;
  --color-darker-green: #384e20;
  --color-cream-bg: #EDEFE8;
  --color-yellow-bg: #E8EC67;
  --color-yellow-icon: #E8EC67;
}

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

body {
  font-family: var(--font-family);
  color: var(--color-text-main);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.about_container {
  /* max-width: 1240px; */
  margin: 0 0;
  padding: 64px 96px;
  align-items: center;
}

.section-padding {
  padding: 40px 0;
}

.product-value {
  background: url("./assets/pricing-bg-2.png") no-repeat center center/cover;
}

.bg-cream {
  background-color: var(--color-cream-bg);
}

.bg-white {
  background-color: #fff;
}

/* --- Navigation --- */
.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
  z-index: 100;
}

.nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.bag-icon {
  width: 16px;
  height: 12px;
  background: #000;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  margin: 0 1px;
}

.bag-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 4px;
  background: var(--color-dark-green);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 32px;
  margin: auto 10px;
  white-space: nowrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link.active {
  font-weight: 700;
  color: #000;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}

.login-link {
  font-weight: 600;
  font-size: 14px;
}

.btn-nav {
  background: #ffffff;
  color: var(--color-dark-green);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- 1. About Hero --- */
.about-hero {
  /* Using a gradient overlay on a placeholder image background */
  background: linear-gradient(180deg, rgba(74, 97, 23, 0.00) -66.39%, #4A6117 90.88%), url("./assets/about-us-hero.png") no-repeat;
  background-position: center, center;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: end;
  justify-content: start;
  height: 720px;
}

.about-hero-content {
  max-width: 612px;
}

.about-hero h1 {
  font-style: normal;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 56px;
  letter-spacing: -2px;
}

.about-hero p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* --- 2. Identity --- */
.identity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.identity-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.identity-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.identity-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  padding: 60px 0;
}

.mv-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  border-top: 0.4px solid #E3E3E3;
}

.mv-card {
  border-left: 4px solid var(--color-dark-green);
  padding-left: 24px;
}

.mv-card h3 {
  color: var(--color-dark-green);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mv-card p {
  color: #555;
  line-height: 1.6;
}

/* --- 3. Product's Value --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: #666;
}

.values-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  width: calc(25% - 18px);
  /* 4 per row approximately */
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  flex-grow: 1;
}

.icon-box-yellow {
  width: 40px;
  height: 40px;
  background: var(--color-yellow-icon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  margin-bottom: 16px;
}

.icon-box-yellow svg {
  width: 20px;
  height: 20px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #555;
}

/* --- 4. What WorkMerate Can Do --- */
.features-layout {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 128px;
}

.feat-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 294px;
  height: 100%;
  justify-content: center;
  /* align-items: flex-start; */
  /* flex-shrink: 0; */
}

.feat-text h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.feat-text p {
  color: #5F5C64;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.feat-image {
  border-radius: 16px;
  background: url('./assets/about-us-two.png') lightgray 50% / cover no-repeat;
  width: 506px;
}

.accordion-section-wrap {
  display: flex;
  flex-direction: column;
}

.final__accordion {
  height: 100%;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.accordion__item {
  display: flex;
  width: fill-available;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  background: #4A6117;
}

.accordion__title {
  position: relative;
  width: 100%;
  color: #FFF !important;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion__content {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}


.final__accordion .accordion__content {
  display: block;
  padding: 0;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.5s ease, padding 0.3s linear;
  transition: height 0.5s ease, padding 0.3s linear;
}


.final__accordion .accordion__content p {
  margin: 0;
}


.final__accordion .accordion__content.is-open {
  height: fit-content;
}


.final__accordion .accordion__title::after {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #E8EC67;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.final__accordion .accordion__item:has(.accordion__content.is-open) .accordion__title::after {
  transform: rotate(180deg);
}

/* Slightly darker/lighter for inactive */

/* Big CTA Box */
.big-cta-box {
  background: var(--color-yellow-bg);
  border-radius: 24px;
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-left {
  width: 784px;
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 40px;
  letter-spacing: -1px;
}

.cta-left p {
  margin-bottom: 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #333;
}

.cta-btns {
  display: flex;
  gap: 16px;
}

.btn-dark {
  background: var(--color-dark-green);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #6E8145;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.btn-outline-dark {
  border: 1px solid #4A6117;
  color: #4A6117;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
}

.btn-outline-dark:hover {
  border: 0.4px solid #4A6117;
  background: #fff;
  color: #4A6117;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
}

/* Abstract Arrow Graphic */
.cta-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-right img {
  width: 245px;
  height: 245px;
}

.arrow-graphic {
  /* Simulating the arrow abstractly */
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 80px solid var(--color-dark-green);
  transform: rotate(-45deg);
}

.big-arrow {
  width: 150px;
  height: 150px;
  color: var(--color-dark-green);
}

/* --- Footer --- */
.footer-section {
  background: var(--color-cream-bg);
  padding: 80px 0 30px;
  font-size: 14px;
  color: #333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-links-grid h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links-grid a {
  color: #555;
  display: block;
  margin-bottom: 8px;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-bottom: 0px;
}

.nl-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
  margin-right: 10px;
}

.nl-header {
  display: flex;
  align-items: center;
}

.nl-header-h2 {
  width: 212px;
}

.nl-text {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .identity-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 32px 0;
  }


  .mv-card {
    border-left: 4px solid var(--color-dark-green);
    padding-left: 16px;
  }

  .mv-card h3 {
    color: #4A6117;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }


  .mv-card p {
    color: #5F5C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }

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

  .big-cta-box {
    flex-direction: column;
    padding: 40px;
  }

  .value-card {
    width: calc(50% - 12px);
  }
}

/* mobile screens */
@media (max-width: 600px) {

  .about_container {
    margin: 0 0;
    padding: 24px 24px;
    align-items: center;
  }

  .about-hero-content {
    margin-bottom: 24px;
  }

  .big-cta-box {
    background: var(--color-yellow-bg);
    border-radius: 16px;
    height: fit-content;
    padding: 32px;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }


  .cta-left {
    width: 100%;
  }


  .cta-left h2 {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 32px;
    letter-spacing: -1px;
  }

  .cta-left p {
    margin-bottom: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #333;
    line-height: 22px;
    letter-spacing: 0px;
  }

  .section-padding {
    padding: 0 0;
  }

  .about-hero h1 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }

  .about-hero p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }

  .value-card {
    width: 100%;
    padding: 24px;
    border-radius: 8px;
  }

  .cta-btns {
    flex-direction: column;
    gap: 16px;
  }

  .btn-dark {
    background: var(--color-dark-green);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    font-style: normal;
    align-items: center;
    text-align: center;
    line-height: 20px;
    letter-spacing: 0px;
    border: none;
    cursor: pointer;
  }

  .btn-outline-dark {
    border: 0.4px solid #4A6117;
    color: #4A6117;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    font-style: normal;
    align-items: center;
    text-align: center;
    line-height: 20px;
    letter-spacing: 0px;
    cursor: pointer;
  }

  .cta-right img {
    width: 257px;
    height: 257px;
  }

  .features-layout {
    flex-direction: column;
    margin-bottom: 48px;
    gap: 16px;
  }

  .feat-text {
    width: 294px;
    flex-direction: column;
    gap: 8px;
  }

  .feat-text h2 {
    color: #121212;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
  }

  .feat-text p {
    color: #5F5C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
  }

  .feat-image {
    width: 100%;
    height: 240px;
    border-radius: 8px;
  }


  .accordion__title {
    position: relative;
    width: 100%;
    color: #FFF !important;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .final__accordion .accordion__title::after {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #E8EC67;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }

  .final__accordion {
    width: 100%;
    gap: 12px;
  }

  .accordion__item {
    display: flex;
    width: fill-available;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 16px;
    background: #4A6117;
  }

  .final__accordion .accordion__content p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    margin: 0;
  }

  .section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 auto 32px;
  }

  .section-header h2 {
    color: #121212;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 0px;
  }

  .section-header p {
    color: #5F5C64;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
  }

  .value-card h3 {
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 8px;
  }


  .value-card p {
    color: #5F5C64;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 32px 0;
  }


  .mv-card {
    border-left: 4px solid var(--color-dark-green);
    padding-left: 16px;
  }

  .mv-card h3 {
    color: #4A6117;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }


  .mv-card p {
    color: #5F5C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }


  .identity-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .identity-text h2 {
    color: #121212;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .identity-text p {
    color: #5F5C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nl-form {
    width: 100%;
  }

  .nl-form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-links-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
}