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

  :root {
    --purple: #4A2878;
    --purple-deep: #321B56;
    --purple-mid: #5E3490;
    --purple-light: #7B4DB5;
    --purple-pale: #F0EAF9;
    --gold: #F5B800;
    --gold-light: #FFD84D;
    --gold-dark: #C99200;
    --white: #FFFFFF;
    --cream: #FAF7FF;
    --gray: #6B7280;
    --gray-light: #F5F3FA;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--sans);
    color: #1A0E2E;
    background: var(--white);
    overflow-x: hidden;
  }

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

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

  /* ── CURSOR ── */
  .cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, opacity .25s;
    mix-blend-mode: multiply;
  }

  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--purple-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .12s var(--ease);
  }

  /* ── PARTICLES ── */
  #particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .3;
  }


  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;

    height: 74px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    border-radius: 18px;

    background: rgba(50, 27, 86, .18);
    backdrop-filter: blur(14px);

    transition: .35s ease;
  }

  nav.scrolled {
    background: rgba(50, 27, 86, .96);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  }

  /* LOGO */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1002;
  }

  .nav-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    animation: navIconSpin 8s linear infinite;
  }

  .logo-image {
    height: 58px;
    width: auto;
    object-fit: contain;
  }

  @keyframes navIconSpin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  /* LINKS */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-links a {
    position: relative;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .78);

    transition: .3s ease;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 1.5px;

    background: var(--gold);

    transition: .3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* CTA */
  .nav-cta {
    position: relative;

    height: 42px;
    padding: 0 48px 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: linear-gradient(135deg,
        var(--gold),
        var(--gold-light));

    color: var(--purple-deep);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;

    overflow: hidden;

    transition: .35s ease;
  }

  .nav-cta::after {
    content: "➜";

    position: absolute;
    right: 4px;
    top: 4px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .28);

    font-size: 11px;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
  }

  /* HAMBURGER */
  .hamburger {
    display: none;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    cursor: pointer;

    z-index: 1002;
  }

  .hamburger span {
    width: 24px;
    height: 2px;

    background: #fff;

    border-radius: 10px;

    transition: .3s ease;
  }

  /* ACTIVE ANIMATION */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  .nav-icon:hover {
    transform: scale(1.08);
  }

  /* Main Logo */
  .logo-image {
    width: 170px;
    height: auto;
    object-fit: contain;

    filter:
      drop-shadow(0 0 8px rgba(245, 184, 0, .12));
  }

  /* Rotation */
  @keyframes navIconSpin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

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

    .nav-logo {
      gap: 8px;
    }

    .nav-icon {
      width: 42px;
      height: 42px;
    }

    .logo-image {
      width: 135px;
    }
  }

  @media (max-width:520px) {

    .nav-icon {
      width: 36px;
      height: 36px;
    }

    .logo-image {
      width: 115px;
    }
  }

  .logo-image {
    height: 65px;
    width: auto;
    object-fit: cover;
    padding: 3px;
    margin-top: 6px;

    animation: logoFloat 4s ease-in-out infinite;
    transition: transform .35s ease, box-shadow .35s ease;
  }

  @keyframes logoFloat {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-4px);
    }
  }

  .nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 50px 0 50px;

    background: linear-gradient(135deg,
        var(--gold),
        var(--gold-light));

    color: var(--purple-deep);
    text-decoration: none;
    text-transform: uppercase;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;

    border-radius: 999px;
    overflow: hidden;

    transition:
      transform .45s cubic-bezier(.22, 1, .36, 1),
      box-shadow .45s cubic-bezier(.22, 1, .36, 1);

    box-shadow:
      0 5px 14px rgba(245, 184, 0, .16),
      0 0 14px rgba(245, 184, 0, .1);
  }

  .nav-cta span {
    position: relative;
    z-index: 2;

    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  }

  .nav-cta::after {
    content: "➜";

    position: absolute;
    top: 3px;
    right: 3px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .3);

    font-size: 13px;
    font-weight: 700;

    transition:
      right .55s cubic-bezier(.22, 1, .36, 1),
      transform .55s cubic-bezier(.22, 1, .36, 1),
      background .35s ease;
  }

  .nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
      0 10px 22px rgba(245, 184, 0, .22),
      0 0 18px rgba(245, 184, 0, .14);
  }

  .nav-cta:hover::after {
    right: calc(100% - 41px);

    transform: rotate(-45deg);

    background: rgba(255, 255, 255, .42);
  }

  .nav-cta:hover span {
    transform: translateX(8px);
  }

  nav {
    top: 15px;
    left: 16px;
    right: 16px;

    border-radius: 18px;
  }

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

  /* Responsive */

  @media (max-width: 992px) {

    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      z-index: 9999;
    }

    .nav-links {
      position: fixed;
      top: 86px;
      left: 12px;
      right: 12px;

      display: flex;
      /* keep flex */
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;

      background: rgba(50, 27, 86, 0.98);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      z-index: 9998;

      /* Hidden state */
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-20px);
      transition: all 0.35s ease;
    }

    .nav-links.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-links a {
      width: 100%;
      font-size: 13px;
      padding-bottom: 8px;
    }

    .nav-cta {
      display: none;
    }

    .nav-links-desktop {
      display: none;
    }

    /* Mobile dropdown — hidden by default */
    .nav-links-mobile {
      position: fixed;
      top: 86px;
      left: 12px;
      right: 12px;

      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;

      background: rgba(50, 27, 86, 0.98);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      z-index: 9998;

      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-20px);
      transition: all 0.35s ease;
    }

    .nav-links-mobile.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
  }

  /* SMALL DEVICES */

  @media (max-width: 600px) {

    nav {
      height: 64px;
      padding: 0 14px;
    }

    .nav-links {
      top: 76px;
      left: 8px;
      right: 8px;
      padding: 20px 18px;
    }

    .nav-icon {
      width: 34px;
      height: 34px;
    }

    .logo-image {
      height: 38px;
      width: auto;
    }

    .hamburger span {
      width: 20px;
    }
  }

  /* EXTRA SMALL */

  @media (max-width: 380px) {

    .logo-image {
      height: 32px;
    }

    .nav-icon {
      width: 28px;
      height: 28px;
    }

    .hamburger span {
      width: 18px;
    }
  }

  /* ── HERO ── */
  .hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-mid) 100%);
  }

  .hero-orb1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, .18) 0%, transparent 70%);
    animation: orbFloat 7s ease-in-out infinite;
  }

  .hero-orb2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 77, 181, .4) 0%, transparent 70%);
    animation: orbFloat 9s ease-in-out infinite reverse;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    /* background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), */
      /* linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px); */
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 130px 6% 90px;
    max-width: 860px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .7s .3s ease forwards;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.02;
    letter-spacing: -.01em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .8s .5s ease forwards;
  }

  .hero-title em {
    color: var(--gold);
    font-style: italic;
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: fadeUp .8s .7s ease forwards;
  }

  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .8s .9s ease forwards;
  }

  .hero-pill {
    padding: 8px 18px;
    border: 1px solid rgba(245, 184, 0, .35);
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    transition: all .3s;
  }

  .hero-pill:hover,
  .hero-pill.active {
    background: var(--gold);
    color: var(--purple-deep);
    border-color: var(--gold);
  }

  /* ── SERVICE NAV (sticky) ── */
  .service-nav {
    position: sticky;
    top: 98px;
    z-index: 100;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 40, 120, .08);
    box-shadow: 0 4px 24px rgba(74, 40, 120, .06);
  }

  .service-nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 6%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .snav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .3s;
    flex-shrink: 0;
  }

  .snav-item:hover {
    color: var(--purple);
    border-bottom-color: var(--purple-pale);
  }

  .snav-item.active {
    color: var(--purple);
    border-bottom-color: var(--gold);
  }

  .snav-num {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 700;
  }

  /* ── SECTION BASE ── */
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
  }

  .section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    color: var(--purple-deep);
    line-height: 1.1;
    letter-spacing: -.01em;
  }

  .section-title em {
    color: var(--purple-mid);
    font-style: italic;
  }

  .section-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
    margin-top: 18px;
    max-width: 520px;
     text-align: justify;
  }

  /* ── REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
  }

  .reveal-l.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-r {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
  }

  .reveal-r.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* ══════════════════════════════════
       01. GxP AUDITS
    ══════════════════════════════════ */
  .s-audits {
    padding: 110px 6%;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .s-audits::before {
    content: '01';
    position: absolute;
    right: 4%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(74, 40, 120, .04);
    line-height: 1;
    pointer-events: none;
  }

  .audit-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
  }

  .audit-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 80px;
  }

  .cat-card {
    background: var(--gray-light);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all .4s var(--ease);
  }

  .cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
  }

  .cat-card:hover {
    background: var(--purple-pale);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(74, 40, 120, .1);
  }

  .cat-card:hover::after {
    transform: scaleX(1);
  }

  .cat-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }

  .cat-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 6px;
  }

  .cat-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* Process timeline */
  .audit-process-title {
    text-align: center;
    margin-bottom: 56px;
  }

  .audit-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

  .audit-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--purple-light));
    transform: translateX(-50%);
  }

  .tml-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
  }

  .tml-item:last-child {
    margin-bottom: 0;
  }

  .tml-left {
    text-align: right;
    padding-right: 40px;
  }

  .tml-right {
    text-align: left;
    padding-left: 40px;
  }

  .tml-center {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .tml-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--purple-deep);
    box-shadow: 0 0 0 6px rgba(245, 184, 0, .12), 0 8px 24px rgba(245, 184, 0, .3);
    position: relative;
    z-index: 1;
  }

  .tml-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 6px;
  }

  .tml-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  .tml-item:nth-child(even) .tml-left {
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
    order: 3;
  }

  .tml-item:nth-child(even) .tml-center {
    order: 2;
  }

  .tml-item:nth-child(even) .tml-right {
    text-align: right;
    padding-right: 40px;
    padding-left: 0;
    order: 1;
  }

  /* ══════════════════════════════════
       02. DOCUMENTATION
    ══════════════════════════════════ */
  .s-docs {
    padding: 110px 6%;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .s-docs::before {
    content: '02';
    position: absolute;
    left: 3%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(74, 40, 120, .04);
    line-height: 1;
    pointer-events: none;
  }

  .docs-intro {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }

  .docs-visual {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
    padding: 48px 44px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .docs-visual::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, .12), transparent 60%);
  }

  .docs-visual-tag {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .7;
    margin-bottom: 12px;
  }

  .docs-visual-title {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .docs-visual-title em {
    color: var(--gold);
    font-style: italic;
  }

  .docs-visual-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
  }

  .docs-visual-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
  }

  .docs-visual-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(245, 184, 0, .2);
    color: var(--gold);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Doc category accordion */
  .doc-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
  }

  .doc-cat {
    background: var(--white);
    border: 1px solid rgba(74, 40, 120, .08);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .3s;
  }

  .doc-cat:hover {
    box-shadow: 0 8px 32px rgba(74, 40, 120, .1);
  }

  .doc-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: background .3s;
  }

  .doc-cat.open .doc-cat-header {
    background: var(--purple);
  }

  .doc-cat-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .doc-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(245, 184, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background .3s;
  }

  .doc-cat.open .doc-cat-icon {
    background: rgba(255, 255, 255, .15);
  }

  .doc-cat-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--purple-deep);
    transition: color .3s;
  }

  .doc-cat.open .doc-cat-name {
    color: var(--white);
  }

  .doc-cat-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(74, 40, 120, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--purple);
    transition: all .3s;
  }

  .doc-cat.open .doc-cat-toggle {
    background: rgba(255, 255, 255, .2);
    border-color: transparent;
    color: var(--white);
    transform: rotate(45deg);
  }

  .doc-cat-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
  }

  .doc-cat.open .doc-cat-body {
    max-height: 600px;
  }

  .doc-cat-items {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .doc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(74, 40, 120, .05);
  }

  .doc-item:last-child {
    border-bottom: none;
  }

  .doc-item-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
    flex-shrink: 0;
  }

  /* ══════════════════════════════════
       03. VALIDATION
    ══════════════════════════════════ */
  .s-validation {
    padding: 110px 6%;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .s-validation::before {
    content: '03';
    position: absolute;
    right: 4%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(74, 40, 120, .04);
    line-height: 1;
    pointer-events: none;
  }

  .val-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }

  .val-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .val-card {
    background: var(--gray-light);
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: default;
    transition: all .4s var(--ease);
    border-bottom: 3px solid transparent;
  }

  .val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(74, 40, 120, .14);
    border-bottom-color: var(--gold);
    background: var(--white);
  }

  .val-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--purple-deep);
    margin-bottom: 24px;
  }

  .val-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 8px;
  }

  .val-full-name {
    font-size: 12px;
    color: var(--gold-dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .val-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
     text-align: justify;
  }

  .val-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 48px;
    opacity: .08;
    font-family: var(--serif);
    font-weight: 700;
    color: var(--purple);
    transition: opacity .4s;
  }

  .val-card:hover .val-icon {
    opacity: .12;
  }

  /* ══════════════════════════════════
       04. EU INSPECTION
    ══════════════════════════════════ */
  .s-eu {
    padding: 110px 6%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  }

  .s-eu::before {
    content: '04';
    position: absolute;
    left: 3%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none;
  }

  .eu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .eu-text .section-title {
    color: var(--white);
  }

  .eu-text .section-title em {
    color: var(--gold);
    font-style: italic;
  }

  .eu-text .section-sub {
    color: rgba(255, 255, 255, .55);
     text-align: justify;
  }

  .eu-text .section-tag {
    color: var(--gold);
  }

  .eu-text .section-tag::before {
    background: var(--gold);
  }

  .eu-highlight {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(245, 184, 0, .1);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
  }

  .eu-highlight p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    font-style: italic;
     text-align: justify;
  }

  .eu-phases {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .eu-phase {
    display: flex;
    gap: 24px;
    padding: 28px 32px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    cursor: default;
    transition: background .35s;
  }

  .eu-phase:first-child {
    border-radius: 4px 4px 0 0;
  }

  .eu-phase:last-child {
    border-bottom: none;
    border-radius: 0 0 4px 4px;
  }

  .eu-phase:hover {
    background: rgba(255, 255, 255, .05);
  }

  .eu-phase-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 700;
    color: rgba(245, 184, 0, .25);
    line-height: 1;
    min-width: 52px;
    transition: color .35s;
  }

  .eu-phase:hover .eu-phase-num {
    color: var(--gold);
  }

  .eu-phase-body h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }

  .eu-phase-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
     text-align: justify;
  }

  .eu-phase-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity .35s;
  }

  .eu-phase:hover .eu-phase-bar {
    opacity: 1;
  }

  /* ══════════════════════════════════
       05. PICs
    ══════════════════════════════════ */
  .s-pics {
    padding: 110px 6%;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .s-pics::before {
    content: '05';
    position: absolute;
    right: 4%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(74, 40, 120, .04);
    line-height: 1;
    pointer-events: none;
  }

  .pics-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .pics-phases {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pics-phase {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid rgba(74, 40, 120, .08);
    border-radius: 4px;
    cursor: default;
    transition: all .35s var(--ease);
  }

  .pics-phase:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(74, 40, 120, .1);
    transform: translateX(6px);
  }

  .pics-phase-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: rgba(74, 40, 120, .12);
    line-height: 1;
    min-width: 44px;
    transition: color .35s;
  }

  .pics-phase:hover .pics-phase-num {
    color: var(--gold-dark);
  }

  .pics-phase-body h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 4px;
  }

  .pics-phase-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
     text-align: justify;
  }

  .pics-info {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
    padding: 56px 48px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .pics-info::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, .12), transparent 60%);
  }

  .pics-info .section-tag {
    color: var(--gold);
  }

  .pics-info .section-tag::before {
    background: var(--gold);
  }

  .pics-info .section-title {
    color: var(--white);
    font-size: clamp(28px, 3.5vw, 44px);
  }

  .pics-info .section-title em {
    color: var(--gold);
    font-style: italic;
  }

  .pics-info .section-sub {
    color: rgba(255, 255, 255, .5);
    position: relative;
    z-index: 1;
     text-align: justify;
  }

  .pics-flag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 10px 20px;
    background: rgba(245, 184, 0, .12);
    border-radius: 999px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
  }

  .pics-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 15px 32px;
    background: var(--gold);
    color: var(--purple-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all .35s;
    position: relative;
    z-index: 1;
  }

  .pics-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(245, 184, 0, .4);
  }

  /* ══════════════════════════════════
       06. GMP TRAININGS
    ══════════════════════════════════ */
  .s-training {
    padding: 110px 6%;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .s-training::before {
    content: '06';
    position: absolute;
    left: 3%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(74, 40, 120, .04);
    line-height: 1;
    pointer-events: none;
  }

  .training-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
  }

  .training-intro .section-tag {
    justify-content: center;
  }

  .training-intro .section-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 72px;
  }

  .training-card {
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: default;
    transition: all .4s var(--ease);
    border: 1px solid rgba(74, 40, 120, .08);
  }

  .training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(74, 40, 120, .12);
    border-color: var(--gold);
  }

  .training-emoji {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    transition: transform .4s;
  }

  .training-card:hover .training-emoji {
    transform: scale(1.15) rotate(-5deg);
  }

  .training-card-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 10px;
  }

  .training-card-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.75;
     text-align: justify;
  }

  .training-banner {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 56px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .training-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
  }

  .training-banner h3 {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    color: var(--purple-deep);
    position: relative;
    z-index: 1;
  }

  .training-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--purple-deep);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    transition: all .35s;
  }

  .training-banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(50, 27, 86, .4);
  }

  /* ══════════════════════════════════
       07. SOFTWARE
    ══════════════════════════════════ */
  .s-software {
    padding: 110px 6%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--purple-deep) 0%, #1d0e38 100%);
  }

  .s-software::before {
    content: '07';
    position: absolute;
    right: 4%;
    top: 60px;
    font-family: var(--serif);
    font-size: 220px;
    font-weight: 700;
    color: rgba(255, 255, 255, .02);
    line-height: 1;
    pointer-events: none;
  }

  .software-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
  }

  .software-intro .section-tag {
    justify-content: center;
    color: var(--gold);
  }

  .software-intro .section-tag::before {
    background: var(--gold);
  }

  .software-intro .section-title {
    color: var(--white);
  }

  .software-intro .section-title em {
    color: var(--gold);
  }

  .software-intro .section-sub {
    color: rgba(255, 255, 255, .5);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .sw-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(245, 184, 0, .08);
    padding: 56px 48px;
    cursor: default;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
  }

  .sw-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 184, 0, .07), transparent);
    opacity: 0;
    transition: opacity .4s;
  }

  .sw-card:hover::before {
    opacity: 1;
  }

  .sw-card:hover {
    border-color: rgba(245, 184, 0, .3);
    transform: scale(1.01);
  }

  .sw-acronym {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
  }

  .sw-full {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .sw-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .sw-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: justify;
  }

  .sw-features {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
  }

  .sw-feat {
    padding: 5px 12px;
    border: 1px solid rgba(245, 184, 0, .2);
    border-radius: 999px;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .06em;
    transition: all .3s;
  }

  .sw-card:hover .sw-feat {
    border-color: rgba(245, 184, 0, .4);
    color: rgba(255, 255, 255, .7);
  }

  /* ── CTA FINAL ── */
  .cta-section {
    padding: 100px 6%;
    background: var(--gold);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
  }

  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 700;
    color: var(--purple-deep);
    max-width: 580px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
  }

  .cta-inner h2 em {
    font-style: italic;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: var(--purple-deep);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    transition: all .35s;
    flex-shrink: 0;
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(50, 27, 86, .5);
  }

  /* ── FOOTER ── */
  /* ── FOOTER NOTE ── */
