
    :root {
      --accent: #E7BA8E;
      --accent-soft: #fbf3eb;
      --ink: #20252b;
      --muted: #68727d;
      --line: #e7e3de;
      --surface: #f7f7f5;
      --deep: #292d32;
      --shadow: 0 16px 36px rgba(32, 37, 43, .09);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Arial, "Helvetica Neue", sans-serif;
      line-height: 1.55;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.12;
      letter-spacing: 0;
      color: var(--deep);
    }

    h1 {
      max-width: 780px;
      font-size: clamp(42px, 5vw, 66px);
      font-weight: 760;
    }

    h2 {
      max-width: 760px;
      font-size: clamp(30px, 3.8vw, 46px);
      font-weight: 740;
    }

    h3 {
      font-size: 20px;
      font-weight: 720;
    }

    p {
      margin: 0;
    }

    .wrap {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      padding: 76px 0;
    }

    .hero {
      min-height: 650px;
      display: grid;
      align-items: center;
      padding: 72px 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 50%, rgba(255,255,255,.36) 100%),
        url("https://ueeshop.ly200-cdn.com/u_file/UPBI/UPBI889/2607/07/photo/playingcards.jpg") center right / cover no-repeat;
      border-bottom: 1px solid var(--line);
    }

    .hero-copy {
      max-width: 760px;
    }

    .hero-copy p {
      max-width: 680px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 18px;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      max-width: 920px;
      margin-top: 34px;
    }

    .fact {
      min-height: 94px;
      padding: 16px;
      background: rgba(255,255,255,.93);
      border: 1px solid var(--line);
      border-top: 3px solid var(--accent);
      box-shadow: 0 8px 20px rgba(32, 37, 43, .06);
    }

    .fact strong {
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
    }

    .fact span {
      color: var(--muted);
      font-size: 14px;
    }

    .section-heading {
      max-width: 760px;
    }

    .section-heading p {
      margin-top: 16px;
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
    }

    .use-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
    }

    .use-card {
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 6px;
      box-shadow: 0 10px 26px rgba(32, 37, 43, .06);
    }

    .use-card img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: var(--surface);
    }

    .use-card-content {
      padding: 20px;
    }

    .use-card-content p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .band {
      background: var(--surface);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
    }

    .spec-card {
      padding: 24px;
      background: #fff;
      border: 1px solid var(--line);
      border-left: 4px solid var(--accent);
      border-radius: 5px;
    }

    .spec-card p {
      margin-top: 10px;
      color: var(--muted);
    }

    .spec-card strong {
      color: var(--deep);
    }

    .comparison {
      width: 100%;
      margin-top: 32px;
      border-collapse: collapse;
      background: #fff;
      border: 1px solid var(--line);
      font-size: 15px;
    }

    .comparison th,
    .comparison td {
      padding: 16px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .comparison th {
      background: var(--accent-soft);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .comparison tr:last-child td {
      border-bottom: 0;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
    }

    .step {
      min-height: 180px;
      padding: 20px 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 5px;
    }

    .step-number {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      margin-bottom: 14px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: #725235;
      font-weight: 800;
    }

    .step p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .two-column {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 34px;
    }

    .info-panel {
      padding: 28px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 6px;
    }

    .info-panel p {
      margin-top: 12px;
      color: var(--muted);
    }

    .info-panel ul {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .info-panel li {
      position: relative;
      padding-left: 20px;
      color: var(--muted);
    }

    .info-panel li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .72em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
    }

    .faq-item {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
    }

    .faq-item p {
      margin-top: 9px;
      color: var(--muted);
    }

    .cta {
      padding: 58px 0;
      background: var(--deep);
      color: #fff;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
    }

    .cta h2 {
      color: #fff;
    }

    .cta p {
      max-width: 720px;
      margin-top: 14px;
      color: rgba(255,255,255,.78);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .button {
      display: inline-flex;
      min-height: 46px;
      align-items: center;
      justify-content: center;
      padding: 12px 18px;
      border: 1px solid var(--accent);
      border-radius: 4px;
      background: var(--accent);
      color: var(--deep);
      font-weight: 700;
    }

    .button.alt {
      background: transparent;
      color: #fff;
    }

    .links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .links a {
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: #fff;
      color: var(--muted);
      font-size: 14px;
    }

    .links a:hover {
      border-color: var(--accent);
      color: var(--deep);
    }

    @media (max-width: 1000px) {
      .hero-facts,
      .use-grid,
      .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-grid {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 680px) {
      .wrap {
        width: min(100% - 32px, 1180px);
      }

      .section {
        padding: 56px 0;
      }

      .hero {
        min-height: auto;
        padding: 58px 0;
      }

      h1 {
        font-size: 42px;
      }

      .hero-facts,
      .use-grid,
      .spec-grid,
      .process,
      .two-column,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .comparison {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
      }

      .button {
        width: 100%;
      }
    }
  