    @font-face {
      font-family: 'Ivy Presto Text';
      src: url('../fonts/fonnts.com-Ivy-Presto-Text-Light.otf') format('opentype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Ivy Presto Headline Thin';
      src: url('../fonts/fonnts.com-Ivy-Presto-Headline-Thin.otf') format('opentype');
      font-weight: 100;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Daymore Script';
      src: url('../fonts/Daymore Script.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { overflow-x: hidden; max-width: 100%; }

    /* ===== TOP NAV ===== */
    .top-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 50px 5% 0px 5%;
      gap: 32px;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
    }
    .top-nav__links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .top-nav__links a {
      font-family: 'Ivy Presto Text', serif;
      font-size: 16px;
      font-weight: 300;
      color: #212121;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      transition: color 0.2s ease;
    }
    .top-nav__links a:hover {
      color: #112B45;
    }
    .top-nav__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      width: 28px;
      height: 24px;
      background: none;
      border: none;
      padding: 0;
      z-index: 11;
    }
    .top-nav__hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: #212121;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .top-nav__hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .top-nav__hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .top-nav__hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ===== MOBILE LOGO (despre-mine) ===== */
    .dm-logo-wrapper--mobile {
      display: none;
    }
    .dm-logo-pill {
      background-color: transparent;
      border: 1.5px solid #000000;
      border-radius: 999px;
      padding: 2px 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .dm-logo {
      display: block;
    }

    @media (max-width: 768px) {
      .dm-logo-wrapper--mobile {
        display: flex;
        position: absolute;
        top: 40px;
        left: 7%;
        z-index: 11;
      }
      .dm-logo {
        max-width: 90px;
        width: 90px;
      }
      .top-nav {
        justify-content: flex-end;
        padding-top: 30px;
      }
      .top-nav__hamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        align-items: center;
        justify-content: center;
        margin-left: auto;
      }
      .top-nav__links {
        display: none;
        position: absolute;
        top: 100%;
        right: 5%;
        background: #fff;
        flex-direction: column;
        padding: 20px 30px;
        gap: 18px;
        border-radius: 4px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 10;
      }
      .top-nav__links a {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
      }
      .top-nav__links.open {
        display: flex;
      }
    }
    body { font-family: 'League Spartan', sans-serif; font-size: 16px; color: #212121; -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    :root {
      --color-peach-bg: rgb(255, 245, 241);
      --color-white: rgb(255, 255, 255);
      --color-black: rgb(0, 0, 0);
      --color-tab-text: #be6f7a;
      --color-transparent: rgba(0, 0, 0, 0);
      --font-primary: 'League Spartan', sans-serif;
      --section-padding-y: 48px;
      --container-max-width: 1350px;
      --container-padding-x: 12px;
      --panel-padding: 48px;
      --grid-gap: 24px;
      --items-gap: 16px;
      --col-padding-x: 12px;
      --sf-animation-duration: 0.3s;
    }

    .section-services {
      background: url('../images/despre-mine-bg.webp') top center no-repeat;
      background-size: 100% auto;
      padding-top: 33px;
      padding-bottom: 1px;
      position: relative;
      font-family: var(--font-primary);
      font-size: 16px;
      font-weight: 400;
      font-style: normal;
      line-height: 25.6px;
      letter-spacing: normal;
    }
    .services-container {
      margin-left: auto;
      margin-right: auto;
      max-width: var(--container-max-width);
      padding-left: var(--container-padding-x);
      padding-right: var(--container-padding-x);
      position: relative;
      width: 100%;
    }
    .services-row {
      display: flex;
      flex-flow: row wrap;
      flex-wrap: wrap;
      margin-left: -12px;
      margin-right: -12px;
      position: relative;
    }
    .services-heading-col {
      flex-shrink: 0;
      margin-left: 16.6667%;
      max-width: 100%;
      padding-left: 12px;
      padding-right: 12px;
      position: relative;
      width: 66.6667%;
    }
    .services-heading {
      font-family: 'Ivy Presto Text', serif;
      font-size: 90px;
      font-style: italic;
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 42px;
      position: relative;
      text-align: center;
      text-wrap: pretty;
      color: rgb(40, 20, 35);
    }
    .services-subtitle {
      font-size: 22.08px;
      font-weight: 500;
      line-height: 35.328px;
      margin-bottom: 16px;
      position: relative;
      text-align: center;
      text-wrap: pretty;
      color: var(--color-black);
    }
    .services-tabs-container {
      font-family: 'League Spartan', sans-serif;
      margin-left: auto;
      margin-right: auto;
      max-width: var(--container-max-width);
      padding-left: var(--container-padding-x);
      padding-right: var(--container-padding-x);
      position: relative;
      width: 100%;
    }
    .services-tabs-row {
      display: flex;
      flex-flow: row wrap;
      flex-wrap: wrap;
      margin-left: -12px;
      margin-right: -12px;
      padding-bottom: 48px;
      padding-top: 48px;
      position: relative;
    }
    .services-tabs-col {
      flex-basis: 0%;
      flex-grow: 1;
      flex-shrink: 0;
      max-width: 100%;
      padding-left: 12px;
      padding-right: 12px;
      position: relative;
      width: 100%;
    }
    .services-tab-nav {
      display: flex;
      flex-flow: row wrap;
      flex-wrap: wrap;
    }
    .services-tab-link {
      position: relative;
      overflow: hidden;
      border: none !important;
      outline: none !important;
      background: none;
      border-radius: 12px 12px 0px 0px;
      color: var(--color-tab-text);
      cursor: pointer;
      flex-basis: 0px;
      flex-grow: 1;
      font-size: clamp(1rem, 4vw, 2.25rem);
      line-height: 30.08px;
      font-family: 'League Spartan', sans-serif;
      font-weight: 400;
      margin-bottom: -1px;
      padding-top: 24px;
      padding-bottom: 24px;
      text-align: center;
      text-decoration: none;
      transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    }
    .services-tab-link--therapy   { order: 1; z-index: 1; }
    .services-tab-link--testing   { order: 0; z-index: 1; }
    .services-tab-link--training  { order: 2; z-index: 1; }
    .services-tab-link::after {
      content: "";
      position: absolute;
      top: 0%;
      left: 15%;
      width: 70%;
      height: 240%;
      background-color: white;
      border-top-left-radius: 50%;
      border-top-right-radius: 50%;
      border-width: 1px 1px 0px;
      border-top-style: solid;
      border-right-style: solid;
      border-left-style: solid;
      border-top-color: white;
      border-right-color: white;
      border-left-color: white;
      border-bottom-style: initial;
      border-bottom-color: initial;
      border-image: initial;
      z-index: -1;
      opacity: 0;
      transition: opacity var(--sf-animation-duration) ease-in-out;
    }
    .services-tab-link:hover::after,
    .services-tab-link.active::after { opacity: 1; }
    .services-tab-link.active {
      background: none;
      border: none;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 576px) {
      .services-tab-link.active::after { left: 0px; width: 100%; }
    }
    .services-tab-panel {
      background-color: var(--color-white);
      border-radius: 4px;
      padding: var(--panel-padding);
      position: relative;
      transition: visibility 0.3s linear, opacity 0.3s linear;
    }
    .services-tab-panel--hidden { display: none; opacity: 0; visibility: hidden; }
    .services-grid {
      display: flex;
      flex-flow: row wrap;
      flex-wrap: wrap;
      gap: var(--grid-gap);
      row-gap: var(--grid-gap);
      margin-left: -12px;
      margin-right: -12px;
      position: relative;
    }
    .services-category {
      flex-basis: 0%;
      flex-grow: 1;
      flex-shrink: 0;
      max-width: 100%;
      padding-left: var(--col-padding-x);
      padding-right: var(--col-padding-x);
      position: relative;
      width: 100%;
    }
    .services-category__title {
      font-size: 25px;
      font-weight: 600;
      line-height: 30px;
      margin-bottom: 5.52px;
      position: relative;
      text-align: center;
      text-wrap: pretty;
      color: var(--color-black);
    }
    .services-category__items {
      align-items: center;
      display: flex;
      flex-direction: column;
      flex-flow: column wrap;
      flex-wrap: wrap;
      gap: var(--items-gap);
      row-gap: var(--items-gap);
      margin-top: 24px;
      position: relative;
      text-align: center;
    }
    .services-category__item {
      font-size: 22px;
      line-height: 32px;
      text-align: center;
      text-wrap: pretty;
      color: var(--color-black);
      font-weight: 400;
    }
    @media (max-width: 768px) {
      .section-services { background-size: 100% 100%; }
      .services-heading { font-size: 62px; line-height: 68.4px; }
      .services-heading span { display: block; }
      .services-subtitle { font-size: 18px; line-height: 28.8px; }
      .services-heading-col { margin-left: 0; width: 100%; }
      .services-tab-panel { padding: 24px 16px; }
      .services-grid { flex-direction: row; gap: 16px; margin-left: 0; margin-right: 0; }
      .services-category__title { font-size: 20px; line-height: 25px; }
      .services-category__item { font-size: 18px; line-height: 28px; }
      .services-category { padding-left: 0; padding-right: 0; }
      .services-tabs-row { padding-top: 24px; padding-bottom: 24px; }
      .services-tab-link { font-size: 23px; line-height: 23px; padding-top: 16px; padding-bottom: 16px; }
    }
    @media (max-width: 480px) {
      .services-category__item { font-size: 18px; line-height: 26px; }
      .services-category__title { font-size: 20px; }
      .services-grid { flex-wrap: nowrap; }
      .services-category { flex-shrink: 1; min-width: 0; }
      .services-heading { font-size: 38px; line-height: 44px; }
      .services-heading span:first-child { margin-bottom: 5px; }
      .services-tab-link { font-size: 20px; line-height: 20px; }
      .services-tab-link::after {
        left: -2.5px;
        width: calc(100% + 5px);
      }
      .services-tab-link:hover::after,
      .services-tab-link.active::after {
        left: -2.5px;
        width: calc(100% + 5px);
      }
    }
    @media (max-width: 992px) and (min-width: 769px) {
      .services-heading { font-size: 40px; line-height: 48px; }
      .services-heading-col { margin-left: 8.333%; width: 83.333%; }
      .services-tab-panel { padding: 32px; }
    }

    /* ============================================================
       SECTION 4 - 3 STEPS
       ============================================================ */
    .section4-outer {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      align-content: center;
      align-items: center;
      width: 100%;
      position: relative;
      background-image: linear-gradient(rgb(251, 242, 242) 0%, #ffddf1 100%);
      background-color: rgb(251, 242, 242);
      color-scheme: light;
    }
    .section4-inner {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      align-content: center;
      align-items: center;
      justify-content: center;
      max-width: 1280px;
      width: 100%;
      padding-top: 30px;
      padding-bottom: 40px;
      gap: 34px;
      position: relative;
    }
    .section4-heading-wrapper .section-cases__title {
      width: 100%;
      max-width: 875px;
      margin: 0 auto 47px;
      text-align: center;
    }
    .section4-heading-wrapper .section-cases__title-line {
      display: block;
      font-family: 'Ivy Presto Text', serif;
      font-style: italic;
      font-weight: 500;
    }
    .section4-heading-wrapper .section-cases__title-line--first,
    .section4-heading-wrapper .section-cases__title-line--last {
      font-size: 60px;
      font-weight: 500;
      line-height: 1;
    }
    .section4-heading-wrapper .section-cases__title-line--first {
      text-align: left;
    }
    .section4-heading-wrapper .section-cases__title-line--main {
      font-size: 100px;
      font-weight: 500;
      line-height: 1;
      text-align: center;
    }
    .section4-heading-wrapper .section-cases__title-line--last {
      text-align: right;
    }
    .section4-heading-wrapper .section-cases__title-line--first {
      margin-bottom: -40px;
    }
    .section4-heading-wrapper .section-cases__title-line--main {
      margin-bottom: -25px;
    }
    .section4-heading-wrapper .section-cases__title-line--first {
      color: rgb(180, 160, 175);
      margin-left: -200px;
    }
    .section4-heading-wrapper .section-cases__title-line--last {
      color: rgb(180, 160, 175);
      margin-right: -200px;
    }
    .section4-heading-wrapper .section-cases__title-line--main {
      color: rgb(40, 20, 35);
      text-shadow: rgba(140, 80, 120, 0.2) 0px 0px 40px;
      text-transform: lowercase;
    }
    .section4-heading-wrapper {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      justify-content: flex-start;
      overflow-wrap: break-word;
      white-space: pre-wrap;
      word-break: break-word;
      position: relative;
      width: 100%;
      will-change: transform;
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.000833333, 0, 0, 0, 1);
    }
    .section4-cards-row {
      display: flex;
      flex-direction: row;
      flex-shrink: 0;
      align-content: flex-start;
      align-items: flex-start;
      justify-content: center;
      gap: 32px;
      max-width: 1264px;
      width: 100%;
      overflow: visible;
      position: relative;
      will-change: transform;
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.000833333, 0, 0, 0, 1);
    }
    .section4-card {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      flex-basis: 0px;
      flex-shrink: 0;
      align-content: flex-start;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 24px;
      background-image: linear-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
      border-radius: 24px;
      padding: 0px 32px 0px 32px;
      overflow: hidden;
      position: relative;
      width: 1px;
      min-width: 0;
    }
    .section4-step-text-area {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      align-content: flex-start;
      align-items: flex-start;
      gap: 8px;
      justify-content: center;
      overflow: hidden;
      position: relative;
      width: 90%;
    }
    .section4-card:nth-child(2) .section4-step-text-area,
    .section4-card:nth-child(3) .section4-step-text-area {
      width: 100%;
    }
    .section4-step-text-wrapper {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      justify-content: flex-start;
      overflow-wrap: break-word;
      white-space: pre-wrap;
      word-break: break-word;
      position: relative;
      width: 100%;
    }
    .section4-step-list {
      font-family: 'League Spartan', sans-serif;
      font-size: 25px;
      margin: 0;
      letter-spacing: -0.5px;
      line-height: 33px;
      overflow-wrap: break-word;
      text-align: left;
      white-space: pre-wrap;
      word-break: break-word;
      position: relative;
      list-style-position: inside;
      padding-left: 0;
    }
    .section4-step-list li {
      counter-increment: list-item 1;
      display: list-item;
      font-family: 'League Spartan', sans-serif;
      font-size: 25px;
      letter-spacing: -0.5px;
      line-height: 33px;
      overflow-wrap: break-word;
      padding-left: 29.304px;
      text-align: left;
      white-space: pre-wrap;
      word-break: break-word;
    }
    .section4-step-list li p {
      font-family: 'League Spartan', sans-serif;
      font-size: 25px;
      letter-spacing: -0.5px;
      line-height: 33px;
      overflow-wrap: break-word;
      text-align: left;
      white-space: pre-wrap;
      word-break: break-word;
      display: inline;
    }
    .section4-card-img-wrapper {
      width: 100%;
      flex-shrink: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: visible;
    }
    .section4-card-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      border-radius: 0 0 12px 12px;
    }
    .section4-cta-wrapper {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      flex-shrink: 0;
      justify-content: center;
      align-items: flex-start;
      align-content: flex-start;
      gap: 16px;
      width: 100%;
      position: relative;
      margin-top: 15px;
      margin-bottom: 35px;
    }
    .section4-cta-link-wrapper {
      flex-shrink: 0;
      position: relative;
      width: 268px;
      display: flex;
      justify-content: center;
    }
    .section4-cta-button {
      display: inline-flex;
      align-content: center;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background-color: #be6f7a;
      border-radius: 3px;
      padding: 21px 52.5px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }
    .section4-cta-button:hover {
      background-color: #a85d67;
    }
    .section4-cta-text {
      font-family: 'League Spartan', sans-serif;
      font-size: 19px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgb(255, 255, 255);
      line-height: 24px;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
    }
    @media (max-width: 810px) {
      .section4-inner {
        padding: 24px 16px 32px 16px;
        gap: 24px;
      }
      .section4-cards-row {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
      }
      .section4-card {
        width: 100%;
        flex-basis: auto;
        flex-grow: 0;
        padding: 24px 24px 0px 24px;
      }
      .section4-step-text-area {
        width: 100%;
      }
      .section4-step-list,
      .section4-step-list li,
      .section4-step-list li p {
        font-size: 18px;
        line-height: 27px;
      }
      .section4-cta-link-wrapper {
        width: 100%;
      }
      .section4-heading-wrapper .section-cases__title-line--first {
        margin-left: 0;
        margin-bottom: -20px;
        text-align: center;
        font-size: 39px;
        transform: translateX(-150px);
      }
      .section4-heading-wrapper .section-cases__title-line--main {
        margin-bottom: -10px;
        text-align: center;
        font-size: 63px;
      }
      .section4-heading-wrapper .section-cases__title-line--last {
        margin-right: 0;
        text-align: center;
        font-size: 39px;
        transform: translateX(150px);
      }
    }
    @media (max-width: 480px) {
      .section4-heading-wrapper .section-cases__title-line--first,
      .section4-heading-wrapper .section-cases__title-line--last {
        font-size: 25px;
        margin-bottom: -32px;
        transform: none;
      }
      .section4-heading-wrapper .section-cases__title-line--first {
        margin-bottom: -34px;
      }
      .section4-heading-wrapper .section-cases__title-line--main {
        font-size: 40px;
        margin-bottom: -28px;
      }
    }
    @media (min-width: 811px) and (max-width: 1399px) {
      .section4-inner {
        padding: 30px 24px 40px 24px;
        gap: 28px;
      }
      .section4-cards-row {
        gap: 20px;
      }
      .section4-heading-wrapper .section-cases__title-line--first {
        margin-left: 0;
        font-size: 42px;
        margin-bottom: -25px;
      }
      .section4-heading-wrapper .section-cases__title-line--main {
        font-size: 70px;
        margin-bottom: -15px;
      }
      .section4-heading-wrapper .section-cases__title-line--last {
        margin-right: 0;
        font-size: 42px;
      }
    }

    /* ============================================================
       SECTION 7.1 - WHEN YOU FEEL STUCK
       ============================================================ */
    .sec71-outer {
      display: flex;
      justify-content: center;
      width: 100%;
      padding: 45px 0 15px 0;
      background-color: #fbdfe3;
      color-scheme: light;
    }
    .sec71-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      max-width: 1264px;
      width: 100%;
      padding: 0 20px;
    }
    .sec71-heading {
      font-family: 'League Spartan', sans-serif;
      font-size: 43px;
      font-weight: 600;
      line-height: 51.6px;
      letter-spacing: -0.8px;
      color: rgb(23, 26, 38);
      text-align: left;
      margin: 0;
      width: 100%;
    }
    .sec71-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 33px;
      padding-bottom: 10px;
      margin-bottom: 30px;
      width: 100%;
    }
    .sec71-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 200px;
      padding: 30px;
      position: relative;
      background-color: rgb(255, 255, 255);
      box-sizing: border-box;
    }
    .sec71-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1.6px dotted rgb(198, 103, 224);
      pointer-events: none;
    }
    .sec71-card-title {
      font-family: 'League Spartan', sans-serif;
      font-size: 21px;
      font-weight: 700;
      line-height: 31.5px;
      color: rgb(51, 51, 51);
      text-align: left;
      margin: 0;
    }
    .sec71-card-body {
      font-family: 'League Spartan', sans-serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 33px;
      letter-spacing: -0.5px;
      color: rgb(23, 26, 38);
      text-align: left;
      margin: 0;
    }
    .sec71-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 268px;
      background-color: rgb(198, 103, 224);
      border-radius: 8px;
      padding: 17px 24px;
      text-decoration: none;
      font-family: 'League Spartan', sans-serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 24px;
      color: rgb(255, 255, 255);
      text-align: center;
      cursor: pointer;
      border: none;
      flex-shrink: 0;
    }
    @media (max-width: 810px) {
      .sec71-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .sec71-heading {
        font-size: 32px;
        line-height: 38.4px;
      }
      .sec71-outer--v2 {
        padding-top: 15px;
      }
      .sec71-outer--v2 .section4-heading-wrapper {
        margin-bottom: -30px;
      }
    }
    @media (max-width: 480px) {
      .sec71-outer--v2 {
        padding-top: 0;
      }
      .sec71-outer--v2 .section4-heading-wrapper {
        margin-top: -15px;
        margin-bottom: -40px;
      }
      .sec71-grid {
        grid-template-columns: 1fr;
      }
      .sec71-heading {
        font-size: 26px;
        line-height: 31.2px;
      }
      .sec71-card-body {
        font-size: 19px;
        line-height: 28px;
      }
      .sec71-cta-btn {
        width: 100%;
      }
    }

    /* ============================================================
       SECTION 7.1 V2 - OVERRIDES FOR DUPLICATE SECTION
       ============================================================ */
    .sec71-outer--v2 {
      background-color: #fbdfe3;
    }
    .sec71-outer--v2 .sec71-card {
      border-radius: 4px;
      border: 1px solid #be6f7a;
      cursor: pointer;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      z-index: 1;
    }
    .sec71-outer--v2 .sec71-card::after {
      display: none;
    }
    .sec71-outer--v2 .sec71-card:hover {
      transform: scale(1.08);
      z-index: 10;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
      background-color: #be6f7a;
    }
    .sec71-outer--v2 .sec71-card__front {
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .sec71-outer--v2 .sec71-card:hover .sec71-card__front {
      opacity: 0;
      transform: translateY(-10px);
      position: absolute;
      pointer-events: none;
    }
    .sec71-outer--v2 .sec71-card__back {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 30px;
      pointer-events: none;
    }
    .sec71-outer--v2 .sec71-card:hover .sec71-card__back {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .sec71-outer--v2 .sec71-card__stat-number {
      font-family: 'League Spartan', sans-serif;
      font-size: 31px;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin: 0;
    }
    .sec71-outer--v2 .sec71-card__stat-text {
      font-family: 'League Spartan', sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 27px;
      color: rgba(255, 255, 255, 0.9);
      margin: 0;
    }
    .sec71-outer--v2 .sec71-card-title {
      font-size: 23px;
    }
    .sec71-outer--v2 .sec71-card-body {
      font-size: 22px;
      line-height: 33px;
    }
    .sec71-outer--v2 .sec71-cta-btn {
      border-radius: 4px;
      background-color: #be6f7a;
    }
    @media (max-width: 768px) {
      .sec71-outer--v2 .sec71-card:hover {
        transform: scale(1);
      }
      .sec71-outer--v2 .sec71-card:hover .sec71-card__front {
        opacity: 1;
        transform: none;
        position: relative;
        pointer-events: auto;
      }
      .sec71-outer--v2 .sec71-card:hover .sec71-card__back {
        opacity: 0;
        pointer-events: none;
      }
      .sec71-outer--v2 .sec71-card.is-flipped .sec71-card__front {
        opacity: 0;
        transform: translateY(-10px);
        position: absolute;
        pointer-events: none;
      }
      .sec71-outer--v2 .sec71-card.is-flipped .sec71-card__back {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .sec71-outer--v2 .sec71-card.is-flipped {
        background-color: #be6f7a;
      }
    }
    @media (max-width: 480px) {
      .sec71-outer--v2 .sec71-card__stat-number {
        font-size: 29px;
      }
      .sec71-outer--v2 .sec71-card__stat-text {
        font-size: 18px;
        line-height: 27px;
      }
      .sec71-outer--v2 .sec71-card-body {
        font-size: 19px;
        line-height: 28px;
      }
      .sec71-outer--v2 .sec71-card__back {
        padding: 24px;
      }
    }

    /* ===== SECTION CASES ===== */
    .section-cases {
      position: relative;
      background-color: #1c1c1c;
      padding-top: 100px;
      font-family: 'League Spartan', sans-serif;
    }
    .section-cases__inner {
      max-width: 1380px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 12px;
      padding-right: 12px;
      width: 100%;
    }
    .section-cases__title {
      max-width: 875px;
      margin: 0 auto 67px;
      text-align: center;
    }
    .section-cases__title-line {
      display: block;
      font-family: 'League Spartan', sans-serif;
      font-style: italic;
    }
    .section-cases__title-line--first {
      font-size: 60px;
      font-weight: 600;
      color: rgb(173, 177, 184);
      line-height: 1;
      text-align: left;
    }
    .section-cases__title-line--main {
      font-size: 100px;
      font-weight: 700;
      color: #4a2c30;
      line-height: 1;
      text-align: center;
      text-shadow: rgba(140, 80, 120, 0.2) 0px 0px 40px;
      text-transform: capitalize;
    }
    .section-cases__title-line--last {
      font-size: 60px;
      font-weight: 600;
      color: rgb(173, 177, 184);
      line-height: 1;
      text-align: right;
    }
    .section-cases__grid {
      display: flex;
      flex-wrap: wrap;
      background: #1c1c1c;
    }
    .section-cases__item {
      position: relative;
      width: 25%;
      padding: 14px;
      transition: 0.3s;
      text-align: center;
      cursor: pointer;
    }
    .section-cases__item-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      filter: grayscale(100%) brightness(0.7);
      transition: filter 0.3s;
    }
    .section-cases__item-inner {
      position: relative;
      display: flex;
      padding-top: 100%;
      border: 1px solid rgba(62, 175, 206, 0.4);
      align-items: center;
      overflow: hidden;
      z-index: 2;
    }
    .section-cases__item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(108, 229, 255, 0);
      transition: background 0.3s;
      z-index: 1;
      pointer-events: none;
    }
    .section-cases__item:hover::after {
      background: rgba(80, 210, 245, var(--overlay-alpha, 0.4));
    }
    .section-cases__item-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      padding: 15px;
      color: rgb(255, 255, 255);
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 2;
    }
    .section-cases__item-title {
      font-family: 'League Spartan', sans-serif;
      font-style: normal;
      font-size: 36px;
      line-height: 1;
      color: #d7d7d7;
      transition: color 0.3s;
    }
    .section-cases__item-desc {
      display: none;
      font-family: 'League Spartan', sans-serif; font-weight: 400;
      font-size: 20px;
      line-height: 1.4;
      margin-top: 20px;
      color: rgb(255, 255, 255);
      text-align: center;
    }
    .section-cases__item:hover {
      z-index: 10;
      transform: scale(1.1);
      box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
    }
    .section-cases__item:hover .section-cases__item-bg {
      filter: grayscale(100%) brightness(0.4);
    }
    .section-cases__item:hover .section-cases__item-inner {
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    .section-cases__item:hover .section-cases__item-title {
      color: rgb(255, 255, 255);
    }
    .section-cases__item:hover .section-cases__item-desc {
      display: block;
    }
    @media screen and (max-width: 1279px) {
      .section-cases__item-title { font-size: 24px; }
      .section-cases__item-desc { font-size: 14px; }
    }
    @media screen and (max-width: 991px) {
      .section-cases__item-title { font-size: 20px; }
      .section-cases__title-line--first,
      .section-cases__title-line--last { font-size: 40px; }
      .section-cases__title-line--main { font-size: 60px; }
    }
    .desktop-title-br { display: inline; }
    @media screen and (max-width: 768px) {
      .desktop-title-br { display: none; }
      .section-cases {
        padding-top: 50px;
        background-size: cover;
      }
      .section-cases__title-line--first,
      .section-cases__title-line--last { font-size: 34px; margin-bottom: 10px; }
      .section-cases__title-line--main { font-size: 45px; margin-bottom: 10px; }
      .section-cases__title { margin-bottom: 30px; }
      .section-cases__item { width: 50%; }
      .section-cases__item:hover { transform: scale(1); }
      .section-cases__item-title { font-size: 22px; }
      .section-cases__item-desc { font-size: 15px; margin-top: 10px; }
      .section-cases__item:active .section-cases__item-desc,
      .section-cases__item.is-active .section-cases__item-desc { display: block; }
    }
    @media screen and (max-width: 480px) {
      .section-cases__item { width: 100%; }
      .section-cases__item-inner { padding-top: 60%; }
      .section-cases__item-title { font-size: 26px; }
      .section-cases__item-desc { font-size: 16px; }
    }
    /* --- LOGOS ROW --- */
    .section3-logos-row {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 70px 200px 0;
      margin-bottom: 0;
      box-sizing: border-box;
    }
    .section3-logo-item {
      height: 84px;
      width: auto;
      flex-shrink: 0;
    }
    @media (max-width: 1024px) {
      .section3-logos-row {
        padding: 36px 24px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
      }
      .section3-logo-item {
        height: 54px;
        flex-shrink: 1;
      }
    }
    @media (max-width: 767px) {
      .section3-logos-row {
        padding: 24px 16px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
      }
      .section3-logo-item {
        height: 44px;
        flex-shrink: 1;
      }
    }

    /* --- SEC5B - TERAPIA --- */
    .sec5b-outer {
      position: relative;
      width: 100%;
    }
    .sec5b-bg {
      display: block;
      width: 100%;
      height: auto;
      z-index: 0;
    }
    .sec5b-inner {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .sec5b-title {
      font-family: 'Ivy Presto Text', serif;
      font-size: 53px;
      font-weight: 300;
      line-height: 1.5;
      color: #e0e0e0;
      text-align: center;
      margin-bottom: 75px;
    }
    .sec5b-accent {
      font-style: italic;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: #e0e0e0;
      color: #ffcdd4;
      padding-right: 6px;
    }
    .sec5b-list {
      list-style: none;
      padding: 0;
      margin: 0 0 0 37px;
      max-width: 440px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .sec5b-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    .sec5b-icon {
      width: 43px;
      height: 43px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .sec5b-text {
      font-family: 'League Spartan', sans-serif;
      font-size: 21px;
      font-weight: 400;
      line-height: 1.5;
      color: #e0e0e0;
    }
    .sec5b-highlight {
      font-weight: 700;
      color: #ffcdd4;
      text-decoration: underline;
      text-decoration-color: #e0e0e0;
    }
    @media (min-width: 769px) and (max-width: 1279px) {
      .sec5b-outer {
        background-image: url('../images/sec4-background.webp');
        background-size: cover;
        background-position: center;
      }
      .sec5b-bg { display: none; }
      .sec5b-inner {
        position: relative;
        padding: 70px 40px 80px;
      }
      .sec5b-list { margin-left: 37px; max-width: 500px; }
    }
    @media (max-width: 768px) {
      .sec5b-outer {
        background-image: url('../images/sec4-background.webp');
        background-size: cover;
        background-position: center;
      }
      .sec5b-bg { display: none; }
      .sec5b-inner {
        position: relative;
        padding: 50px 28px 60px;
      }
      .sec5b-list { margin-left: 0; max-width: 100%; }
      .sec5b-title { font-size: 36px; margin-bottom: 36px; }
      .sec5b-text { font-size: 18px; }
      .sec5b-icon { width: 48px; height: 48px; }
    }
    @media (max-width: 480px) {
      .sec5b-inner { padding: 40px 20px 50px; }
      .sec5b-list { margin-left: 0; max-width: 100%; }
      .sec5b-title { font-size: 28px; margin-bottom: 28px; }
      .sec5b-text { font-size: 16px; }
      .sec5b-icon { width: 42px; height: 42px; }
      .sec5b-item { gap: 14px; }
    }

    /* --- SEC7-BG - CTA --- */
    .hero-cta-btn {
      border-radius: 4px;
      color: rgb(255, 255, 255);
      cursor: pointer;
      display: flex;
      flex-basis: 0%;
      flex-grow: 1;
      font-family: 'League Spartan', sans-serif;
      gap: 10px;
      justify-content: center;
      align-items: center;
      padding: 24px 14px;
      text-align: center;
      text-transform: uppercase;
      transition: all 0.2s ease-in-out;
      font-size: 20px;
      font-weight: 700;
      line-height: 25.2px;
      border: none;
    }
    .hero-cta-btn--main {
      background-color: #be6f7a;
      font-family: 'League Spartan', sans-serif;
      text-transform: none;
      letter-spacing: 0.05em;
      margin: 0;
    }
    .hero-cta-btn--main:hover {
      background-color: #a85d67;
    }
    .sec7-bg {
      width: 100%;
      position: relative;
      line-height: 0;
    }
    .sec7-bg__img {
      width: 100%;
      height: auto;
      display: block;
    }
    .sec7-bg__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 62%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 48px 48px 184px;
      box-sizing: border-box;
      line-height: normal;
      text-align: left;
      align-items: flex-start;
    }
    .sec7-bg__eyebrow {
      font-family: 'League Spartan', sans-serif;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #4a2c30;
      margin: 0 0 8px 4px;
      white-space: nowrap;
    }
    .sec7-bg__script {
      font-family: 'Ivy Presto Text', serif;
      font-size: 80px;
      font-weight: 600;
      font-style: italic;
      color: #be6f7a;
      margin: 0 0 20px 0;
      line-height: 1.1;
      white-space: nowrap;
    }
    .sec7-bg__bold {
      font-family: 'Ivy Presto Text', serif;
      font-size: 80px;
      font-weight: 600;
      font-style: italic;
      text-transform: none;
      color: #7a3f47;
      margin: -5px 0 31px 0;
      line-height: 1.05;
      white-space: nowrap;
    }
    .sec7-bg__desc {
      font-family: 'League Spartan', sans-serif;
      font-size: 21px;
      font-weight: 400;
      color: #4a2c30;
      margin: 0 0 28px 0;
      line-height: 1.55;
      max-width: none;
      white-space: nowrap;
    }
    @media (max-width: 1200px) {
      .sec7-bg__overlay { padding-left: 80px; }
      .sec7-bg__bold { font-size: 59px; }
      .sec7-bg__script { font-size: 64px; }
      .sec7-bg__eyebrow { font-size: 14px; }
    }
    .sec7-bg__overlay .hero-cta-btn {
      flex-grow: 0;
      flex-basis: auto;
      align-self: flex-start;
      padding: 24px 52px;
      font-size: 20px;
      letter-spacing: 0.05em;
    }
    @media (max-width: 768px) {
      .sec7-bg {
        display: flex;
        flex-direction: column;
      }
      .sec7-bg__img { width: 100%; }
      .sec7-bg__overlay {
        position: static;
        width: 100%;
        padding: 36px 24px;
        background-color: #fdf0f2;
      }
      .sec7-bg__script { font-size: 52px; }
      .sec7-bg__bold { font-size: 32px; }
    }
    /* ============================================================
       DM SECTION 1 - STORY HEADER ("My Story")
       ============================================================ */
    .dm-story-header {
      background-image: url('../images/Roberta-despre-mine.webp');
      background-position: center top;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 1% 2% 1% 2%;
      position: relative;
      transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
      font-family: 'League Spartan', sans-serif;
      font-size: 14.4px;
      font-weight: 400;
      line-height: 25.9px;
      background-color: rgb(255, 255, 255);
    }
    .dm-story-header__inner {
      display: flex;
      margin: 0 auto;
      position: relative;
      width: 70%;
    }
    .dm-story-header__row {
      display: flex;
      min-height: 1px;
      position: relative;
      width: 100%;
    }
    .dm-story-header__content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
      padding-top: 190px;
      position: relative;
      width: 100%;
    }
    .dm-story-header__my-wrap {
      max-width: 400px;
      width: auto;
      position: relative;
    }
    .dm-story-header__my-inner {
      margin-top: 0;
      transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
    }
    .dm-story-header__title-main {
      font-family: 'Ivy Presto Headline Thin', serif;
      font-size: 120px;
      font-weight: 300;
      font-style: italic;
      color: #02051b;
      letter-spacing: 2px;
      line-height: 120px;
      margin: 0;
    }
    .dm-story-header__story-wrap {
      max-width: 400px;
      width: auto;
      position: relative;
    }
    .dm-story-header__story-inner {
      padding-bottom: 5%;
      margin-top: -60px;
      transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
    }
    .dm-story-header__title-script {
      font-family: 'Daymore Script', cursive;
      font-size: 380px;
      line-height: 400px;
      font-weight: 300;
      color: #112B45;
      -webkit-text-fill-color: #112B45;
      margin: 0;
    }
    @media (max-width: 768px) {
      .dm-story-header {
        padding: 20% 5% 15% 5%;
        background-position: calc(50% - 60px) top;
      }
      .dm-story-header__content {
        margin-top: -90px;
      }
      .dm-story-header__inner {
        width: 90%;
      }
      .dm-story-header__my-wrap {
        max-width: 250px;
        width: auto;
      }
      .dm-story-header__title-main {
        font-size: 70px;
        letter-spacing: 1.5px;
        line-height: 70px;
      }
      .dm-story-header__my-inner {
        margin-top: 0;
      }
      .dm-story-header__story-wrap {
        max-width: 250px;
        width: auto;
      }
      .dm-story-header__story-inner {
        margin-top: -10px;
      }
      .dm-story-header__title-script {
        font-size: 200px;
        line-height: 200px;
      }
    }
    @media (max-width: 480px) {
      .dm-story-header {
        background-size: cover;
        background-position: calc(50% - 90px) top;
      }
      .dm-story-header__content {
        margin-top: -105px;
      }
      .dm-story-header__my-wrap {
        max-width: 200px;
        width: auto;
      }
      .dm-story-header__title-main {
        font-size: 48px;
        letter-spacing: 1px;
        line-height: 48px;
      }
      .dm-story-header__story-wrap {
        max-width: 200px;
        width: auto;
      }
      .dm-story-header__title-script {
        font-size: 146px;
        line-height: 160px;
        margin-top: -5px;
      }
    }

    /* ============================================================
       DM SECTION 2 - STORY CONTENT
       ============================================================ */
    .dm-story-content {
      background-image: url('../images/despre-mine-bg.webp');
      background-position: 50% 0%;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 3% 1% 0% 1%;
      position: relative;
      transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
      font-family: 'League Spartan', sans-serif;
      font-size: 14.4px;
      font-weight: 400;
      line-height: 25.9px;
      background-color: rgb(255, 255, 255);
    }
    .dm-story-content__inner {
      display: flex;
      margin: 0 auto;
      position: relative;
      width: 76%;
    }
    .dm-story-content__wrapper {
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      padding: 10px;
      width: 100%;
    }
    /* --- First pair: image left, text right --- */
    .dm-story-content__pair {
      display: grid;
      grid-template-columns: 43% 1fr;
      width: 100%;
      margin-bottom: 2%;
    }
    .dm-story-content__img-col {
      grid-row: 1 / span 3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
    }
    .dm-story-content__img-col img {
      max-width: 100%;
      height: auto;
      display: inline-block;
      vertical-align: middle;
    }
    .dm-story-content__text-col {
      display: flex;
      align-items: center;
      padding: 10px;
    }
    .dm-story-content__text {
      font-family: 'League Spartan', sans-serif;
      font-size: 22.4px;
      font-weight: 300;
      line-height: 31.4px;
      color: #02051b;
      padding-right: 5%;
    }
    .dm-story-content__text p {
      margin-top: 0;
      margin-bottom: 0;
    }
    /* --- Center quote --- */
    .dm-story-content__quote {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
    .dm-story-content__quote-inner {
      transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
    }
    .dm-story-content__quote h2 {
      font-family: 'Ivy Presto Headline Thin', serif;
      font-size: 43.9px;
      font-weight: 300;
      color: rgb(209, 103, 67);
      letter-spacing: 0.46px;
      line-height: 43.9px;
      text-align: center;
      margin: 0;
    }
    /* --- Second pair: text left, image right --- */
    .dm-story-content__pair--reverse {
      display: flex;
      width: 100%;
      margin-top: 1%;
    }
    .dm-story-content__text-col--left {
      width: 57%;
      display: flex;
      align-items: center;
      padding: 10px;
    }
    .dm-story-content__text-col--left .dm-story-content__text {
      padding-right: 5%;
    }
    .dm-story-content__text-col--left .dm-story-content__text p {
      margin-top: 27.4px;
      margin-bottom: 27.4px;
    }
    .dm-story-content__text-col--left .dm-story-content__text-block2 {
      margin-right: 22.4px;
      margin-top: -22.4px;
    }
    .dm-story-content__img-col--right {
      width: 43%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
    }
    .dm-story-content__img-col--right img {
      max-width: 100%;
      height: auto;
      display: inline-block;
      vertical-align: middle;
    }
    @media (min-width: 769px) {
      .dm-story-content__pair {
        column-gap: 40px;
        row-gap: 27.4px;
        grid-template-columns: calc(43% - 20px) 1fr;
        grid-template-rows: auto auto auto 1fr;
      }
      .dm-story-content__pair .dm-story-content__img-col {
        grid-row: 1 / span 4;
      }
      .dm-story-content__pair .dm-story-content__text-col {
        padding-top: 0;
        padding-bottom: 0;
      }
      .dm-story-img1 {
        max-width: 75%;
        height: auto;
        position: relative;
        top: -20px;
      }
      .dm-story-content__quote {
        margin-top: 20px;
      }
    }
    @media (max-width: 768px) {
      .dm-story-content {
        padding: 8% 3% 5% 3%;
      }
      .dm-story-content__inner {
        width: 92%;
      }
      .dm-story-content__pair {
        display: flex;
        flex-direction: column;
        gap: 7.4px;
      }
      .dm-story-content__pair--reverse {
        flex-direction: column;
      }
      .dm-story-content__img-col,
      .dm-story-content__text-col,
      .dm-story-content__text-col--left,
      .dm-story-content__img-col--right {
        width: 100%;
        overflow: visible;
      }
      .dm-story-content__img-col,
      .dm-story-content__img-col--right {
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .dm-story-content__img-col img,
      .dm-story-content__img-col--right img {
        max-width: 80%;
        display: block;
        margin: 0 auto;
        transform: rotate(-2deg);
      }
      .dm-story-content__img-col--right img {
        transform: rotate(2deg);
      }
      .dm-story-content__text {
        font-size: 22px;
        line-height: 33px;
        padding-right: 0;
      }
      .dm-story-content__text-col--left .dm-story-content__text {
        margin-right: 0;
      }
      .dm-story-content__text-col--left .dm-story-content__text-block2 {
        margin-right: 0;
        margin-top: 0;
      }
      .dm-story-content__quote h2 {
        font-size: 33px;
        line-height: 39px;
      }
    }
    @media (max-width: 480px) {
      .dm-story-content__pair .dm-story-content__text-col:nth-child(2) {
        order: -1;
        margin-top: -10px;
        margin-bottom: 10px;
      }
      .dm-story-content__pair .dm-story-content__img-col {
        margin-bottom: 5px;
      }
      .dm-story-content__pair .dm-story-content__text-col:nth-child(3) {
        margin-top: 10px;
      }
      .dm-story-content__text {
        font-size: 18px;
        line-height: 26px;
      }
      .dm-story-content__quote {
        margin-top: 20px;
        margin-bottom: 0;
      }
      .dm-story-content__quote h2 {
        font-size: 25px;
        line-height: 29px;
        font-weight: 400;
      }
    }

    /* ============================================================
       DM SECTION 3 - CERTIFICATIONS ("Certificări și formări")
       ============================================================ */
    .dm-cert {
      background: url('../images/despre-mine-bg2.png') top center no-repeat;
      background-size: 100% auto;
      padding: 80px 2% 80px 2%;
      position: relative;
    }
    .dm-cert__inner {
      max-width: 900px;
      margin: 0 auto;
      width: 100%;
    }
    .dm-cert__title {
      font-family: 'Ivy Presto Text', serif;
      font-size: 90px;
      line-height: 1.3;
      text-align: center;
      color: rgb(40, 20, 35);
      margin-bottom: 48px;
      font-weight: 500;
    }
    .dm-cert__logos {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-bottom: 52px;
      padding: 0 200px;
      box-sizing: border-box;
    }
    .dm-cert__logo {
      height: 84px;
      width: auto;
      object-fit: contain;
      opacity: 0.55;
      filter: brightness(0.4);
    }
    .dm-cert__list {
      list-style: none;
      padding: 0;
      margin: 0 0 0 50px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }
    .dm-cert__item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .dm-cert__check {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      margin-top: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .dm-cert__check svg {
      width: 26px;
      height: 26px;
    }
    .dm-cert__item-text {
      font-family: 'League Spartan', sans-serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.65;
      color: #333333;
    }
    @media (max-width: 768px) {
      .dm-cert {
        padding: 50px 5% 50px 5%;
        background-size: 100% calc(100% + 2px);
      }
      .dm-cert__title {
        font-size: 63px;
        margin-bottom: 32px;
      }
      .dm-cert__logos {
        flex-wrap: wrap;
        gap: 23px;
        margin-bottom: 36px;
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
        justify-content: center;
      }
      .dm-cert__logo {
        height: 58px;
        opacity: 0.8;
        filter: grayscale(20%);
      }
      .dm-cert__item-text {
        font-size: 22px;
      }
      .dm-cert__list {
        margin-left: 60px;
      }
    }
    @media (max-width: 480px) {
      .dm-cert {
        padding-top: 20px;
      }
      .dm-cert__title {
        font-size: 35px;
      }
      .dm-cert__logos {
        gap: 14px 20px;
        padding: 0 16px;
      }
      .dm-cert__logo {
        height: 58px;
        flex-shrink: 1;
      }
      .dm-cert__logo[style*="height:101px"] {
        height: 75px !important;
      }
      .dm-cert__item-text {
        font-size: 18px;
      }
      .dm-cert__item:not(:last-child) .dm-cert__check {
        margin-top: 5px;
      }
      .dm-cert__item:last-child .dm-cert__check {
        margin-top: 0;
      }
      .dm-cert__list {
        margin-left: 0;
        padding: 0 5px 0 10px;
      }
    }

    /* ============================================================
       DM SECTION 4 - JOIN / WORK TOGETHER
       ============================================================ */
    .dm-join {
      background-image: url('../images/ultima-sectiune.webp');
      background-position: right center;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 3.5% 0% 5% 0%;
      position: relative;
      transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
      font-family: 'League Spartan', sans-serif;
      font-size: 14.4px;
      font-weight: 400;
      line-height: 25.9px;
    }
    @media (min-width: 769px) {
      .dm-join::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 75%;
        height: 68px;
        background: #fce5e6;
        -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%), linear-gradient(to left, black 50%, transparent 100%);
        -webkit-mask-composite: destination-in;
        mask-image: linear-gradient(to bottom, black 65%, transparent 100%), linear-gradient(to left, black 50%, transparent 100%);
        mask-composite: intersect;
        z-index: 1;
        pointer-events: none;
      }
    }
    .dm-join__inner {
      display: flex;
      margin: 0 auto;
      position: relative;
      width: 76%;
    }
    .dm-join__left {
      width: 60%;
      padding: 10px;
      padding-top: 30px;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      align-content: flex-start;
    }
    .dm-join__heading-wrap {
      width: 100%;
      margin-bottom: 20px;
    }
    .dm-join__heading {
      font-family: 'Ivy Presto Text', serif;
      font-size: 39.9px;
      font-weight: 300;
      line-height: 47.9px;
      color: #be6f7a;
      margin: 0;
    }
    .dm-join__body {
      font-family: 'League Spartan', sans-serif;
      font-size: 20px;
      font-weight: 300;
      line-height: 30px;
      color: #02051b;
      padding-right: 15%;
      width: 100%;
      margin-bottom: 20px;
    }
    .dm-join__body p {
      margin-top: 22.4px;
      margin-bottom: 22.4px;
    }
    .dm-join__cta-wrap {
      width: 100%;
      margin-top: -20px;
      margin-bottom: 20px;
    }
    .dm-join__cta-heading {
      font-family: 'Ivy Presto Text', serif;
      font-size: 40px;
      font-weight: 300;
      line-height: 44px;
      color: #be6f7a;
      margin: 0;
    }
    .dm-join__script-wrap {
      width: 100%;
    }
    .dm-join__cta-script {
      font-family: 'Daymore Script', sans-serif;
      font-size: 120px;
      line-height: 150px;
      font-weight: 100;
      letter-spacing: 2px;
      color: rgb(40, 20, 35);
      margin: 0;
      margin-top: -3%;
      margin-left: -2%;
      padding: 10px 5px;
      overflow: visible;
    }
    .dm-join__script-wrap .hero-cta-btn--main {
      background-color: transparent;
      color: #be6f7a;
      border: 3px solid #be6f7a;
      border-radius: 4px;
      display: block;
      margin-top: -20px;
      font-family: 'League Spartan', sans-serif;
      font-weight: 600;
      font-style: italic;
      width: 79%;
    }
    .dm-join__script-wrap .hero-cta-btn--main:hover {
      background-color: #be6f7a;
      color: #fff;
    }
    .dm-join__right {
      width: 40%;
      padding: 10px;
    }
    @media (max-width: 768px) {
      .dm-join {
        background-position: 88% -5vw;
        background-size: 260% auto;
        background-color: #fce6e2;
        padding: 0;
        padding-top: 127vw;
        position: relative;
      }
      .dm-join::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to bottom, #fbdfe2 0%, #fbdfe2 20%, rgba(251,223,226,0.5) 55%, transparent 100%);
        pointer-events: none;
        z-index: 3;
      }
      .dm-join::after {
        content: '';
        position: absolute;
        top: 80vw;
        left: 0;
        right: 0;
        height: 47vw;
        background: linear-gradient(to bottom, transparent 0%, rgba(252,230,226,0.04) 20%, rgba(252,230,226,0.1) 32%, rgba(252,230,226,0.2) 42%, rgba(252,230,226,0.32) 50%, rgba(252,230,226,0.45) 58%, rgba(252,230,226,0.58) 65%, rgba(252,230,226,0.7) 72%, rgba(252,230,226,0.82) 80%, rgba(252,230,226,0.92) 90%, #fce6e2 100%);
        pointer-events: none;
        z-index: 1;
      }
      .dm-join__inner {
        width: 100%;
        flex-direction: column;
        position: relative;
        z-index: 2;
      }
      .dm-join__left {
        width: 100%;
        background: #fce6e2;
        padding: 32px 54px 32px 44px;
        border-radius: 0;
      }
      .dm-join__right {
        display: none;
      }
      .dm-join__heading {
        font-size: 36px;
        line-height: 44px;
      }
      .dm-join__body {
        font-size: 22px;
        line-height: 33px;
        padding-right: 0;
      }
      .dm-join__cta-heading {
        font-size: 39px;
        line-height: 39px;
      }
      .dm-join__cta-script {
        font-size: 112px;
        line-height: 144px;
        margin-left: 0;
        margin-top: 0;
      }
      .dm-join__script-wrap .hero-cta-btn--main {
        width: 100%;
      }
    }
    @media (max-width: 480px) {
      .dm-join__heading-wrap {
        margin-bottom: 5px;
      }
      .dm-join__heading {
        font-size: 24px;
        line-height: 30px;
      }
      .dm-join__body {
        font-size: 18px;
        line-height: 27px;
      }
      .dm-join__cta-heading {
        font-size: 36px;
        line-height: 36px;
      }
      .dm-join__cta-script {
        font-size: 55px;
        line-height: 66px;
        margin-top: -10px;
        margin-bottom: 20px;
      }
      .dm-join__script-wrap .hero-cta-btn--main {
        font-size: 18px;
      }
    }
    @media (min-width: 769px) and (max-width: 1100px) {
      .dm-join__inner {
        width: 90%;
      }
      .dm-join__left {
        width: 55%;
      }
      .dm-join__right {
        width: 45%;
      }
      .dm-join__cta-script {
        font-size: 72px;
        line-height: 90px;
      }
      .dm-join__heading {
        font-size: 30px;
        line-height: 38px;
      }
      .dm-join__body {
        font-size: 18px;
        line-height: 27px;
        padding-right: 5%;
      }
    }