.footer-note {
    background: var(--purple-deep);
    padding: 32px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-note p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}

.footer-note a {
    color: var(--gold);
}
  footer {
    background: var(--purple-deep);
    padding: 40px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-logo-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
  }

  .footer-logo-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, .25);
  }

  footer nav-links {
    display: flex;
    gap: 20px;
  }

  /* ── BTT ── */
  .btt {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 400;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(245, 184, 0, .4);
    opacity: 0;
    transform: translateY(20px);
    transition: all .35s var(--ease);
    border: none;
    color: var(--purple-deep);
  }

  .btt.show {
    opacity: 1;
    transform: translateY(0);
  }

  .btt:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(245, 184, 0, .5);
  }

  /* ── KEYFRAMES ── */
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(32px);
    }

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

  @keyframes orbFloat {

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

    50% {
      transform: translateY(-40px) scale(1.08);
    }
  }

  @keyframes gridShift {
    to {
      background-position: 60px 60px;
    }
  }

  @keyframes pulse {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(245, 184, 0, .6);
    }

    50% {
      box-shadow: 0 0 0 8px rgba(245, 184, 0, 0);
    }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {

    .audit-intro,
    .val-intro,
    .eu-inner,
    .pics-inner,
    .docs-intro {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .audit-categories,
    .val-cards,
    .training-grid {
      grid-template-columns: 1fr 1fr;
    }

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

    .audit-timeline::before {
      left: 28px;
    }

    .tml-item {
      grid-template-columns: 60px 1fr;
    }

    .tml-center {
      justify-content: flex-start;
    }

    .tml-dot {
      width: 44px;
      height: 44px;
      font-size: 15px;
    }

    .tml-right,
    .tml-left {
      text-align: left !important;
      padding: 0 0 0 20px !important;
    }

    .tml-item:nth-child(even) .tml-left {
      order: unset;
    }

    .tml-item:nth-child(even) .tml-center {
      order: unset;
    }

    .tml-item:nth-child(even) .tml-right {
      order: unset;
      padding-right: 0 !important;
    }

    nav .nav-links {
      display: none;
    }

    .hamburger {
      display: flex;
    }
  }

  @media (max-width: 768px) {
  .audit-timeline::before {
    left: 28px;
    transform: none;
  }

  .tml-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto;
    gap: 0 16px;
    margin-bottom: 36px;
    align-items: start;
  }

  /* hide the empty left/right placeholder divs */
  .tml-item .tml-left:empty,
  .tml-item .tml-right:empty {
    display: none;
  }

  /* reset all order/padding overrides from even rule */
  .tml-item:nth-child(even) .tml-left,
  .tml-item:nth-child(even) .tml-right,
  .tml-item:nth-child(even) .tml-center {
    order: unset;
    text-align: left;
    padding: 0;
  }

  /* dot column — always first */
  .tml-center {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    padding-top: 4px;
  }

  .tml-dot {
    width: 44px;
    height: 44px;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* content — odd items: right div has content */
  .tml-item:nth-child(odd) .tml-right {
    display: none;
  }

  .tml-item:nth-child(odd) .tml-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }

  /* content — even items: left div has content (after order reset) */
  .tml-item:nth-child(even) .tml-right {
    display: none;
  }

  .tml-item:nth-child(even) .tml-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }

  .tml-title {
    font-size: 17px;
  }

  .tml-desc {
    font-size: 13px;
  }
}

  @media (max-width: 600px) {

    .audit-categories,
    .val-cards,
    .training-grid,
    .doc-categories {
      grid-template-columns: 1fr;
    }

    .hero-title {
      font-size: clamp(38px, 10vw, 60px);
    }
  }


  /* ══ 08 CLINICAL ══ */
