@charset "UTF-8";
:root {
  --color-primary: #ed267f;
  --color-secondary: #efe5ed;
  --color-highlighter: #00ffd8;
  --color-highlighter-hover: #00cccc;
  --body-text: #333333;
  --bg-color: #ffffff;
  --color-light-pink: #ffcde4;
  --color-light-grey: #8383a7;
}

.hero-paragraph {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  max-width: 1000px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-paragraph {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero-paragraph {
    font-size: 14px;
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 38px;
  }
}
h1 {
  color: #333333;
  text-transform: uppercase;
  text-align: center;
}
h1 .highlight-text {
  color: #ed267f;
  display: inline;
}

.overline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #ed267f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .overline {
    font-size: 12px;
    gap: 8px;
  }
}
.overline::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #ed267f;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .overline::before {
    width: 10px;
    height: 10px;
  }
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #333333;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 36px;
  }
}
.section-title .highlight {
  color: #ed267f;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .section-content {
    padding-left: 24px;
  }
}
@media (max-width: 480px) {
  .section-content {
    gap: 12px;
    padding-left: 20px;
  }
}
.section-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ed267f;
  border-radius: 2px;
}

.section-content h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #ed267f;
}

.section-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 768px) {
  .section-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .section-text {
    font-size: 14px;
  }
}

.section-content .highlight {
  color: #ed267f;
}

.service-card {
  display: flex;
  gap: 20px;
  padding: 0;
  background: none;
  border-radius: 0;
  transition: none;
}
.service-card__line {
  width: 2px;
  min-width: 2px;
  background-color: #ed267f;
  height: 100%;
}
.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card__content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .service-card__content h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .service-card__content h4 {
    font-size: 18px;
  }
}
.service-card__content h4 {
  color: #333333;
  text-transform: uppercase;
  margin: 0;
}
.service-card__description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .service-card__description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .service-card__description {
    font-size: 14px;
  }
}
.service-card__description {
  color: #333333;
  margin: 0;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.service-card__link:hover {
  color: #ed267f;
  text-decoration: underline;
}

/* =========================================
   GLOBAL TABS COMPONENT
========================================= */
.tabs {
  width: 100%;
}

.tabs__buttons {
  display: flex;
  align-items: center;
  max-width: 560px;
  width: 100%;
  background: #ffcde4;
  padding: 6px;
  border-radius: 50px;
}

.tabs__btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  flex: 1;
  padding: 8px 24px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: #333333;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: normal;
  word-break: break-word;
}
.tabs__btn:hover {
  background: rgba(237, 38, 127, 0.1);
}
.tabs__btn.active {
  background: #ed267f;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.tabs__content {
  width: 100%;
}

.tabs__panel {
  display: none;
  text-align: left;
}
.tabs__panel.active {
  display: block;
}

@font-face {
  font-family: "Poppins";
  font-weight: 500;
  src: url("assets/fonts/Poppins-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  src: url("assets/fonts/Poppins-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  font-weight: 500;
  src: url("assets/fonts/DM-Sans-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  src: url("assets/fonts/DM-Sans-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container, .services-section .container, .brand-guidelines .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 30px;
}
@media (max-width: 480px) {
  .container, .services-section .container, .brand-guidelines .container {
    padding: 0px 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: fit-content;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn--primary {
  background-color: #ed267f;
  color: #ffffff;
  border: none;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #ffcde4;
  color: #333333;
}
.btn--cta {
  background-color: #00ffd8;
  color: #333333;
  border: none;
}
.btn--cta:hover, .btn--cta:focus {
  background-color: #333333;
  color: #ffffff;
}
.btn--secondary {
  background-color: #ffffff;
  color: #ed267f;
  border: 1px solid #ed267f;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: #ed267f;
  color: #ffffff;
}
.btn--label {
  background-color: #efe5ed;
  color: #ed267f;
  border: 1px solid #efe5ed;
}

.brand-guidelines {
  background-color: #ffffff;
  padding: 80px 0;
}
.brand-guidelines .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.brand-guidelines h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .brand-guidelines h1 {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines h1 {
    font-size: 38px;
  }
}
.brand-guidelines h1 {
  color: #333333;
  text-transform: uppercase;
}
.brand-guidelines h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .brand-guidelines h2 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines h2 {
    font-size: 36px;
  }
}
.brand-guidelines h2 {
  color: #333333;
  text-transform: uppercase;
}
.brand-guidelines h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .brand-guidelines h3 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines h3 {
    font-size: 22px;
  }
}
.brand-guidelines h3 {
  color: #333333;
  text-transform: uppercase;
}
.brand-guidelines h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .brand-guidelines h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines h4 {
    font-size: 18px;
  }
}
.brand-guidelines h4 {
  color: #333333;
  text-transform: uppercase;
}
.brand-guidelines h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .brand-guidelines h5 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines h5 {
    font-size: 12px;
  }
}
.brand-guidelines h5 {
  color: #333333;
}
.brand-guidelines p.body-light {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .brand-guidelines p.body-light {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines p.body-light {
    font-size: 14px;
  }
}
.brand-guidelines p.body-light {
  color: #333333;
}
.brand-guidelines p.body-regular {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .brand-guidelines p.body-regular {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines p.body-regular {
    font-size: 14px;
  }
}
.brand-guidelines p.body-regular {
  color: #333333;
}
.brand-guidelines p.body-medium {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .brand-guidelines p.body-medium {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines p.body-medium {
    font-size: 14px;
  }
}
.brand-guidelines p.body-medium {
  color: #333333;
}
.brand-guidelines p.body-bold {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .brand-guidelines p.body-bold {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .brand-guidelines p.body-bold {
    font-size: 14px;
  }
}
.brand-guidelines p.body-bold {
  color: #333333;
}
.brand-guidelines .button-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.brand-guidelines .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.brand-guidelines .btn--primary {
  background-color: #ed267f;
  color: #ffffff;
  border: none;
}
.brand-guidelines .btn--primary:hover, .brand-guidelines .btn--primary:focus {
  background-color: #ffcde4;
  color: #333333;
}
.brand-guidelines .btn--cta {
  background-color: #00ffd8;
  color: #333333;
  border: none;
}
.brand-guidelines .btn--cta:hover, .brand-guidelines .btn--cta:focus {
  background-color: #333333;
  color: #ffffff;
}
.brand-guidelines .btn--secondary {
  background-color: #ffffff;
  color: #ed267f;
  border: 1px solid #ed267f;
}
.brand-guidelines .btn--secondary:hover, .brand-guidelines .btn--secondary:focus {
  background-color: #ed267f;
  color: #ffffff;
}
.brand-guidelines .btn--label {
  background-color: #efe5ed;
  color: #ed267f;
  border: 1px solid #efe5ed;
}
.brand-guidelines .brand-links {
  margin-top: 40px;
}
.brand-guidelines .brand-links .link-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.brand-guidelines .brand-links .link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-guidelines .brand-links .link--default {
  color: #ed267f;
  text-decoration: underline;
}
.brand-guidelines .brand-links .link--default:focus {
  outline: 1px solid #00ffd8;
  outline-offset: 2px;
}
.brand-guidelines .brand-links .link--primary {
  color: #ed267f;
  text-decoration: underline;
}
.brand-guidelines .brand-links .link--primary:hover, .brand-guidelines .brand-links .link--primary:focus {
  color: #00ffd8;
}

.hero-home {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-home {
    padding: 60px 0;
  }
}

.hero-home__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero-home__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-home__content {
    text-align: center;
    align-items: center;
  }
}

.hero-home__visual {
  margin-top: 50px;
}
.hero-home__visual .hero-illustration-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-home__visual:hover img {
  transform: scale(1.02);
}

.who-we-are-wrapper {
  display: grid;
  padding: 0px 0px 80px;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 768px) {
  .who-we-are-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .who-we-are-wrapper {
    gap: 30px;
    padding: 0px 0px 60px;
  }
}

.who-we-are-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 480px) {
  .who-we-are-left {
    gap: 16px;
  }
}

.who-we-are-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 480px) {
  .who-we-are-right {
    gap: 24px;
  }
}

.what-next {
  max-width: 500px;
}

.how-do-we-help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .how-do-we-help__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .how-do-we-help__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.services-section {
  background-color: #ffffff;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
}
.services-section .services-header {
  max-width: 100%;
}
@media (max-width: 768px) {
  .services-section .services-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .services-section .services-header {
    margin-bottom: 30px;
  }
}
.services-section .services-header .section-title {
  max-width: 1000px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .services-section .services-header .section-title {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .services-section .services-header .section-title {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.3;
  }
}
.services-section .services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 768px) {
  .services-section .services-wrapper {
    grid-template-columns: 1fr;
  }
}
.services-section .services-left {
  position: relative;
}
@media (max-width: 480px) {
  .services-section .services-left {
    order: 1;
  }
}
.services-section .services-left .services-illustration {
  max-width: 500px;
}
@media (max-width: 480px) {
  .services-section .services-left .services-illustration {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.services-section .services-left .services-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
.services-section .services-left .services-illustration:hover img {
  transform: scale(1.02);
}
.services-section .services-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .services-section .services-right {
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .services-section .services-right {
    order: 2;
    gap: 20px;
  }
}
.services-section .services-right .services-illustration {
  align-self: flex-end;
  max-width: 150px;
}
@media (max-width: 768px) {
  .services-section .services-right .services-illustration {
    max-width: 130px;
  }
}
@media (max-width: 480px) {
  .services-section .services-right .services-illustration {
    display: none;
  }
}
.services-section .services-right .services-illustration img {
  width: 150px;
  height: auto;
  display: block;
}
.services-section .services-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 50px;
}
@media (max-width: 768px) {
  .services-section .services-list {
    gap: 20px 24px;
  }
}
@media (max-width: 480px) {
  .services-section .services-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.services-section .service-item {
  position: relative;
  padding-bottom: 16px;
}
.services-section .service-item .service-link {
  text-decoration: none;
  display: block;
  color: inherit;
}
@media (max-width: 480px) {
  .services-section .service-item {
    padding-bottom: 12px;
  }
}
.services-section .service-item h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .services-section .service-item h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .services-section .service-item h3 {
    font-size: 18px;
  }
}
.services-section .service-item h3 {
  color: #333333;
  margin: 0;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.services-section .service-item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ed267f;
  transition: width 0.3s ease;
}
.services-section .service-item.active h3::after {
  width: 100%;
}
.services-section .service-item.hovered h3::after {
  width: 100%;
}
.services-section .services-list.hovered .service-item.active:not(.hovered) h3::after {
  width: 0;
}

.approach-section {
  position: relative;
  overflow: hidden;
}
.approach-section::before, .approach-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ffcde4;
}
@media (max-width: 1024px) {
  .approach-section::before, .approach-section::after {
    display: none;
  }
}

.approach-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  position: relative;
}
@media (min-width: 1024px) {
  .approach-wrapper {
    grid-template-columns: 0.7fr 1.1fr;
  }
}

.approach-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #ffcde4;
}
@media (max-width: 1024px) {
  .approach-wrapper::after {
    display: none;
  }
}

.approach-header {
  position: relative;
}
@media (min-width: 1024px) {
  .approach-header {
    position: sticky;
    top: 120px;
  }
}

.approach-header .section-title {
  margin-top: 24px;
}

.approach-steps .service-card__content h3 {
  font-weight: 500;
}

.approach-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-steps {
  display: grid;
  gap: 0;
  border-left: 1px solid #ffcde4;
  background: var(--bg-color);
  border-radius: 0;
}
@media (min-width: 640px) {
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
  }
}
@media (max-width: 1024px) {
  .approach-steps {
    border: 1px solid #ffcde4;
  }
}

