:root {
      --bg: #090d14;
      --bg-2: #0f172a;
      --card: rgba(255, 255, 255, 0.07);
      --card-2: rgba(255, 255, 255, 0.1);
      --text: #f8fafc;
      --muted: #a7b0c0;
      --muted-2: #737f93;
      --line: rgba(255, 255, 255, 0.13);
      --accent: #8b5cf6;
      --accent-2: #22d3ee;
      --green: #4ade80;
      --radius: 28px;
      --container: 1160px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      background:
        radial-gradient(circle at 15% 5%, rgba(139, 92, 246, 0.32), transparent 30rem),
        radial-gradient(circle at 85% 0%, rgba(34, 211, 238, 0.2), transparent 28rem),
        linear-gradient(180deg, var(--bg), #080b11 60%, #05070b);
    }

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

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

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: rgba(9, 13, 20, 0.72);
      backdrop-filter: blur(18px);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 20px;
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 850;
      letter-spacing: -0.03em;
    }

    .brand__mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: 0 14px 38px rgba(139, 92, 246, 0.36);
      font-size: 14px;
    }

    .brand__mark img {
      width: 100%;
      border-radius: 12px;
    }

    .brand__meta {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      color: var(--muted);
      font-size: 14px;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,0.075);
      color: var(--text);
      font-weight: 750;
      transition: 0.2s ease;
      cursor: pointer;
    }

    .button:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.12);
    }

    .button--primary {
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: 0 18px 48px rgba(139, 92, 246, 0.32);
    }

    .button--primary:hover {
      background: linear-gradient(135deg, #9f7aea, #38bdf8);
    }

    .lang-switcher {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,0.055);
    }

    .lang-switcher__button {
      min-width: 46px;
      min-height: 40px;
      padding: 0 12px;
      border: none;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      font: inherit;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .lang-switcher__button:hover {
      color: var(--text);
    }

    .lang-switcher__button.is-active {
      background: rgba(255,255,255,0.12);
      color: var(--text);
    }

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

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,0.055);
      color: var(--muted);
      font-size: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12);
    }

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

    h1 {
      max-width: 840px;
      margin-bottom: 22px;
      font-size: clamp(42px, 7vw, 82px);
      line-height: 0.96;
      letter-spacing: -0.075em;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(32px, 4.4vw, 56px);
      line-height: 1;
      letter-spacing: -0.065em;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .lead {
      max-width: 700px;
      margin-bottom: 30px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 22px);
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 720px;
    }

    .stat {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255,255,255,0.055);
    }

    .stat strong {
      display: block;
      margin-bottom: 4px;
      font-size: 24px;
      letter-spacing: -0.04em;
    }

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

    .profile-card {
      position: relative;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      box-shadow: var(--shadow);
    }

    .profile-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: -1;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(139,92,246,0.6), rgba(34,211,238,0.28), transparent);
    }

    .avatar-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.16);
      object-fit: cover;
      background: rgba(255,255,255,0.04);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }

    .profile-card__body {
      padding: 20px 4px 4px;
    }

    .profile-card__body h2 {
      margin-bottom: 6px;
      font-size: 28px;
    }

    .profile-card__body p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .section {
      padding: 72px 0;
    }

    .section__head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section__head p {
      max-width: 460px;
      margin-bottom: 0;
      color: var(--muted);
    }

    .grid {
      display: grid;
      gap: 18px;
    }

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

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

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

    .card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: 0 16px 50px rgba(0,0,0,0.18);
    }

    .card h3 {
      min-height: 66px;
    }

    .card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .list li {
      position: relative;
      padding-left: 28px;
      color: var(--muted);
    }

    .list li::before {
      content: "";
      position: absolute;
      top: 0.66em;
      left: 0;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
    }

    .quote {
      padding: clamp(28px, 5vw, 54px);
      border: 1px solid var(--line);
      border-radius: 36px;
      background:
        linear-gradient(135deg, rgba(139,92,246,0.26), rgba(34,211,238,0.09)),
        rgba(255,255,255,0.06);
    }

    .quote p {
      max-width: 940px;
      margin-bottom: 0;
      font-size: clamp(26px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.06em;
    }

    .process {
      counter-reset: step;
    }

    .process .card {
      position: relative;
      min-height: 188px;
      overflow: hidden;
    }

    .process .card::after {
      counter-increment: step;
      content: "0" counter(step);
      position: absolute;
      right: 20px;
      bottom: -30px;
      color: rgba(255,255,255,0.052);
      font-size: 104px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.08em;
    }

    .project {
      overflow: hidden;
      padding: 0;
    }

    .project__image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
    }

    .project__image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .project:hover .project__image img {
      transform: scale(1.035);
    }

    .project__body {
      padding: 24px;
    }

    .tag {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(139,92,246,0.16);
      color: #ddd6fe;
      font-size: 13px;
      font-weight: 750;
    }

    .project__body a {
      display: inline-flex;
      margin-top: 18px;
      color: #93c5fd;
      font-weight: 750;
    }

    .price-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .price {
      margin: 14px 0 8px;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .time {
      margin-bottom: 18px;
      color: var(--muted);
    }

    .note {
      margin-top: 18px;
      color: var(--muted-2);
      font-size: 14px;
    }

    .cta {
      padding-bottom: 90px;
    }

    .cta__box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
      padding: clamp(28px, 5vw, 58px);
      border: 1px solid var(--line);
      border-radius: 38px;
      background:
        radial-gradient(circle at 10% 0%, rgba(139,92,246,0.28), transparent 22rem),
        rgba(255,255,255,0.07);
      box-shadow: var(--shadow);
    }

    .cta h2 {
      margin-bottom: 14px;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1;
      letter-spacing: -0.07em;
    }

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

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }

    .footer {
      padding: 30px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: var(--muted-2);
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: 0.55s ease;
    }

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

    @media (max-width: 1040px) {
      .hero__grid,
      .grid--two,
      .cta__box {
        grid-template-columns: 1fr;
      }

      .grid--four,
      .grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .profile-card {
        max-width: 520px;
      }
    }

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

      .brand__info {
        display: none;
      }

      .header__controls {
        margin-left: auto;
      }

      .hero {
        padding-top: 52px;
      }

      .grid--four,
      .grid--three,
      .stats {
        grid-template-columns: 1fr;
      }

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

      .button,
      .hero__actions {
        width: 100%;
      }

      .contact-actions {
        width: 100%;
        justify-content: stretch;
      }

      .header__button {
        width: fit-content;
      }

      .contact-actions .button {
        width: 100%;
      }
    }