.s-clinical {
  padding: 110px 6%; background: var(--cream); position: relative; overflow: hidden;
}
.s-clinical::before {
  content: '08'; position: absolute; left: 3%; top: 60px;
  font-family: var(--serif); font-size: 220px; font-weight: 700;
  color: rgba(74,40,120,.04); line-height: 1; pointer-events: none;
}
.clinical-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.clinical-aspects { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.cla-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: var(--white); border-radius: 4px;
  border-left: 3px solid var(--gold);
  transition: box-shadow .3s, transform .3s;
}
.cla-item:hover { box-shadow: 0 8px 24px rgba(74,40,120,.1); transform: translateY(-3px); }
.cla-icon { font-size: 22px; flex-shrink: 0; }
.cla-item strong { font-size: 14px; color: var(--purple-deep); display: block; margin-bottom: 4px; }
.cla-item p { font-size: 12px; color: var(--gray); line-height: 1.6; margin: 0; }
.clinical-phases {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(245,184,0,.12);
}

/* ══ 09 MA HOLDING ══ */
.s-mah {
  padding: 110px 6%; background: var(--white); position: relative; overflow: hidden;
}
.s-mah::before {
  content: '09'; position: absolute; right: 4%; top: 60px;
  font-family: var(--serif); font-size: 220px; font-weight: 700;
  color: rgba(74,40,120,.04); line-height: 1; pointer-events: none;
}
.mah-intro { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.mah-intro .section-tag { justify-content: center; }
.mah-intro .section-sub { margin: 18px auto 0; text-align: center; }
.mah-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.mah-card {
  background: var(--cream); border-radius: 4px; padding: 40px 32px;
  border-top: 3px solid var(--gold); position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.mah-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(74,40,120,.12); background: var(--white); }
.mah-card-icon { font-size: 36px; margin-bottom: 12px; }
.mah-card-label {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; margin-bottom: 14px;
}
.mah-card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--purple-deep); margin-bottom: 16px;
}
.mah-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mah-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray); line-height: 1.6;
}
.mah-list li::before {
  content: '✓'; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(245,184,0,.15); color: var(--gold-dark);
  font-size: 9px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* ══ 10 WAREHOUSING ══ */
.s-warehouse {
  padding: 110px 6%; background: var(--cream); position: relative; overflow: hidden;
}
.s-warehouse::before {
  content: '10'; position: absolute; left: 3%; top: 60px;
  font-family: var(--serif); font-size: 220px; font-weight: 700;
  color: rgba(74,40,120,.04); line-height: 1; pointer-events: none;
}
.warehouse-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.warehouse-flags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.wh-flag {
  padding: 10px 20px; background: var(--purple-pale); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--purple);
  border: 1px solid rgba(74,40,120,.12);
}
.wh-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wh-service-card {
  background: var(--white); padding: 28px 24px; border-radius: 4px;
  border: 1px solid rgba(74,40,120,.08); position: relative;
  transition: all .35s var(--ease);
}
.wh-service-card:hover { border-color: var(--gold); box-shadow: 0 12px 32px rgba(74,40,120,.1); transform: translateY(-4px); }
.wh-num {
  font-size: 36px; font-weight: 700;
  color: #321B56; line-height: 1; margin-bottom: 12px;
}
.wh-service-card h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--purple-deep); margin-bottom: 8px; text-align: justify; }
.wh-service-card p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* ══ 11 TURNKEY ══ */
.s-turnkey {
  padding: 110px 6%; background: var(--white); position: relative; overflow: hidden;
}
.s-turnkey::before {
  content: '11'; position: absolute; right: 4%; top: 60px;
  font-family: var(--serif); font-size: 220px; font-weight: 700;
  color: rgba(74,40,120,.04); line-height: 1; pointer-events: none;
}
.turnkey-hero { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.turnkey-hero .section-tag { justify-content: center; }
.turnkey-hero .section-sub { margin: 18px auto 0; text-align: center; }
.turnkey-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 72px;
}
.turnkey-card {
  padding: 40px 32px; border-radius: 4px; border: 1px solid rgba(74,40,120,.08);
  transition: all .4s var(--ease); cursor: default;
}
.turnkey-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(74,40,120,.12); border-color: var(--gold); }
.turnkey-emoji { font-size: 38px; margin-bottom: 18px; display: block; transition: transform .4s; }
.turnkey-card:hover .turnkey-emoji { transform: scale(1.15) rotate(-5deg); }
.turnkey-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--purple-deep); margin-bottom: 10px; }
.turnkey-card p { font-size: 13px; color: var(--gray); line-height: 1.75;    text-align: justify; }
.turnkey-banner {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 4px; padding: 56px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.turnkey-banner::before {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,.1), transparent 70%);
}
.turnkey-banner-text { position: relative; z-index: 1; }
.turnkey-banner-text h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.turnkey-banner-text h3 em { color: var(--gold); font-style: italic; }
.turnkey-banner-text p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 460px; text-align: justify;}
.turnkey-banner-stats {
  display: flex; gap: 40px; position: relative; z-index: 1;
  flex-shrink: 0;
}
.tk-stat { text-align: center; }
.tk-stat-num {
  font-family: var(--serif); font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.tk-stat-lbl {
  font-size: 11px; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .1em; margin-top: 6px;
}

/* ══ 12 TECHNOLOGY TRANSFER ══ */
.s-techtransfer {
  padding: 110px 6%; background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  position: relative; overflow: hidden;
}
.s-techtransfer::before {
  content: '12'; position: absolute; left: 3%; top: 60px;
  font-family: var(--serif); font-size: 220px; font-weight: 700;
  color: rgba(255,255,255,.02); line-height: 1; pointer-events: none;
}
.tt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tt-inner .section-title { color: var(--white); }
.tt-inner .section-title em { color: var(--gold); font-style: italic; }
.tt-inner .section-sub { color: rgba(255,255,255,.55); }
.tt-inner .section-tag { color: var(--gold); }
.tt-inner .section-tag::before { background: var(--gold); }
.tt-types { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.tt-type {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.tt-type:last-child { border-bottom: none; }
.tt-type-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 8px rgba(245,184,0,.5); }
.tt-stages {
  background: rgba(255,255,255,.04); border: 1px solid rgba(245,184,0,.1);
  border-radius: 4px; padding: 40px; display: flex; flex-direction: column; gap: 0;
}
.tt-stage {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s; cursor: default;
}
.tt-stage:last-child { border-bottom: none; padding-bottom: 0; }
.tt-stage:hover { background: rgba(255,255,255,.03); margin: 0 -20px; padding: 22px 20px; }
.tt-stage-num {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: rgba(245,184,0,.3); line-height: 1; min-width: 40px;
  transition: color .35s;
}
.tt-stage:hover .tt-stage-num { color: var(--gold); }
.tt-stage-body h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.tt-stage-body p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7;text-align: justify; }

/* ══ RESPONSIVE (new sections) ══ */
@media (max-width: 900px) {
  .clinical-inner, .warehouse-inner, .tt-inner { grid-template-columns: 1fr; gap: 48px; }
  .mah-grid, .turnkey-grid { grid-template-columns: 1fr 1fr; }
  .turnkey-banner { flex-direction: column; padding: 40px; }
  .turnkey-banner-stats { gap: 24px; }
  .clinical-aspects { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mah-grid, .turnkey-grid, .wh-services-grid { grid-template-columns: 1fr; }
  .turnkey-banner-stats { flex-direction: row; justify-content: center; }
  .warehouse-flags { flex-direction: column; }
  .tt-stages { padding: 24px 20px; }
}


/* ══════════════════════════════════
   SECTION PHOTO GALLERIES
══════════════════════════════════ */
.section-photos {
  display: grid;
  gap: 12px;
  margin-bottom: 72px;
}

/* 2-photo layout */
.section-photos--2 {
  grid-template-columns: 1fr 1fr;
}

/* 3-photo layout: left tall + 2 stacked right */
.section-photos--3 {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
}
.section-photos--3 .sph-item:first-child {
  grid-row: 1 / 3;
}
.section-photos--3 .sph-item--tall img {
  height: 100%;
}

/* 4-photo layout */
.section-photos--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Individual photo item */
.sph-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(74, 40, 120, .06);
}

.sph-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.96);
}

