:root {
      --bg: #070b12;
  --bg-deep: #05070d;
      --bg-soft: #0d1420;
  --bg-warm: #120f0c;
      --card: rgba(255,255,255,0.06);
      --card-border: rgba(255,255,255,0.12);
      --text: #f4f1ea;
      --muted: #a9b0bd;
      --gold: #c9a45c;
      --gold-soft: rgba(201,164,92,0.14);
  --blue-accent: #7ca6d9;
      --white-soft: rgba(255,255,255,0.78);
      --max: 1180px;
      --radius: 24px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, rgba(22,31,48,0.72), transparent 42%),
        linear-gradient(180deg, #060910 0%, #070b12 40%, #05070d 100%);
      color: var(--text);
      line-height: 1.6;
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
        isolation: isolate;
      }

      body::before,
      body::after {
        content: "";
        position: fixed;
          width: 54vw;
          height: 54vw;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
          opacity: 0.62;
          filter: blur(8px);
        will-change: transform;
      }

      body::before {
          top: -16vw;
          right: -14vw;
          background: radial-gradient(circle, rgba(210, 157, 51, 0.32) 0%, rgba(201,164,92,0.16) 32%, transparent 70%);
          animation: ambientFloatA 11s ease-in-out infinite alternate;
      }

      body::after {
          bottom: -20vw;
          left: -14vw;
          background: radial-gradient(circle, rgba(110, 144, 202, 0.34) 0%, rgba(72,103,155,0.16) 34%, transparent 72%);
          animation: ambientFloatB 14s ease-in-out infinite alternate;
      }

      main {
        position: relative;
        z-index: 1;
      }

      main::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.42;
        background:
          radial-gradient(circle at 18% 22%, rgba(255,255,255,0.09), transparent 0 28%),
          radial-gradient(circle at 82% 24%, rgba(255,255,255,0.07), transparent 0 22%),
          radial-gradient(circle at 52% 82%, rgba(201,164,92,0.12), transparent 0 26%);
        animation: ambientPulse 9s ease-in-out infinite;
      }

      main::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.08;
        background-image:
          linear-gradient(transparent, rgba(255,255,255,0.03)),
          repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.06) 0,
            rgba(255,255,255,0.06) 1px,
            transparent 1px,
            transparent 4px
          );
        mix-blend-mode: soft-light;
      }

      header,
      footer {
        position: relative;
        z-index: 1;
      }

      @keyframes ambientFloatA {
        0% {
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        }

        100% {
          transform: translate3d(-12vw, 8vw, 0) scale(1.24) rotate(-10deg);
        }
      }

      @keyframes ambientFloatB {
        0% {
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        }

        100% {
          transform: translate3d(12vw, -8vw, 0) scale(1.2) rotate(12deg);
        }
      }

      @keyframes ambientPulse {
        0%,
        100% {
          transform: scale(1) rotate(0deg) translate3d(0, 0, 0);
          opacity: 0.22;
        }

        50% {
          transform: scale(1.14) rotate(8deg) translate3d(0, -2vh, 0);
          opacity: 0.5;
        }
    }

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

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

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(7,11,18,0.78);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--gold), #f0d89b);
      color: #10131a;
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    nav {
      display: flex;
      gap: 30px;
      color: var(--muted);
      font-size: 14px;
    }

    nav a:hover {
      color: var(--text);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .lang-switch {
      display: inline-flex;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .lang-btn {
      border: 0;
      background: transparent;
      color: var(--muted);
      padding: 7px 11px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    .lang-btn.active {
      background: var(--gold);
      color: #111;
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid rgba(201,164,92,0.5);
      border-radius: 999px;
      color: var(--gold);
      font-size: 14px;
      white-space: nowrap;
    }

    .hero {
      min-height: calc(100vh - 82px);
      display: grid;
      align-items: center;
      padding: 96px 0 120px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 4% 0 auto;
      height: 64%;
      background:
        radial-gradient(circle at 22% 36%, rgba(201,164,92,0.16), transparent 0 34%),
        radial-gradient(circle at 78% 30%, rgba(124,166,217,0.18), transparent 0 28%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      background: var(--gold-soft);
      border: 1px solid rgba(201,164,92,0.22);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 26px;
    }

    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(56px, 7.8vw, 98px);
      line-height: 0.96;
      letter-spacing: -0.055em;
      margin-bottom: 28px;
      text-shadow: 0 20px 60px rgba(0,0,0,0.28);
    }

    .hero p {
      max-width: 620px;
      font-size: 19px;
      color: var(--white-soft);
      margin-bottom: 38px;
    }

    .brand-origin {
      max-width: 640px;
      margin-bottom: 32px;
      padding: 18px 22px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(20,28,43,0.84), rgba(12,17,27,0.78));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow:
        0 18px 46px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);
      color: var(--text);
      font-size: 15px;
      line-height: 1.7;
    }

    .brand-origin strong {
      color: var(--gold);
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--gold);
      color: #111;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #e2bf72;
      box-shadow: 0 18px 40px rgba(201,164,92,0.22);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.16);
      color: var(--text);
    }

    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.32);
      transform: translateY(-2px);
    }

    .hero-visual {
      position: relative;
      padding: 44px 0 54px;
      perspective: 1200px;
    }

    .hero-badge {
      position: absolute;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(18,24,37,0.92), rgba(10,14,22,0.82));
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow:
        0 18px 44px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.06);
      backdrop-filter: blur(16px);
      color: var(--text);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 11px;
    }

    .hero-badge-top {
      top: 2px;
      right: -8px;
      animation: floatBadgeA 6s ease-in-out infinite;
    }

    .hero-badge-bottom {
      left: -28px;
      bottom: 6px;
      flex-direction: column;
      align-items: flex-start;
      text-transform: none;
      letter-spacing: 0;
      font-size: 13px;
      animation: floatBadgeB 7s ease-in-out infinite;
    }

    .hero-badge-bottom strong {
      color: var(--gold);
      font-size: 28px;
      line-height: 1;
    }

    .hero-badge-bottom span {
      color: var(--muted);
      max-width: 180px;
      line-height: 1.4;
    }

    .executive-card {
      position: relative;
      padding: 34px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(28,35,52,0.98) 0%, rgba(11,17,27,0.96) 100%);
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow:
        0 32px 90px rgba(0,0,0,0.44),
        0 0 0 1px rgba(255,255,255,0.02),
        inset 0 1px 0 rgba(255,255,255,0.05);
      overflow: hidden;
      transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
      transform-origin: center left;
    }

    .executive-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 15%, rgba(201,164,92,0.22), transparent 28%),
        linear-gradient(135deg, rgba(124,166,217,0.12), transparent 36%);
      pointer-events: none;
    }

    .executive-card::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: calc(var(--radius) - 1px);
      border: 1px solid rgba(255,255,255,0.04);
      pointer-events: none;
    }

    .metric-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .metric {
      padding: 24px;
      background: linear-gradient(180deg, rgba(28,37,53,0.92), rgba(16,22,34,0.9));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .metric strong {
      display: block;
      font-size: 32px;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .metric span {
      color: var(--muted);
      font-size: 14px;
    }

    .slideshow {
      position: relative;
      margin-top: 18px;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #0a101a;
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow:
        0 24px 60px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .slideshow-track {
      display: flex;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slideshow-track img {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(7,11,18,0.62);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.14);
      color: var(--text);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 16px;
      cursor: pointer;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s;
    }

    .slide-btn:hover {
      background: rgba(201,164,92,0.28);
      border-color: var(--gold);
    }

    .slide-prev { left: 10px; }
    .slide-next { right: 10px; }

    .slide-counter {
      position: absolute;
      bottom: 10px;
      right: 14px;
      background: rgba(7,11,18,0.62);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--muted);
      font-size: 12px;
      padding: 3px 9px;
      border-radius: 999px;
      z-index: 2;
      letter-spacing: 0.04em;
    }

    .slide-counter .slide-current {
      color: var(--gold);
      font-weight: 700;
    }

    .dashboard-preview {
      margin-top: 18px;
      padding: 26px;
      border-radius: 20px;
      background: #0a101a;
      border: 1px solid rgba(255,255,255,0.09);
      position: relative;
      z-index: 1;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.09);
      margin: 18px 0;
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), #f1d89c);
    }

    section {
      padding: 110px 0;
      position: relative;
      overflow: clip;
    }

    #services {
      padding-top: 104px;
      background:
        linear-gradient(180deg, transparent 0%, rgba(11,16,24,0.9) 20%, rgba(14,18,27,0.96) 100%);
    }

    #services::before,
    .proof::before,
    #approach::before,
    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    #services::before {
      background: radial-gradient(circle at 12% 30%, rgba(201,164,92,0.08), transparent 0 28%);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 54px;
      position: relative;
      z-index: 1;
    }

    .section-kicker {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4.6vw, 48px);
      line-height: 1.05;
      letter-spacing: -0.035em;
      margin-bottom: 18px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 18px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      position: relative;
      z-index: 1;
    }

    .service {
      position: relative;
      padding: 32px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(24,31,45,0.95), rgba(11,16,24,0.92));
      border: 1px solid rgba(255,255,255,0.08);
      min-height: 300px;
      box-shadow:
        0 20px 50px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.04);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .service::before,
    .proof-card::before,
    .step::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 38%);
      opacity: 0.55;
      pointer-events: none;
    }

    .service-number {
      color: var(--gold);
      position: absolute;
      top: 22px;
      right: 24px;
      font-size: 64px;
      line-height: 0.85;
      margin-bottom: 0;
      font-family: Georgia, "Times New Roman", serif;
      opacity: 0.14;
    }

    .service h3 {
      font-size: 24px;
      margin-top: 84px;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
      position: relative;
      z-index: 1;
    }

    .service p {
      color: var(--muted);
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .service ul {
      list-style: none;
      color: var(--white-soft);
      font-size: 15px;
      position: relative;
      z-index: 1;
    }

    .service li {
      margin: 10px 0;
    }

    .service li::before {
      content: "— ";
      color: var(--gold);
    }

    .statement {
      padding: 94px 0;
      background:
        linear-gradient(135deg, rgba(201,164,92,0.16), rgba(255,255,255,0.02)),
        linear-gradient(180deg, rgba(17,14,11,0.86), rgba(9,11,16,0.94));
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .proof {
      padding: 132px 0 124px;
      background: linear-gradient(180deg, rgba(7,10,16,0.96), rgba(5,7,13,1));
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .proof::before {
      background: radial-gradient(circle at 82% 24%, rgba(124,166,217,0.1), transparent 0 24%);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      position: relative;
      z-index: 1;
    }

    .proof-card {
      position: relative;
      padding: 30px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18,23,34,0.94), rgba(9,13,20,0.92));
      border: 1px solid rgba(255,255,255,0.1);
      min-height: 240px;
      box-shadow:
        0 24px 56px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .proof-card strong {
      display: block;
      margin-bottom: 18px;
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 1;
    }

    .proof-card h3 {
      font-size: 21px;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
      position: relative;
      z-index: 1;
    }

    .proof-card p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }

    .statement-inner {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .statement blockquote {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

    .statement p {
      color: var(--muted);
      font-size: 18px;
    }

    #approach {
      padding-top: 124px;
      background: linear-gradient(180deg, rgba(8,11,18,0.94), rgba(10,14,22,1));
    }

    #approach::before {
      background: radial-gradient(circle at 18% 80%, rgba(201,164,92,0.08), transparent 0 24%);
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .step {
      position: relative;
      padding: 28px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(20,28,40,0.94), rgba(11,15,24,0.92));
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow:
        0 20px 44px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .step span {
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
      position: relative;
      z-index: 1;
    }

    .step h3 {
      margin: 20px 0 12px;
      font-size: 19px;
      position: relative;
      z-index: 1;
    }

    .step p {
      color: var(--muted);
      font-size: 15px;
      position: relative;
      z-index: 1;
    }

    .cta {
      text-align: center;
      padding: 144px 0 150px;
      background: linear-gradient(180deg, rgba(6,8,13,0.88), rgba(9,11,16,1));
    }

    .cta::before {
      background:
        radial-gradient(circle at 50% 30%, rgba(201,164,92,0.16), transparent 0 28%),
        radial-gradient(circle at 62% 34%, rgba(124,166,217,0.12), transparent 0 18%);
    }

    .cta-box {
      max-width: 980px;
      margin: 0 auto;
      border-radius: 34px;
      padding: 44px;
      background:
        radial-gradient(circle at top, rgba(201,164,92,0.22), transparent 35%),
        linear-gradient(180deg, rgba(24,30,45,0.96), rgba(10,14,22,0.94));
      border: 1px solid rgba(255,255,255,0.12);
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
      gap: 34px;
      align-items: center;
      text-align: left;
      box-shadow:
        0 36px 90px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.05);
      position: relative;
      z-index: 1;
    }

    .cta p {
      color: var(--muted);
      font-size: 18px;
      max-width: 620px;
      margin: 0 0 34px;
    }

    .contact-copy {
      max-width: 620px;
    }

    .contact-portrait {
      position: relative;
      min-width: 0;
    }

    .contact-portrait::before {
      content: "";
      position: absolute;
      inset: auto 8% -8% 8%;
      height: 28%;
      background: rgba(0,0,0,0.38);
      filter: blur(26px);
      border-radius: 999px;
      z-index: 0;
    }

    .contact-portrait img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 28%;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 28px 70px rgba(0,0,0,0.32);
    }

    .service:hover,
    .proof-card:hover,
    .step:hover {
      transform: translateY(-8px);
      border-color: rgba(201,164,92,0.2);
      box-shadow:
        0 30px 70px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(28px) scale(0.985);
      transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .services .reveal-on-scroll:nth-child(2),
    .proof-grid .reveal-on-scroll:nth-child(2),
    .process .reveal-on-scroll:nth-child(2) {
      transition-delay: 0.08s;
    }

    .services .reveal-on-scroll:nth-child(3),
    .proof-grid .reveal-on-scroll:nth-child(3),
    .process .reveal-on-scroll:nth-child(3) {
      transition-delay: 0.16s;
    }

    .process .reveal-on-scroll:nth-child(4) {
      transition-delay: 0.24s;
    }

    .contact-portrait-tag {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(7,11,18,0.72);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text);
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 34px 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: grid;
      gap: 8px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      color: var(--text);
      border-bottom: 1px solid rgba(255,255,255,0.24);
    }

    .footer-links span {
      color: var(--white-soft);
    }

    @keyframes floatBadgeA {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }

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

    @keyframes floatBadgeB {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }

      50% {
        transform: translate3d(0, 10px, 0);
      }
    }

    @media (max-width: 900px) {
      nav {
        display: none;
      }

      .hero {
        padding: 72px 0 96px;
      }

      .hero-grid,
      .statement-inner,
      .cta-box {
        grid-template-columns: 1fr;
      }

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

      .hero-visual {
        padding: 18px 0 78px;
      }

      .executive-card {
        transform: none;
      }

      .hero-badge-top {
        top: -10px;
        right: 8px;
      }

      .hero-badge-bottom {
        left: 12px;
        bottom: -6px;
      }

      .service-number {
        top: 20px;
        right: 20px;
        font-size: 54px;
      }

      .service h3 {
        margin-top: 74px;
      }


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

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }

      .reveal-on-scroll {
        opacity: 1;
        transform: none;
      }
    }
      .cta-box {
        text-align: center;
      }

      .cta p,
      .contact-copy {
        margin-left: auto;
        margin-right: auto;
      }

      .contact-portrait {
        max-width: 420px;
        margin: 0 auto;
      }

      .hero {
        padding: 56px 0;
      }

      section {
        padding: 78px 0;
      }
    }

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

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

      h1 {
        font-size: 46px;
      }

      .hero p {
        font-size: 18px;
      }

      .footer-links {
        justify-content: flex-start;
        gap: 12px;
      }

      .nav-cta {
        display: none;
      }

      .nav {
        height: 74px;
      }

      .lang-btn {
        padding: 6px 9px;
      }
    }
