/*
  Banner styles for Arintra hero
  - Reusable typography utility classes as requested
  - Responsive layout using CSS Grid/Flex
*/

/* ---------- Base / Resets ---------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

:root {
  --font-title: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --blue-900: #0B3AA9;
  /* deep */
  --blue-800: #0E4BD6;
  /* mid */
  --blue-700: #0F5CE4;
  /* light */
  --text-on-blue: #FFFFFF;
  --text-on-blue-soft: rgba(255, 255, 255, 0.86);
  --text-on-blue-muted: rgba(255, 255, 255, 0.72);
  --container-max: 1200px;
}

body {
  font-family: var(--font-body);
  color: var(--text-on-blue);
  background: #0E4BD6;
}

.container {
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
}

/* ---------- Typography Utilities ---------- */
/* Title: Manrope 800, 48px, line-height 56px, letter-spacing 0% */
.typo-title-48 {
  font-family: var(--font-title);
  font-weight: 800;
  /* ExtraBold */
  font-size: 48px;
  line-height: 56px;
  /* 56px */
  letter-spacing: 0;
  /* 0% */
}

/* Body: Roboto 400, 16px, line-height 159%, letter-spacing -3% */
.typo-body-16 {
  font-family: var(--font-body);
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  line-height: 1.59;
  /* 159% */
  letter-spacing: -0.03em;
  /* -3% */
}

/* Additional Body: Roboto 400, 24px, line-height 36px, letter-spacing -3% */
.typo-body-24 {
  font-family: var(--font-body);
  font-weight: 400;
  /* Regular */
  font-size: 24px;
  line-height: 1.5;
  /* 36px */
  letter-spacing: -0.03em;
  /* -3% */
}

/* ---------- Hero Banner ---------- */
.hero {
  /* Use provided background image for exact look */
  background-image: url('assets/blue-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--text-on-blue);
  display: grid;
  place-items: center;
  /* center container horizontally and vertically */
  min-height: 100vh;
  /* full viewport height */
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
}

.hero__content {
  max-width: 680px;
  /* Align left content to standard container gutter while allowing full-bleed media */
  margin-left: calc(max(16px, (100vw - var(--container-max)) / 2));
}

/* Full-bleed container in hero so media can touch right edge */
.hero .container {
  width: 100%;
  margin-inline: 0;
}

.brand {
  display: block;
  margin-bottom: 24px;
}

.brand__logo {
  height: 40px;
  width: auto;
}

.hero__title {
  margin: 0 0 20px 0;
}

.hero__text {
  margin: 0;
  color: var(--text-on-blue-soft);
}

.hero__media {
  position: relative;
  justify-self: end;
}

.hero__image {
  width: 100%;
  /* max-width: 520px;  */
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  border-radius: 16px;
  /* slight rounding to soften */
}

/* ---------- Responsiveness ---------- */
@media (max-width: 1024px) {
  .typo-title-48 {
    font-size: 42px;
    line-height: 50px;
  }

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

  .hero__media {
    order: -1;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .typo-title-48 {
    font-size: 36px;
    line-height: 44px;
  }
}


/* ---------- About Section ---------- */
.about {
  background: #FFFFFF;
  color: #0E1013;
  /* near-black for readability */
}

.about__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  /* similar ratio to hero */
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) 0;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  /* rounded corners like mock */
}

/* Removed collage-specific styles; reverted to single image layout */
.about__title {
  margin: 0 0 16px 0;
  color: #1A1F2C;
  /* deep gray/black heading */
}

.about__text {
  margin: 0;
  color: #2A2F3A;
  /* paragraph gray */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .typo-title-48.about__title {
    font-size: 36px;
    line-height: 44px;
  }

  .typo-body-24.about__text {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 480px) {
  .typo-title-48.about__title {
    font-size: 24px;
    line-height: 38px;
  }

  .typo-body-24.about__text {
    font-size: 18px;
    line-height: 28px;
  }
}

/* ---------- Methodology Section (scoped) ---------- */
.methodology {
  background: #F5F7FF;
  /* section background per spec */
  color: #0E1013;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 16px;
}

/* Typography: use existing utilities but ensure fallback if not applied */
.methodology>h2 {
  font-family: var(--font-title);
  font-weight: 800;
  /* ExtraBold */
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0;
  margin: 0 0 12px 0;
}

.methodology>p {
  font-family: var(--font-body);
  font-weight: 400;
  /* Regular */
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.03em;
  color: #1F2A37;
  max-width: 840px;
  margin: 0 auto 40px;
}

/* Outer Card */
.methodology .progress-outer {
  background: linear-gradient(89.95deg, #1541AC -36.06%, #FFFFFF 116.49%);
  border-radius: 94px;
  padding: 8px;
  margin: 0 auto 50px;
  max-width: var(--container-max);
}

/* Inner Card */
.methodology .progress-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #1442B3 0%, #FFFFFF 143.64%);
  border-radius: 94px;
  padding: 20px 40px;
  gap: clamp(24px, 8vw, 160px);
}

.methodology .step {
  background: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.2), 0 4px 8px rgba(16, 24, 40, 0.12);
}