.sph-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

/* Gold bar on hover */
.sph-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  z-index: 2;
}
.sph-item:hover::before {
  transform: scaleX(1);
}

/* Caption overlay */
.sph-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(30,12,60,.75) 0%, transparent 100%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity .35s, transform .35s;
}
.sph-item:hover .sph-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Dark-section variant (for Software section) */
.section-photos--dark .sph-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(245,184,0,.08);
}
.section-photos--dark .sph-item img {
  filter: brightness(.85) saturate(.9);
}
.section-photos--dark .sph-item:hover img {
  filter: brightness(.95) saturate(1);
}

/* Tall photo for 3-column center item */
.section-photos--3 .sph-item img {
  height: 200px;
}
.section-photos--3 .sph-item:first-child img {
  height: 100%;
  min-height: 412px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .section-photos--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-photos--3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .section-photos--3 .sph-item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .section-photos--3 .sph-item:first-child img {
    height: 260px;
    min-height: unset;
  }
  .section-photos--3 .sph-item img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .section-photos--2,
  .section-photos--4 {
    grid-template-columns: 1fr;
  }
  .section-photos--3 {
    grid-template-columns: 1fr;
  }
  .section-photos--3 .sph-item:first-child {
    grid-column: auto;
  }
  .sph-item img,
  .section-photos--3 .sph-item img,
  .section-photos--3 .sph-item:first-child img {
    height: 220px;
    min-height: unset;
  }
  /* Always show captions on mobile (no hover) */
  .sph-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--purple-deep);
  padding: 80px 6% 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.footer-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-nav-icon {
  width: 46px; height: 46px;
  object-fit: contain;
  animation: navIconSpin 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(245,184,0,.4));
  transition: transform .35s ease;
  flex-shrink: 0;
}
.footer-nav-icon:hover { transform: scale(1.08); }

.footer-logo-image {
  height: 52px; width: auto;
  object-fit: contain;
  animation: logoFloat 4s ease-in-out infinite;
}

/* Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand */
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.38);
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-office {
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-flag { font-size: 20px; }

.office-city {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
}

.office-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 12px; font-weight: 600;
  transition: all .3s;
}
.f-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,184,0,.1);
  transform: translateY(-3px);
}

/* Columns */
.footer-col h5 {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  transition: color .3s, padding-left .3s;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s, margin-right .3s;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,.85);
  padding-left: 0;
}

.footer-col ul li a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* ISO Badge */
.footer-cert {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245,184,0,.08);
  border: 1px solid rgba(245,184,0,.15);
  border-radius: 10px;
}

.cert-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.cert-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.cert-sub {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  margin: 0;
}

.footer-bottom a{
  color: rgba(255,255,255,.2);
  text-decoration: none;
}

.footer-bottom a:hover{
  color: var(--gold);
}

/* ─── BACK TO TOP ─── */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 400;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; color: var(--purple-deep);
  box-shadow: 0 8px 24px rgba(245,184,0,.4);
  opacity: 0; transform: translateY(20px);
  transition: all .35s var(--ease);
  border: none;
}
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(245,184,0,.5); }

/* ─── FOOTER RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  footer { padding: 60px 5% 0; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand p { max-width: 100%; }

  .footer-offices {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }

  .footer-offices { flex-direction: column; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-links { gap: 16px; }
}

/* Dropdown */
/* ===== SERVICES MEGA MENU ===== */

.dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:6px;
    color:#fff;
}

/* Main dropdown panel */
.dropdown-content{
    position:absolute;
    top:55px;
    left:50%;
    transform:translateX(-50%) translateY(15px);

    width:900px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

    padding:25px;

    background:rgba(16,20,33,.96);

    backdrop-filter:blur(20px);

    border:1px solid rgba(212,175,55,.25);

    border-radius:24px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

/* Show dropdown */
.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}


/* Individual service cards */

.dropdown-content a{

    display:flex;
    flex-direction:column;

    padding:18px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}


/* Gold hover */

.dropdown-content a:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

    background:
    linear-gradient(
      135deg,
      rgba(212,175,55,.15),
      rgba(212,175,55,.03)
    );

    box-shadow:
    0 10px 25px rgba(212,175,55,.25);
}


/* Optional small subtitle */

.dropdown-content a span{
    font-size:12px;
    margin-top:6px;
    opacity:.7;
}


/* small top arrow */

.dropdown-content::before{

    content:"";

    position:absolute;

    top:-10px;
    left:50%;

    transform:translateX(-50%) rotate(45deg);

    width:20px;
    height:20px;

    background:#101421;

    border-left:1px solid rgba(212,175,55,.25);
    border-top:1px solid rgba(212,175,55,.25);
}