.step-card {
  padding: 20px;
  position: relative;
  background: var(--bg-color);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease;
}
.step-card:hover {
  background: rgba(237, 38, 127, 0.03);
  transform: translateY(-1px);
}
.step-card {
  border-bottom: 1px solid #ffcde4;
}
@media (max-width: 768px) {
  .step-card {
    padding: 28px;
    min-height: 200px;
  }
  .step-card:nth-child(5) {
    border-bottom: none;
  }
  .step-card::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .step-card {
    padding: 24px;
    min-height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .step-card {
    border-bottom: 1px solid #ffcde4;
  }
  .step-card:nth-child(1), .step-card:nth-child(2), .step-card:nth-child(3) {
    border-right: 1px solid #ffcde4;
  }
  .step-card:nth-child(3) {
    border-bottom: none;
  }
  .step-card::after {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .step-card {
    border-bottom: 1px solid #ffcde4;
    border-right: 1px solid #ffcde4;
  }
  .step-card:nth-child(4), .step-card:nth-child(5) {
    border-right: none;
  }
  .step-card:nth-child(3) {
    border-bottom: none;
  }
  .step-card::after {
    display: none;
  }
}
@media (min-width: 1280px) {
  .step-card {
    border-bottom: 1px solid #ffcde4;
    border-right: 1px solid #ffcde4;
  }
  .step-card:nth-child(4), .step-card:nth-child(5) {
    border-right: none;
  }
  .step-card:nth-child(3) {
    border-bottom: none;
  }
  .step-card:nth-child(4), .step-card:nth-child(5) {
    border-bottom: none;
  }
  .step-card:nth-child(4)::after, .step-card:nth-child(5)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background: #ffcde4;
  }
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number {
  font-family: "DM Sans", sans-serif;
  padding-top: 10px;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .step-number {
    font-size: 13px;
    margin-bottom: 14px;
  }
}

.approach-illustration {
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .approach-illustration {
    padding: 60px 0px;
  }
}
.approach-illustration img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.05));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .approach-illustration img {
    max-width: 100%;
  }
}
.approach-illustration:hover img {
  transform: scale(1.02);
}
.approach-illustration::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .approach-illustration::after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .approach-illustration::after {
    width: 70px;
    height: 70px;
  }
}

.approach-slogan {
  margin: 0px auto;
  padding: 40px 48px;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  position: relative;
  max-width: 900px;
  width: 100%;
}
@media (max-width: 1024px) {
  .approach-slogan {
    padding: 36px 40px;
  }
}
@media (max-width: 768px) {
  .approach-slogan {
    padding: 32px 32px;
  }
}
@media (max-width: 480px) {
  .approach-slogan {
    padding: 28px 24px;
    border-left-width: 2px;
    border-radius: 0 6px 6px 0;
  }
}
.approach-slogan .slogan-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-text);
  font-style: italic;
  margin: 0;
  position: relative;
  padding-left: 32px;
  max-width: 900px;
}
@media (max-width: 768px) {
  .approach-slogan .slogan-text {
    font-size: 16px;
    line-height: 1.65;
    padding-left: 24px;
  }
}
.approach-slogan .slogan-text::before {
  content: '"';
  position: absolute;
  left: -16px;
  top: -20px;
  font-size: 72px;
  color: var(--color-primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .approach-slogan .slogan-text::before {
    font-size: 64px;
    top: -18px;
    left: -14px;
  }
}
@media (max-width: 768px) {
  .approach-slogan .slogan-text::before {
    font-size: 56px;
    top: -16px;
    left: -12px;
  }
}
@media (max-width: 480px) {
  .approach-slogan .slogan-text::before {
    font-size: 48px;
    top: -14px;
    left: -10px;
  }
}

/**
 * Industries Section - Enhanced Carousel
 * Matches Figma design with borders, card numbers, and responsive behavior
 * FIXED: Mobile horizontal scroll issue - proper width calculation
 */
/* ========================================
    SECTION CONTAINER
    ======================================== */
.industries-section {
  padding: 80px 0 0px;
  background: #ffffff;
  position: relative;
  border-bottom: 1px solid #efe5ed;
}

/* ========================================
    MAIN WRAPPER - TWO COLUMN LAYOUT
    ======================================== */
.industries-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: start;
}
.industries-wrapper .overline {
  margin-bottom: 24px;
}

/* ========================================
    RIGHT SIDE - CAROUSEL CONTAINER
    ======================================== */
.industries-content {
  position: relative;
}

.industries-carousel-wrapper {
  position: relative;
}

.industries-carousel {
  overflow: hidden;
  position: relative;
}

.industries-track {
  display: flex;
  gap: 24px;
  width: 100%;
  transition: transform 0.4s ease;
}

/* ========================================
    INDUSTRY CARDS
    ======================================== */
.industry-card {
  flex: 0 0 calc((100% - 48px) / 3);
  border-left: 1px solid #ffcde4;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.industry-card__number {
  font-size: 16px;
  font-weight: 500;
  color: #ed267f;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 1px;
}

.industry-card__illustration {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
}
.industry-card__illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.industry-card__illustration:hover img {
  transform: scale(1.02);
}

.industry-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .industry-card__title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .industry-card__title {
    font-size: 18px;
  }
}
.industry-card__title {
  color: #333333;
  text-transform: uppercase;
}

.industry-card__description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .industry-card__description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .industry-card__description {
    font-size: 14px;
  }
}
.industry-card__description {
  color: #333333;
}

/* ========================================
    NAVIGATION ARROWS
    ======================================== */
.industries-nav-btn {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #ed267f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ed267f;
  z-index: 5;
}
.industries-nav-btn svg {
  width: 24px;
  height: 24px;
}

.industries-nav-btn:hover:not(:disabled) {
  background: #ed267f;
  color: #ffffff;
}

.industries-nav-btn:disabled {
  cursor: not-allowed;
  border-color: #ed267f;
  color: #ed267f;
}

.industries-nav-btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.industries-nav-btn--next {
  right: 0;
  transform: translate(50%, -50%);
}

.industries-nav-btn:focus-visible {
  outline: 2px solid #ed267f;
  outline-offset: 4px;
}

@media (max-width: 1440px) {
  .industries-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ========================================
    TABLET STYLES (2 CARDS)
    ======================================== */
@media (max-width: 1024px) {
  .industries-content {
    overflow: hidden;
  }
  .industries-track {
    gap: 24px;
  }
  .industry-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  .industries-nav-btn--prev {
    left: 0;
    transform: translateY(-50%);
  }
  .industries-nav-btn--next {
    right: 0;
    transform: translateY(-50%);
  }
}
/* ========================================
    MOBILE STYLES (1 CARD) - FIXED
    ======================================== */
@media (max-width: 768px) {
  .industries-section {
    padding: 60px 0 0px;
    border-bottom: none;
  }
  .industries-wrapper {
    grid-template-columns: 1fr;
  }
  .industries-content {
    overflow: hidden;
  }
  .industries-carousel {
    width: 100%;
    overflow: hidden;
  }
  .industries-track {
    gap: 0;
  }
  .industry-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    border-left: none;
  }
  .industry-card__number {
    text-align: center;
  }
  .industry-card__illustration {
    height: 400px;
  }
  .industry-card__content {
    justify-content: center;
  }
  .industries-nav-btn {
    width: 36px;
    height: 36px;
  }
  .industries-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  .industries-nav-btn--prev {
    left: 0px;
  }
  .industries-nav-btn--next {
    right: 0px;
  }
}
/* ========================================
    SMALL MOBILE ≤ 480px
    ======================================== */
@media (max-width: 480px) {
  .industry-card__illustration {
    height: 250px;
  }
}
.customer-stories-section {
  padding: 80px 0px;
  background-color: var(--bg-color);
}
@media (max-width: 768px) {
  .customer-stories-section {
    padding: 60px 0;
  }
}

.customer-stories-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .customer-stories-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .customer-stories-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cs-card {
  background-color: #efe5ed;
  border-radius: 0px 32px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: all 0.3s ease;
  min-height: 420px;
}
.cs-card:hover {
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .cs-card {
    padding: 32px 24px;
    gap: 28px;
    min-height: auto;
  }
}
.cs-card .cs-card-stat {
  margin-top: auto;
}

.cs-card-person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0px 24px 0px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
@media (max-width: 480px) {
  .cs-card-person {
    padding-bottom: 20px;
  }
}

.cs-person-image {
  width: 80px;
  height: 80px;
}
.cs-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .cs-person-image {
    width: 56px;
    height: 56px;
  }
}

.cs-person-info {
  flex: 1;
}

.cs-person-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  margin: 0 0 4px 0;
}
@media (max-width: 480px) {
  .cs-person-name {
    font-size: 15px;
  }
}

.cs-person-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  margin: 0;
}
@media (max-width: 480px) {
  .cs-person-title {
    font-size: 13px;
  }
}

.cs-card-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-stat-number {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0;
}
@media (max-width: 768px) {
  .cs-stat-number {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .cs-stat-number {
    font-size: 24px;
  }
}

.cs-stat-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}
@media (max-width: 480px) {
  .cs-stat-description {
    font-size: 13px;
  }
}

.cs-mobile-nav {
  display: none;
}

.cs-slider {
  display: contents;
}
@media (max-width: 768px) {
  .cs-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 768px) {
  .customer-stories-cards {
    position: relative;
  }
  .cs-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .cs-mobile-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .cs-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    font-size: 20px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    z-index: 10;
  }
  .cs-nav-btn:hover {
    background: var(--color-primary);
    color: white;
  }
  .cs-nav-btn svg {
    width: 18px;
    height: 18px;
    display: block;
  }
  .cs-prev {
    left: -18px;
  }
  .cs-next {
    right: -18px;
  }
}
.why-choose-section {
  padding: 80px 0px 0px;
  background-color: var(--bg-color);
}
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0px 0px;
  }
}

.why-choose-header {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-choose-cards {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}
@media (max-width: 768px) {
  .why-choose-cards {
    flex-direction: column;
  }
}

.why-choose-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 0% 24px;
  background-color: var(--color-secondary);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 320px;
  flex: 1;
  transition: all 0.5s ease;
}
.why-choose-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
}
@media (max-width: 768px) {
  .why-choose-card {
    height: auto;
  }
}
.why-choose-card .why-choose-card-description {
  display: none;
  margin-top: 12px;
}
.why-choose-card .why-choose-card-title {
  margin-top: auto;
  text-transform: uppercase;
}
.why-choose-card:hover .why-choose-card-description, .why-choose-card.active .why-choose-card-description {
  display: block;
}
.why-choose-card:hover, .why-choose-card.active {
  flex: 2;
  background-color: var(--body-text);
}
.why-choose-card:hover .why-choose-card-title, .why-choose-card.active .why-choose-card-title {
  color: var(--bg-color);
}
.why-choose-card:hover .why-choose-card-description, .why-choose-card.active .why-choose-card-description {
  opacity: 0.9;
  transform: translateY(0);
  color: var(--bg-color);
}

/* MOBILE — description always visible */
@media (max-width: 768px) {
  .why-choose-card .why-choose-card-description {
    display: block;
  }
}
.why-choose-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  flex-grow: 0;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-choose-card-icon img,
.why-choose-card-icon svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .why-choose-card-icon {
    width: 40px;
    height: 40px;
  }
}

.why-choose-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--body-text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .why-choose-card-title {
    font-size: 18px;
  }
}

.why-choose-card-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-text);
  opacity: 0.85;
}
@media (max-width: 480px) {
  .why-choose-card-description {
    font-size: 14px;
  }
}

.contact-hero-section {
  background-color: #ffffff;
  position: relative;
  margin-bottom: -250px;
}
@media (max-width: 768px) {
  .contact-hero-section {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .contact-hero-section {
    margin-bottom: 0;
  }
}

.contact-form-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  position: relative;
  z-index: 4;
}
@media (max-width: 768px) {
  .contact-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-form-container {
  background-color: #efe5ed;
  padding: 60px 50px;
  border-radius: 0;
}
.contact-form-container .contact-grid {
  display: block;
  gap: 0;
}
.contact-form-container .contact-grid .contact-right {
  padding: 0;
}
@media (max-width: 1024px) {
  .contact-form-container {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .contact-form-container {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .contact-form-container {
    padding: 30px 24px;
  }
}

.contact-services-list {
  list-style: none;
  margin-bottom: 40px;
}
.contact-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #333333;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .contact-services-list li {
    margin: 20px 0px;
    font-size: 14px;
  }
}

.consultation-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .consultation-heading {
    font-size: 16px;
  }
}

