:root {
      /* ── Brand palette ── */
      --magenta: #c8256a;
      --magenta-deep: #a01a58;
      --magenta-pale: #fce8f1;
      --violet: #5b1f8a;
      --violet-deep: #3e1266;
      --violet-pale: #ede0fa;
      --navy: #12102b;
      --navy-soft: #2e2b4e;
      --navy-muted: #7a789a;

      /* Gradient */
      --grad: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 100%);
      --grad-soft: linear-gradient(135deg, rgba(200, 37, 106, 0.18) 0%, rgba(91, 31, 138, 0.18) 100%);

      /* Neutrals */
      --surface: #f7f6f9;
      --surface-2: #eeeaf5;
      --surface-3: #ddd8ec;
      --white: #ffffff;

      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
      --nav-h: 72px;
      --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html[lang="ar"] {
      --sans: 'Noto Sans Arabic', 'DM Sans', sans-serif;
    }

    html[lang="ko"] {
      --sans: 'Noto Sans KR', 'DM Sans', sans-serif;
    }

    html[lang="ja"] {
      --sans: 'Noto Sans JP', 'DM Sans', sans-serif;
    }

    html[lang="zh"] {
      --sans: 'Noto Sans SC', 'DM Sans', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--sans);
      background: var(--surface);
      color: var(--navy);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

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

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--magenta);
      outline-offset: 3px;
    }

    /* ─── NOISE TEXTURE ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.45;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      z-index: 1000;
      isolation: isolate;
      transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }

    nav.scrolled {
      background: rgba(247, 246, 249, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(18, 16, 43, 0.08);
    }

    .logo-mark {
      display: inline-flex;
      align-items: center;
      direction: ltr !important;
      unicode-bidi: isolate;
      text-decoration: none;
    }

    .logo-img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 190px;
      object-fit: contain;
    }

    .footer-logo-img {
      height: 32px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    .nav-center-group {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy-soft);
      transition: color 0.25s;
    }

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

    .nav-right-group {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-cta {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 10px 22px;
      background: var(--grad);
      color: var(--white);
      border-radius: 2px;
      transition: opacity 0.25s, transform 0.2s;
      white-space: nowrap;
    }

    .nav-cta:hover {
      opacity: 0.88;
      transform: translateY(-1px);
    }

    /* ─── LANGUAGE SWITCHER ─── */
    .lang-picker {
      position: relative;
      display: inline-block;
    }

    .lang-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      background: rgba(18, 16, 43, 0.04);
      border: 1px solid var(--surface-3);
      border-radius: 4px;
      color: var(--navy);
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s var(--ease);
    }

    .lang-btn:hover {
      background: var(--surface-2);
      border-color: var(--magenta);
    }

    .lang-btn .globe-icon {
      width: 14px;
      height: 14px;
      color: var(--magenta);
      flex-shrink: 0;
    }

    .lang-btn .chevron {
      width: 11px;
      height: 11px;
      color: var(--navy-muted);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .lang-picker.open .lang-btn .chevron {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 250px;
      max-height: 380px;
      overflow-y: auto;
      background: var(--white);
      border: 1px solid var(--surface-3);
      border-radius: 6px;
      box-shadow: 0 16px 36px rgba(18, 16, 43, 0.14);
      padding: 6px;
      z-index: 1200;
      display: none;
      flex-direction: column;
      gap: 2px;
    }

    .lang-picker.open .lang-dropdown {
      display: flex;
      animation: dropIn 0.22s var(--ease);
    }

    @keyframes dropIn {
      from {
        opacity: 0;
        transform: translateY(-6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .lang-group-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy-muted);
      padding: 8px 10px 4px;
    }

    .lang-opt {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: 4px;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      font-family: var(--sans);
      font-size: 12.5px;
      color: var(--navy-soft);
      transition: all 0.15s ease;
    }

    .lang-opt:hover {
      background: var(--surface-2);
      color: var(--navy);
    }

    .lang-opt.active {
      background: var(--magenta-pale);
      color: var(--magenta-deep);
      font-weight: 600;
    }

    .lang-opt-main {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lang-opt-flag {
      font-size: 15px;
      line-height: 1;
    }

    .lang-opt-region {
      font-size: 11px;
      color: var(--navy-muted);
    }

    .lang-opt.active .lang-opt-region {
      color: var(--magenta-deep);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--navy);
      transition: all 0.3s;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: var(--nav-h);
      overflow-x: hidden;
      overflow-y: visible;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 5% 80px 8%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy-muted);
      margin-bottom: 28px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--grad);
    }

    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(48px, 5.2vw, 80px);
      font-weight: 900;
      line-height: 1.14;
      letter-spacing: -0.03em;
      color: var(--navy);
      margin-bottom: 28px;
      padding: 0.04em 0 0.18em;
      overflow: visible;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--navy-soft);
    }

    .hero-h1 .accent {
      display: inline-block;
      line-height: 1.18;
      padding: 0 0.04em 0.2em 0;
      margin-bottom: -0.16em;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      overflow: visible;
    }

    .hero-sub {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--navy-soft);
      max-width: 460px;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--grad);
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      border-radius: 2px;
      transition: opacity 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
    }

    .btn-primary:hover {
      opacity: 0.88;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200, 37, 106, 0.28);
    }

    .btn-primary svg {
      transition: transform 0.25s var(--ease);
    }

    .btn-primary:hover svg {
      transform: translateX(4px);
    }

    .btn-ghost {
      font-size: 13px;
      font-weight: 500;
      color: var(--navy-soft);
      border-bottom: 1px solid var(--surface-3);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-ghost:hover {
      color: var(--navy);
      border-color: var(--navy);
    }

    .hero-right {
      position: relative;
      z-index: 1;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-right-inner {
      position: relative;
      z-index: 2;
      padding: 120px 50px 60px;
      width: 100%;
    }

    .hero-geo {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(200, 37, 106, 0.22), transparent 36%),
        radial-gradient(circle at 78% 18%, rgba(91, 31, 138, 0.26), transparent 28%);
    }

    .hero-geo::before {
      content: '';
      position: absolute;
      inset: 12%;
      background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
      background-size: 44px 44px;
      -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 78%);
      mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 78%);
    }

    .hero-dashboard {
      position: relative;
      display: grid;
      gap: 18px;
      max-width: 520px;
      margin-left: auto;
    }

    .dashboard-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.11);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(18px);
    }

    .dashboard-main {
      padding: 34px;
    }

    .dashboard-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 32px;
    }

    .dashboard-kicker {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
    }

    .dashboard-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--magenta);
    }

    .dashboard-status::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--magenta);
      box-shadow: 0 0 14px var(--magenta);
    }

    .dashboard-score {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .score-number {
      font-family: var(--serif);
      font-size: 76px;
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: var(--white);
    }

    .score-number span {
      font-size: 44px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .score-copy {
      max-width: 180px;
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.54);
    }

    .growth-chart {
      display: flex;
      align-items: end;
      gap: 10px;
      height: 96px;
      padding: 18px 0 6px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .chart-bar {
      flex: 1;
      min-width: 20px;
      background: linear-gradient(180deg, var(--magenta), rgba(91, 31, 138, 0.3));
      opacity: 0.85;
    }

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

    .metric-card {
      padding: 22px 20px;
    }

    .metric-value {
      font-family: var(--serif);
      font-size: 34px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }

    .metric-value span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .metric-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      line-height: 1.5;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
    }

    .hero-mobile-stats {
      display: none;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      margin-top: 40px;
    }

    .mobile-stat {
      background: var(--white);
      border: 1px solid var(--surface-3);
      padding: 22px 20px;
    }

    .mobile-stat .stat-num {
      color: var(--navy);
      font-size: 32px;
      font-family: var(--serif);
      font-weight: 700;
      line-height: 1;
      margin-bottom: 6px;
    }

    .mobile-stat .stat-num span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .mobile-stat .stat-label {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy-muted);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 8%;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy-muted);
      animation: bounce-y 2s ease-in-out infinite;
    }

    .hero-scroll::before {
      content: '';
      display: block;
      width: 1px;
      height: 36px;
      background: var(--navy-muted);
    }

    @keyframes bounce-y {

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

      50% {
        transform: translateY(6px);
      }
    }

    /* ─── SECTION BASE ─── */
    section {
      position: relative;
    }

    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--magenta-deep);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::after {
      content: '';
      flex: 0 0 24px;
      height: 1px;
      background: var(--grad);
    }

    .section-h2 {
      font-family: var(--serif);
      font-size: clamp(38px, 4vw, 60px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--navy);
    }

    .section-h2 em {
      font-style: italic;
      color: var(--navy-soft);
    }

    /* ─── RESULTS ─── */
    .results {
      padding: 120px 8%;
      background: var(--surface);
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 64px;
    }

    .result-card {
      background: var(--white);
      padding: 48px 36px;
      border-left: 3px solid transparent;
      transition: border-color 0.3s;
    }

    .result-card:hover {
      border-color: var(--magenta);
    }

    .result-big {
      font-family: var(--serif);
      font-size: 52px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
    }

    .result-big .unit {
      font-size: 28px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .result-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy-muted);
      margin-bottom: 16px;
    }

    .result-desc {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--navy-soft);
    }

    .results-note {
      margin-top: 18px;
      max-width: 100%;
      font-size: 11px;
      font-style: italic;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(122, 122, 133, 0.72);
      white-space: normal;
      overflow-wrap: anywhere;
    }

    /* ─── SERVICES ─── */
    .services {
      padding: 120px 8%;
      background: var(--white);
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 80px;
      flex-wrap: wrap;
      gap: 32px;
    }

    .services-desc {
      max-width: 340px;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--navy-soft);
    }

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

    .service-card {
      background: var(--surface);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: background 0.35s var(--ease);
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.5s var(--ease);
      z-index: 0;
    }

    .service-card:hover::after {
      transform: scaleY(1);
    }

    .service-card>* {
      position: relative;
      z-index: 1;
    }

    .service-num {
      font-family: var(--serif);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--navy-muted);
      margin-bottom: 32px;
      transition: color 0.35s;
    }

    .service-card:hover .service-num {
      color: rgba(255, 255, 255, 0.3);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 28px;
      color: var(--navy);
      transition: color 0.35s;
    }

    .service-card:hover .service-icon {
      color: rgba(255, 255, 255, 0.9);
    }

    .service-h3 {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      transition: color 0.35s;
    }

    .service-card:hover .service-h3 {
      color: var(--white);
    }

    .service-p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--navy-soft);
      transition: color 0.35s;
    }

    .service-card:hover .service-p {
      color: rgba(255, 255, 255, 0.65);
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .service-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1px solid var(--surface-3);
      color: var(--navy-muted);
      border-radius: 1px;
      transition: border-color 0.35s, color 0.35s;
    }

    .service-card:hover .service-tag {
      border-color: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.45);
    }

    /* ─── CLIENTS ─── */
    .clients {
      padding: 100px 0;
      background: var(--navy);
      overflow: hidden;
    }

    .clients-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 54px;
      flex-wrap: wrap;
      gap: 20px;
      padding: 0 8%;
    }

    .clients .section-label {
      color: var(--magenta);
    }

    .clients .section-label::after {
      background: var(--grad);
    }

    .clients .section-h2 {
      color: var(--white);
    }

    .clients .section-h2 em {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .clients-marquee {
      position: relative;
      overflow: hidden;
    }

    .clients-marquee::before,
    .clients-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 12%;
      z-index: 2;
      pointer-events: none;
    }

    .clients-marquee::before {
      left: 0;
      background: linear-gradient(to right, var(--navy), transparent);
    }

    .clients-marquee::after {
      right: 0;
      background: linear-gradient(to left, var(--navy), transparent);
    }

    .clients-track {
      display: flex;
      align-items: center;
      gap: 2px;
      width: max-content;
      min-width: max-content;
      transform: translate3d(0, 0, 0);
      will-change: transform;
      animation: clients-marquee 34s linear infinite;
      backface-visibility: hidden;
    }

    .clients-marquee:hover .clients-track {
      animation-play-state: paused;
    }

    .client-logo-card {
      flex: 0 0 220px;
      width: 220px;
      min-height: 108px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.075);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 26px 34px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
    }

    .client-logo-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(200, 37, 106, 0.35);
      transform: translateY(-2px);
    }

    .client-logo {
      display: block;
      width: 100%;
      max-width: 148px;
      max-height: 48px;
      object-fit: contain;
      filter: grayscale(1) brightness(0) invert(1);
      opacity: 0.72;
      transition: opacity 0.3s, transform 0.3s var(--ease), filter 0.3s;
    }

    .client-logo-card:hover .client-logo {
      opacity: 0.96;
      transform: scale(1.03);
    }

    @keyframes clients-marquee {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(-50%, 0, 0);
      }
    }

    /* ─── PROCESS ─── */
    .process {
      padding: 120px 8%;
      background: var(--surface);
    }

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

    .process-left {
      position: sticky;
      top: 120px;
    }

    .process-body {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--navy-soft);
      margin: 24px 0 40px;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step {
      display: grid;
      grid-template-columns: 60px 1fr;
      padding: 32px 0;
      border-top: 1px solid var(--surface-3);
      align-items: start;
      gap: 24px;
    }

    .step:last-child {
      border-bottom: 1px solid var(--surface-3);
    }

    .step-index {
      font-family: var(--serif);
      font-size: 13px;
      color: var(--navy-muted);
      padding-top: 4px;
    }

    .step-title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--navy-soft);
    }

    /* ─── ABOUT ─── */
    .about {
      background: var(--navy);
      padding: 120px 8%;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
      overflow: hidden;
    }

    .about-visual {
      position: relative;
      height: 480px;
    }

    .about-card-main {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 72%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 40px;
    }

    .about-card-accent {
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      background: var(--grad);
      padding: 40px;
    }

    .about-card-accent .big-num {
      font-family: var(--serif);
      font-size: 64px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }

    .about-card-accent .big-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
    }

    .about-year {
      font-family: var(--serif);
      font-size: 13px;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 16px;
    }

    .about-card-main h3 {
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .about-card-main p {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.5);
    }

    .about-right .section-label {
      color: var(--magenta);
    }

    .about-right .section-label::after {
      background: var(--grad);
    }

    .about-right .section-h2 {
      color: var(--white);
    }

    .about-right .section-h2 em {
      color: rgba(255, 255, 255, 0.4);
    }

    .about-text {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.6);
      margin: 28px 0 44px;
    }

    .about-perks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 44px;
    }

    .perk {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .perk-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--magenta);
      margin-top: 7px;
      flex-shrink: 0;
    }

    .perk-text {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    .btn-light {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      border-radius: 2px;
      transition: background 0.25s, border-color 0.25s;
    }

    .btn-light:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.45);
    }

    /* ─── FAQ ─── */
    .faq {
      padding: 120px 8%;
      background: var(--white);
    }

    .faq-inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 80px;
    }

    .faq-left {
      position: sticky;
      top: 120px;
      align-self: start;
    }

    .faq-lead {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--navy-soft);
      margin-top: 24px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
    }

    .faq-item {
      border-top: 1px solid var(--surface-3);
      padding: 28px 0;
    }

    .faq-list .faq-item:last-child {
      border-bottom: 1px solid var(--surface-3);
    }

    .faq-q {
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .faq-a {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--navy-soft);
    }

    /* ─── CONTACT ─── */
    .contact {
      padding: 120px 8%;
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-left .section-label {
      color: var(--magenta);
    }

    .contact-left .section-label::after {
      background: var(--grad);
    }

    .contact-left .section-h2 {
      color: var(--white);
    }

    .contact-left .section-h2 em {
      color: rgba(255, 255, 255, 0.35);
    }

    .contact-tagline {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.5);
      margin: 28px 0 48px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .info-icon {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--magenta);
    }

    .info-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .info-text strong {
      display: block;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2px;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 48px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 10px;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      padding: 14px 18px;
      outline: none;
      transition: border-color 0.25s;
      border-radius: 0;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--magenta);
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .btn-submit {
      width: 100%;
      padding: 18px;
      background: var(--grad);
      color: var(--white);
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      border: none;
      cursor: pointer;
      border-radius: 0;
      margin-top: 8px;
      transition: opacity 0.25s, transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

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

    /* ─── FOOTER ─── */
    footer {
      background: #0a0818;
      padding: 60px 8% 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-brand .logo-mark {
      font-size: 20px;
    }

    .footer-brand .logo-mark span {
      color: rgba(255, 255, 255, 0.96);
    }

    .footer-brand .logo-mark em {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-tagline {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.68);
      margin-top: 10px;
      max-width: 260px;
      line-height: 1.7;
    }

    .footer-links {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 20px;
    }

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

    .footer-col a {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      flex-wrap: wrap;
      gap: 16px;
    }

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

    .back-to-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.86);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 900;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.14);
      transition: opacity 0.25s, visibility 0.25s, transform 0.25s, border-color 0.25s, color 0.25s;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      color: var(--magenta);
      border-color: rgba(200, 37, 106, 0.28);
    }

    /* ─── MOBILE NAV ─── */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 2000;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 40px 20px;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a.mobile-link {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.2s;
    }

    .mobile-nav a.mobile-link:hover {
      color: var(--white);
    }

    .mobile-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 28px;
      cursor: pointer;
    }

    /* ─── RTL SUPPORT ─── */
    html[dir="rtl"] {
      direction: rtl;
      text-align: right;
    }

    html[dir="rtl"] .logo-mark {
      direction: ltr !important;
      unicode-bidi: isolate;
    }

    html[dir="rtl"] .hero-eyebrow::before,
    html[dir="rtl"] .section-label::after {
      transform: scaleX(-1);
    }

    html[dir="rtl"] .btn-primary svg,
    html[dir="rtl"] .btn-light svg,
    html[dir="rtl"] .btn-submit svg {
      transform: scaleX(-1);
    }

    html[dir="rtl"] .btn-primary:hover svg {
      transform: scaleX(-1) translateX(-4px);
    }

    html[dir="rtl"] .result-card {
      border-left: none;
      border-right: 3px solid transparent;
    }

    html[dir="rtl"] .result-card:hover {
      border-right-color: var(--magenta);
    }

    html[dir="rtl"] .lang-dropdown {
      right: auto;
      left: 0;
    }

    html[dir="rtl"] .lang-opt {
      text-align: right;
    }

    html[dir="rtl"] .hero-scroll {
      left: auto;
      right: 8%;
    }

    html[dir="rtl"] .hero-dashboard {
      margin-left: 0;
      margin-right: auto;
    }

    html[dir="rtl"] .growth-chart {
      direction: ltr;
    }

    html[dir="rtl"] .score-number,
    html[dir="rtl"] .metric-value,
    html[dir="rtl"] .result-big,
    html[dir="rtl"] .stat-num {
      direction: ltr;
      display: inline-block;
    }

    html[dir="rtl"] .about-card-main {
      left: auto;
      right: 0;
    }

    html[dir="rtl"] .about-card-accent {
      right: auto;
      left: 0;
    }

    html[dir="rtl"] .back-to-top {
      right: auto;
      left: 24px;
    }

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

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1080px) {
      .nav-links {
        gap: 16px;
      }

      .nav-links a {
        font-size: 12px;
      }
    }

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

      .hero-right {
        display: none;
      }

      .hero-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 48px;
      }

      .hero-left {
        padding: 100px 8% 80px;
      }

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

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

      .process-left {
        position: static;
      }

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

      .about-visual {
        display: none;
      }

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

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

      .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .faq-left {
        position: static;
      }

      .faq {
        padding: 80px 6%;
      }
    }

    @media (max-width: 860px) {

      .hero-scroll {
        display: none;
      }

      .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
      }

      .btn-primary {
        width: 100%;
        justify-content: center;
      }

      .btn-ghost {
        align-self: center;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .logo-img {
        height: 32px;
      }

      .hamburger {
        display: flex;
      }

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

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

      .footer-links {
        gap: 32px;
      }

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

      .form-row {
        grid-template-columns: 1fr;
      }

      .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 40px;
        height: 40px;
      }

      .contact-form {
        padding: 32px 24px;
      }

      .services {
        padding: 80px 6%;
      }

      .process {
        padding: 80px 6%;
      }

      .about {
        padding: 80px 6%;
      }

      .contact {
        padding: 80px 6%;
      }

      .clients {
        padding: 80px 0;
      }

      .clients-track {
        animation-duration: 26s;
      }

      .client-logo-card {
        flex-basis: 176px;
        width: 176px;
        min-height: 92px;
        padding: 22px 28px;
      }

      .client-logo {
        max-width: 124px;
        max-height: 42px;
      }

      .results {
        padding: 80px 6%;
      }

      footer {
        padding: 48px 6% 28px;
      }

      .hero-left {
        padding: 80px 6% 60px;
      }
    }

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

      .hero-mobile-stats {
        grid-template-columns: 1fr;
      }

      .services-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .about-perks {
        grid-template-columns: 1fr;
      }
    }
