  :root {
    --blue: #123D9A;
    --blue-dark: #09245f;
    --blue-soft: #edf3ff;
    --ink: #111111;
    --muted: #5f6673;
    --line: rgba(18, 61, 154, 0.14);
    --paper: #ffffff;
    --soft: #f3f6fb;
    --max: 1180px;
    --radius-md: 8px;
    --radius-lg: 18px;
    --shadow: 0 22px 60px rgba(9, 36, 95, 0.1);
    --font: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 44%, #ffffff 100%);
    font-weight: 300;
    line-height: 1.6;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
  }

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

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

  button,
  input,
  textarea {
    font: inherit;
  }

  .skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 1000;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: white;
    background: var(--blue);
  }

  .skip-link:focus {
    left: 1rem;
  }

  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  .eyebrow,
  .section-kicker {
    margin: 0 0 1rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 400;
  }

  .section-heading {
    max-width: 720px;
  }

  .section-heading.centered {
    margin-inline: auto;
    text-align: center;
  }

  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }

  h1,
  h2,
  h3 {
    font-weight: 300;
    letter-spacing: -0.045em;
    line-height: 1.06;
  }

  h1 {
    max-width: 1010px;
    margin: 0 auto 1.3rem;
    font-size: clamp(3rem, 8.2vw, 7.8rem);
  }

  h1 span {
    color: var(--blue);
  }

  h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(2.3rem, 4.5vw, 4rem);
  }

  h3 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  }

  p {
    color: var(--muted);
    font-size: 1.02rem;
  }

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

  .section {
    padding: clamp(74px, 9vw, 128px) 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    transition: box-shadow 220ms ease, background 220ms ease;
  }

  .site-header.is-scrolled,
  .site-header.nav-is-open {
    box-shadow: 0 16px 40px rgba(9, 36, 95, 0.08);
  }

  .header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    min-width: 148px;
  }

  .brand-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
  }

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.1rem, 2.2vw, 2rem);
    color: rgba(17, 17, 17, 0.78);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }

  .main-nav a {
    position: relative;
    padding-block: 0.3rem;
    color: var(--blue);
    font-weight: 500;
    font-size: 1.125rem;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 1px;
    background: var(--blue);
    transition: left 220ms ease, right 220ms ease;
  }

  .main-nav a:hover::after,
  .main-nav a[aria-current=page]::after {
    left: 0;
    right: 0;
  }

  .main-nav a[aria-current=page] {
    color: var(--ink);
  }

  .main-nav a[aria-current=page]::after {
    background: var(--ink);
  }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    align-content: center;
    gap: 5px;
    position: relative;
    z-index: 102;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--ink);
    transform-origin: center;
    transition: transform 220ms ease, background 220ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle[aria-expanded=true] {
    border-color: rgba(18, 61, 154, 0.34);
    box-shadow: 0 12px 28px rgba(9, 36, 95, 0.08);
  }

  .nav-toggle[aria-expanded=true] span:first-child {
    transform: translateY(3px) rotate(45deg);
    background: var(--blue);
  }

  .nav-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
    background: var(--blue);
  }


  .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
  }

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

  .btn-primary {
    color: white;
    background: var(--blue);
    box-shadow: 0 20px 45px rgba(18, 61, 154, 0.24);
  }

  .btn-secondary {
    color: var(--blue);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
  }

  .text-link {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: 2rem;
    color: var(--blue);
    border-bottom: 1px solid currentColor;
    transition: color 180ms ease, transform 180ms ease;
  }

  .text-link:hover {
    transform: translateX(3px);
  }

  .contact-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 3.5vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 60px rgba(9, 36, 95, 0.07);
  }

  .contact-form label {
    display: grid;
    gap: 0.5rem;
    color: rgba(17, 17, 17, 0.74);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(18, 61, 154, 0.16);
    border-radius: 6px;
    color: var(--ink);
    background: white;
    outline: none;
    font-weight: 300;
  }

  .contact-form textarea {
    resize: vertical;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(18, 61, 154, 0.08);
  }

  .consent {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    gap: 0.75rem !important;
    font-size: 0.82rem !important;
    line-height: 1.45;
  }

  .consent input {
    width: 16px;
    height: 16px;
    min-height: 0;
    margin-top: 0.18rem;
    padding: 0;
  }

  .consent span {
    color: var(--muted);
  }

  .consent a {
    color: var(--blue);
    border-bottom: 1px solid currentColor;
  }

  .form-message {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
  }

  .form-message.success {
    border-color: rgba(18, 61, 154, 0.22);
    color: var(--blue-dark);
  }

  .form-message.error {
    border-color: rgba(120, 20, 20, 0.22);
    color: #781414;
  }

  .disabled-upload {
    opacity: 0.58;
  }

  .disabled-upload span {
    margin-left: 0.35rem;
    color: var(--blue);
    font-size: 0.78rem;
  }

  .disabled-upload input {
    cursor: not-allowed;
    background: #f6f7fb;
  }

  .form-direct {
    margin: 0.2rem 0 0;
    font-size: 0.88rem;
  }

  .form-direct a {
    color: var(--blue);
    border-bottom: 1px solid currentColor;
  }

  .reveal,
  .reveal-grid>* {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
  }

  .reveal.is-visible,
  .reveal-grid.is-visible>* {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-grid.is-visible>*:nth-child(2) {
    transition-delay: 80ms;
  }

  .reveal-grid.is-visible>*:nth-child(3) {
    transition-delay: 160ms;
  }

  .reveal-grid.is-visible>*:nth-child(4) {
    transition-delay: 240ms;
  }

  .reveal-grid.is-visible>*:nth-child(5) {
    transition-delay: 320ms;
  }

  .js-ready .scroll-section>.container,
  .js-ready .company-proof.scroll-section {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(34px) scale(0.985);
    transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1), filter 950ms cubic-bezier(0.22, 1, 0.36, 1), transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, filter, transform;
  }

  .js-ready .scroll-section.is-section-visible>.container,
  .js-ready .company-proof.scroll-section.is-section-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }

  .js-ready .scroll-section.is-section-visible>.container {
    transition-delay: 80ms;
  }

  .js-ready .hero.scroll-section>.container,
  .js-ready .page-hero.scroll-section>.container {
    opacity: 1;
    filter: none;
    transform: translate3d(0, calc(var(--section-progress, 0) * -22px), 0);
    transition-delay: 0ms;
  }

  .hero,
  .page-hero,
  .cta-section,
  .guarantee-section,
  .statement-section {
    background-position: center calc(58% + var(--section-progress, 0) * 26px), center calc(50% + var(--section-progress, 0) * 18px);
  }

  .hero::after,
  .page-hero::after {
    opacity: calc(0.74 + var(--section-progress, 0) * 0.26);
  }

  .scroll-section .premium-card,
  .scroll-section .process-item,
  .scroll-section .job-row,
  .scroll-section .about-panel,
  .scroll-section .legal-card,
  .scroll-section .contact-form,
  .scroll-section .company-proof__item {
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease, background 420ms ease;
  }

  .is-section-visible .premium-card,
  .is-section-visible .process-item,
  .is-section-visible .job-row,
  .is-section-visible .about-panel,
  .is-section-visible .legal-card,
  .is-section-visible .contact-form,
  .is-section-visible .company-proof__item {
    transform: translateY(calc((1 - var(--section-visibility, 1)) * 10px));
  }

  @media (prefers-reduced-motion: reduce) {

    .js-ready .scroll-section>.container,
    .js-ready .company-proof.scroll-section,
    .js-ready .hero.scroll-section>.container,
    .js-ready .page-hero.scroll-section>.container {
      opacity: 1;
      filter: none;
      transform: none;
      transition: none;
    }
  }

  .hero {
    min-height: calc(100svh - 80px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(64px, 8vh, 92px) 0 clamp(92px, 12vh, 150px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.88) 100%), url("../assets/munich-online-bg.jpg") center 58%/cover no-repeat;
  }

  @media (max-width: 980px) {
    /* .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(150, 173, 223, 0.94) 0%, rgba(132, 159, 219, 0.74) 78%, rgba(115, 146, 214, 0.78) 100%), url("../assets/hero-munich.png") center/cover no-repeat;
      transform: scale(1.02);
    } */
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 88%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: min(960px, 100%);
    text-align: center;
  }

  .hero .eyebrow {
    margin-bottom: 1.1rem;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.3em;
  }

  .hero h1 {
    max-width: 900px;
    margin-bottom: 1.35rem;
    font-size: clamp(4.2rem, 6.2vw, 5.6rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .hero h1 span {
    display: block;
  }

  .hero-subline {
    max-width: 640px;
    margin: 0 auto 1.35rem;
    color: var(--ink);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .hero-subline::before {
    content: "";
    width: 70px;
    height: 3px;
    display: block;
    margin: 0 auto 1.35rem;
    background: var(--blue);
  }

  .hero-text {
    max-width: 660px;
    margin: 0 auto 1.9rem;
    color: #6d7482;
    font-size: 1.24rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .statement-section {
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, rgba(9, 36, 95, 0.78), rgba(18, 61, 154, 0.78)), url("../assets/meeting.png") center/cover no-repeat;
  }

  .statement-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 36, 95, 0.08), rgba(9, 36, 95, 0.72));
    pointer-events: none;
  }

  .statement-section .eyebrow,
  .statement-section p {
    color: rgba(255, 255, 255, 0.72);
  }

  .statement-section h2 {
    max-width: 820px;
    margin-inline: auto;
    color: white;
  }

  .value-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    border-radius: var(--radius-lg);
    /* background: rgba(255, 255, 255, 0.18); */
  }

  .value-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: clamp(1.5rem, 2.6vw, 2.35rem);
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(8px); */
    transition: background 220ms ease, transform 220ms ease;
    border-radius: 20px;
  }

  .value-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .value-number {
    min-width: 4ch;
    display: inline-block;
    margin-bottom: 2.2rem;
    color: white;
    font-size: clamp(2rem, 3.4vw, 3.9rem);
    font-weight: 200;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    line-height: 1;
    letter-spacing: -0.06em;
    /* opacity: 0.72; */
    transform: translateY(8px);
    transition: opacity 500ms ease, text-shadow 500ms ease, transform 500ms ease, filter 500ms ease;
    will-change: transform, contents;
  }

  .value-grid.is-visible .value-number {
    opacity: 1;
    transform: translateY(0);
  }

  .value-grid.is-visible .value-number.is-counting {
    animation: counter-pop 820ms cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(1.12);
    transform: translateY(0) scale(1.035);
  }

  .value-number.is-counted {
    text-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
  }

  @keyframes counter-pop {
    0% {
      opacity: 0.45;
      transform: translateY(12px) scale(0.94);
    }

    58% {
      opacity: 1;
      transform: translateY(-2px) scale(1.08);
    }

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

  .value-card h3 {
    max-width: 13rem;
    color: white;
    font-size: 1.36rem;
    font-weight: 300;
    letter-spacing: -0.035em;
  }

  .value-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .focus-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4.8rem, 8vw, 8.5rem) 0;
    background: radial-gradient(circle at 50% 0%, rgba(18, 61, 154, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  }

  .focus-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 61, 154, 0.035) 1px, transparent 1px), linear-gradient(180deg, rgba(18, 61, 154, 0.03) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.5;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  }

  .focus-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .focus-section .section-kicker {
    display: inline-flex;
    margin-bottom: clamp(1rem, 2vw, 1.4rem);
  }

  .focus-section__title {
    max-width: 980px;
    margin: 0 auto clamp(2.8rem, 5vw, 4.6rem);
    color: #080b14;
    font-size: clamp(2.45rem, 6vw, 5.35rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .focus-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.4vw, 1.1rem);
  }

  .focus-card {
    min-height: clamp(5.6rem, 8vw, 6.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(18, 61, 154, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.96)), radial-gradient(circle at 50% 0%, rgba(18, 61, 154, 0.08), transparent 58%);
    box-shadow: 0 22px 70px rgba(12, 24, 52, 0.06);
    transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
  }

  .focus-card span {
    position: relative;
    z-index: 1;
    color: #123d9a;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.035em;
  }

  .focus-card:hover {
    border-color: rgba(18, 61, 154, 0.38);
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.96)), radial-gradient(circle at 50% 0%, rgba(18, 61, 154, 0.08), transparent 58%); */
    /* box-shadow: 0 30px 90px rgba(12, 24, 52, 0.12); */
    /* transform: translateY(-6px); */
  }

  .home-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  }

  .premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
    margin-top: clamp(2rem, 5vw, 4rem);
  }

  .premium-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: clamp(1.45rem, 2.4vw, 2.3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 65px rgba(9, 36, 95, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .premium-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -38% 18%;
    height: 58%;
    background: radial-gradient(circle, rgba(18, 61, 154, 0.2), transparent 68%);
    opacity: 0;
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .premium-card:hover {
    border-color: rgba(18, 61, 154, 0.24);
    box-shadow: 0 26px 75px rgba(9, 36, 95, 0.11);
    transform: translateY(-5px);
  }

  .premium-card:hover::before {
    opacity: 1;
    transform: translateY(-10px);
  }

  .premium-card--light {
    background: linear-gradient(180deg, #ffffff, #f8faff);
  }

  .premium-card--dark {
    color: white;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.94) 0%, rgba(18, 61, 154, 0.92) 100%), url("../assets/hero-munich.png") center/cover no-repeat;
  }

  .premium-card--dark p,
  .premium-card--dark .card-kicker,
  .premium-card--dark .text-link {
    color: rgba(255, 255, 255, 0.78);
  }

  .card-kicker {
    display: inline-flex;
    margin-bottom: 1.1rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
  }

  .premium-card h3 {
    max-width: 440px;
    margin-bottom: 1rem;
  }

  .premium-card p {
    position: relative;
    z-index: 1;
  }

  .cta-section {
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(18, 61, 154, 0.92)), url("../assets/hero-munich-wide.jpg") center/cover no-repeat;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .cta-card {
    max-width: 930px;
    text-align: left;
  }

  .cta-card h2 {
    max-width: 820px;
    margin-inline: auto;
    color: white;
  }

  .cta-card .eyebrow,
  .cta-card p {
    color: rgba(255, 255, 255, 0.72);
  }

  .page-hero {
    min-height: clamp(520px, 64svh, 760px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: clamp(110px, 13vw, 180px) 0 clamp(70px, 8vw, 120px);
    color: white;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.96) 0%, rgba(18, 61, 154, 0.88) 52%, rgba(9, 36, 95, 0.88) 100%), url("../assets/hero-munich-wide.jpg") center/cover no-repeat;
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.18), transparent 28%), radial-gradient(circle at 80% 65%, rgba(18, 61, 154, 0.45), transparent 36%);
    pointer-events: none;
  }

  .page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 94%);
    pointer-events: none;
  }

  .page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1040px;
  }

  .page-hero .eyebrow,
  .page-hero p {
    color: rgba(255, 255, 255, 0.78);
  }

  .page-hero h1 {
    max-width: 980px;
    margin: 0 0 1.4rem;
    color: white;
    font-size: clamp(3.3rem, 7.5vw, 6.8rem);
  }

  .page-hero p {
    max-width: 900px;
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  }

  .company-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(2.6rem, 5vw, 4.2rem);
    overflow: hidden;
    border: 1px solid rgba(18, 61, 154, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 90px rgba(9, 19, 44, 0.08);
    backdrop-filter: blur(16px);
  }

  .company-proof__item {
    min-height: clamp(12rem, 17vw, 15.2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    position: relative;
    padding: clamp(1.7rem, 3vw, 2.4rem);
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
  }

  .company-proof__item:not(:last-child) {
    border-right: 1px solid rgba(18, 61, 154, 0.14);
  }

  .company-proof__icon {
    width: clamp(4.4rem, 6vw, 5.2rem);
    height: clamp(4.4rem, 6vw, 5.2rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 61, 154, 0.22);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.98), rgba(232, 238, 252, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 18px 42px rgba(18, 61, 154, 0.12);
  }

  .company-proof__icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #123d9a;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .company-proof__item h3 {
    max-width: 15rem;
    margin: 0;
    color: #0b0f1a;
    font-size: clamp(1.25rem, 1.26vw, 1.38rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.015em;
  }

  .company-proof__item:hover {
    z-index: 1;
    transform: translateY(-4px);
  }

  .company-proof__item:hover .company-proof__icon {
    border-color: rgba(18, 61, 154, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 22px 54px rgba(18, 61, 154, 0.16);
  }

  .process-section {
    background: linear-gradient(180deg, var(--soft), #ffffff);
  }

  .process-timeline {
    display: grid;
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 4.2rem);
  }

  .process-item {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.2rem, 2.5vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 60px rgba(9, 36, 95, 0.055);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .process-item:hover {
    border-color: rgba(18, 61, 154, 0.26);
    box-shadow: 0 24px 76px rgba(9, 36, 95, 0.09);
    transform: translateY(-3px);
  }

  .process-number {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--ink), var(--blue));
    box-shadow: 0 18px 40px rgba(18, 61, 154, 0.18);
    font-size: 2.4rem;
    font-weight: 200;
  }

  .process-copy h3 {
    margin-bottom: 0.85rem;
  }

  .check-list {
    display: grid;
    gap: 0.8rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
  }

  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(17, 17, 17, 0.82);
    font-weight: 300;
  }

  .check-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-top: 0.62rem;
    border-radius: 50%;
    background: var(--blue);
  }

  .guarantee-section {
    color: white;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(18, 61, 154, 0.92)), url("../assets/hero-munich.png") center/cover no-repeat;
  }

  .guarantee-card {
    max-width: 990px;
    margin-inline: auto;
    padding: clamp(1.6rem, 4vw, 4.3rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
  }

  .guarantee-card h2,
  .guarantee-card h3 {
    color: white;
  }

  .guarantee-card .eyebrow,
  .guarantee-card p {
    color: rgba(255, 255, 255, 0.76);
  }

  .guarantee-list {
    display: grid;
    gap: 0.85rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
  }

  .guarantee-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    color: white;
  }

  .guarantee-list li::before {
    content: "";
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
  }

  .guarantee-list li::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 11px;
    margin: 7px 0 0 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
  }

  .jobs-section {
    background: white;
  }

  .jobs-list {
    display: grid;
    gap: 0.9rem;
    margin-top: clamp(1.8rem, 4vw, 3rem);
  }

  .filter-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  }

  .filter-preview button {
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(18, 61, 154, 0.14);
    border-radius: 999px;
    color: rgba(18, 61, 154, 0.6);
    background: #ffffff;
    cursor: not-allowed;
  }

  .job-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1.1fr) minmax(230px, 0.8fr) auto;
    align-items: center;
    gap: clamp(0.9rem, 2vw, 1.5rem);
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff, #f8faff);
    box-shadow: 0 14px 45px rgba(9, 36, 95, 0.045);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .job-row:hover {
    border-color: rgba(18, 61, 154, 0.26);
    box-shadow: 0 24px 68px rgba(9, 36, 95, 0.09);
    transform: translateY(-3px);
  }

  .job-index {
    color: var(--blue);
    font-size: 1.15rem;
    letter-spacing: 0.1em;
  }

  .job-main h3 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  }

  .job-main p,
  .job-meta span {
    margin: 0;
    color: var(--muted);
  }

  .job-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .job-meta span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--blue-soft);
    text-align: center;
    font-size: 0.92rem;
  }

  .job-row a {
    color: var(--blue);
    border-bottom: 1px solid currentColor;
    white-space: nowrap;
  }

  .jobs-note {
    max-width: 720px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.95rem;
  }

  .about-deep {
    background: linear-gradient(180deg, #ffffff, var(--soft));
  }

  .about-deep-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .about-panel {
    padding: clamp(1.55rem, 3vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 22px 70px rgba(9, 36, 95, 0.07);
  }

  .about-panel--blue {
    color: white;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(18, 61, 154, 0.92)), url("../assets/hero-munich.png") center/cover no-repeat;
  }

  .about-panel--blue h2,
  .about-panel--blue h3 {
    color: white;
  }

  .about-panel--blue p,
  .about-panel--blue .eyebrow {
    color: rgba(255, 255, 255, 0.78);
  }

  .contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(243, 246, 251, 0.26)) center/cover no-repeat;
  }

  .contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(18, 61, 154, 0.12), transparent 34%);
    pointer-events: none;
  }

  .contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: clamp(2.2rem, 6vw, 6rem);
  }

  .contact-info {
    position: sticky;
    top: 110px;
  }

  .contact-details {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .contact-details p {
    display: grid;
    gap: 0.15rem;
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-details span {
    color: var(--blue);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  .contact-details a {
    color: var(--ink);
  }

  .legal-section {
    background: linear-gradient(180deg, #ffffff, var(--soft));
  }

  .legal-card {
    max-width: 920px;
    padding: clamp(1.45rem, 4vw, 4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow);
  }

  .legal-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
  }

  .legal-card h3 {
    margin-top: 2.1rem;
    color: var(--blue-dark);
    font-size: 1.22rem;
    letter-spacing: -0.02em;
  }

  .legal-card a {
    color: var(--blue);
    word-break: break-word;
  }

  @media (max-width: 1440px) and (max-height: 860px) {
    html {
      scroll-padding-top: 72px;
    }

    .header-inner {
      min-height: 72px;
    }

    .brand {
      min-width: 118px;
    }

    .brand-logo {
      width: 92px;
    }

    .main-nav {
      gap: clamp(1rem, 2vw, 1.55rem);
      font-size: 0.9rem;
    }

    .hero.section {
      min-height: calc(100svh - 72px);
      padding: clamp(34px, 5vh, 48px) 0 clamp(94px, 13vh, 128px);
    }

    .hero .eyebrow {
      margin-bottom: 0.85rem;
      font-size: 0.76rem;
      letter-spacing: 0.24em;
    }

    .hero h1 {
      max-width: 790px;
      margin-bottom: 1.05rem;
      font-size: clamp(3.8rem, 5.15vw, 4.6rem);
      line-height: 1.02;
    }

    .hero-subline {
      max-width: 600px;
      margin-bottom: 1.05rem;
      font-size: 1.52rem;
      line-height: 1.22;
    }

    .hero-subline::before {
      width: 58px;
      height: 2px;
      margin-bottom: 1rem;
    }

    .hero-text {
      max-width: 620px;
      margin-bottom: 1.35rem;
      font-size: 1.02rem;
      line-height: 1.45;
    }

    .btn {
      min-height: 46px;
      padding: 0.75rem 1.2rem;
    }
  }

  @media (min-width: 981px) and (max-height: 720px) {
    html {
      scroll-padding-top: 64px;
    }

    .header-inner {
      min-height: 64px;
    }

    .brand-logo {
      width: 82px;
    }

    .hero.section {
      min-height: calc(100svh - 64px);
      padding: 26px 0 88px;
    }

    .hero h1 {
      max-width: 720px;
      font-size: clamp(3.25rem, 4.75vw, 4rem);
    }

    .hero-subline {
      font-size: 1.36rem;
    }

    .hero-text {
      font-size: 0.96rem;
    }
  }

  @media (max-width: 1100px) {
    .premium-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .focus-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .job-row {
      grid-template-columns: 54px minmax(0, 1fr);
    }

    .job-meta {
      grid-column: 2;
    }

    .job-row a {
      grid-column: 2;
      justify-self: start;
    }
  }

  @media (max-width: 1050px) {
    .company-proof {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-proof__item:nth-child(2) {
      border-right: 0;
    }

    .company-proof__item:nth-child(-n+2) {
      border-bottom: 1px solid rgba(18, 61, 154, 0.14);
    }
  }

  @media (max-width: 980px) {
    html {
      scroll-padding-top: 76px;
    }

    body.nav-is-open {
      overflow: hidden;
      border-radius: 0 0 20px 20px;
      padding-bottom: 20px;
    }

    .site-header::after {
      content: "";
      position: fixed;
      inset: 76px 0 0;
      z-index: 99;
      background: rgba(9, 36, 95, 0.12);
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms ease;
    }

    .site-header.nav-is-open::after {
      opacity: 1;
      border-radius: 0 0 20px 20px;
      padding-bottom: 20px;

    }

    .header-inner {
      min-height: 76px;
    }

    .brand {
      min-width: 124px;
    }

    .brand-logo {
      width: 96px;
    }

    .main-nav {
      position: fixed;
      left: 20px;
      right: 20px;
      top: 84px;
      z-index: 101;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.15rem;
      padding: 0.55rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)), white;
      box-shadow: 0 22px 70px rgba(9, 36, 95, 0.16);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      visibility: hidden;
      transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

    .main-nav.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      visibility: visible;
      border-radius: 0 0 20px 20px;
      padding-bottom: 20px;

    }

    .main-nav a {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 1rem;
      border-radius: 6px;
      color: var(--blue-dark);
      text-align: left;
      letter-spacing: 0;
      transition: background 180ms ease, color 180ms ease, padding 180ms ease;
    }

    .main-nav a::after {
      position: static;
      width: 22px;
      height: 1px;
      flex: 0 0 auto;
      background: rgba(18, 61, 154, 0.42);
      opacity: 0;
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible {
      padding-left: 1.12rem;
      color: var(--blue);
      background: rgba(18, 61, 154, 0.07);
      outline: none;
    }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after {
      opacity: 1;
      transform: translateX(2px);
    }

    .nav-toggle {
      display: grid;
    }

    .value-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
    }

    .value-card {
      min-height: 260px;
    }

    .value-number {
      font-size: clamp(2.6rem, 7vw, 3.5rem);
    }

    .value-card h3 {
      max-width: none;
      font-size: 1.24rem;
    }

    .hero.section {
      /* min-height: calc(100svh - 76px);
      padding: 52px 0 140px;
      background-size: auto 100%, auto 72%; */
    }

    .hero h1 {
      max-width: 720px;
      font-size: clamp(3.35rem, 9vw, 4.35rem);
      letter-spacing: 1px;
    }

    .hero-subline {
      max-width: 560px;
      font-size: 1.55rem;
    }

    .hero-text {
      max-width: 560px;
      margin-bottom: 1.55rem;
      font-size: 1.04rem;
    }

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

    .page-hero {
      min-height: clamp(520px, 72svh, 680px);
      padding-top: 125px;
    }

    .about-deep-grid,
    .premium-grid {
      grid-template-columns: 1fr;
    }

    .premium-card {
      min-height: 320px;
    }

    .contact-info {
      position: static;
    }
  }

  @media (max-width: 760px) {
    .focus-section {
      padding: clamp(4rem, 14vw, 5.4rem) 0;
    }

    .focus-section__title {
      font-size: clamp(2.35rem, 12vw, 4rem);
    }

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

    .focus-card {
      min-height: 5.2rem;
    }
  }

  @media (max-width: 640px) {

    h2 {
      font-size: clamp(2.35rem, 12vw, 3.2rem);
    }

    .container {
      width: min(100% - 28px, var(--max));
    }

    .header-inner {
      min-height: 76px;
    }

    .brand-logo {
      width: 88px;
    }

    .main-nav {
      left: 14px;
      right: 14px;
      top: 82px;
      padding: 0.45rem;
    }

    .main-nav a {
      min-height: 52px;
      padding: 0.82rem 0.9rem;
      font-size: 0.98rem;
    }

    .hero.section {
      /* min-height: calc(100svh - 76px);
      padding: 40px 0 118px;
      background-position: center bottom;
      background-size: auto 100%, auto 52%; */
    }

    .hero .eyebrow {
      margin-bottom: 0.75rem;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
    }

    .hero h1 {
      margin-bottom: 0.95rem;
      font-size: clamp(2.55rem, 13vw, 3.15rem);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .hero-subline {
      margin-bottom: 0.95rem;
      font-size: 1.18rem;
      line-height: 1.22;
    }

    .hero-subline::before {
      width: 48px;
      height: 2px;
      margin-bottom: 0.95rem;
    }

    .hero-text {
      margin-bottom: 1.25rem;
      color: var(--ink);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    .hero-actions {
      gap: 0.65rem;
    }

    .hero-actions .btn {
      min-height: 44px;
      padding: 0.68rem 1rem;
      font-size: 0.92rem;
    }

    .section {
      padding: 70px 0;
    }

    .statement-section {
      padding: 64px 0;
    }

    .statement-section .section-heading {
      max-width: 100%;
    }

    .statement-section .eyebrow {
      margin-bottom: 0.8rem;
      font-size: 0.66rem;
      letter-spacing: 0.18em;
    }

    .statement-section h2 {
      margin-bottom: 0.9rem;
      font-size: clamp(2.35rem, 12vw, 3.2rem);
      line-height: 1.02;
    }

    .statement-section .section-heading p {
      max-width: 300px;
      margin-inline: auto;
      font-size: 0.96rem;
      line-height: 1.45;
    }

    h1 {
      font-size: clamp(2rem, 14vw, 4rem);
    }

    .value-grid {
      grid-template-columns: 1fr;
      gap: 0.7rem;
      margin-top: 2rem;
      border: 0;
      border-radius: 0;
      background: transparent;
    }

    .value-card {
      min-height: 0;
      display: grid;
      grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
      grid-template-areas: "number title" "number text";
      align-items: center;
      justify-content: center;
      column-gap: 1.8rem;
      row-gap: 0.28rem;
      padding: 1.05rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.08);
    }

    .value-number {
      grid-area: number;
      min-width: 0;
      margin: 0 auto;
      font-size: clamp(1.9rem, 10.5vw, 2.65rem);
      line-height: 0.95;
    }

    .value-card h3 {
      grid-area: title;
      margin-bottom: 0.25rem;
      font-size: 1rem;
      line-height: 1.16;
      letter-spacing: -0.02em;
    }

    .value-card p {
      grid-area: text;
      font-size: 0.9rem;
      line-height: 1.42;
    }

    .page-hero {
      min-height: calc(100svh - 76px);
      padding: 108px 0 86px;
      background: linear-gradient(135deg, rgba(17, 17, 17, 0.96) 0%, rgba(18, 61, 154, 0.88) 52%, rgba(9, 36, 95, 0.88) 100%), url("../assets/hero-munich-w.jpg") center/cover no-repeat;
    }

    .page-hero h1 {
      font-size: clamp(2.3rem, 10vw, 4.2rem);
    }

    .page-hero p {
      font-size: 1rem;
    }

    .process-item {
      grid-template-columns: 1fr;
    }

    .process-number {
      width: 64px;
      height: 64px;
      font-size: 1.8rem;
    }

    .job-row {
      grid-template-columns: 1fr;
      padding: 1.1rem;
    }

    .job-index,
    .job-meta,
    .job-row a {
      grid-column: auto;
    }

    .job-meta {
      grid-template-columns: 1fr;
      width: 100%;
    }

    .job-meta span {
      justify-content: flex-start;
      border-radius: 8px;
    }

    .filter-preview {
      justify-content: flex-start;
    }

    .filter-preview button {
      min-height: 38px;
      padding: 0.55rem 0.85rem;
      font-size: 0.88rem;
    }

    .contact-form {
      padding: 1.1rem;
    }

    .legal-card {
      border-right: 0;
      border-left: 0;
      border-radius: 0;
    }
  }

  @media (max-width: 620px) {
    .company-proof {
      grid-template-columns: 1fr;
    }

    .company-proof__item {
      min-height: auto;
      padding: 2rem 1.4rem;
    }

    .company-proof__item:not(:last-child) {
      border-right: 0;
      border-bottom: 1px solid rgba(18, 61, 154, 0.14);
    }

    .company-proof__item h3 {
      max-width: 18rem;
    }
  }

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

  /* Custom AOS animation for Weitwerth value cards */
  .value-card[data-aos="ww-card-up"] {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition-property: opacity, transform;
    transition-duration: 850ms;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
  }

  .value-card[data-aos="ww-card-up"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Hover بعد انتهاء الظهور */
  .value-card[data-aos="ww-card-up"].aos-animate:hover {
    transform: translate3d(0, -2px, 0);
  }

  /* Mobile: حركة أخف */
  @media (max-width: 640px) {
    .value-card[data-aos="ww-card-up"] {
      transform: translate3d(0, 26px, 0);
      transition-duration: 700ms;
    }

    .value-card[data-aos="ww-card-up"].aos-animate {
      transform: translate3d(0, 0, 0);
    }
  }

  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .value-card[data-aos="ww-card-up"] {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }