    :root {
      --bg-page: #e8eaef;
      --navy-900: #081225;
      --navy-800: #0d1d3b;
      --navy-700: #172c5b;
      --navy-600: #223f7a;
      --blue-glow: #6f87ff;
      --blue-soft: #dbe4ff;
      --text-main: #1a1f2b;
      --text-muted: #4c5568;
      --surface: #f4f5f7;
      --white: #ffffff;
      --line: rgba(10, 29, 59, 0.12);
      --shadow: 0 28px 60px rgba(8, 18, 37, 0.18);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    @page {
      size: A4;
      margin: 0;
    }

    body {
      background: linear-gradient(180deg, #eef1f7 0%, #dde2ea 100%);
      font-family: "Myriad Pro", "Segoe UI", Arial, sans-serif;
      color: var(--text-main);
      min-height: 100vh;
      padding: 32px;
    }

    .sheet {
      width: min(100%, 1024px);
      margin: 0 auto;
      background: var(--white);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 505px;
      background:
        radial-gradient(circle at 58% 28%, rgba(146, 165, 255, 0.95) 0%, rgba(111, 135, 255, 0.55) 12%, rgba(46, 73, 154, 0.2) 26%, rgba(7, 17, 38, 0) 38%),
        linear-gradient(90deg, rgba(7, 14, 30, 0.94) 0%, rgba(8, 18, 37, 0.86) 43%, rgba(8, 18, 37, 0.6) 66%, rgba(8, 18, 37, 0.78) 100%),
        linear-gradient(135deg, #091223 0%, #0f1f42 45%, #06101d 100%);
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 56% 30%, rgba(255, 255, 255, 0.95) 0 2%, rgba(188, 202, 255, 0.85) 3%, rgba(126, 147, 255, 0.55) 7%, rgba(121, 144, 255, 0.15) 14%, transparent 22%),
        radial-gradient(circle at 44% 70%, rgba(87, 116, 212, 0.22) 0, rgba(87, 116, 212, 0.08) 18%, transparent 36%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.72;
      mix-blend-mode: screen;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 18, 37, 0.98) 0%, rgba(8, 18, 37, 0.88) 38%, rgba(8, 18, 37, 0.18) 62%, rgba(8, 18, 37, 0.7) 100%),
        linear-gradient(180deg, rgba(8, 18, 37, 0.05) 0%, rgba(8, 18, 37, 0.3) 100%);
    }

    .hero-badge {
      position: absolute;
      top: 42px;
      right: 42px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      letter-spacing: 0.2em;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      font-family: "ITC Avant Garde Gothic", "Century Gothic", Arial, sans-serif;
    }

    .hero-badge svg {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 510px;
      padding: 84px 48px 56px;
      color: var(--white);
      min-height: 505px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      
      color: rgba(255, 255, 255, 0.88);
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 2px;
      background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.18));
    }

    .hero h1 {
      font-family: "ITC Avant Garde Gothic", "Century Gothic", Arial, sans-serif;
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
      text-wrap: balance;
      text-shadow: 0 6px 30px rgba(0, 0, 0, 0.24);
    }

    .content {
      background: var(--surface);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 54px 52px;
      padding: 48px 46px 38px;
    }

    .column {
      display: flex;
      flex-direction: column;
      gap: 34px;
      min-width: 0;
    }

    .text-block {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .section-title {
      font-family: "ITC Avant Garde Gothic", "Century Gothic", Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: #111111;
    }

    .text-block p {
      font-size: 0.9rem;
      line-height: 1.48;
      color: var(--text-main);
      text-align: justify;
      text-wrap: pretty;
      hyphens: none;
      word-break: normal;
      overflow-wrap: normal;
    }

    .text-block p strong {
      color: var(--navy-700);
    }

    .feature-icon {
      display: grid;
      grid-template-columns: 146px 1fr;
      align-items: start;
      gap: 22px;
    }

    .icon-wrap {
      width: 152px;
      height: 250px;
      border-radius: 50%;
      background: linear-gradient(145deg, #1f2d67 0%, #2c3a7d 100%);
      display: grid;
      place-items: center;
      box-shadow: inset 0 0 0 8px rgba(255,255,255,0.05);
    }

    .icon-wrap img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .side-note {
      border-left: 3px solid rgba(34, 63, 122, 0.18);
      padding-left: 18px;
    }

    .figure-card {
      border-radius: 0;
      overflow: hidden;
      background: linear-gradient(160deg, #1f2c5b 0%, #2f3773 100%);
      border: 1px solid rgba(7, 18, 37, 0.08);
      min-height: 238px;
      display: grid;
      place-items: stretch;
      box-shadow: 0 14px 28px rgba(17, 26, 52, 0.12);
    }

    .figure-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .quote {
      padding: 20px 22px;
      background: linear-gradient(180deg, rgba(34, 122, 41, 0.08), rgba(34, 63, 122, 0.02));
      border-left: 4px solid var(--navy-600);
      font-family: "ITC Avant Garde Gothic", "Century Gothic", Arial, sans-serif;
      color: var(--navy-800);
      font-size: 1.16rem;
      line-height: 1.22;
      letter-spacing: -0.02em;
    }

    .footer {
      background: #182b4a;
      color: var(--white);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 46px;
      font-family: "ITC Avant Garde Gothic", "Century Gothic", Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      
    }

    .footer span:last-child {
      text-align: right;
      text-decoration: none;
      
    }
    .footer a {
      color: var(--white);
      text-decoration: none;
    }

    @media (max-width: 900px) {
      body {
        padding: 18px;
      }

      .hero {
        min-height: 430px;
      }

      .hero-content {
        min-height: 430px;
        max-width: 100%;
        padding: 88px 28px 36px;
      }

      .hero-badge {
        top: 24px;
        right: 24px;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
      }

      .content {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 32px 28px;
      }

      .feature-icon {
        grid-template-columns: 1fr;
      }

      .icon-wrap {
        width: 220px;
        height: 156px;
        position: relative;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
      }

      .footer {
        flex-direction: column;
        padding: 18px 28px;
      }

      .footer span:last-child {
        text-align: left;
      }
    }

    @media print {
      body {
        background: none;
        padding: 0;
      }

      .sheet {
        width: 210mm;
        min-height: 297mm;
        box-shadow: none;
      }
}      