.consultation-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .consultation-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .consultation-options {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.consultation-options .consultation-btn {
  padding: 14px;
  background-color: transparent;
  border: none;
  border-right: 2px solid #ed267f;
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.consultation-options .consultation-btn:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .consultation-options .consultation-btn {
    border-right: none;
  }
  .consultation-options .consultation-btn:nth-child(odd) {
    border-right: 2px solid #ed267f;
  }
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #8383a7;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #efe5ed;
  outline: none;
  transition: border-color 0.3s ease;
}
@media (max-width: 480px) {
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    padding: 14px 18px;
    font-size: 14px;
  }
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #8383a7;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #ed267f;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-btn {
  display: flex;
  justify-content: center;
}
.contact-form .form-response {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  display: none;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}
.contact-form .form-response.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact-form .form-response.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-hero-content {
  position: relative;
  height: 100%;
  min-height: 600px;
}
@media (max-width: 1024px) {
  .contact-hero-content {
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .contact-hero-content {
    display: none;
  }
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .contact-hero-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .contact-hero-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.service-hero-wrapper {
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.what-we-do-wrapper {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 768px) {
  .what-we-do-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .what-we-do-wrapper {
    gap: 30px;
    margin-bottom: 60px;
  }
}

.wwd-slider-wrapper {
  font-family: "DM Sans", sans-serif;
  position: relative;
  margin-top: 48px;
  padding: 0;
  overflow: visible;
}

.wwd-slider {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .wwd-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .wwd-slider {
    grid-template-columns: 1fr;
  }
}

.wwd-slider--active {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.wwd-slider--active::-webkit-scrollbar {
  display: none;
}
.wwd-slider--active .wwd-card {
  scroll-snap-align: start;
}
@media (min-width: 1025px) {
  .wwd-slider--active .wwd-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (max-width: 1024px) {
  .wwd-slider--active .wwd-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .wwd-slider--active .wwd-card {
    flex: 0 0 100%;
  }
}

.wwd-card {
  display: flex;
  border: 1px solid #333333;
  border-radius: 0px 50px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex-direction: column;
  gap: 24px;
}
.wwd-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ed267f;
}
@media (max-width: 768px) {
  .wwd-card {
    padding: 20px;
  }
}

.wwd-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .wwd-card__title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .wwd-card__title {
    font-size: 18px;
  }
}
.wwd-card__title {
  text-transform: uppercase;
  color: #333333;
  letter-spacing: 0.02em;
}

.wwd-card__desc {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .wwd-card__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .wwd-card__desc {
    font-size: 14px;
  }
}
.wwd-card__desc {
  color: #333333;
  margin: 0;
}

.section-text--bold {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .section-text--bold {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .section-text--bold {
    font-size: 14px;
  }
}
.section-text--bold {
  color: #333333;
  border-left: 3px solid #ed267f;
  padding-left: 16px;
  margin-bottom: 16px;
}

.wwd-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ed267f;
  background: #ffffff;
  color: #ed267f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.wwd-btn:hover {
  background: #ed267f;
  color: #ffffff;
}
.wwd-btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.wwd-btn--next {
  right: 0;
  transform: translate(50%, -50%);
}
.wwd-btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 768px) {
  .wwd-btn {
    width: 36px;
    height: 36px;
  }
}

.how-it-works-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }
}

.hiw-header .overline {
  margin-bottom: 24px;
}

.hiw-steps {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hiw-steps .hiw-step + .hiw-step {
  border-left: 1px solid #ffcde4;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .hiw-steps .hiw-step:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }
  .hiw-steps .hiw-step:nth-child(2) {
    border-left: 1px solid #efe5ed;
    padding-left: 32px;
  }
  .hiw-steps .hiw-step:nth-child(3),
  .hiw-steps .hiw-step:nth-child(4) {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
  .hiw-steps .hiw-step + .hiw-step {
    border-left: none;
    padding-left: 0;
    margin-top: 32px;
  }
}

.hiw-step {
  padding-right: 32px;
}
@media (max-width: 600px) {
  .hiw-step {
    padding-right: 0;
  }
}

.hiw-steps .hiw-step .step-number {
  margin-bottom: 16px;
}

.hiw-step__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  margin: 24px 0px;
}
.hiw-step__icon svg {
  width: 60px;
  height: 60px;
  color: #ed267f;
}

.hiw-step h4 {
  margin: 24px 0px;
}

.hiw-step .service-card__description {
  margin: 0;
}

/* THIS makes bullets align visually under highlight */
.why-matters-section .who-we-are-wrapper {
  padding-bottom: 0;
}

.why-matters-list {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .why-matters-list {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .why-matters-list {
    font-size: 14px;
  }
}
.why-matters-list {
  color: #333333;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
.why-matters-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.why-matters-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}
.why-matters-list li span {
  line-height: 1.6;
}

.partner-with-studio-forge {
  background: #ffcde4;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .partner-with-studio-forge {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .partner-with-studio-forge {
    padding: 60px 0;
  }
}

.partner-with-studio-forge-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .partner-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .partner-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.partner-card {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 0px 50px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  height: 300px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-8px);
}
.partner-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ed267f;
}
.partner-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .partner-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .partner-card h3 {
    font-size: 18px;
  }
}
.partner-card h3 {
  text-transform: uppercase;
  color: #ed267f;
}
.partner-card p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .partner-card p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .partner-card p {
    font-size: 14px;
  }
}
.partner-card p {
  color: #333333;
}
.partner-card .btn {
  margin-top: auto;
}

.partner-slider-btn {
  display: none;
}

.partner-cards-slider-wrapper {
  position: relative;
}
.partner-cards-slider-wrapper .partner-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ed267f;
  background: #ffffff;
  color: #ed267f;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.partner-cards-slider-wrapper .partner-slider-btn:hover {
  background: #ed267f;
  color: #ffffff;
}
.partner-cards-slider-wrapper .partner-slider-btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.partner-cards-slider-wrapper .partner-slider-btn--next {
  right: 0;
  transform: translate(50%, -50%);
}
.partner-cards-slider-wrapper .partner-slider-btn--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .partner-cards-slider {
    overflow: hidden;
  }
  .partner-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  .partner-card {
    flex: 0 0 100%;
  }
  .partner-cards-slider-wrapper .partner-slider-btn {
    display: flex;
    width: 36px;
    height: 36px;
  }
}
.cs-hero {
  padding: 80px 0px;
}
@media (max-width: 768px) {
  .cs-hero {
    padding: 60px 0px;
  }
}
.cs-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .cs-hero__inner {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.cs-hero .cs-hero__content {
  max-width: 800px;
  width: 100%;
}
.cs-hero .cs-hero__content h1 {
  text-align: left;
  margin-bottom: 24px;
}
.cs-hero .hero-paragraph {
  text-align: left;
  margin-bottom: 36px;
}
.cs-hero .cs-video-wrapper {
  position: relative;
  width: 360px;
  height: 640px;
  border-radius: 6px;
  overflow: hidden;
}
.cs-hero .cs-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-hero .cs-video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cs-hero .cs-video-wrapper.is-playing::before {
  opacity: 0;
}
.cs-hero .cs-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cs-hero .cs-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.cs-meta-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background-color: #ffcde4;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cs-meta-item {
  flex: 1;
  min-width: 140px;
  padding: 24px 28px;
}

.cs-meta-label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cs-meta-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cs-meta-label {
    font-size: 14px;
  }
}
.cs-meta-label {
  color: #333333;
  margin-bottom: 6px;
}

.cs-meta-value {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cs-meta-value {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cs-meta-value {
    font-size: 14px;
  }
}
.cs-meta-value {
  color: #ed267f;
}

.cs-summary {
  padding: 0px;
}

.cs-challenge {
  background: #ed267f;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .cs-challenge {
    padding: 60px 0px;
  }
}
.cs-challenge .section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
.cs-challenge .section-text {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.cs-solution {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .cs-solution {
    padding: 60px 0px;
  }
}

.cs-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .cs-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cs-help-grid {
    grid-template-columns: 1fr;
  }
}

.cs-testimonial .section-text {
  font-style: italic;
}
.cs-testimonial__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-testimonial__cite h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cs-testimonial__cite h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .cs-testimonial__cite h4 {
    font-size: 18px;
  }
}
.cs-testimonial__cite h4 {
  color: #333333;
}
.cs-testimonial__cite span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cs-testimonial__cite span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cs-testimonial__cite span {
    font-size: 14px;
  }
}
.cs-testimonial__cite span {
  color: #333333;
  text-transform: uppercase;
}

.cs-more {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .cs-more {
    padding: 0px 0px 60px;
  }
}
.cs-more .section-title {
  margin-bottom: 36px;
}

.cs-archive-hero {
  padding: 80px 0px;
}
@media (max-width: 768px) {
  .cs-archive-hero {
    padding: 60px 0;
  }
}
.cs-archive-hero .overline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.cs-archive-hero .hero-paragraph {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 30px auto;
}
.cs-archive-hero .archive-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .cs-archive-hero .archive-hero-buttons {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .cs-archive-hero .archive-hero-buttons {
    gap: 8px;
  }
}
.cs-archive-hero .archive-hero-buttons a {
  flex-shrink: 0;
}

.cs-archive-body {
  padding: 0px 0 80px;
}
@media (max-width: 768px) {
  .cs-archive-body {
    padding: 0px 0px 60px;
  }
}
.cs-archive-body h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cs-archive-body h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .cs-archive-body h4 {
    font-size: 18px;
  }
}
.cs-archive-body h4 {
  color: #333333;
  text-transform: uppercase;
}
.cs-archive-body .tabs__buttons {
  margin-top: 20px;
  max-width: 400px;
}

.cs-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .cs-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .cs-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cs-archive-grid .cs-archive-card {
  transition: all 0.3s ease;
}
.cs-archive-grid .cs-archive-card:hover {
  transform: translateY(-8px);
}
.cs-archive-grid .cs-archive-card .cs-card__link {
  text-decoration: none;
}
.cs-archive-grid .cs-archive-card :hover {
  color: #ed267f;
}
.cs-archive-grid .cs-card__thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 24px;
}
.cs-archive-grid .cs-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 50px;
  display: block;
}
.cs-archive-grid h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cs-archive-grid h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .cs-archive-grid h4 {
    font-size: 18px;
  }
}
.cs-archive-grid h4 {
  color: #333333;
  text-transform: uppercase;
}

.cs-filter-box {
  border: 1px solid rgba(131, 131, 167, 0.2);
  padding: 12px 16px;
  margin: 24px 0px;
}

.cs-term-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0px 20px 0px;
}

.cs-term-list.cs-hidden {
  display: none;
}

.cs-term-pill {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 24px;
  border: none;
  border-radius: 50px;
  background: rgba(131, 131, 167, 0.2);
  color: #333333;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: normal;
  word-break: break-word;
}
.cs-term-pill:hover {
  background: rgba(131, 131, 167, 0.1);
}
.cs-term-pill.active {
  background: #ed267f;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.cs-filter-actions {
  display: flex;
  justify-content: flex-end;
}