.methodology .step img {
  width: 45px;
  height: 45px;
  display: block;
}

/* Categories */
.methodology .categories {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.methodology .category {
  flex: 1;
  min-width: 260px;
}

.methodology .category h3 {
  font-family: var(--font-body);
  font-weight: 700;
  /* Bold for method name */
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--blue-800);
  margin: 0 0 20px 0;
}

.methodology .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
}

.methodology .tag {
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(20, 41, 82, 0.12);
  border: 1px solid rgba(15, 92, 228, 0.06);
  font-family: var(--font-body);
  font-weight: 400;
  /* Regular */
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #1F2A37;
}

/* Responsive */
@media (max-width: 900px) {
  .methodology .progress-inner {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------- Research & Analysis Section ---------- */
.arintra-research {
  background: #FFFFFF;
  color: #0E1013;
}

.arintra-research .container {
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
}

.research__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(40px, 8vw, 72px) 0 clamp(20px, 4vw, 32px) 0;
}

/* Title: Manrope 800, 48/56, 0% */
.research__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0;
  margin: 0;
}

/* Subtext paragraph specs; max width ~671px as provided */
.research__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.03em;
  opacity: 1;
  max-width: 671px;
  margin: 0;
}

/* Cards layout */
.research__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
  padding: clamp(20px, 4vw, 32px) 0 clamp(56px, 8vw, 80px) 0;
}

.persona {
  background: linear-gradient(60.84deg, #0435AE 26.11%, #FFFFFF 161.94%);
  border-radius: 28px;
  padding: 24px;
  color: #FFFFFF;
  box-shadow: 0 16px 30px rgba(20, 41, 82, 0.20);
}

.persona__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}

.persona__avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFFFFF;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.persona__identity {
  display: grid;
  gap: 2px;
}

/* Name: Roboto 700 24px 120% -1% centered in header grid context (left-align here) */
.persona__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.01em;
}

/* Designation: Roboto 400 16px 120% -1% */
.persona__role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}

/* Section titles inside card: Roboto 700 20px 120% -1% */
.persona__section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.01em;
  margin: 16px 0 16px 0;
}

/* Paragraph inside card: Roboto 400 16px 24px -1% */
.persona__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .research__intro {
    grid-template-columns: 1fr;
  }

  .research__subtitle {
    max-width: none;
  }

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

/* ---------- Design Strategy & Approach Section ---------- */
.approach {
  /* background: linear-gradient(102deg, #0B3AA9 0%, #0E4BD6 60%, #0F5CE4 100%); */
  background: #0E4BD6 url('assets/blue-bg.webp') center/cover no-repeat;
  color: #FFFFFF;
}

.approach .container {
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
}

.approach__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(48px, 8vw, 96px) 0 clamp(20px, 5vw, 40px) 0;
}

.approach__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0;
  margin: 0;
}

.approach__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.02em;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

/* Cards grid */
.approach__cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
  /* as requested */
  padding: 24px 0 clamp(64px, 8vw, 96px) 0;
}

/* Explicit placement: first row 2 cards, second row 3 cards */
.approach__card:nth-child(1) {
  grid-column: 1 / span 3;
}

.approach__card:nth-child(2) {
  grid-column: 4 / span 3;
}

.approach__card:nth-child(3) {
  grid-column: 1 / span 2;
}

.approach__card:nth-child(4) {
  grid-column: 3 / span 2;
}

.approach__card:nth-child(5) {
  grid-column: 5 / span 2;
}

.approach__card {
  background: #FFFFFF;
  color: #0E1013;
  border-radius: 16px;
  /* as requested */
  padding: 32px;
  /* updated per request */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.approach__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* slight rounding for images */
  margin-bottom: 12px;
}

/* Card title uses Inter 700 per request */
.approach__card-title {
  font-family: 'Inter', Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin: 24px 0 16px 0;
  /* updated: top 24, bottom 16 */
}

