﻿:root {
      --ink: #07182a;
      --muted: #53606c;
      --orange: #f29a16;
      --orange-dark: #d87900;
      --green: #078b36;
      --red: #ff2638;
      --paper: #fffaf2;
      --line: #dec8a7;
    }

    * {
      box-sizing: border-box;
    }

    @keyframes ctaPulse {
      0% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(255, 38, 56, 0.22);
      }

      50% {
        transform: scale(1.035);
        box-shadow: 0 16px 34px rgba(255, 38, 56, 0.36);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(255, 38, 56, 0.22);
      }
    }

    body {
      margin: 0;
      padding-bottom: 132px;
      background: #ffffff;
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.45;
    }

    .sales-section {
      width: min(100% - 28px, 960px);
      margin: 0 auto;
      padding: 18px 0 42px;
      text-align: center;
    }

    .social-proof {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 32px;
      padding: 5px 14px 5px 8px;
      border: 1px solid #c9d3df;
      border-radius: 999px;
      color: #20364d;
      font-size: 13px;
      background: #fff;
      box-shadow: 0 4px 18px rgba(7, 24, 42, 0.06);
    }

    .buyers {
      display: block;
      width: 118px;
      max-width: 30vw;
      height: auto;
      flex: 0 0 auto;
    }

    .proof-check {
      color: #2563eb;
      font-weight: 800;
    }

    .eyebrow {
      margin: 34px 0 12px;
      color: var(--green);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    h1 {
      max-width: 850px;
      margin: 0 auto;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(36px, 6.1vw, 72px);
      line-height: 0.94;
      letter-spacing: 0;
    }

    .accent {
      color: var(--orange);
    }

    .subhead {
      max-width: 760px;
      margin: 24px auto 0;
      color: #223245;
      font-size: clamp(16px, 2vw, 20px);
    }

    .product {
      display: block;
      width: min(82vw, 560px);
      margin: 28px auto 18px;
      filter: drop-shadow(0 22px 28px rgba(7, 24, 42, 0.18));
    }

    .method-gif {
      display: block;
      width: min(100%, 500px);
      margin: 28px auto 8px;
      border-radius: 8px;
      box-shadow: 0 16px 34px rgba(7, 24, 42, 0.16);
    }

    .section-gif {
      display: block;
      width: min(100%, 560px);
      margin: 18px auto 0;
      border-radius: 8px;
      box-shadow: 0 16px 34px rgba(7, 24, 42, 0.14);
    }

    .inside-card {
      width: min(100%, 640px);
      margin: 0 auto 26px;
      padding: 24px 22px 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--paper);
      text-align: left;
    }

    .inside-title {
      margin: 0 0 16px;
      text-align: center;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .feature-list {
      display: grid;
      gap: 13px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .feature {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 9px;
      align-items: start;
      color: #172436;
      font-size: 15px;
    }

    .icon {
      display: inline-grid;
      place-items: center;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      border-radius: 4px;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
    }

    .icon.check {
      background: #12b847;
    }

    .icon.gift {
      background: var(--orange);
      color: #1b1305;
    }

    .feature strong {
      font-weight: 900;
    }

    .price-wrap {
      margin-top: 10px;
      text-align: center;
    }

    .old-price {
      margin: 0 0 2px;
      color: #d7192f;
      font-size: 14px;
      font-weight: 800;
      text-decoration: line-through;
    }

    .price {
      margin: 0;
      color: var(--green);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
    }

    .installments {
      margin: 2px 0 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .hint {
      margin: 0 0 8px;
      color: #6c4f16;
      font-size: 13px;
      font-weight: 700;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(100%, 480px);
      min-height: 70px;
      padding: 18px 26px;
      border: 0;
      border-bottom: 6px solid #c96b00;
      border-radius: 10px;
      background: var(--red);
      color: #fff;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.15;
      text-decoration: none;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(255, 38, 56, 0.22);
      animation: ctaPulse 1.8s ease-in-out infinite;
      transition: transform 160ms ease, box-shadow 160ms ease;
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(255, 38, 56, 0.28);
    }

    .payments {
      display: block;
      width: min(190px, 58vw);
      margin: 14px auto 6px;
    }

    .security {
      margin: 0;
      color: #53606c;
      font-size: 12px;
    }

    .method-section {
      width: min(100%, 760px);
      margin: 46px auto 0;
      text-align: left;
      color: #172436;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .method-section p {
      margin: 0 0 18px;
    }

    .method-section .lead {
      font-weight: 800;
    }

    .method-section .truth {
      color: var(--orange-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(25px, 4vw, 40px);
      font-weight: 900;
      line-height: 1.05;
      text-align: center;
    }

    .problems-section {
      width: min(100%, 760px);
      margin: 46px auto 0;
      text-align: left;
      color: #172436;
    }

    .problems-section h2 {
      margin: 0 0 16px;
      color: var(--ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1;
      text-align: center;
    }

    .problems-section .intro,
    .problems-section .question {
      margin: 0 0 20px;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .problem-list {
      display: grid;
      gap: 14px;
      margin: 22px 0 22px;
      padding: 0;
      list-style: none;
    }

    .problem-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      padding: 16px;
      border: 1px solid #f2c4c8;
      border-radius: 8px;
      background: #fff7f7;
      font-size: 16px;
      line-height: 1.5;
    }

    .problem-list .x {
      color: #e1192d;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.3;
    }

    .problems-section .question {
      margin-bottom: 0;
      font-weight: 900;
      text-align: center;
    }

    .better-way-section {
      width: min(100%, 760px);
      margin: 50px auto 0;
      text-align: left;
      color: #172436;
    }

    .better-way-section h2 {
      margin: 0 0 18px;
      color: var(--green);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1;
      text-align: center;
    }

    .better-way-section p {
      margin: 0 0 18px;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .benefit-list {
      display: grid;
      gap: 14px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .benefit-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      padding: 16px;
      border: 1px solid #bce7c7;
      border-radius: 8px;
      background: #f5fff7;
      font-size: 16px;
      line-height: 1.5;
    }

    .benefit-list .check {
      color: #12a33a;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.3;
    }

    .road-image {
      display: block;
      width: min(100%, 820px);
      margin: 32px auto 0;
      border-radius: 8px;
      box-shadow: 0 18px 40px rgba(7, 24, 42, 0.14);
    }

    .traces-section {
      width: min(100%, 820px);
      margin: 54px auto 0;
      text-align: left;
      color: #172436;
    }

    .traces-section h2,
    .traces-section h3 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1;
      text-align: center;
    }

    .traces-section h2 {
      color: var(--ink);
      font-size: clamp(32px, 5vw, 54px);
    }

    .traces-section h3 {
      margin-top: 10px;
      color: var(--orange-dark);
      font-size: clamp(26px, 4vw, 42px);
    }

    .traces-intro {
      width: min(100%, 700px);
      margin: 22px auto 24px;
      text-align: center;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .traces-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .trace-card {
      padding: 20px;
      border: 1px solid #d9c49f;
      border-radius: 8px;
      background: #fffaf2;
    }

    .trace-card h4 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 19px;
      line-height: 1.2;
    }

    .trace-card p {
      margin: 0;
      font-size: 16px;
      line-height: 1.5;
    }

    .fit-gif {
      display: block;
      width: min(100%, 560px);
      margin: 34px auto 0;
      border-radius: 8px;
      box-shadow: 0 16px 34px rgba(7, 24, 42, 0.14);
    }

    .fit-section {
      width: min(100%, 760px);
      margin: 50px auto 0;
      text-align: left;
      color: #172436;
    }

    .fit-section h2,
    .fit-section h3 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1;
      text-align: center;
    }

    .fit-section h2 {
      color: var(--ink);
      font-size: clamp(34px, 5vw, 56px);
    }

    .fit-section h3 {
      margin-top: 34px;
      color: var(--orange-dark);
      font-size: clamp(28px, 4vw, 42px);
    }

    .fit-section p {
      margin: 20px 0 0;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .fit-list,
    .deliver-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .fit-list li,
    .deliver-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      font-size: 16px;
      line-height: 1.5;
    }

    .fit-list .mark {
      color: #12a33a;
      font-size: 20px;
      font-weight: 900;
    }

    .deliver-list .pin {
      font-size: 20px;
      line-height: 1.35;
    }

    .fit-section .summary {
      font-weight: 800;
      text-align: center;
    }

    .bonus-band {
      width: 100vw;
      margin: 58px calc(50% - 50vw) 0;
      padding: 34px 18px 42px;
      background: #132333;
      color: #fff;
    }

    .bonus-wrap {
      width: min(100%, 920px);
      margin: 0 auto;
    }

    .bonus-band h2 {
      margin: 0 0 26px;
      font-size: clamp(24px, 3.8vw, 36px);
      line-height: 1.1;
      text-align: center;
    }

    .bonus-band h2 strong {
      color: var(--orange);
    }

    .main-product-box {
      position: relative;
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border: 2px solid var(--orange);
      border-radius: 10px;
      background: #1d3144;
    }

    .main-product-label {
      position: absolute;
      top: -13px;
      left: 22px;
      padding: 5px 13px;
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .main-product-box img {
      width: 86px;
      border-radius: 4px;
    }

    .main-product-box h3,
    .bonus-item h3 {
      margin: 0 0 8px;
      font-size: 18px;
      line-height: 1.2;
    }

    .main-product-box p,
    .bonus-item p {
      margin: 0 0 10px;
      color: #dbe7f3;
      font-size: 14px;
      line-height: 1.45;
    }

    .regular {
      color: #ff5f66;
      font-weight: 800;
      text-decoration: line-through;
    }

    .free {
      color: #31e978;
      font-weight: 900;
    }

    .bonus-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 34px 0 24px;
      color: var(--orange);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-align: center;
      text-transform: uppercase;
    }

    .bonus-divider::before,
    .bonus-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
    }

    .bonus-stack {
      display: grid;
      gap: 14px;
    }

    .bonus-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border-radius: 9px;
      background: #1d3144;
      text-align: left;
    }

    .bonus-badge {
      display: grid;
      place-items: center;
      width: 58px;
      min-height: 72px;
      border-radius: 6px;
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.15;
      text-align: center;
      text-transform: uppercase;
    }

    .bonus-badge.one { background: #ef443f; }
    .bonus-badge.two { background: #3498db; }
    .bonus-badge.three { background: #2ecc71; }
    .bonus-badge.four { background: #9b59b6; }
    .bonus-badge.five { background: #e67e22; }

    .repeat-offer {
      margin-top: 44px;
    }

    .guarantee-section {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 28px;
      width: min(100%, 820px);
      margin: 54px auto 0;
      padding: 34px;
      border-radius: 8px;
      background: #f4f6f8;
      color: #07182a;
      text-align: left;
    }

    .guarantee-badge {
      display: block;
      width: 118px;
      max-width: 100%;
      border-radius: 4px;
    }

    .guarantee-section h2 {
      margin: 0 0 14px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.12;
    }

    .guarantee-section p {
      margin: 0 0 18px;
      font-size: 16px;
      line-height: 1.65;
    }

    .guarantee-section a {
      color: var(--orange-dark);
      font-weight: 800;
    }

    .guarantee-note {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid #d8dde3;
      color: #6b7280;
      font-size: 13px;
      font-style: italic;
      line-height: 1.6;
    }

    .final-gif {
      display: block;
      width: min(100%, 560px);
      margin: 40px auto 0;
      border-radius: 8px;
      box-shadow: 0 16px 34px rgba(7, 24, 42, 0.14);
    }

    .faq-section {
      width: min(100%, 760px);
      margin: 54px auto 0;
      text-align: left;
    }

    .faq-section h2 {
      margin: 0 0 26px;
      color: var(--ink);
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1;
      text-align: center;
    }

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

    .faq-item {
      overflow: hidden;
      border: 1px solid #d9dfe6;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 8px 22px rgba(7, 24, 42, 0.08);
    }

    .faq-question {
      display: flex;
      width: 100%;
      border: 0;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      background: #fff1e3;
      color: #07182a;
      cursor: pointer;
      text-align: left;
      font-size: 15px;
      font-weight: 900;
      line-height: 1.35;
    }

    .faq-question span:last-child {
      color: var(--orange-dark);
      font-weight: 400;
    }

    .faq-answer {
      margin: 0;
      padding: 16px 18px 18px;
      color: #172436;
      font-size: 15px;
      line-height: 1.6;
    }

    .faq-item:not(.is-open) .faq-answer {
      display: none;
    }

    .faq-icon {
      flex: 0 0 auto;
      color: var(--orange-dark);
      font-size: 18px;
      font-weight: 400;
      line-height: 1;
    }

    .effects-section {
      width: min(100%, 820px);
      margin: 54px auto 0;
      text-align: left;
      color: #172436;
    }

    .effects-section h2,
    .effects-section h3 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1;
      text-align: center;
    }

    .effects-section h2 {
      color: var(--ink);
      font-size: clamp(34px, 5vw, 56px);
    }

    .effects-section h3 {
      margin-top: 42px;
      color: var(--orange-dark);
      font-size: clamp(28px, 4vw, 44px);
    }

    .effects-section p {
      margin: 18px 0 0;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .effects-section .center-strong {
      color: var(--green);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 900;
      line-height: 1;
      text-align: center;
    }

    .tomek-photo {
      display: block;
      width: min(100%, 680px);
      margin: 22px auto 26px;
      border-radius: 8px;
      box-shadow: 0 18px 40px rgba(7, 24, 42, 0.16);
    }

    .effects-list {
      display: grid;
      gap: 14px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .effects-list li {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 12px;
      padding: 16px;
      border-radius: 8px;
      background: #f5f8fb;
      font-size: 16px;
      line-height: 1.5;
    }

    .effects-list .bad {
      background: #fff7f7;
      border: 1px solid #f2c4c8;
    }

    .effects-list .good {
      background: #f5fff7;
      border: 1px solid #bce7c7;
    }

    .effects-list .symbol {
      font-size: 20px;
      line-height: 1.25;
    }

    .final-cta-section {
      width: min(100%, 760px);
      margin: 48px auto 0;
      text-align: center;
    }

    .final-cta-section p {
      margin: 0 auto 18px;
      color: var(--ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(27px, 4.5vw, 48px);
      font-weight: 900;
      line-height: 1.08;
    }

    .sticky-offer {
      position: fixed;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 12px 18px;
      border-top: 1px solid #d8dde3;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 -10px 28px rgba(7, 24, 42, 0.14);
      backdrop-filter: blur(10px);
    }

    .sticky-price {
      min-width: 180px;
      text-align: center;
    }

    .sticky-old {
      margin: 0 0 2px;
      color: #d7192f;
      font-size: 14px;
      font-weight: 900;
      text-decoration: line-through;
    }

    .sticky-new {
      margin: 0;
      color: var(--green);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
    }

    .sticky-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 14px 24px;
      border-bottom: 5px solid #c96b00;
      border-radius: 9px;
      background: var(--red);
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.15;
      text-decoration: none;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(255, 38, 56, 0.22);
      animation: ctaPulse 1.8s ease-in-out infinite;
    }

    @media (max-width: 640px) {
      .sales-section {
        width: min(100% - 22px, 960px);
        padding-top: 12px;
      }

      .social-proof {
        gap: 6px;
        padding-right: 10px;
        font-size: 11px;
      }

      .buyers {
        width: 82px;
        max-width: 28vw;
      }

      .eyebrow {
        margin-top: 26px;
        font-size: 12px;
      }

      .subhead {
        margin-top: 18px;
      }

      .method-gif {
        margin-top: 22px;
        width: min(100%, 430px);
      }

      .inside-card {
        padding: 20px 15px;
      }

      .feature {
        grid-template-columns: 20px 1fr;
        gap: 7px;
        font-size: 14px;
      }

      .price {
        font-size: 42px;
      }

      .cta {
        min-height: 64px;
        font-size: 14px;
      }

      .method-section {
        margin-top: 34px;
        font-size: 16px;
      }

      .section-gif {
        width: 100%;
      }

      .problems-section {
        margin-top: 36px;
      }

      .better-way-section {
        margin-top: 38px;
      }

      .problem-list li,
      .benefit-list li {
        grid-template-columns: 24px 1fr;
        padding: 14px;
        font-size: 15px;
      }

      .road-image {
        margin-top: 24px;
      }

      .traces-section {
        margin-top: 40px;
      }

      .traces-grid {
        grid-template-columns: 1fr;
      }

      .trace-card {
        padding: 16px;
      }

      .fit-gif {
        width: 100%;
        margin-top: 26px;
      }

      .fit-section {
        margin-top: 38px;
      }

      .fit-list li,
      .deliver-list li {
        grid-template-columns: 24px 1fr;
        font-size: 15px;
      }

      .bonus-band {
        margin-top: 42px;
        padding: 28px 12px 34px;
      }

      .main-product-box,
      .bonus-item {
        grid-template-columns: 1fr;
      }

      .main-product-box img,
      .bonus-badge {
        margin: 0 auto;
      }

      .bonus-divider {
        gap: 10px;
        font-size: 13px;
      }

      .main-product-box {
        text-align: center;
      }

      .bonus-item {
        text-align: left;
      }

      .guarantee-section {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
        padding: 24px 18px;
      }

      .guarantee-badge {
        margin: 0 auto;
      }

      .final-gif {
        width: 100%;
        margin-top: 30px;
      }

      .faq-section {
        margin-top: 40px;
      }

      .faq-question,
      .faq-answer {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 14px;
      }

      .effects-section {
        margin-top: 40px;
      }

      .effects-list li {
        grid-template-columns: 28px 1fr;
        padding: 14px;
        font-size: 15px;
      }

      body {
        padding-bottom: 166px;
      }

      .sticky-offer {
        flex-direction: column;
        gap: 8px;
        padding: 10px 12px;
      }

      .sticky-old {
        font-size: 13px;
      }

      .sticky-new {
        font-size: 30px;
      }

      .sticky-cta {
        width: min(100%, 420px);
        min-height: 50px;
        font-size: 13px;
      }
    }