.cs-clear-btn {
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cs-clear-btn {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cs-clear-btn {
    font-size: 14px;
  }
}
.cs-clear-btn {
  color: #333333;
  text-transform: uppercase;
  cursor: pointer;
}
.cs-clear-btn:hover {
  color: #ed267f;
  text-decoration: underline;
}

.partner-with-studio-forge--cta .partner-cards {
  grid-template-columns: repeat(4, 1fr);
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  pointer-events: none;
}
.page-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #efe5ed;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header.menu-open {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.main-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 100px;
  width: auto;
  display: block;
}
.logo .site-title {
  text-decoration: none;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

.nav-menu .menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-menu .menu > li {
  position: relative;
}
.nav-menu .menu > li > a {
  text-decoration: none;
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .nav-menu .menu > li > a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .nav-menu .menu > li > a {
    font-size: 14px;
  }
}
.nav-menu .menu > li > a {
  transition: color 0.3s ease;
  padding: 8px 0;
  display: inline-block;
}
.nav-menu .menu > li > a:hover {
  color: #ed267f;
}
.nav-menu .menu > li.current-menu-item > a, .nav-menu .menu > li.current-menu-parent > a, .nav-menu .menu > li.current-menu-ancestor > a {
  color: #ed267f;
  position: relative;
}
.nav-menu .menu > li.current-menu-item > a::before, .nav-menu .menu > li.current-menu-parent > a::before, .nav-menu .menu > li.current-menu-ancestor > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ed267f;
  border-radius: 2px;
}
.nav-menu .menu > li.has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.nav-menu .menu > li.has-children:hover > a::after, .nav-menu .menu > li.menu-active > a::after {
  transform: rotate(180deg);
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 40px);
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
  list-style: none;
  margin: 0;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  min-width: 240px;
  z-index: 1001;
  width: max-content;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li {
  display: block;
  margin: 0;
  padding: 0;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li > a .menu-icon {
  background: #ffcde4;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li > a .menu-item-content {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li > a .menu-item-text {
  flex: 1;
  color: #333333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li > a:hover {
  background: transparent;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li > a:hover .menu-item-text {
  color: #ed267f;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.current-menu-item > a .menu-item-text, .nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.current-menu-parent > a .menu-item-text, .nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.current-menu-ancestor > a .menu-item-text {
  color: #ed267f;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children {
  position: relative;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children > a {
  justify-content: space-between;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children > a::after {
  content: "›";
  font-size: 20px;
  margin-left: auto;
  padding-left: 8px;
  color: #333333;
  transition: color 0.2s ease;
  line-height: 1;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children > a:hover::after {
  color: #ed267f;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 {
  position: absolute;
  left: calc(100% + 8px);
  top: 0;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 10px;
  min-width: 220px;
  width: max-content;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li > a .menu-icon {
  background: #ffcde4;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex-shrink: 0;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li > a .menu-item-text {
  color: #333333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li > a:hover {
  background: transparent;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li > a:hover .menu-item-text {
  color: #ed267f;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li.has-children .sub-menu--level-3 {
  position: absolute;
  left: calc(100% + 8px);
  top: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 10px;
  min-width: 200px;
  width: max-content;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1003;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li.has-children .sub-menu--level-3 > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li.has-children .sub-menu--level-3 > li > a .menu-item-text {
  color: #333333;
  transition: color 0.2s ease;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li.has-children .sub-menu--level-3 > li > a:hover .menu-item-text {
  color: #ed267f;
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children .sub-menu--level-2 > li.has-children:hover > .sub-menu--level-3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-menu .menu > li.has-mega-menu .mega-menu-dropdown > li.has-children:hover > .sub-menu--level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-menu .menu > li.has-mega-menu:hover .mega-menu-dropdown, .nav-menu .menu > li.has-mega-menu.menu-active .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-buttons {
  display: flex;
  gap: 10px;
}

/* ==========================================
   HAMBURGER
========================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

/* ==========================================
   MOBILE MENU PANEL
========================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: scroll;
}

.mobile-menu.active {
  right: 0;
}

/* Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
}
.mobile-menu-header .mobile-logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.close-menu {
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

/* Menu Items */
.mobile-nav {
  list-style: none;
}
.mobile-nav li {
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
  position: relative;
}
.mobile-nav li a {
  text-decoration: none;
  color: #333333;
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav li .menu-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: #ffcde4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.mobile-nav li.current-menu-item > a {
  color: #ed267f;
}
.mobile-nav li.current-menu-item > .menu-icon {
  background-color: #ed267f;
}
.mobile-nav li.current-menu-item > .submenu-toggle {
  color: #ed267f;
}
.mobile-nav li {
  /* Accordion + icon */
}
.mobile-nav li.menu-item-has-children > .submenu-toggle {
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}
.mobile-nav li.menu-item-has-children ul {
  display: none;
  padding-left: 15px;
}
.mobile-nav li.menu-item-has-children ul ul {
  padding-left: 35px;
}
.mobile-nav li.menu-item-has-children ul li {
  list-style: none;
  border: none;
  padding: 8px 0;
}
.mobile-nav li.menu-item-has-children.open ul {
  display: block;
}

/* Social Section */
.mobile-social {
  margin-top: auto;
  text-align: center;
}
.mobile-social h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.mobile-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
  /* Hide original nav */
  .nav-menu {
    display: none;
  }
  .header-wrapper .logo {
    flex: 1;
  }
  .header-wrapper .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .btn--secondary {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .home .site-footer {
    padding: 300px 0 30px;
  }
}
.site-footer {
  background-color: #333333;
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 60px 0 30px;
}
.site-footer .footer-container {
  display: grid;
  grid-template-columns: 1.7fr 1fr 2fr 1fr 1fr;
  gap: 48px;
}
.site-footer .footer-logo img {
  max-width: 115px;
  height: auto;
  display: block;
}
.site-footer .footer-about p {
  margin: 20px 0 30px;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.site-footer .footer-col h4 {
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1px;
}
.site-footer .footer-links,
.site-footer .footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li,
.site-footer .footer-legal-links li {
  margin-bottom: 12px;
}
.site-footer .footer-links li a,
.site-footer .footer-legal-links li a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.site-footer .footer-links li a:hover,
.site-footer .footer-legal-links li a:hover {
  color: #ed267f;
  padding-left: 6px;
}
.site-footer .social-icons {
  display: flex;
  gap: 10px;
}
.site-footer .social-icons .social-icons {
  display: flex;
  gap: 16px;
}
.site-footer .social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.site-footer .social-icons a svg {
  width: 45px;
  height: 45px;
}
.site-footer .social-icons a svg rect.bg-rect {
  fill: #ed267f;
  transition: fill 0.3s ease;
}
.site-footer .social-icons a svg path {
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.site-footer .social-icons a:hover {
  transform: translateY(-3px);
}
.site-footer .social-icons a:hover svg rect.bg-rect {
  fill: #ffcde4;
}
.site-footer .social-icons a:hover svg path {
  fill: #333333;
}
.site-footer .newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.site-footer .newsletter-form .wpcf7 {
  width: 100%;
}
.site-footer .newsletter-form .wpcf7-form {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.site-footer .newsletter-form .wpcf7-form-control-wrap {
  display: contents !important;
  background: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.site-footer .newsletter-form input[type=email] {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: none !important;
  border-radius: 10px;
  background: #ffffff;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}
.site-footer .newsletter-form input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  background: #ed267f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}
.site-footer .newsletter-form input[type=submit]:hover {
  background: #ffcde4;
  color: #333333;
}
.site-footer .newsletter-form .wpcf7-spinner {
  display: none;
}
.site-footer .newsletter-form .wpcf7-response-output {
  flex-basis: 100%;
  margin: 8px 0 0 !important;
  padding: 6px 10px !important;
  border: none !important;
  border-radius: 6px;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.site-footer .newsletter-form .wpcf7-not-valid-tip {
  display: none !important;
}
.site-footer .newsletter-form input[type=email].wpcf7-not-valid {
  border: 1.5px solid #ed267f !important;
  border-radius: 10px;
}
.site-footer .newsletter-form .wpcf7-response-output {
  flex-basis: 100%;
  width: 100%;
  margin: 8px 0 0 !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  box-sizing: border-box;
}
.wpcf7-form.invalid .site-footer .newsletter-form .wpcf7-response-output, .wpcf7-form.unaccepted .site-footer .newsletter-form .wpcf7-response-output {
  background: rgba(255, 77, 77, 0.15) !important;
  border: 1px solid rgba(255, 77, 77, 0.4) !important;
  color: #ed267f !important;
}
.wpcf7-form.sent .site-footer .newsletter-form .wpcf7-response-output {
  background: rgba(0, 200, 100, 0.15) !important;
  border: 1px solid rgba(0, 200, 100, 0.4) !important;
  color: #00c864 !important;
}
.wpcf7-form.spam .site-footer .newsletter-form .wpcf7-response-output {
  background: rgba(255, 165, 0, 0.15) !important;
  border: 1px solid rgba(255, 165, 0, 0.4) !important;
  color: orange !important;
}
.site-footer .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer .footer-contact-info .contact-item {
  display: flex;
  gap: 12px;
}
.site-footer .footer-contact-info .contact-item .contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.site-footer .footer-contact-info .contact-item .contact-text {
  max-width: 250px;
  width: 100%;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.site-footer .footer-contact-info .contact-item.contact-email .contact-text {
  text-decoration: underline;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom p {
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.site-footer .footer-bottom .footer-legal-links {
  display: flex;
  gap: 24px;
}
.site-footer .footer-bottom .footer-legal-links li {
  margin: 0;
}

@media (max-width: 1024px) {
  .site-footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0px;
  }
  .site-footer .footer-logo img {
    margin: 0 auto;
    max-width: 160px;
    padding-bottom: 20px;
  }
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .site-footer .footer-about {
    border-bottom: none;
    padding-bottom: 24px;
    text-align: center;
    margin-bottom: 0;
  }
  .site-footer .footer-about p {
    margin: 0px;
  }
  .site-footer .footer-about h4 {
    margin-bottom: 16px;
    cursor: default;
    padding-right: 0;
    font-size: 13px;
    letter-spacing: 1px;
  }
  .site-footer .footer-about h4::after {
    display: none;
  }
  .site-footer .footer-about .social-icons {
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
  }
  .site-footer .footer-about .social-icons a svg {
    width: 38px;
    height: 38px;
  }
  .site-footer .footer-about h4 {
    display: none;
  }
  .site-footer .footer-about .social-icons {
    display: none;
  }
  .site-footer .footer-col {
    padding: 15px 0;
  }
  .site-footer .footer-col.footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .site-footer .footer-col h4 {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
  }
  .site-footer .footer-col h4::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
  }
  .site-footer .footer-col h4.active::after {
    content: "−";
    font-size: 24px;
  }
  .site-footer .footer-col .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
    margin-top: 0;
    opacity: 0;
  }
  .site-footer .footer-col .footer-links li {
    margin-bottom: 12px;
  }
  .site-footer .footer-col.active .footer-links {
    max-height: 600px;
    margin-top: 16px;
    opacity: 1;
  }
  .site-footer .footer-contact {
    border-bottom: none;
    padding-bottom: 0;
  }
  .site-footer .footer-contact h4:first-of-type {
    cursor: default;
    padding-right: 0;
    margin-bottom: 16px;
  }
  .site-footer .footer-contact h4:first-of-type::after {
    display: none;
  }
  .site-footer .footer-contact h4:nth-of-type(2) {
    cursor: default;
    padding-right: 0;
    margin-bottom: 16px;
  }
  .site-footer .footer-contact h4:nth-of-type(2)::after {
    display: none;
  }
  .site-footer .newsletter-form {
    margin-bottom: 24px;
  }
  .site-footer .footer-contact {
    display: flex;
    flex-direction: column;
  }
  .site-footer {
    /* Contact Us heading */
  }
  .site-footer .footer-contact h4:nth-of-type(2) {
    order: 1;
  }
  .site-footer {
    /* Contact Info */
  }
  .site-footer .footer-contact .footer-contact-info {
    order: 2;
    margin-bottom: 24px;
  }
  .site-footer {
    /* Newsletter heading */
  }
  .site-footer .footer-contact h4:first-of-type {
    order: 3;
  }
  .site-footer {
    /* Newsletter form */
  }
  .site-footer .footer-contact .newsletter-form {
    order: 4;
  }
  .site-footer .footer-contact-info .contact-item .contact-text {
    max-width: 100%;
    word-wrap: break-word;
  }
  .site-footer .footer-bottom {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
    flex-direction: column;
    gap: 16px;
  }
  .site-footer .footer-bottom .footer-legal-links {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    width: 100%;
  }
  .site-footer .footer-bottom p {
    order: 2;
    text-align: center;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.about-hero {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }
}
.about-hero .overline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.about-hero .hero-paragraph {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 30px auto;
}
.about-hero .about-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .about-hero .about-hero-buttons {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .about-hero .about-hero-buttons {
    gap: 8px;
  }
}
.about-hero .about-hero-buttons a {
  flex-shrink: 0;
}

.about-values {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .about-values {
    padding: 0px 0px 60px;
  }
}
.about-values .about-values-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .about-values .about-values-wrapper {
    flex-direction: column;
  }
}
.about-values .overline {
  margin-bottom: 30px;
}
.about-values .about-values-left {
  flex: 1;
}
.about-values .about-values-right {
  flex: 1;
}
.about-values .about-values-right img {
  width: 100%;
  height: auto;
}
.about-values .about-values-right:hover img {
  transform: scale(1.02);
}
.about-values .tabs__buttons {
  margin: 25px 0;
}
.about-values .tab-content {
  display: none;
  text-align: left;
}
.about-values .tab-content.active {
  display: block;
}

.about-ceo-message {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .about-ceo-message {
    padding: 0px 0px 60px;
  }
}
.about-ceo-message .ceo-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .about-ceo-message .ceo-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.about-ceo-message .ceo-image {
  flex: 1;
}
.about-ceo-message .ceo-image img {
  border-radius: 0px 30px;
  width: 100%;
  max-width: 450px;
}
.about-ceo-message .ceo-content {
  flex: 1;
}
.about-ceo-message .ceo-quote {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}
.about-ceo-message .ceo-quote p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .about-ceo-message .ceo-quote p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about-ceo-message .ceo-quote p {
    font-size: 16px;
  }
}
.about-ceo-message .ceo-quote p {
  font-style: italic;
  color: #333333;
}
.about-ceo-message .ceo-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 100%;
  background-color: #ed267f;
}
.about-ceo-message .ceo-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 5px;
}
.about-ceo-message .ceo-designation {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
}

.about-promises {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .about-promises {
    padding: 0px 0px 60px;
  }
}
.about-promises .promises-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 1024px) {
  .about-promises .promises-wrapper {
    flex-direction: column;
  }
}
.about-promises .promises-left,
.about-promises .promises-right {
  flex: 1;
}
.about-promises .promises-left .overline {
  margin-bottom: 20px;
}
.about-promises .promises-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1024px) {
  .about-promises .promises-right {
    border-left: none;
    padding-left: 0;
  }
}
.about-promises .promises-right .promises-tabs-wrapper {
  border-left: 2px solid #ed267f;
  padding-left: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.about-promises .promises-right .tabs__buttons {
  max-width: 700px;
}
.about-promises .promises-right .tabs__content {
  flex: 1;
  min-height: 120px;
}
.about-promises .promises-right .tabs__panel {
  margin: 20px 0px;
}
@media (max-width: 1024px) {
  .about-promises .promises-right .promises-tabs-wrapper {
    border-left: none;
    padding-left: 0;
  }
  .about-promises .promises-right .tabs__content {
    border-left: 2px solid #ed267f;
    padding-left: 20px;
    min-height: 110px;
  }
}
@media (max-width: 768px) {
  .about-promises .promises-right .promises-tabs-wrapper {
    margin-bottom: 0px;
  }
  .about-promises .promises-right {
    /* Hide buttons */
  }
  .about-promises .promises-right .tabs__buttons {
    display: none;
  }
  .about-promises .promises-right {
    /* Remove border from content wrapper */
  }
  .about-promises .promises-right .tabs__content {
    border-left: none;
    padding-left: 0;
    min-height: unset;
  }
  .about-promises .promises-right {
    /* Show all panels */
  }
  .about-promises .promises-right .tabs__panel {
    display: block !important;
    margin-bottom: 30px;
    position: relative;
    border-left: 2px solid #ed267f;
    padding-left: 20px;
  }
  .about-promises .promises-right {
    /* Show button text as heading */
  }
  .about-promises .promises-right .tabs__panel::before {
    content: attr(data-title);
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 10px;
  }
}

.about-marquee {
  background: #ed267f;
  padding: 18px 0;
  overflow: hidden;
}
.about-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.about-marquee .marquee-item {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  font-style: italic;
  margin-right: 15px;
}
.about-marquee .dot {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  margin-left: 20px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-services {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .about-services {
    padding: 0px 0px 60px;
  }
}
.about-services .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .about-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-services .services-grid {
    grid-template-columns: 1fr;
  }
}
.about-services .service-item img {
  width: 50px;
  height: 50px;
}
.about-services .service-video {
  position: relative;
}
.about-services .service-video .video-link {
  display: block;
  position: relative;
}
.about-services .service-video .video-link > img {
  width: 100%;
  display: block;
  border-radius: 30px 0 30px 0;
}
.about-services .service-video .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-services .service-video .video-play-icon img {
  width: 70px;
  height: 70px;
}
.about-services .service-video:hover .video-play-icon img {
  transition: 0.3s ease;
}
@media (max-width: 600px) {
  .about-services .service-video {
    order: -1;
  }
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  cursor: pointer;
}

/* ============================================================ */
/* CONTACT SECTION                                              */
/* ============================================================ */
.contact-wrapper {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 60px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-grid .overline {
  margin-bottom: 18px;
}

/* ── LEFT SIDE ────────────────────────────────────────────── */
.contact-image img {
  margin-top: 40px;
  max-width: 70%;
  width: 100%;
  height: auto;
  display: block;
}

.contact-details {
  margin-top: 40px;
}
.contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-details .contact-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-details .contact-item a {
  text-decoration: none;
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-details .contact-item a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-details .contact-item a {
    font-size: 14px;
  }
}
.contact-details .contact-item.email a {
  text-decoration: underline;
}
.contact-details .contact-item.address {
  text-align: left;
}
.contact-details .contact-item.address strong {
  display: block;
  margin-bottom: 10px;
  color: #ed267f;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-details .contact-item.address strong {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-details .contact-item.address strong {
    font-size: 14px;
  }
}
.contact-details .contact-item.address p {
  margin: 0;
  max-width: 220px;
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-details .contact-item.address p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-details .contact-item.address p {
    font-size: 14px;
  }
}

.contact-map {
  margin-top: 24px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 250px;
}

/* ── RIGHT SIDE ───────────────────────────────────────────── */
.contact-right {
  padding: 40px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .contact-right {
    padding: 24px;
  }
}

.required-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .required-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .required-text {
    font-size: 14px;
  }
}
.required-text {
  color: #333333;
  margin-bottom: 24px;
}
.required-text .required-star {
  color: #ed267f;
}

/* ── FORM ─────────────────────────────────────────────────── */
.wpcf7-form .form-row {
  margin-bottom: 14px;
}
.wpcf7-form {
  /* =============================================
     TWO COLUMN GRID — key fix
     We use display:grid directly on .two-col,
     and min-width:0 on children so they don't overflow
     ============================================= */
}
.wpcf7-form .two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wpcf7-form .two-col > .input-group {
  min-width: 0;
  /* prevents grid blowout */
  width: 100%;
}
.wpcf7-form {
  /* ── Input group ── */
}
.wpcf7-form .input-group {
  position: relative;
  /* CF7 wraps inputs in a span — stretch it to full width */
}
.wpcf7-form .input-group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7-form .input-group {
  /* All inputs, textarea, select */
}
.wpcf7-form .input-group input:not([type=submit]),
.wpcf7-form .input-group textarea,
.wpcf7-form .input-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 8px;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .wpcf7-form .input-group input:not([type=submit]),
  .wpcf7-form .input-group textarea,
  .wpcf7-form .input-group select {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .wpcf7-form .input-group input:not([type=submit]),
  .wpcf7-form .input-group textarea,
  .wpcf7-form .input-group select {
    font-size: 14px;
  }
}
.wpcf7-form .input-group input:not([type=submit]),
.wpcf7-form .input-group textarea,
.wpcf7-form .input-group select {
  color: #333333;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.18s ease;
}
.wpcf7-form .input-group input:not([type=submit]):focus,
.wpcf7-form .input-group textarea:focus,
.wpcf7-form .input-group select:focus {
  border-color: #ed267f;
}
.wpcf7-form .input-group textarea {
  height: 120px;
  resize: none;
}
.wpcf7-form .input-group {
  /* Fake floating placeholder */
}
.wpcf7-form .input-group .fake-placeholder {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(51, 51, 51, 0.5);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .wpcf7-form .input-group .fake-placeholder {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .wpcf7-form .input-group .fake-placeholder {
    font-size: 14px;
  }
}
.wpcf7-form .input-group .fake-placeholder {
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 1;
  white-space: nowrap;
}
.wpcf7-form .input-group .fake-placeholder .required-star {
  color: #ed267f;
}
.wpcf7-form .input-group {
  /* Hide only when user typed something */
}
.wpcf7-form .input-group:has(input:not(:placeholder-shown)) .fake-placeholder, .wpcf7-form .input-group:has(textarea:not(:placeholder-shown)) .fake-placeholder {
  opacity: 0;
}
.wpcf7-form .input-group {
  /* Hide placeholder when select value is chosen (JS also handles this) */
}
.wpcf7-form .input-group:has(select:not([value=""]):valid) .fake-placeholder {
  opacity: 0;
}
.wpcf7-form .input-group {
  /* Pink chevron for select fields */
}
.wpcf7-form .input-group:has(select)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.9207 8.17999H11.6907H6.08072C5.12072 8.17999 4.64073 9.33999 5.32073 10.02L10.5007 15.2C11.3307 16.03 12.6807 16.03 13.5107 15.2L15.4807 13.23L18.6907 10.02C19.3607 9.33999 18.8807 8.17999 17.9207 8.17999Z' fill='%23ED267F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.wpcf7-form {
  /* Textarea: placeholder at top not centre */
}
.wpcf7-form .textarea-group .fake-placeholder {
  top: 15px;
  transform: none;
}
.wpcf7-form .iti__country-list {
  max-height: 250px;
  overflow-y: auto;
}
.wpcf7-form .iti__country-list input {
  display: block !important;
}
.wpcf7-form {
  /* =============================================
     intl-tel-input overrides
     Make the phone field look exactly like other fields
     ============================================= */
  /* Hide our fake placeholder — iti renders its own */
}
.wpcf7-form .input-group:has(.iti) .fake-placeholder {
  display: none;
}
.wpcf7-form {
  /* Outer iti wrapper: stretch full width */
}
.wpcf7-form .iti {
  display: block !important;
  width: 100% !important;
}
.wpcf7-form {
  /* The actual tel input inside iti */
}
.wpcf7-form .iti input[type=tel],
.wpcf7-form .iti input[type=tel].iti__tel-input {
  width: 100% !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  padding-right: 18px !important;
  border: 1px solid rgba(51, 51, 51, 0.2) !important;
  border-radius: 8px !important;
  background: transparent !important;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333 !important;
  outline: none !important;
  transition: border-color 0.18s ease;
}
.wpcf7-form .iti input[type=tel]:focus,
.wpcf7-form .iti input[type=tel].iti__tel-input:focus {
  border-color: #ed267f !important;
}
.wpcf7-form {
  /* Flag button inside the tel input */
}
.wpcf7-form .iti__selected-country {
  background: transparent !important;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
}
.wpcf7-form {
  /* =============================================
   THEMED DROPDOWN (Native Select Panel)
   ============================================= */
}
.wpcf7-form select {
  cursor: pointer;
}
.wpcf7-form {
  /* Dropdown options */
}
.wpcf7-form select option {
  background-color: #efe5ed;
  color: #333333;
  font-family: "DM Sans", sans-serif;
}
.wpcf7-form {
  /* When dropdown is open (focus) */
}
.wpcf7-form select:focus {
  background-color: transparent;
}
.wpcf7-form {
  /* =============================================
   intl-tel dropdown — match form theme
   ============================================= */
}
.wpcf7-form .iti__country-list {
  background: #efe5ed !important;
  border: 1px solid rgba(51, 51, 51, 0.2) !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 30px rgba(51, 51, 51, 0.08) !important;
  padding: 6px 0 !important;
  margin-top: 6px !important;
  font-family: "DM Sans", sans-serif !important;
}
.wpcf7-form {
  /* Country row */
}
.wpcf7-form .iti__country {
  padding: 10px 18px !important;
  transition: background 0.2s ease;
}
.wpcf7-form {
  /* Hover — matches native select blue */
}
.wpcf7-form .iti__country:hover {
  background: #ffcde4 !important;
  color: #333333 !important;
}
.wpcf7-form .iti__country:hover .iti__country-name,
.wpcf7-form .iti__country:hover .iti__dial-code {
  color: #333333 !important;
}
.wpcf7-form {
  /* Selected / active — matches native select blue */
}
.wpcf7-form .iti__country.iti__highlight {
  background: #ffcde4 !important;
  color: #333333 !important;
}
.wpcf7-form .iti__country.iti__highlight .iti__country-name,
.wpcf7-form .iti__country.iti__highlight .iti__dial-code {
  color: #333333 !important;
}
.wpcf7-form {
  /* Dial code */
}
.wpcf7-form .iti__dial-code {
  color: #ed267f !important;
  font-weight: 500;
}
.wpcf7-form {
  /* Country name text */
}
.wpcf7-form .iti__country-name {
  color: #333333 !important;
}
.wpcf7-form {
  /* Scrollbar styling */
}
.wpcf7-form .iti__country-list::-webkit-scrollbar {
  width: 6px;
}
.wpcf7-form .iti__country-list::-webkit-scrollbar-thumb {
  background: #ed267f;
  border-radius: 10px;
}
.wpcf7-form {
  /* ── Submit button ── */
}
.wpcf7-form .form-btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.wpcf7-form input[type=submit].wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  background: #ed267f;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: fit-content;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.wpcf7-form input[type=submit].wpcf7-submit:hover {
  background-color: #ffcde4;
  color: #333333;
}
.wpcf7-form input[type=submit].wpcf7-submit:active {
  transform: translateY(0);
}

.wpcf7-form select option {
  background-color: #efe5ed;
  color: #333333;
  font-family: "DM Sans", sans-serif;
}

select option:hover {
  background-color: #ffcde4 !important;
}

/* =============================================
   SUCCESS MESSAGE
   ============================================= */
.wpcf7-response-output {
  margin-top: 20px !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

/* Success state */
form.sent .wpcf7-response-output {
  background: rgba(237, 38, 127, 0.08);
  border: 1px solid #ed267f;
  color: #333333;
}

/* =============================================
   ERROR MESSAGE (Form submission failed)
   ============================================= */
form.failed .wpcf7-response-output,
form.invalid .wpcf7-response-output {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid #ed267f;
  color: #ed267f;
}

/* Red border on invalid fields */
.wpcf7-not-valid {
  border-color: #ed267f !important;
}

/* Error text under field */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ed267f;
  margin-top: 6px;
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */
@media (max-width: 768px) {
  .contact-wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-left {
    padding: 0 24px;
    text-align: center;
  }
  .contact-left .overline {
    justify-content: center;
  }
  .contact-left .contact-image {
    display: flex;
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid .contact-right {
    padding: 24px;
    border-radius: 0;
  }
  .contact-grid .wpcf7-form .two-col {
    grid-template-columns: 1fr !important;
  }
}
.custom-map-wrapper {
  width: 100%;
  margin-top: 40px;
  overflow: visible;
}

.custom-map-inner {
  position: relative;
  display: block;
  width: 100%;
  overflow: visible;
}

.custom-map-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   MAP PINS & POPUP — STUDIO FORGE
   ========================================== */
/* PIN */
.custom-map-pin {
  width: 30px;
  height: 30px;
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.custom-map-pin svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .custom-map-pin svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .custom-map-pin svg {
    width: 16px;
    height: 16px;
  }
}

/* POPUP */
.pin-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 100px;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  min-width: 220px;
  width: max-content;
  max-width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(237, 38, 127, 0.08);
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.22s;
  z-index: 5;
}
@media (max-width: 768px) {
  .pin-popup {
    padding: 12px 14px;
    min-width: 100%;
    max-width: 180px;
    border-radius: 8px;
    bottom: calc(100% + 2px);
  }
}
@media (max-width: 480px) {
  .pin-popup {
    width: 130px;
    left: 65px;
    padding: 10px 12px;
    border-radius: 6px;
    bottom: calc(100% + 6px);
  }
}

.custom-map-pin:hover .pin-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Popup text */
.pin-popup span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .pin-popup span {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .pin-popup span {
    font-size: 10px;
  }
}

.pin-popup small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #333333;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .pin-popup small {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .pin-popup small {
    font-size: 9px;
  }
}

.pin-popup em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #ed267f;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 768px) {
  .pin-popup em {
    font-size: 9px;
    margin-top: 6px;
  }
}
@media (max-width: 480px) {
  .pin-popup em {
    display: none;
  }
}

.custom-404-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0px;
}
.custom-404-wrapper .error-image {
  margin-bottom: 20px;
}
.custom-404-wrapper .error-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
}
.custom-404-wrapper h1 {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .custom-404-wrapper {
    padding: 60px 0px;
  }
}

.our-story-hero {
  padding: 80px 0px;
  text-align: center;
}
@media (max-width: 768px) {
  .our-story-hero {
    padding: 60px 0px;
  }
}
.our-story-hero .overline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.our-story-hero h2 {
  margin: 30px 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .our-story-hero h2 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .our-story-hero h2 {
    font-size: 36px;
  }
}
.our-story-hero h2 {
  color: #333333;
}
.our-story-hero .hero-small-tagline {
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
.our-story-hero .hero-description {
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.genesis-section {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .genesis-section {
    padding: 0px 0px 60px;
  }
}

.genesis-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 992px) {
  .genesis-wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .genesis-wrapper {
    flex-direction: column;
  }
}

.genesis-content {
  flex: 1;
  text-align: left;
}
.genesis-content .overline {
  margin-bottom: 24px;
}
.genesis-content .section-title {
  margin-bottom: 30px;
}
.genesis-content p {
  margin-bottom: 20px;
  text-align: left;
}

.genesis-image {
  flex: 1;
}
.genesis-image img {
  width: 100%;
  height: auto;
}
.genesis-image:hover img {
  transform: scale(1.02);
}

.our-journey-scroll-wrapper {
  position: relative;
}

.our-journey {
  position: sticky;
  top: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  background-color: #efe5ed;
  font-family: "DM Sans", sans-serif;
}
.our-journey__subtitle {
  font-size: 16px;
  line-height: 3.6;
  color: #333333;
}
.our-journey__timeline {
  position: relative;
  margin-top: 24px;
}
.our-journey__years-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-journey__year {
  flex: 1;
  font-size: 32px;
  color: #ed267f;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  text-align: center;
}
.our-journey__year.is-active {
  opacity: 1;
}
.our-journey__progress-track {
  position: absolute;
  top: 72px;
  left: 230px;
  right: 230px;
  height: 1px;
  background: rgba(51, 51, 51, 0.15);
}
.our-journey__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #333333;
}
.our-journey__dots-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}
.our-journey__dot-item {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.our-journey__dot-wrap {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #cfcfcf;
  transition: background 0.4s ease, transform 0.4s ease;
}
.our-journey__dot-item.is-active .our-journey__dot-wrap {
  background: #333333;
}
.our-journey__dot-item.is-current .our-journey__dot-wrap {
  transform: scale(1.35);
}
.our-journey__cards {
  color: #333333;
  position: relative;
  margin-top: 60px;
  min-height: 160px;
}
.our-journey__card {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.our-journey__card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.1s;
}
.our-journey__card-year {
  display: none;
}
.our-journey__card-title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}
.our-journey__card-highlight {
  color: #ed267f;
  margin-bottom: 15px;
}
.our-journey__card-points {
  list-style: none;
}
.our-journey__card-points li {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .our-journey__card-points li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .our-journey__card-points li {
    font-size: 14px;
  }
}
.our-journey__card-points li {
  margin-bottom: 15px;
  position: relative;
}

.our-journey__header .overline {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .our-journey__progress-track {
    left: 150px;
    right: 150px;
  }
}
@media (max-width: 768px) {
  .our-journey-scroll-wrapper {
    height: auto !important;
  }
  .our-journey {
    position: relative;
    top: auto;
    min-height: unset;
    display: block;
    padding: 60px 0px;
  }
  .our-journey__subtitle {
    line-height: 1.8;
    margin-top: 8px;
  }
  .our-journey__timeline {
    display: none;
  }
  .our-journey__cards {
    position: relative;
    margin-top: 40px;
    min-height: unset;
  }
  .our-journey__cards::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 9px;
    width: 2px;
    background: rgba(51, 51, 51, 0.15);
    z-index: 0;
  }
  .our-journey__card {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .our-journey__card:last-child {
    margin-bottom: 0;
  }
  .our-journey__card::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333333;
    margin-top: 2px;
    position: relative;
    z-index: 1;
  }
  .our-journey__card-inner {
    flex: 1;
  }
  .our-journey__card-year {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #ed267f;
    margin-bottom: 15px;
  }
  .our-journey__card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
  }
}
.our-core-philosophy {
  padding: 80px 0px 0px;
}
@media (max-width: 768px) {
  .our-core-philosophy {
    padding: 60px 0px 0px;
  }
}

.our-core-philosophy .wwd-card {
  background-color: #efe5ed;
}

.our-core-philosophy .wwd-card__desc p {
  margin: 0 0 12px 0;
}
.our-core-philosophy .wwd-card__desc p:last-child {
  margin-bottom: 0;
}
.our-core-philosophy .wwd-card__desc ol {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.our-core-philosophy .wwd-card__desc li {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
.our-core-philosophy .wwd-card__desc strong {
  font-weight: 600;
  color: #333333;
}

/* ============================================
   QUANTIFIED IMPACT — ACF Block Styles
   Uses Studio Forge design tokens
   ============================================ */
.qi-container {
  font-family: "DM Sans", sans-serif;
  padding: 80px 0px;
}
@media (max-width: 768px) {
  .qi-container {
    padding: 60px 0px;
  }
}
.qi-container .overline {
  margin-bottom: 24px;
}
.qi-container .qi-stats {
  display: flex;
  align-items: stretch;
  padding-top: 32px;
}
.qi-container .qi-stats .qi-stat {
  padding: 0 28px;
  animation: qi-fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
  border-left: 1px solid #ed267f;
}
.qi-container .qi-stats .qi-stat__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qi-container .qi-stats .qi-stat__inner h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .qi-container .qi-stats .qi-stat__inner h3 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .qi-container .qi-stats .qi-stat__inner h3 {
    font-size: 22px;
  }
}
.qi-container .qi-stats .qi-stat__inner h3 {
  color: #ed267f;
}
.qi-container .qi-stats .qi-stat__inner p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .qi-container .qi-stats .qi-stat__inner p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .qi-container .qi-stats .qi-stat__inner p {
    font-size: 14px;
  }
}
.qi-container .qi-stats .qi-stat__inner p {
  color: #333333;
  margin-top: 10px;
}

@keyframes qi-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .qi-stats {
    flex-wrap: wrap;
  }
  .qi-stat {
    flex: 0 0 50%;
    padding: 16px 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .qi-stats {
    flex-direction: column;
    padding-top: 24px;
  }
}
.leadership-team-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .leadership-team-section {
    padding: 60px 0;
  }
}
.leadership-team-section .overline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.leadership-team-section .hero-paragraph {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 64px auto;
}

.lt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .lt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .lt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .lt-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.lt-card {
  position: relative;
  border-radius: 50px 0;
  overflow: hidden;
  aspect-ratio: 4/4;
  display: flex;
  flex-direction: column;
}
.lt-card:hover .lt-card__image img {
  transform: scale(1.05);
}
.lt-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #ed267f;
}

.lt-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lt-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
  display: block;
}

.lt-card__info {
  position: absolute;
  bottom: 0;
  background-color: #ed267f;
  display: flex;
  padding: 16px;
  border-radius: 0 10px 0 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
@media (max-width: 480px) {
  .lt-card__info {
    padding: 12px;
  }
}
.lt-card__info:hover {
  background-color: #ffcde4;
}
.lt-card__info:hover .lt-card__name,
.lt-card__info:hover .lt-card__role {
  color: #333333;
}
.lt-card__info:hover svg path {
  stroke: #333333;
}
.lt-card__info h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .lt-card__info h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .lt-card__info h4 {
    font-size: 18px;
  }
}
.lt-card__info h4 {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.lt-card__info .lt-card__role {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .lt-card__info .lt-card__role {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .lt-card__info .lt-card__role {
    font-size: 14px;
  }
}
.lt-card__info .lt-card__role {
  color: #ffffff;
}
.lt-card__info .lt-card__text {
  padding-right: 30px;
}
.lt-card__info .lt-card__arrow {
  margin-top: 5px;
}

.support-intro {
  margin-bottom: 56px;
}
.support-intro .section-title {
  margin-top: 24px;
  text-align: left;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 80px;
}
@media (max-width: 480px) {
  .faq-wrapper {
    gap: 40px;
    padding-bottom: 60px;
  }
}

.faq-group__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .faq-group__title {
    font-size: 18px;
  }
}

.faq-accordion__item {
  margin: 12px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(237, 38, 127, 0.15);
  background-color: rgba(255, 205, 228, 0.4);
  transition: all 0.25s ease;
}
.faq-accordion__item.is-open {
  background-color: rgba(255, 205, 228, 0.4);
}
.faq-accordion__item.is-open .icon-plus {
  display: none;
}
.faq-accordion__item.is-open .icon-minus {
  display: flex;
}
.faq-accordion__trigger {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  background: transparent;
}
.faq-accordion__trigger:focus-visible {
  outline: 2px solid #ed267f;
  outline-offset: -2px;
  border-radius: 2px;
  background-color: rgba(255, 205, 228, 0.4);
}
.faq-accordion__question {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 480px) {
  .faq-accordion__question {
    font-size: 14px;
    text-align: left;
  }
}
.faq-accordion__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #333333;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.faq-accordion__icon svg {
  display: block;
}
.faq-accordion .icon-minus {
  display: none;
}
.faq-accordion__body {
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: all 0.35s ease;
}
.faq-accordion__answer {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .faq-accordion__answer {
    font-size: 14px;
  }
}
.faq-accordion__answer p {
  margin: 0;
}
.faq-accordion__answer a {
  color: #ed267f;
  text-decoration: underline;
}
.faq-accordion__answer a:hover {
  opacity: 0.8;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 8px;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
  background-color: #ed267f;
  color: #ffffff;
  border: none;
}
.whatsapp-float svg {
  flex-shrink: 0;
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.whatsapp-float:hover, .whatsapp-float:focus {
  background-color: #ffcde4;
  color: #333333;
}
.whatsapp-float:hover svg, .whatsapp-float:focus svg {
  fill: #333333;
}

.lasf-section {
  padding: 80px 0;
  background-color: #efe5ed;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .lasf-section {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .lasf-section {
    padding: 40px 0;
  }
}

.lasf-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 40px;
}
@media (max-width: 1024px) {
  .lasf-inner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .lasf-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.lasf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .lasf-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .lasf-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.lasf-card {
  background-color: #ffffff;
  border-radius: 0 50px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.lasf-card__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.lasf-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lasf-card__image--placeholder {
  background-color: #efe5ed;
}
.lasf-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
@media (max-width: 480px) {
  .lasf-card__title {
    font-size: 18px;
  }
}
.lasf-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lasf-card__list-item {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}
.lasf-card__list-item:first-child {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 480px) {
  .lasf-card__list-item {
    font-size: 14px;
    padding: 9px 0;
  }
}

.hp-section {
  padding: 0 0 80px 0;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .hp-section {
    padding: 0 0 60px 0;
  }
}

.hp-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  width: 60%;
}
@media (max-width: 480px) {
  .hp-header {
    margin-bottom: 32px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hp-header {
    width: 100%;
  }
}

.hp-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.hp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .hp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hp-grid--5 {
  grid-template-columns: repeat(3, 1fr);
}
.hp-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}
.hp-grid--1 {
  grid-template-columns: 1fr;
  max-width: 400px;
}
.hp-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .hp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .hp-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

.hp-card {
  background-color: #ffcde4;
  border-radius: 0 24px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.25s ease;
}
.hp-card:hover {
  box-shadow: 0 8px 32px rgba(237, 38, 127, 0.12);
}
@media (max-width: 480px) {
  .hp-card {
    padding: 24px 20px 28px;
    gap: 20px;
  }
}
.hp-card__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ed267f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-card__number span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}
.hp-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .hp-card__title {
    font-size: 14px;
  }
}
.hp-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
.hp-card__text p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .hp-card__text p {
    font-size: 14px;
  }
}