/* Card content: Roboto 400 20px 140% -2% */
.approach__card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #2A2F3A;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .approach__intro {
    grid-template-columns: 1fr;
  }

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

/* ---------- Full-bleed Showcase ---------- */
.fullbleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Full-width responsive image without fixed height */
.fullbleed__image {
  display: block;
  /* remove inline gap */
  width: 100%;
  /* edge-to-edge */
  height: auto;
  /* keep aspect ratio */
}

/* ---------- Impact Section ---------- */
.impact {
  background: #FFFFFF;
  color: #0E1013;
}

.impact__container {
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}

.impact__title {
  font-family: var(--font-title);
  font-weight: 800;
  /* ExtraBold */
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0;
  margin: 0 0 12px 0;
}

.impact__text {
  font-family: var(--font-body);
  font-weight: 400;
  /* Regular */
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #1F2A37;
  margin: 0 auto 32px;
  max-width: 900px;
}

.impact__image {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .impact__title {
    font-size: 36px;
    line-height: 44px;
  }

  .impact__text {
    font-size: 20px;
    line-height: 32px;
  }
}

/* ---------- Guided User Journey ---------- */
.journey {
  background: #F5F7FF;
  /* requested background */
  background-image: url('assets/arintra-user-journey.webp');
  background-repeat: no-repeat;
  min-height: 100vh;
  background-position: right bottom;
  /* align image right-bottom */
  background-size: min(76%, 1200px);
}

.journey .impact__container {
  width: min(100% - 32px, var(--container-max));
  /* margin-inline: auto; */
  padding: clamp(64px, 10vw, 140px) 0;
  text-align: left;
}

.journey .impact__title {
  margin: 0 0 12px 0;
  color: #232323;
}

.journey .impact__text {
  max-width: 560px;
  margin: 0;
  /* no extra bottom spacing since image is background */
  /* readable width on left column */
}

@media (max-width: 1300px) {
  
  .journey {
    min-height: 500px;
    background-size: min(100%, 900px);
  }
}
@media (max-width: 1024px) {
  /* .journey {
    background-size: 80%;
  } */
}

@media (max-width: 768px) {
  .journey {
    background-size: 110%;
    background-position: right 20px bottom -10px;
  }

  .journey .impact__container {
    padding: 56px 0 96px;
  }

  .journey .impact__text {
    max-width: 100%;
  }
}

/* ---------- Trust & Credibility Section ---------- */
.trust {
  position: relative;
  overflow: hidden;
  /* Background image as requested; remove gradient colors */
  background: none;
  background-image: url('assets/blue-bg.webp');
  background-size: cover;
  background-position: right center;
  /* align like reference */
  color: #FFFFFF;
}

.trust::after {
  content: none;
  display: none;
}

.trust__container {
  width: 100%;
  /* full-bleed to let image touch the left edge */
  margin-inline: 0;
  /* remove side gutters */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /* image left, content right */
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  /* padding: clamp(56px, 8vw, 96px) 0; */
}

.trust__media {
  position: relative;
}

.trust__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  /* no rounding per reference */
  box-shadow: none;
  /* remove drop shadow */
}

.trust__content {
  padding: 0;
  background: transparent;
  /* gradient is provided by the section background */
  color: #FFFFFF;
  display: grid;
  align-content: center;
  /* vertically center text */
}

.trust__content .impact__title {
  text-align: left;
  margin: 0 0 12px 0;
}

.trust__content .impact__text {
  text-align: left;
  color: rgba(255, 255, 255, 0.90);
  margin: 0;
  max-width: 640px;
}

@media (max-width: 1024px) {
  .trust__container {
    grid-template-columns: 1fr;
  }

  .trust__content {
    order: 2;
  }

  .trust__media {
    order: 1;
  }
}

/* ---------- Adaptive & Scalable Experience Section ---------- */
.adaptive {
  background: #F5F7FF;
  color: #0E1013;
  padding: clamp(48px, 8vw, 96px) 0;
}

.adaptive__intro {
  text-align: center;
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
}

.adaptive__title {
  margin: 0 0 12px 0;
}

.adaptive__text {
  margin: 0 auto 28px;
  max-width: 860px;
  letter-spacing: -0.02em;
}

.adaptive__media {
  display: grid;
  place-items: center;
  padding-top: clamp(12px, 3vw, 24px);
}

.adaptive__image {
  width: min(100% - 32px, 1100px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(20, 41, 82, 0.18));
  border-radius: 18px;
}

@media (max-width: 768px) {
  .adaptive__image {
    width: min(100% - 24px, 720px);
    border-radius: 14px;
  }
}

