    :root {
      --night: #150524;
      --plum: #34104d;
      --violet: #6d29d9;
      --orange: #ff8a18;
      --lime: #b9ff35;
      --cyan: #10d7ff;
      --paper: #fbf8ff;
      --ink: #1d1230;
      --muted: #6f637d;
      --line: rgba(29, 18, 48, 0.13);
      --shadow: 0 24px 70px rgba(25, 8, 42, 0.18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Manrope", Tahoma, sans-serif;
      font-weight: 600;
      line-height: 1.55;
    }

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

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

    .fm-page {
      overflow: hidden;
      background:
        radial-gradient(circle at 13% 9%, rgba(255, 138, 24, 0.18), transparent 23rem),
        radial-gradient(circle at 85% 36%, rgba(16, 215, 255, 0.13), transparent 24rem),
        var(--paper);
    }

    .fm-shell {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .fm-nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(29, 18, 48, 0.08);
      backdrop-filter: blur(18px);
    }

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

    .fm-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .fm-brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #ffffff;
      background:
        linear-gradient(135deg, rgba(255, 138, 24, 0.95), rgba(109, 41, 217, 0.95)),
        var(--night);
      box-shadow: 0 16px 30px rgba(109, 41, 217, 0.25);
      transform: rotate(-5deg);
    }

    .fm-brand-mark svg {
      width: 26px;
      height: 26px;
    }

    .fm-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #261936;
      font-size: 14px;
      font-weight: 800;
    }

    .fm-menu a {
      transition: color 0.2s ease;
    }

    .fm-menu a:hover {
      color: var(--violet);
    }

    .fm-header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .fm-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(29, 18, 48, 0.12);
      border-radius: 999px;
      background: #ffffff;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(25, 8, 42, 0.08);
    }

    .fm-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border: 0;
      border-radius: 999px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--orange), #ff6328);
      box-shadow: 0 18px 42px rgba(255, 122, 24, 0.35);
      font-size: 15px;
      font-weight: 900;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .fm-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 52px rgba(255, 122, 24, 0.43);
    }

    .fm-button svg,
    .fm-phone svg,
    .fm-chip svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .fm-button-secondary {
      color: var(--night);
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(25, 8, 42, 0.16);
    }

    .fm-hero {
      position: relative;
      min-height: 760px;
      display: grid;
      align-items: center;
      isolation: isolate;
      color: #ffffff;
      background:
        linear-gradient(90deg, rgba(21, 5, 36, 0.95) 0%, rgba(43, 10, 66, 0.88) 32%, rgba(43, 10, 66, 0.32) 58%, rgba(21, 5, 36, 0.05) 100%),
        linear-gradient(0deg, rgba(21, 5, 36, 0.28), rgba(21, 5, 36, 0.28)),
        url("../images/1.jpg") center center / cover no-repeat;
    }

    .fm-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      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: 46px 46px;
      mask-image: linear-gradient(90deg, #000, transparent 78%);
    }

    .fm-hero-copy {
      width: min(660px, 100%);
      padding: 86px 0 82px;
    }

    .fm-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 36px;
      padding: 0 16px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.13);
      color: #ffffff;
      font-size: 13px;
      font-weight: 900;
      backdrop-filter: blur(14px);
    }

    .fm-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 22px rgba(185, 255, 53, 0.75);
    }

    .fm-hero h1,
    .fm-section-title,
    .fm-card h3,
    .fm-step strong,
    .fm-final h2 {
      margin: 0;
      font-family: "Unbounded", "Manrope", sans-serif;
      font-weight: 900;
      line-height: 0.98;
      letter-spacing: 0;
    }

    .fm-hero h1,
    .fm-section-title,
    .fm-final h2 {
      max-width: 100%;
      word-break: normal;
      overflow-wrap: normal;
      hyphens: none;
    }

    .fm-hero h1 {
      max-width: 650px;
      margin-top: 28px;
      font-size: clamp(48px, 6.6vw, 90px);
    }

    .fm-lead {
      max-width: 640px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 800;
      line-height: 1.45;
    }

    .fm-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .fm-hero-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(840px, 100%);
      margin-top: 48px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(14px);
    }

    .fm-fact {
      min-height: 112px;
      padding: 24px 24px 22px;
      background: rgba(21, 5, 36, 0.34);
    }

    .fm-fact strong {
      display: block;
      color: #ffffff;
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: clamp(22px, 2.4vw, 30px);
      line-height: 1;
    }

    .fm-fact span {
      display: block;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      font-weight: 800;
    }

    .fm-section {
      padding: 92px 0;
    }

    .fm-section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
      gap: 48px;
      align-items: end;
      margin-bottom: 36px;
    }

    .fm-kicker {
      margin: 0 0 14px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .fm-section-title {
      max-width: 820px;
      color: var(--night);
      font-size: clamp(34px, 5vw, 58px);
    }

    .fm-section-note {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      font-weight: 800;
    }

    .fm-events {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .fm-card {
      position: relative;
      min-height: 360px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      border-radius: 8px;
      color: #ffffff;
      background: var(--night);
      box-shadow: var(--shadow);
    }

    .fm-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--card-image) center / cover no-repeat;
      transition: transform 0.5s ease;
    }

    .fm-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(0deg, rgba(21, 5, 36, 0.92) 0%, rgba(21, 5, 36, 0.45) 54%, rgba(21, 5, 36, 0.08) 100%),
        linear-gradient(135deg, rgba(255, 138, 24, 0.24), transparent 48%);
    }

    .fm-card:hover::before {
      transform: scale(1.05);
    }

    .fm-card-content {
      position: relative;
      z-index: 1;
    }

    .fm-card h3 {
      font-size: 24px;
    }

    .fm-card p {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 16px;
      font-weight: 800;
    }

    .fm-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .fm-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      color: var(--night);
      background: #ffffff;
      font-size: 12px;
      font-weight: 900;
    }

    .fm-split {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 24px;
      align-items: stretch;
    }

    .fm-photo-panel {
      min-height: 620px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #e8e1f1;
    }

    .fm-photo-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 34% 48%;
    }

    .fm-story {
      min-height: 620px;
      padding: clamp(30px, 4vw, 52px);
      border-radius: 8px;
      color: #ffffff;
      background:
        linear-gradient(150deg, rgba(109, 41, 217, 0.92), rgba(21, 5, 36, 0.98)),
        var(--night);
      box-shadow: var(--shadow);
    }

    .fm-story .fm-kicker {
      color: var(--lime);
    }

    .fm-story .fm-section-title {
      color: #ffffff;
    }

    .fm-story p {
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      font-weight: 800;
    }

    .fm-steps {
      display: grid;
      gap: 12px;
      margin-top: 34px;
    }

    .fm-step {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
    }

    .fm-step-num {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--night);
      background: var(--lime);
      font-family: "Unbounded", "Manrope", sans-serif;
      font-weight: 900;
    }

    .fm-step strong {
      display: block;
      color: #ffffff;
      font-size: 19px;
      line-height: 1.18;
    }

    .fm-step span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      font-weight: 800;
    }

    .fm-benefits-band {
      background:
        linear-gradient(180deg, rgba(21, 5, 36, 0.95), rgba(52, 16, 77, 0.95)),
        url("../images/2.jpg") center 40% / cover no-repeat;
      color: #ffffff;
    }

    .fm-benefits-band .fm-kicker {
      color: var(--cyan);
    }

    .fm-benefits-band .fm-section-title {
      color: #ffffff;
    }

    .fm-benefits-band .fm-section-note {
      color: rgba(255, 255, 255, 0.74);
    }

    .fm-benefits {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 36px;
    }

    .fm-benefit {
      min-height: 260px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(16px);
    }

    .fm-benefit-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 50%;
      color: var(--night);
      background: var(--lime);
      box-shadow: 0 18px 38px rgba(185, 255, 53, 0.28);
    }

    .fm-benefit-icon svg {
      width: 24px;
      height: 24px;
    }

    .fm-benefit h3 {
      margin: 0;
      color: #ffffff;
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: 19px;
      line-height: 1.18;
    }

    .fm-benefit p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
      font-weight: 800;
    }

    .fm-gallery {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      grid-template-rows: 280px 280px;
      gap: 16px;
    }

    .fm-gallery figure {
      margin: 0;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background: #e8e1f1;
      box-shadow: 0 20px 56px rgba(25, 8, 42, 0.14);
    }

    .fm-gallery figure:first-child {
      grid-row: span 2;
    }

    .fm-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .fm-gallery figure:first-child img {
      object-position: center center;
    }

    .fm-gallery figure:nth-child(2) img {
      object-position: center 42%;
    }

    .fm-gallery figure:nth-child(3) img {
      object-position: center 52%;
    }

    .fm-final {
      padding: 86px 0;
      color: #ffffff;
      background:
        linear-gradient(105deg, rgba(21, 5, 36, 0.98) 0%, rgba(52, 16, 77, 0.94) 52%, rgba(255, 138, 24, 0.78) 100%),
        var(--night);
    }

    .fm-final-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
      gap: 48px;
      align-items: center;
    }

    .fm-final h2 {
      max-width: 760px;
      color: #ffffff;
      font-size: clamp(34px, 5vw, 62px);
    }

    .fm-final p {
      margin: 22px 0 0;
      max-width: 680px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 20px;
      font-weight: 800;
    }

    .fm-contact-list {
      display: grid;
      gap: 12px;
    }

    .fm-contact {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 72px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.11);
      backdrop-filter: blur(16px);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .fm-contact:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.16);
    }

    .fm-contact svg {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      color: var(--lime);
    }

    .fm-contact strong {
      display: block;
      color: #ffffff;
      font-size: 17px;
      font-weight: 900;
    }

    .fm-contact span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      font-weight: 800;
    }

    .fm-footer {
      padding: 26px 0;
      color: rgba(255, 255, 255, 0.68);
      background: var(--night);
      font-size: 13px;
      font-weight: 800;
    }

    .fm-footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    @media (max-width: 1100px) {
      .fm-menu {
        display: none;
      }

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

    @media (max-width: 900px) {
      .fm-shell {
        width: min(100% - 28px, 680px);
      }

      .fm-header-actions .fm-phone {
        display: none;
      }

      .fm-hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(21, 5, 36, 0.92) 0%, rgba(38, 8, 58, 0.78) 42%, rgba(21, 5, 36, 0.70) 100%),
          url("../images/1.jpg") 58% center / cover no-repeat;
      }

      .fm-hero-copy {
        padding: 88px 0 44px;
      }

      .fm-hero-facts,
      .fm-events,
      .fm-section-head,
      .fm-split,
      .fm-final-grid,
      .fm-gallery {
        grid-template-columns: 1fr;
      }

      .fm-hero-facts {
        margin-top: 36px;
      }

      .fm-section {
        padding: 68px 0;
      }

      .fm-card {
        min-height: 330px;
      }

      .fm-photo-panel,
      .fm-story {
        min-height: auto;
      }

      .fm-photo-panel {
        aspect-ratio: 1 / 1;
      }

      .fm-gallery {
        grid-template-rows: none;
      }

      .fm-gallery figure,
      .fm-gallery figure:first-child {
        min-height: 320px;
        grid-row: auto;
      }
    }

    @media (max-width: 560px) {
      .fm-nav-inner {
        min-height: 64px;
      }

      .fm-brand {
        font-size: 14px;
        gap: 9px;
      }

      .fm-brand-mark {
        width: 36px;
        height: 36px;
      }

      .fm-header-actions .fm-button {
        display: none;
      }

      .fm-hero h1 {
        max-width: 340px;
        font-size: clamp(31px, 8.6vw, 34px);
        line-height: 1.06;
      }

      .fm-section-title,
      .fm-final h2 {
        font-size: clamp(25px, 7vw, 31px);
        line-height: 1.1;
      }

      .fm-lead,
      .fm-section-note,
      .fm-story p,
      .fm-final p {
        font-size: 15px;
      }

      .fm-lead {
        max-width: 330px;
      }

      .fm-card h3 {
        font-size: 20px;
        line-height: 1.1;
      }

      .fm-card p {
        font-size: 14px;
        line-height: 1.5;
      }

      .fm-hero-actions {
        flex-direction: column;
      }

      .fm-button,
      .fm-button-secondary {
        width: 100%;
      }

      .fm-fact {
        min-height: 98px;
      }

      .fm-events {
        gap: 14px;
      }

      .fm-card {
        padding: 22px;
      }

      .fm-card-content {
        max-width: 295px;
      }

      .fm-benefits {
        grid-template-columns: 1fr;
      }

      .fm-step {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 16px;
      }

      .fm-step-num {
        width: 44px;
        height: 44px;
      }

      .fm-footer-inner {
        display: block;
      }
    }