.or-section {
  padding: 0 0 80px 0;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .or-section {
    padding: 0 0 60px 0;
  }
}

.or-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1280px) {
  .or-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .or-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .or-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .or-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.or-card {
  background-color: #ffffff;
  border: 1.5px solid #ebebeb;
  border-radius: 0 50px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.or-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ed267f;
}
.or-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.or-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.or-card__icon svg {
  width: 28px;
  height: 28px;
}
.or-card__badge {
  display: inline-flex;
  align-items: center;
  background-color: #ffcde4;
  color: #ed267f;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 100px;
  width: fit-content;
}

.nr-section {
  padding: 0 0 80px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .nr-section {
    padding: 0 0 60px 0;
  }
}

.nr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.nr-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #333333;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .nr-heading {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .nr-heading {
    font-size: 36px;
  }
}
.nr-heading--pink {
  color: #ed267f;
}

.nr-subtext {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 480px) {
  .nr-subtext {
    font-size: 14px;
  }
}

.nr-email {
  color: #333333;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nr-email:hover {
  color: #ed267f;
}

.career-details {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .career-details {
    padding: 60px 0;
  }
}
.career-details .overline {
  justify-content: center;
  margin-bottom: 24px;
}
.career-details h1 {
  margin-bottom: 48px;
  color: #ed267f;
}
.career-details .career-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .career-details .career-top-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .career-details .career-top-row .career-apply-btn {
    width: 100%;
    justify-content: center;
  }
}
.career-details .career-meta {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-details .career-meta .career-location {
  display: flex;
  align-items: center;
  gap: 10px;
}
.career-details .career-meta .career-location .meta-icon {
  display: flex;
  align-items: center;
}
.career-details .career-meta .career-location .meta-icon svg {
  display: block;
}
.career-details .career-meta p {
  margin-bottom: 6px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-details .career-meta p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-details .career-meta p {
    font-size: 14px;
  }
}
.career-details .career-meta p {
  color: #333333;
}
.career-details .career-intro {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-details .career-intro {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-details .career-intro {
    font-size: 14px;
  }
}
.career-details .career-intro {
  color: #333333;
  margin-bottom: 50px;
}
.career-details .career-section {
  margin-bottom: 50px;
}
.career-details .career-section .career-section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #ed267f;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .career-details .career-section .career-section-title {
    font-size: 18px;
  }
}
.career-details .career-section-content p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-details .career-section-content p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-details .career-section-content p {
    font-size: 14px;
  }
}
.career-details .career-section-content p {
  color: #333333;
  margin-bottom: 16px;
}
.career-details .career-section-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}
.career-details .career-section-content li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-details .career-section-content li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-details .career-section-content li {
    font-size: 14px;
  }
}
.career-details .career-section-content li {
  color: #333333;
}
.career-details .career-section-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 17px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.75 0.749998L15.0429 4.04289C15.4334 4.43342 15.4334 5.06658 15.0429 5.45711L11.75 8.75M14.75 4.75L0.75 4.75' stroke='%23ED267F' stroke-width='1.5' stroke-linecap='round'/></svg>") no-repeat center;
}

