/* ==========================================
   Memorable Presence™ - Custom Stylesheet
   Replacing Tailwind CSS with Pure CSS
   ========================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Oswald:wght@700&family=League+Spartan:wght@600;700&display=swap');

/* --- Root Variables & CSS Reset --- */
:root {
  --mp-red: #c11b17;
  --mp-off-white: #f2f1ef;
  --mp-grey: #333333;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--mp-off-white);
  color: var(--mp-grey);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* --- Keyframe Animations --- */
@keyframes slideUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-down {
  animation: slideDown 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease-out forwards;
}

.opacity-0 {
  opacity: 0;
}

/* --- Custom Typography & Helpers --- */
.font-league {
  font-family: 'League Spartan', sans-serif;
}

.heading-massive {
  font-family: 'Oswald', 'Impact', sans-serif;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.rotated-90 {
  transform: rotate(180deg);
}

/* --- Textures & Effects --- */
.texture-bg {
  background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
  background-color: var(--mp-off-white);
}

.wavy-bg {
  background-image: radial-gradient(circle at 10px 10px, rgba(193, 27, 23, 0.05) 2px, transparent 0);
  background-size: 24px 24px;
}

.red-banner-vertical {
  background-color: var(--mp-red);
  color: white;
  width: 100px;
}

.perspective-1000 {
  perspective: 1000px;
}

.transform-style-3d {
  transform-style: preserve-3d;
}

.backface-hidden {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.rotate-y-180 {
  transform: rotateY(180deg);
}

.group:hover .group-hover\:rotate-y-180 {
  transform: rotateY(180deg);
}

/* Color & Utility Classes */
.text-mp-red {
  color: var(--mp-red);
}

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

.text-mp-off-white {
  color: var(--mp-off-white);
}

.bg-mp-off-white {
  background-color: var(--mp-off-white);
}

.text-mp-grey {
  color: var(--mp-grey);
}

.text-white {
  color: #ffffff;
}

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

.text-black {
  color: #000000;
}

.bg-black {
  background-color: #000000;
}

.text-gray-800 {
  color: #1f2937;
}

.text-slate-800 {
  color: #1e293b;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-xl {
  font-size: 1.25rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-snug {
  line-height: 1.375;
}

.leading-none {
  line-height: 1;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.drop-shadow-xl {
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}

.drop-shadow-2xl {
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.grayscale {
  filter: grayscale(100%);
}

.underline {
  text-decoration: underline;
}

/* Dynamic Hex Colors */
.text-\[\#fde047\] {
  color: #fde047;
}

.text-\[\#5e8b54\] {
  color: #5e8b54;
}

.text-\[\#3b5998\] {
  color: #3b5998;
}

.text-\[\#fbfaa5\] {
  color: #fbfaa5;
}

/* ==========================================
   SECTION-SPECIFIC LAYOUT & STYLES
   ========================================== */

/* --- 1. HERO SECTION --- */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-image: url('./bg-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  #hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    min-height: 560px;
    margin-top: 50px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  /* max-w-7xl */
}

.hero-title-mp {
  color: var(--mp-red);
  font-size: 14vw;
  line-height: 1.05;
  margin-bottom: 0;
  margin-left: -0.035em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 12rem;
  }
}

.hero-title-tm {
  font-size: 0.4em;
  vertical-align: top;
}

.hero-subtitle-container {
  margin-top: 2rem;
  max-width: 48rem;
  /* max-w-3xl */
}

@media (min-width: 1024px) {
  .hero-subtitle-container {
    max-width: 56rem;
    /* max-w-4xl */
  }
}

.hero-sub-text1 {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--mp-red);
}

@media (min-width: 768px) {
  .hero-sub-text1 {
    font-size: 1.5rem;
  }
}

.hero-sub-text2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  column-gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-sub-text2 {
    font-size: 2.25rem;
    flex-wrap: nowrap;
  }
}

.hero-sub-text2-part2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--mp-red);
}

@media (min-width: 768px) {
  .hero-sub-text2-part2 {
    font-size: 1.5rem;
  }
}

.hero-flyer-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .hero-flyer-wrapper {
    position: absolute;
    bottom: 4rem;
    right: 8rem;
    margin-top: 0;
  }
}