/* ---------- Content That Educates Section ---------- */
.contentedu {
  background: #FFFFFF;
  color: #0E1013;
  padding: clamp(56px, 9vw, 110px) 0;
}

.contentedu__stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
  gap: clamp(20px, 4vw, 40px);
}

.contentedu__left {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contentedu__title {
  margin: 0;
}

.contentedu__text {
  margin: 0 0 16px 0;
  max-width: 640px;
  letter-spacing: -0.02em;
}

.contentedu__img {
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(20, 41, 82, 0.18));
  border-radius: 16px;
}

.contentedu__img--left {
  width: clamp(320px, 42vw, 560px);
}

.contentedu__right {
  align-self: start;
}

.contentedu__img--right {
  width: clamp(420px, 48vw, 720px);
  margin-top: -40px;
}

@media (max-width: 1024px) {
  .contentedu__stage {
    grid-template-columns: 1fr;
  }

  .contentedu__img--right {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .contentedu__text {
    max-width: none;
  }

  .contentedu__img {
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 12px 24px rgba(20, 41, 82, 0.14));
  }

  .contentedu__img--right {
    margin-top: 0;
  }
}

/* ---------- Outcome Section ---------- */
.outcome {
  color: var(--text-on-blue);
  background: #0E4BD6 url('assets/blue-bg.webp') center/cover no-repeat;
  text-align: center;
  padding: clamp(72px, 12vw, 140px) 16px;
}

.outcome__container {
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
}

.outcome__title {
  margin: 0 0 16px 0;
}

.outcome__text {
  margin: 0 auto;
  max-width: 980px;
  letter-spacing: -0.02em;
  color: var(--text-on-blue-soft);
}

/* ---------- Scroll Animation ---------- */
.scroll-animation {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.scroll-animation.is-visible {
  opacity: 1;
}

.scroll-animation-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-animation-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animation-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-animation-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Mobile Responsive Enhancements --- */
@media (max-width: 600px) {
  .methodology>h2 {
    font-size: 24px;
  }

  .methodology>p {
    font-size: 18px;
    line-height: normal;
  }

  /* Typography */
  .typo-title-48,
  .about__title,
  .research__title,
  .approach__title,
  .impact__title,
  .adaptive__title,
  .contentedu__title,
  .outcome__title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .typo-body-24,
  .about__text,
  .research__subtitle,
  .approach__subtitle,
  .impact__text,
  .adaptive__text,
  .contentedu__text,
  .outcome__text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .typo-body-16,
  .persona__role,
  .persona__text {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Container & Section Padding */
  .container,
  .about__container,
  .arintra-research .container,
  .approach .container,
  .impact__container,
  .adaptive__intro,
  .contentedu__stage,
  .outcome__container {
    padding: 12px 8px !important;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  section,
  .about,
  .methodology,
  .arintra-research,
  .approach,
  .impact,
  .adaptive,
  .contentedu,
  .outcome {
    padding: 24px 0 !important;
  }

  /* Cards & Grids */
  .research__intro,
  .about__container,
  .approach__intro,
  .contentedu__stage,
  .trust__container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .research__cards,
  .approach__cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  .persona,
  .approach__card {
    padding: 12px !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
  }

  .persona__header {
    gap: 8px;
    margin-bottom: 16px;
  }

  .persona__avatar {
    width: 36px !important;
    height: 36px !important;
  }

  .approach__img,
  .impact__image,
  .trust__image,
  .adaptive__image,
  .contentedu__img {
    width: 100% !important;
    border-radius: 8px !important;
    margin-bottom: 8px;
  }

  /* Tags */
  .tag,
  .methodology .tag {
    font-size: 12px !important;
    padding: 6px 10px !important;
    margin: 2px 4px 2px 0 !important;
  }

  /* Hide or stack images if needed */
  .about__media,
  .trust__media,
  .contentedu__right {
    margin-bottom: 12px;
  }

  .contentedu__img--left,
  .contentedu__img--right {
    width: 100% !important;
    margin-top: 0 !important;
  }

  /* Remove unnecessary box-shadows for cleaner mobile look */
  .persona,
  .approach__card {
    box-shadow: none !important;
  }

  /* Hide progress-outer on mobile */
  .progress-outer {
    display: none !important;
  }

  /* Stack approach cards vertically on mobile */
  .approach__cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .approach__card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* trust__content left/right padding */
  .trust__content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Hero section top padding */
  .hero {
    padding-top: 100px !important;
  }
}