/* Mobile */

@media(max-width:992px){

.dropdown-content{

    width:100%;
    left:0;
    transform:none;

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.dropdown-content{
    grid-template-columns:1fr;
}

}

@media(max-width:992px){

    /* hide desktop mega menu */
    .dropdown-content{
        display:none;
    }

    /* mobile service wrapper */
    .mobile-services{
        width:100%;
    }

    .mobile-services-btn{

        display:flex;
        justify-content:space-between;
        align-items:center;

        width:100%;
        padding:16px 20px;

        color:#fff;
        text-decoration:none;

        border-radius:14px;

        background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

        border:1px solid rgba(212,175,55,.18);

        cursor:pointer;
    }


    /* Grid inside mobile */

    .mobile-services-list{

        display:none;

        margin-top:12px;

        padding:14px;

        border-radius:18px;

        background:
        rgba(16,20,33,.96);

        backdrop-filter:blur(20px);

        border:1px solid rgba(212,175,55,.15);

        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .mobile-services-list.active{
        display:grid;
    }

    .mobile-services-list a{

        padding:14px;

        border-radius:12px;

        text-decoration:none;

        color:#fff;

        font-size:13px;

        background:
        linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
        );

        border:1px solid rgba(255,255,255,.06);

        transition:.3s;
    }

    .mobile-services-list a:hover{

        border-color:#D4AF37;

        transform:translateY(-3px);

        box-shadow:
        0 8px 18px rgba(212,175,55,.18);

    }

}


/* smaller phones */

@media(max-width:600px){

.mobile-services-list{
    grid-template-columns:1fr;
}

}

footer {
  background: var(--purple-deep);
  padding: 80px 6% 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.footer-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-nav-icon {
  width: 46px; height: 46px;
  object-fit: contain;
  animation: navIconSpin 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(245,184,0,.4));
  transition: transform .35s ease;
  flex-shrink: 0;
}
.footer-nav-icon:hover { transform: scale(1.08); }

.footer-logo-image {
  height: 52px; width: auto;
  object-fit: contain;
  animation: logoFloat 4s ease-in-out infinite;
}

/* Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand */
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-office {
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-flag { font-size: 20px; }

.office-city {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
}

.office-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
   color: var(--gold);
  font-size: 12px; font-weight: 600;
  transition: all .3s;
}
.f-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,184,0,.1);
  transform: translateY(-3px);
}