.career-apply {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .career-apply {
    padding: 0px 0px 60px;
  }
}
.career-apply .overline {
  justify-content: center;
  margin-bottom: 20px;
}
.career-apply .section-title {
  text-align: center;
  margin-bottom: 10px;
}
.career-apply__note {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-apply__note {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-apply__note {
    font-size: 14px;
  }
}
.career-apply__note {
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .career-apply__note {
    margin-bottom: 20px;
  }
}

.career-form {
  max-width: 500px;
  margin: 0 auto;
}
.career-form .form-group {
  margin-bottom: 20px;
}
.career-form .file-upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.career-form .file-upload .file-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-form .file-upload .file-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-form .file-upload .file-label {
    font-size: 14px;
  }
}
.career-form .file-upload .file-label {
  color: #333333;
}
.career-form .file-upload .file-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.career-form .file-upload .file-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .career-form .file-upload .file-name {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .career-form .file-upload .file-name {
    font-size: 14px;
  }
}
.career-form .file-upload .file-name {
  color: #333333;
}
@media (max-width: 768px) {
  .career-form .file-upload .file-row {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .career-form .file-upload .btn--secondary {
    display: inline-block;
  }
  .career-form .file-upload .file-name {
    word-break: break-word;
  }
}
.career-form .apply-btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.career-numbers {
  padding: 0 0 80px 0;
}
.career-numbers__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .career-numbers__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .career-numbers__inner {
    padding: 0 20px;
    gap: 36px;
  }
}
.career-numbers .who-we-are-left {
  max-width: 500px;
  width: 100%;
}
.career-numbers__stats {
  flex: 1;
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .career-numbers__stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .career-numbers__stats {
    flex-direction: column;
    gap: 16px;
  }
}
.career-numbers__stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .career-numbers__stat-item {
    flex: 0 0 calc(50% - 16px);
  }
}
@media (max-width: 480px) {
  .career-numbers__stat-item {
    flex: 0 0 100%;
  }
}
.career-numbers__stat-value {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: #ed267f;
  margin: 0 0 4px;
}
@media (max-width: 768px) {
  .career-numbers__stat-value {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .career-numbers__stat-value {
    font-size: 36px;
  }
}

.form-privacy {
  text-align: left;
  margin: 20px 0;
}
.form-privacy .file-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .form-privacy .file-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .form-privacy .file-label {
    font-size: 14px;
  }
}
.form-privacy .file-label {
  color: #333333;
}
.form-privacy p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .form-privacy p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .form-privacy p {
    font-size: 14px;
  }
}
.form-privacy p {
  color: #333333;
  margin-bottom: 10px;
}
.form-privacy p a {
  color: #333333;
  text-decoration: underline;
  font-weight: inherit;
}
.form-privacy p a:hover {
  color: #ed267f;
}
.form-privacy .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-privacy .checkbox-wrapper input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #ed267f;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease;
}
.form-privacy .checkbox-wrapper {
  /* When Checked */
}
.form-privacy .checkbox-wrapper input[type=checkbox]:checked {
  background-color: #ed267f;
}
.form-privacy .checkbox-wrapper {
  /* Custom Checkmark */
}
.form-privacy .checkbox-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-privacy .checkbox-wrapper span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .form-privacy .checkbox-wrapper span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .form-privacy .checkbox-wrapper span {
    font-size: 14px;
  }
}
.form-privacy .checkbox-wrapper span {
  color: #333333;
}