.hero-flyer-link {
  display: block;
  width: 10rem;
  /* w-40 */
  cursor: pointer;
  transition: transform 300ms ease;
}

.hero-flyer-link:hover {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .hero-flyer-link {
    width: 12rem;
  }
}

@media (min-width: 768px) {
  .hero-flyer-link {
    width: 14rem;
  }
}

@media (min-width: 1024px) {
  .hero-flyer-link {
    width: 16rem;
  }
}

.hero-flyer-img {
  width: 100%;
  transform: rotate(2deg);
}

/* --- 2. EXPERTS SECTION --- */
#experts {
  background-image: url('./bg-experts.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  #experts {
    padding: 5rem 5rem;
  }
}

.experts-grid {
  max-width: 72rem;
  /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.experts-left-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

.experts-header {
  margin-bottom: 1.5rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .experts-header {
    margin-bottom: 0;
    margin-left: -3rem;
  }
}

.experts-heading-massive {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .experts-heading-massive {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .experts-heading-massive {
    font-size: 3rem;
  }
}

.experts-banner-tag {
  background-color: #ffffff;
  color: #000000;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .experts-banner-tag {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.vinay-profile {
  z-index: 20;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .vinay-profile {
    margin-left: 10rem;
    margin-top: -5rem;
  }
}

@media (min-width: 1024px) {
  .vinay-profile {
    margin-left: 13rem;
    margin-top: -4.5rem;
  }
}

.profile-img-card {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
}

.profile-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-badge {
  position: absolute;
  top: 40%;
  right: -0.75rem;
  background-color: #000000;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .profile-badge {
    right: -4rem;
    font-size: 0.875rem;
  }
}

.quote-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.quote-bg-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -3rem;
  left: -1rem;
}

.quote-text-vinay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
  color: #ffffff;
}

@media (min-width: 768px) {
  .quote-text-vinay {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.125rem;
  }
}

.experts-right-col {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .experts-right-col {
    align-items: center;
    padding-top: 0;
  }
}

.sanjay-profile {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .sanjay-profile {
    margin-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .sanjay-profile {
    margin-right: 5rem;
  }
}

.sanjay-quote-container {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.quote-text-sanjay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 5rem;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
  color: #ffffff;
}

@media (min-width: 768px) {
  .quote-text-sanjay {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.125rem;
  }
}

/* --- 3. ABOUT / VALUE PROPOSITION SECTION --- */
#about-presence {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--mp-red);
  color: #ffffff;
}

.about-bg-hero-texture {
  position: absolute;
  left: 0;
  top: 0;
  width: 54%;
  height: 360px;
  background-image: url('./bg-hero.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media (min-width: 640px) {
  .about-bg-hero-texture {
    height: 420px;
  }
}

@media (min-width: 1024px) {
  .about-bg-hero-texture {
    width: 24%;
    height: 100%;
  }
}

.about-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 580px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.about-left-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
  min-height: 0;
}

@media (min-width: 1024px) {
  .about-left-col {
    grid-column: span 5 / span 5;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 3rem;
    padding-bottom: 0;
    padding-left: 1rem;
    min-height: 580px;
  }
}

.about-img-wrapper {
  position: relative;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -0.75rem;
}

