    :root {
      --bg: #000000;
      --panel: #0a0a0a;
      --line: rgba(219, 0, 0, 0.28);
      --line-strong: rgba(219, 0, 0, 0.62);
      --accent: #DB0000;
      --text: #f5f5f5;
      --muted: #a8a8a8;
      --glow: rgba(219, 0, 0, 0.22);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(219, 0, 0, 0.12), transparent 26%),
        radial-gradient(circle at bottom right, rgba(219, 0, 0, 0.08), transparent 22%),
        linear-gradient(180deg, #030303 0%, #000000 100%);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    .bg-grid,
    .bg-glow,
    .bg-noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .bg-grid {
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.9));
      opacity: 0.24;
      animation: gridFloat 18s linear infinite;
    }

    .bg-glow::before,
    .bg-glow::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.22;
    }

    .bg-glow::before {
      width: 340px;
      height: 340px;
      top: 8%;
      left: -80px;
      background: var(--accent);
      animation: pulseA 8s ease-in-out infinite;
    }

    .bg-glow::after {
      width: 300px;
      height: 300px;
      right: -60px;
      bottom: 10%;
      background: var(--accent);
      animation: pulseB 10s ease-in-out infinite;
    }

    .bg-noise {
      opacity: 0.05;
      background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7) 0.6px, transparent 0.8px),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.7) 0.6px, transparent 0.8px),
        radial-gradient(circle at 30% 75%, rgba(255,255,255,0.7) 0.6px, transparent 0.8px),
        radial-gradient(circle at 65% 85%, rgba(255,255,255,0.7) 0.6px, transparent 0.8px);
      background-size: 180px 180px;
    }

    .page {
      position: relative;
      z-index: 1;
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      padding: 28px 0 0;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 8px 0 22px;
    }

    .logo-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      text-decoration: none;
      flex: 0 0 auto;
      min-width: 190px;
      overflow: visible;
    }

    .logo-wrap img {
      width: 348px;
      height: 348px;
      max-width: none;
      object-fit: contain;
      object-position: left center;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .menu a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: color 0.25s ease, opacity 0.25s ease;
    }

    .menu a:hover,
    .menu a:focus-visible {
      color: var(--text);
      opacity: 1;
    }

    .menu a.active {
      color: var(--text);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.38fr);
      gap: 28px;
      align-items: start;
      min-height: calc(100vh - 110px);
      padding-bottom: 48px;
    }

    .info-panel,
    .form-panel {
      position: relative;
      background: linear-gradient(180deg, rgba(10,10,10,0.96), rgba(6,6,6,0.98));
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.015) inset,
        0 0 50px var(--glow);
      animation: fadeUp 0.8s ease both;
      min-width: 0;
    }

    .info-panel::before,
    .form-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(219,0,0,0.10), transparent 34%, transparent 66%, rgba(219,0,0,0.08));
      pointer-events: none;
    }

    .info-panel {
      padding: 42px 34px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      animation-delay: 0.05s;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.74rem;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--line-strong);
      box-shadow: 0 0 10px var(--accent);
    }

    .headline {
      max-width: 100%;
      overflow: visible;
    }

    h1 {
      margin: 0;
      font-size: clamp(2.5rem, 4.5vw, 4.35rem);
      line-height: 0.94;
      font-weight: 700;
      letter-spacing: -0.04em;
      text-transform: uppercase;
      max-width: 100%;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    h1 .accent {
      color: var(--accent);
      text-shadow: 0 0 20px rgba(219,0,0,0.2);
    }

    .intro {
      max-width: 460px;
      margin-top: 22px;
      color: #d2d2d2;
      font-size: 1rem;
      line-height: 1.7;
    }

    .meta {
      display: grid;
      gap: 14px;
      margin-top: 34px;
    }

    .meta-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 16px;
      border: 1px solid rgba(219,0,0,0.18);
      border-radius: 16px;
      background: rgba(255,255,255,0.015);
      backdrop-filter: blur(3px);
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .meta-card:hover {
      transform: translateY(-2px);
      border-color: rgba(219,0,0,0.42);
      background: rgba(255,255,255,0.028);
    }

    .meta-label {
      color: var(--muted);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .meta-value {
      color: var(--text);
      font-size: 0.98rem;
    }

    .meta-arrow {
      color: var(--accent);
      font-size: 1.05rem;
      opacity: 0.9;
    }

    .form-panel {
      padding: 0;
      min-height: 760px;
      background: #000000;
      animation-delay: 0.18s;
      border-radius: 24px;
    }

    .form-panel::before {
      background: none;
    }

    .form-shell {
      position: relative;
      height: auto;
      min-height: 760px;
      border-radius: 0;
      overflow: hidden;
      border: 0;
      background: #000000;
      isolation: isolate;
    }

    .form-shell::before {
      content: none;
    }

    iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 900px;
      border: 0;
      background: #000;
      overflow: hidden;
    }

    .corner-line {
      display: none;
    }

    .site-footer {
      position: relative;
      z-index: 1;
      margin-top: 8px;
      padding: 34px 0 20px;
      border-top: 1px solid rgba(219, 0, 0, 0.18);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 26px;
      align-items: end;
      padding-bottom: 18px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px 26px;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.92rem;
      transition: color 0.25s ease, opacity 0.25s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--text);
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 0;
      justify-content: flex-end;
    }

    .social-links a {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .facebook,
    .instagram,
    .twitter,
    .linkedin {
      color: #000000;
      background: #ffffff;
      text-align: center;
      vertical-align: middle;
      text-decoration: none;
      border-radius: 100%;
      width: 30px;
      height: 30px;
      font-size: 25px;
      line-height: 50px !important;
      margin: 5px;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .linkedin {
      margin-right: 0;
    }

    .facebook:hover,
    .instagram:hover,
    .twitter:hover,
    .linkedin:hover {
      opacity: 0.7;
      transform: translateY(-1px);
    }

    .copyright {
      color: #8b8b8b;
      font-size: 0.8rem;
      padding: 14px 0 28px;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-align: center;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulseA {
      0%, 100% { transform: scale(1) translate(0, 0); }
      50% { transform: scale(1.08) translate(18px, -10px); }
    }

    @keyframes pulseB {
      0%, 100% { transform: scale(1) translate(0, 0); }
      50% { transform: scale(0.92) translate(-12px, 12px); }
    }

    @keyframes gridFloat {
      from { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      to { transform: translateY(0); }
    }

    @media (max-width: 1100px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .info-panel {
        padding: 32px 24px;
      }

      .form-panel,
      .form-shell {
        min-height: 700px;
      }

      iframe {
        min-height: 825px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .social-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 820px) {
      .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .page {
        width: min(100% - 24px, 1120px);
        padding-top: 18px;
      }

      .topbar {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 16px;
      }

      .logo-wrap {
        min-width: 132px;
      }

      .logo-wrap img {
        width: 120px;
        height: auto;
      }

      .menu {
        gap: 18px;
        flex-wrap: wrap;
      }

      .menu a {
        font-size: 0.74rem;
      }

      h1 {
        font-size: clamp(2.2rem, 14vw, 3.4rem);
      }

      .intro {
        font-size: 0.96rem;
      }

      .meta-card {
        align-items: flex-start;
      }

      .meta-arrow {
        padding-top: 6px;
      }

      iframe {
        min-height: 750px;
      }

      .footer-links {
        grid-template-columns: 1fr;
      }
    }