.open-position-page .who-we-are-section {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .open-position-page .who-we-are-section {
    padding-top: 60px;
  }
}

.internship-page .who-we-are-section {
  background-color: #EFE5ED;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .internship-page .who-we-are-section {
    padding-top: 60px;
  }
}
.internship-page .why-choose-section {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .internship-page .why-choose-section {
    padding: 0px 0px 60px;
  }
}

.requirements-section {
  padding: 0px 0px 80px;
}
@media (max-width: 768px) {
  .requirements-section {
    padding: 0px 0px 60px;
  }
}
.requirements-section .requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  /* Tablet */
}
@media (max-width: 992px) {
  .requirements-section .requirements-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.requirements-section .requirements-grid {
  /* Mobile */
}
@media (max-width: 768px) {
  .requirements-section .requirements-grid {
    gap: 30px;
  }
}
.requirements-section .requirements-image img {
  width: 100%;
  height: auto;
}
.requirements-section .overline {
  margin-bottom: 15px;
}
.requirements-section .section-title {
  margin-bottom: 20px;
}
.requirements-section .section-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .requirements-section .section-description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .requirements-section .section-description {
    font-size: 14px;
  }
}
.requirements-section .section-description {
  color: #333333;
}
.requirements-section .sub-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #ed267f;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .requirements-section .sub-title {
    font-size: 18px;
  }
}
.requirements-section .requirements-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.requirements-section .requirements-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .requirements-section .requirements-list li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .requirements-section .requirements-list li {
    font-size: 14px;
  }
}
.requirements-section .requirements-list li {
  color: #333333;
}
.requirements-section .requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 17px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.75 0.749998L15.0429 4.04289C15.4334 4.43342 15.4334 5.06658 15.0429 5.45711L11.75 8.75M14.75 4.75L0.75 4.75' stroke='%23ED267F' stroke-width='1.5' stroke-linecap='round'/></svg>") no-repeat center;
}