@media (min-width: 640px) {
  .about-img-wrapper {
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .about-img-wrapper {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  max-height: 340px;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .about-img {
    max-height: 480px;
  }
}

@media (min-width: 1024px) {
  .about-img {
    max-height: 720px;
  }
}

.badge-dhruti {
  position: absolute;
  top: 32%;
  left: -1.8rem;
  background-color: #000000;
  color: #ffffff;
  padding: 0.35rem 2.2rem 0.35rem 0.75rem;
  min-width: 155px;
  display: inline-flex;
  justify-content: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  white-space: nowrap;
  text-align: left;
  z-index: 5;
}

@media (min-width: 640px) {
  .badge-dhruti {
    left: 1.2rem;
  }
}

@media (min-width: 768px) {
  .badge-dhruti {
    font-size: 0.875rem;
  }
}

.badge-shaleel {
  position: absolute;
  top: 20%;
  right: -1.8rem;
  background-color: #000000;
  color: #ffffff;
  padding: 0.35rem 0.75rem 0.35rem 2.2rem;
  min-width: 155px;
  display: inline-flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  white-space: nowrap;
  text-align: right;
  z-index: 5;
}

@media (min-width: 640px) {
  .badge-shaleel {
    right: 1.8rem;
  }
}

@media (min-width: 768px) {
  .badge-shaleel {
    font-size: 0.875rem;
  }
}

.about-right-col {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .about-right-col {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-right-col {
    grid-column: span 7 / span 7;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}

.about-decorative-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16rem;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

@media (min-width: 768px) {
  .about-decorative-wave {
    width: 24rem;
  }
}

.about-text-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.about-text-content>*+* {
  margin-top: 1.5rem;
}

.about-p {
  font-size: 1rem;
  line-height: 1.625;
  color: #ffffff;
  font-weight: 400;
}

@media (min-width: 640px) {
  .about-p {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .about-p {
    font-size: 1.25rem;
  }
}

.about-heading-box {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.about-heading-yellow {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbfaa5;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .about-heading-yellow {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .about-heading-yellow {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-heading-yellow {
    font-size: 3rem;
  }
}

.about-tm {
  font-size: 0.6em;
  vertical-align: top;
}

/* --- 4. IMPACT SECTION --- */
#impact {
  background-image: url('./bg-hero.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.impact-title-container {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  text-align: center;
}

.impact-title {
  color: var(--mp-red);
  font-size: 3rem;
}

@media (min-width: 768px) {
  .impact-title {
    font-size: 4.5rem;
  }
}

.impact-grid-outer {
  position: relative;
  background-image: url('./bg-impact.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 1200px;
  border-top: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  overflow: hidden;
}

@media (min-width: 768px) {
  .impact-grid-outer {
    height: 700px;
  }
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.impact-grid-inner {
  max-width: 64rem;
  /* max-w-5xl */
  margin-left: 0;
  margin-right: auto;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .impact-grid-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.impact-card-wrapper {
  height: 82%;
  width: 100%;
  cursor: pointer;
}

.impact-card-wrapper.self-start {
  align-self: flex-start;
}

.impact-card-wrapper.self-end {
  align-self: flex-end;
}

.impact-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 700ms ease;
  transform-style: preserve-3d;
}

.impact-card-wrapper:hover .impact-card-inner {
  transform: rotateY(180deg);
}

.impact-card-face-front-red {
  position: absolute;
  inset: 0;
  background-color: var(--mp-red);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 0.75rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.impact-card-face-front-white {
  position: absolute;
  inset: 0;
  background-color: var(--mp-off-white);
  background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 0.75rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.impact-card-face-back-red {
  position: absolute;
  inset: 0;
  background-color: var(--mp-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.75rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
}

.impact-card-face-back-white {
  position: absolute;
  inset: 0;
  background-color: var(--mp-off-white);
  background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.75rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
}

.impact-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 1024px) {
  .impact-num {
    font-size: 3.75rem;
  }
}

.impact-vert-title {
  font-size: 3.75rem;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .impact-vert-title {
    font-size: 4.5rem;
  }
}

/* --- 5. WHO IS THIS FOR SECTION --- */
#for-whom {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url('./bg-hero-with-element.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  #for-whom {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 14rem;
    /* md:pl-56 */
  }
}

@media (min-width: 1024px) {
  #for-whom {
    padding-left: 18rem;
    /* lg:pl-72 */
  }
}

.desktop-banner-side {
  display: none;
}

@media (min-width: 768px) {
  .desktop-banner-side {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 11rem;
    /* w-44 */
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: var(--mp-red);
    color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    z-index: 20;
  }
}

@media (min-width: 1024px) {
  .desktop-banner-side {
    width: 15rem;
    /* w-60 */
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.desktop-banner-text {
  font-size: 3rem;
  white-space: nowrap;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
}

.for-whom-container {
  max-width: 56rem;
  /* max-w-4xl */
  margin-left: 0;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .for-whom-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.mobile-banner-top {
  display: block;
  background-color: var(--mp-red);
  color: #ffffff;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.mobile-banner-top h3 {
  line-height: 1.4;
}

@media (min-width: 768px) {
  .mobile-banner-top {
    display: none;
  }
}

.for-whom-title {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  color: #000000;
}

@media (min-width: 768px) {
  .for-whom-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .for-whom-title {
    font-size: 4.5rem;
  }
}

.audience-list {
  max-width: 48rem;
  /* max-w-3xl */
}

.audience-list>*+* {
  margin-top: 2.5rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.audience-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  border: 2px solid var(--mp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
}

@media (min-width: 768px) {
  .audience-icon-circle {
    width: 6rem;
    height: 6rem;
  }
}

.audience-svg {
  width: 3rem;
  height: 3rem;
  color: var(--mp-red);
}

@media (min-width: 768px) {
  .audience-svg {
    width: 4rem;
    height: 4rem;
  }
}

.audience-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.375;
  color: #000000;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .audience-text {
    font-size: 1.5rem;
    margin-top: 0.75rem;
  }
}

/* --- 6. IMPRESSION WE LEAVE BEHIND SECTION --- */
#impression-we-leave-behind {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url('./bg-hero-with-element.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(209, 213, 219, 0.4);
}

@media (min-width: 768px) {
  #impression-we-leave-behind {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 14rem;
  }
}

@media (min-width: 1024px) {
  #impression-we-leave-behind {
    padding-left: 17rem;
  }
}

.impression-container {
  max-width: 56rem;
  margin-left: 0;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .impression-container {
    padding-left: 4rem;
  }
}

@media (min-width: 1024px) {
  .impression-container {
    padding-left: 6rem;
  }
}

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-top-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
}

.testimonial-img {
  margin-bottom: 1rem;
  width: 100%;
  object-fit: cover;
  border-radius: 0.125rem;
}

.testimonial-quote {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1f2937;
  line-height: 1.375;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.testimonials-grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .testimonials-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.testimonial-bottom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}

/* --- 7. FOOTER PRE-CTA --- */
.pre-cta-section {
  background-color: var(--mp-red);
  color: #ffffff;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.pre-cta-container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.pre-cta-container>*+* {
  margin-top: 1rem;
}

.pre-cta-heading {
  font-size: 1.5rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .pre-cta-heading {
    font-size: 1.875rem;
  }
}

/* --- 8. CLOSING / CONTACT CONVERSATION --- */
.contact-conv-section {
  padding: 1.25rem 1.5rem;
  text-align: center;
  background-image: url('./bg-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(209, 213, 219, 0.4);
  border-bottom: 1px solid rgba(209, 213, 219, 0.4);
}

@media (min-width: 768px) {
  .contact-conv-section {
    padding: 1.75rem 1.5rem;
  }
}

.contact-conv-container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-conv-subtext {
  font-size: 1.25rem;
  color: #2b3e50;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .contact-conv-subtext {
    font-size: 1.5rem;
  }
}

.contact-links-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-links-group {
    gap: 2.5rem;
  }
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b3e50;
  transition: color 150ms ease;
}

@media (min-width: 768px) {
  .contact-link {
    font-size: 1.5rem;
  }
}

.contact-link-email:hover {
  color: #dc2626;
}

.contact-link-phone:hover {
  color: #16a34a;
}

.contact-svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.svg-email {
  color: #dc2626;
}

.svg-whatsapp {
  color: #22c55e;
}

/* --- 9. CONTACT IMAGE SECTION --- */
.contact-img-section {
  background-image: url('./bg-experts.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 3rem 0.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-img-section {
    padding: 4rem 1.5rem;
  }
}

.contact-img-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.contact-img-box {
  position: relative;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .contact-img-box {
    max-width: 72rem;
  }
}

.contact-img-mp {
  width: 100%;
  border-color: #ffffff;
}