/* Columns */
.footer-col h5 {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--cream);
  transition: color .3s, padding-left .3s;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s, margin-right .3s;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,.85);
  padding-left: 0;
}

.footer-col ul li a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* ISO Badge */
.footer-cert {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245,184,0,.08);
  border: 1px solid rgba(245,184,0,.15);
  border-radius: 10px;
}

.cert-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.cert-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.cert-sub {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  margin: 0;
}

.footer-bottom a{
  color: var(--cream);
  text-decoration: none;
}

.footer-bottom a:hover{
  color: var(--gold);
}

.consult-modal{

    position:fixed;
    inset:0;

    display:none;

    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(10px);

    z-index:99999;
}

/* Popup box */

.consult-box{

    width:90%;
    max-width:500px;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    #321B56,
    #4A2878
    );

    color:#fff;

    position:relative;

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}

.consult-box h2{
    margin-bottom:10px;
}

.consult-box p{
    margin-bottom:25px;
    opacity:.8;
}

.consult-box input,
.consult-box textarea{

    width:100%;

    margin-bottom:15px;

    padding:14px 16px;

    border:none;

    border-radius:14px;

    outline:none;
}

.consult-box button{

    width:100%;

    padding:14px;

    border:none;

    border-radius:999px;

    background:linear-gradient(
    135deg,
    #F5B800,
    #FFD84D
    );

    font-weight:700;

    cursor:pointer;
}

.close-modal{

    position:absolute;
    right:20px;
    top:15px;

    font-size:28px;
    cursor:pointer;
}