.insights-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .insights-section {
    padding: 60px 0;
  }
}
.insights-section .overline {
  justify-content: center;
  margin-bottom: 20px;
}
.insights-section h1 {
  margin-bottom: 48px;
}
.insights-section .tabs__buttons {
  margin-bottom: 24px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .insights-section .tabs__buttons {
    flex-wrap: wrap;
    border-radius: 20px;
  }
}
@media (max-width: 992px) {
  .insights-section .tabs__btn {
    flex: 1 1 45%;
  }
}
.insights-section .insights-title {
  margin-bottom: 30px;
}
.insights-section .insights-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #ed267f;
  margin-bottom: 24px;
  /* LEFT SIDE */
}
.insights-section .insights-meta .meta-left {
  display: flex;
  gap: 60px;
}
.insights-section .insights-meta .meta-left .meta-item {
  display: flex;
  flex-direction: column;
}
.insights-section .insights-meta .meta-left .meta-item .meta-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .insights-section .insights-meta .meta-left .meta-item .meta-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .insights-section .insights-meta .meta-left .meta-item .meta-label {
    font-size: 14px;
  }
}
.insights-section .insights-meta .meta-left .meta-item .meta-label {
  color: #ed267f;
  margin-bottom: 10px;
}
.insights-section .insights-meta .meta-left .meta-item .meta-value {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .insights-section .insights-meta .meta-left .meta-item .meta-value {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .insights-section .insights-meta .meta-left .meta-item .meta-value {
    font-size: 14px;
  }
}
.insights-section .insights-meta .meta-left .meta-item .meta-value {
  color: #333333;
}
.insights-section .insights-meta {
  /* RIGHT SIDE */
}
.insights-section .insights-meta .meta-right {
  display: flex;
  gap: 15px;
}
.insights-section .insights-meta .meta-right .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #8383a7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.insights-section .insights-meta .meta-right .social-icon svg {
  transition: all 0.3s ease;
}
.insights-section .insights-meta .meta-right .social-icon:hover {
  background: #ed267f;
  border: 1px solid #ed267f;
}
.insights-section .insights-meta .meta-right .social-icon:hover svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
.insights-section .insights-meta .meta-right .social-icon .copy-tooltip {
  position: absolute;
  bottom: 50px;
  background: #2b2b2b;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.insights-section .insights-meta .meta-right .social-icon:hover .copy-tooltip {
  opacity: 1;
  visibility: visible;
}
.insights-section .insights-meta .meta-right .social-icon.copied .copy-tooltip {
  background: #ff2c75;
  opacity: 1;
  visibility: visible;
}
.insights-section {
  /* Responsive */
}
@media (max-width: 768px) {
  .insights-section .insights-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .insights-section .insights-meta .meta-left {
    gap: 30px;
    flex-wrap: wrap;
  }
}

/* =========================
     GRID
========================= */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
     CARD
========================= */
.insight-card {
  display: block;
  color: inherit;
  transition: transform 0.3s ease;
}
.insight-card:hover {
  transform: translateY(-6px);
}
.insight-card {
  /* Remove underline from ALL links inside card */
}
.insight-card a {
  text-decoration: none;
  color: inherit;
}
.insight-card a:hover {
  text-decoration: none;
}
.insight-card .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 24px;
}
.insight-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 50px;
  display: block;
}
.insight-card .card-image .card-date-badge {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .insight-card .card-image .card-date-badge {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .insight-card .card-image .card-date-badge {
    font-size: 14px;
  }
}
.insight-card .card-image .card-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ed267f;
  color: #fff;
  padding: 10px 14px;
  border-radius: 0px 10px;
  text-align: center;
  z-index: 2;
}
.insight-card .card-image .card-date-badge br {
  display: block;
}
.insight-card .card-content .card-label {
  background: #ffcde4;
  color: #ed267f;
  margin-bottom: 24px;
}
.insight-card .card-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .insight-card .card-content h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .insight-card .card-content h4 {
    font-size: 18px;
  }
}
.insight-card .card-content h4 {
  color: #333333;
}
.insight-card .card-content h4 a {
  text-decoration: none;
  color: inherit;
}
.insight-card .card-content h4 :hover {
  color: #ed267f;
}

/* ============================================
  Report Details
============================================ */
.report-details {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .report-details {
    padding: 60px 0;
  }
}
.report-details {
  /* FULL WIDTH HEADER */
}
.report-details .report-header {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .report-details .report-header {
    margin-bottom: 40px;
  }
}
.report-details .overline {
  justify-content: center;
  margin-bottom: 20px;
}
.report-details {
  /* 2 COLUMN GRID */
}
.report-details .report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 992px) {
  .report-details .report-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.report-details p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .report-details p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .report-details p {
    font-size: 14px;
  }
}
.report-details p {
  margin-bottom: 16px;
  color: #333333;
}
.report-details {
  /* Only override when needed */
}
.report-details .description-two p {
  color: #ed267f;
}
.report-details .report-disclaimer {
  margin: 20px 0 30px;
}
.report-details .report-disclaimer a {
  text-decoration: underline;
  color: #ed267f;
}
.report-details .report-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.report-details .report-points li {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .report-details .report-points li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .report-details .report-points li {
    font-size: 14px;
  }
}
.report-details .report-points li {
  color: #333333;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.report-details .report-points li .point-icon {
  margin-right: 12px;
  flex-shrink: 0;
}
.report-details .report-image img {
  width: 100%;
  height: auto;
}
.report-details .report-disclaimer {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .report-details .report-disclaimer {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .report-details .report-disclaimer {
    font-size: 14px;
  }
}
.report-details .report-disclaimer {
  color: #333333;
  margin: 20px 0px 30px;
}
.report-details .report-disclaimer a {
  text-decoration: underline;
  color: #ed267f;
}
.report-details {
  /* Fix contact inside right */
}
.report-details .report-right {
  background-color: rgba(255, 205, 228, 0.4);
}
.report-details .report-right .contact-left {
  display: none;
}
.report-details .report-right .contact-wrapper {
  padding: 0;
}
.report-details .report-right .contact-wrapper .container {
  padding: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .report-details .report-right .wpcf7-form .two-col {
    grid-template-columns: 1fr;
  }
}

.related-posts {
  padding: 80px 0px 0px;
}
@media (max-width: 768px) {
  .related-posts {
    padding: 60px 0 0px;
  }
}
.related-posts h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .related-posts h2 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .related-posts h2 {
    font-size: 36px;
  }
}
.related-posts h2 {
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.become-partner {
  padding: 0 0 80px 0;
}
@media (max-width: 768px) {
  .become-partner {
    padding: 0 0 60px 0;
  }
}
.become-partner {
  /* FULL WIDTH HEADER */
}
.become-partner .report-header {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .become-partner .report-header {
    margin-bottom: 40px;
  }
}
.become-partner .overline {
  justify-content: center;
  margin-bottom: 20px;
}
.become-partner {
  /* 2 COLUMN GRID */
}
.become-partner .report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 992px) {
  .become-partner .report-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.become-partner p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .become-partner p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .become-partner p {
    font-size: 14px;
  }
}
.become-partner p {
  margin-bottom: 16px;
  color: #333333;
}
.become-partner {
  /* Only override when needed */
}
.become-partner .description-two p {
  color: #ed267f;
}
.become-partner .report-disclaimer {
  margin: 20px 0 30px;
}
.become-partner .report-disclaimer a {
  text-decoration: underline;
  color: #ed267f;
}
.become-partner .report-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.become-partner .report-points li {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .become-partner .report-points li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .become-partner .report-points li {
    font-size: 14px;
  }
}
.become-partner .report-points li {
  color: #333333;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.become-partner .report-points li .point-icon {
  margin-right: 12px;
  flex-shrink: 0;
}
.become-partner .report-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.become-partner .report-image img {
  width: 100%;
  height: auto;
}
.become-partner .report-disclaimer {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .become-partner .report-disclaimer {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .become-partner .report-disclaimer {
    font-size: 14px;
  }
}
.become-partner .report-disclaimer {
  color: #333333;
  margin: 20px 0px 30px;
}
.become-partner .report-disclaimer a {
  text-decoration: underline;
  color: #ed267f;
}
.become-partner {
  /* Fix contact inside right */
}
.become-partner .report-right {
  background-color: rgba(255, 205, 228, 0.4);
}
.become-partner .report-right .contact-left {
  display: none;
}
.become-partner .report-right .contact-wrapper {
  padding: 0;
}
.become-partner .report-right .contact-wrapper .container {
  padding: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .become-partner .report-right .wpcf7-form .two-col {
    grid-template-columns: 1fr;
  }
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.events-section h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  color: #333333;
  margin-bottom: 24px;
}

.events-section {
  padding: 0 0 80px 0;
}

.event-hero-section .overline {
  justify-content: center;
  margin-bottom: 24px;
}

.event-card {
  background: #ffffff;
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
}

.event-card .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 24px;
}

.event-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 50px;
  display: block;
}

.event-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 12px;
}
.event-card h4 :hover {
  color: #ed267f;
}

.event-card h4 a {
  text-decoration: none;
  color: inherit;
}

.event-card .date {
  color: #ed267f;
  font-weight: 500;
  margin-bottom: 15px;
}

.event-card p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-event-page {
  font-family: "DM Sans", sans-serif;
  color: #333333;
}

.event-hero-section {
  padding: 80px 0 40px;
  text-align: center;
}

.event-main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-meta-info {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #ed267f;
  margin: 20px 0;
}

.pink-text {
  color: #ed267f;
}

.video-container-bg {
  background: #ffcde4;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrapper {
  width: 90%;
  max-width: 1000px;
}

.event-video-player {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.event-description-box {
  max-width: 75%;
  margin: 40px auto 0;
  padding: 0 20px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  text-align: center;
}

.more-events-section {
  padding: 80px 0;
}

.events-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ============================= */
/* GLOBAL RESPONSIVE FIXES */
/* ============================= */
/* Tablet */
@media (max-width: 1024px) {
  .insights-grid,
  .events-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .insights-grid,
  .events-grid-layout {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* EVENT CARD RESPONSIVE */
/* ============================= */
.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.card-content {
  padding: 20px 0;
}

.card-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile text adjust */
@media (max-width: 768px) {
  .card-content h4 {
    font-size: 18px;
  }
  .card-content p {
    font-size: 13px;
  }
}
/* ============================= */
/* SINGLE EVENT HERO */
/* ============================= */
.event-hero-section {
  padding: 100px 0;
}

.event-meta-info {
  font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .event-hero-section {
    padding: 60px 0;
  }
  .event-main-title {
    font-size: 38px;
  }
  .event-meta-info {
    font-size: 14px;
  }
  .event-description-box {
    max-width: 100%;
  }
}
/* ============================= */
/* VIDEO SECTION */
/* ============================= */
.video-wrapper video {
  width: 100%;
  border-radius: 16px;
}

/* ============================= */
/* TABS RESPONSIVE */
/* ============================= */
.tabs-container {
  max-width: 400px;
}

.tabs__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 100px;
  gap: 5px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .tabs__buttons {
    display: flex;
    justify-content: center;
    border-radius: 30px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .tabs__btn {
    flex: 1 1 auto;
    font-size: 12px;
    text-align: center;
  }
}

/* Mobile center align */
@media (max-width: 768px) {
  .tabs__buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=style.css.map */
