body {
      max-width: 1120px;
      margin: 0 auto;
      padding: 40px 20px 80px;
      background: #E5E7EB;
      color: #111827;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
      line-height: 1.65;
    }

    header {
      margin-bottom: 34px;
    }

    a {
      color: #2563EB;
      font-weight: 800;
    }

    h1 {
      margin: 16px 0 10px;
      font-family: Georgia, "Iowan Old Style", serif;
      font-size: clamp(42px, 8vw, 72px);
      line-height: .98;
    }

    h2 {
      margin: 0 0 8px;
      font-size: 22px;
    }

    p {
      margin: 0;
      color: #4B5563;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #111827;
      text-decoration: none;
    }

    .brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      margin-top: 26px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    article {
      border-radius: 16px;
      background: #FFFFFF;
      padding: 22px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    article:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 54px rgba(15, 23, 42, .12);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
      gap: 36px;
      align-items: center;
    }

    .hero-copy {
      min-width: 0;
    }

    .hero-asset {
      margin: 0;
      border-radius: 28px;
      background: #FFFFFF;
      padding: 16px;
      box-shadow: 0 28px 80px rgba(15, 23, 42, .16);
    }

    .hero-asset img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 20px;
    }

    @media (max-width: 760px) {
      .hero,
      .faq-list {
        grid-template-columns: 1fr;
      }
    }
  