:root {
    --bg: #06090f;
    --bg-soft: #161f31;
    --line: #1e2a3f;
    --text: #f6f8ff;
    --muted: #9ca7bd;
    --accent: #ff7a1a;
    --accent-2: #ff9b2f;
    --panel: #09152a;
    --topbar-h: calc(52px + env(safe-area-inset-top, 0px));
  }
  
  * {
    box-sizing: border-box;
    font-family: Poppins, Arial, sans-serif;
  }
  
  *::before,
  *::after {
    font-family: Poppins, Arial, sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar-h) + 8px);
  }

  html,
  body {
    margin: 0;
    padding: 0;
    font-family: Poppins, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
  }

  body {
    overflow-x: clip;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(4, 7, 12, 0.96);
    border-bottom: 1px solid #0d1220;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  
  .topbar-inner {
    min-height: 52px;
    padding-top: env(safe-area-inset-top, 0px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }
  
  .brand-logo {
    height: 14px;
    width: auto;
    display: block;
  }
  
  .badge {
    margin-left: 6px;
    background: #2a2a2a;
    border: 1px solid #434343;
    color: #f4f4f4;
    padding: 2px 5px;
    border-radius: 999px;
    font-size: 10px;
  }
  
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 4px;
  }
  
  .lang-btn {
    border: 1px solid #2a3548;
    background: transparent;
    color: #d0d7e8;
    font-size: 10px;
    font-weight: 700;
    font-family: inherit;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    line-height: 1;
  }
  
  .lang-btn:hover {
    color: #fff;
    border-color: #4a5568;
  }
  
  .lang-btn.active {
    border-color: var(--accent);
    color: var(--accent);
  }
  
  .menu {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 12px;
    color: #d0d7e8;
  }
  
  .menu a:hover {
    color: #ffffff;
  }

  .menu .style.interact-button {
    margin-top: 0;
    padding: 9px 16px;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 9px;
    box-shadow: 0 5px 18px rgba(255, 122, 26, 0.32);
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .menu .style.interact-button:hover {
    filter: brightness(1.05);
    color: #111;
    box-shadow: 0 6px 20px rgba(255, 122, 26, 0.38);
  }

  .menu .style.interact-button .icon-lock-small {
    width: 15px;
    height: 15px;
  }
  
  .hero {
    min-height: min(740px, 100dvh);
    position: relative;
    padding-top: max(88px, calc(var(--topbar-h) + 36px));
    padding-bottom: clamp(32px, 6vw, 56px);
    overflow: hidden;
    background:
      linear-gradient(rgba(2, 2, 2, 0.08), rgba(2, 2, 2, 0.2)),
      radial-gradient(50% 40% at 15% 20%, rgba(255, 122, 26, 0.1), transparent 70%),
      linear-gradient(120deg, #0c0c0c 0%, #0a0a0a 60%, #070707 100%);
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://c.wallhere.com/images/cc/64/085d86c566317c080829bfea7f1c-1863325.jpg!d");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.9;
    filter: blur(1px);
    transform: none;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14)),
      radial-gradient(65% 45% at 50% 45%, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.16));
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: clamp(28px, 10vw, 90px);
  }
  
  .lock {
    width: 38px;
    height: 38px;
    margin: 0 auto 8px;
    color: var(--accent);
    opacity: 0.95;
  }
  
  .mini-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #d92639;
    border-radius: 999px;
    padding: 3px 9px;
    margin: 0 0 12px;
  }
  
  h1 {
    margin: 0;
    font-size: clamp(24px, 5.2vw, 52px);
    line-height: 1.08;
    text-wrap: balance;
    padding-inline: 2px;
  }
  
  h1 span {
    display: inline-block;
    max-width: 100%;
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    color: #111;
    padding: 0.08em 0.22em;
    border-radius: 8px;
    font-weight: 900;
    word-break: break-word;
  }
  
  h1 strong {
    display: block;
    margin-top: 8px;
    font-size: 1em;
    font-weight: 900;
  }
  
  .sub {
    max-width: 760px;
    margin: 16px auto 0;
    color: #d7dded;
    font-size: clamp(14px, 2.4vw, 19px);
    line-height: 1.45;
    text-wrap: pretty;
    padding-inline: 4px;
  }
  
  .cta,
  .style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    color: #111;
    font-weight: 800;
    letter-spacing: 0.2px;
    border-radius: 10px;
    padding: 14px 26px;
    box-shadow: 0 8px 24px rgba(255, 122, 26, 0.35);
    max-width: 100%;
    text-align: center;
    line-height: 1.25;
  }
  
  button.cta,
  button.style {
    border: none;
    cursor: pointer;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
  }
  
  .proofs {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: #ced6ea;
    flex-wrap: wrap;
  }
  
  .proofs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  .price-card {
    margin: 38px auto 0;
    width: min(390px, 100%);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  
  .price-card.changing {
    opacity: 0.78;
    transform: translateY(2px);
  }
  
  .price-label {
    margin: 0;
    color: #ffb277;
    font-size: 12px;
  }
  
  .price {
    margin: 6px 0 0;
    font-weight: 700;
    font-size: 16px;
  }
  
  .author {
    margin: 4px 0 0;
    color: #9ca7bd;
    font-size: 12px;
  }
  
  .dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 7px;
  }
  
  .dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5f6a82;
  }
  
  .dots .active {
    background: var(--accent);
  }
  
  .floating {
    position: absolute;
    border: 1px solid rgba(247, 152, 73, 0.4);
    border-radius: 6px;
    transform: rotate(18deg);
    opacity: 0.65;
    animation: drift 6s ease-in-out infinite;
  }
  
  .floating-a {
    width: 14px;
    height: 14px;
    left: 9%;
    top: 23%;
  }
  
  .floating-b {
    width: 18px;
    height: 18px;
    right: 17%;
    top: 37%;
    animation-delay: -2s;
  }
  
  .floating-c {
    width: 12px;
    height: 12px;
    right: 30%;
    top: 18%;
    animation-delay: -3s;
  }
  
  @keyframes drift {
    0%,
    100% {
      transform: translateY(0) rotate(18deg);
    }
    50% {
      transform: translateY(-10px) rotate(18deg);
    }
  }
  
  .faq {
    background: #030303;
    padding: clamp(40px, 8vw, 62px) 0 clamp(48px, 10vw, 72px);
  }
  
  .faq-inner {
    max-width: 760px;
  }
  
  h2 {
    text-align: center;
    margin: 0 0 22px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
  }
  
  .faq h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25em;
  }
  
  .faq h2 .faq-h2-accent {
    color: var(--accent);
  }
  
  .accordion {
    display: grid;
    gap: 9px;
  }
  
  .acc-item {
    width: 100%;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #090909;
    color: #f3f3f3;
    font-size: 14px;
    text-align: left;
    padding: 14px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
  }

  .acc-item > span:first-child {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  
  .acc-item .icon-chevron {
    transition: transform 220ms ease;
  }
  
  .acc-item.active {
    border-color: #5f5f5f;
  }
  
  .acc-item.active .icon-chevron {
    transform: rotate(180deg);
  }
  
  .acc-body {
    border: 1px solid #2a2a2a;
    border-top: none;
    margin-top: -9px;
    margin-bottom: 3px;
    border-radius: 0 0 8px 8px;
    background: #050505;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease;
  }
  
  .acc-body.open {
    padding: 10px 14px 14px;
    max-height: 150px;
  }
  
  .trial {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #f7b380;
    border: 1px solid rgba(255, 122, 26, 0.35);
    background: rgba(255, 122, 26, 0.11);
    border-radius: 8px;
    padding: 11px 12px;
  }
  
  .trust {
    background: #090909;
    border-top: 1px solid #1b1b1b;
    border-bottom: 1px solid #1b1b1b;
    padding: 20px 0;
  }
  
  .trust-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: #dce4f4;
    font-size: 13px;
  }
  
  .trust-inner p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
  }
  
  .footer {
    background: #05080f;
    padding: 36px 0 calc(92px + env(safe-area-inset-bottom, 0px));
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 28px;
  }
  
  .footer h3 {
    margin: 0 0 10px;
    color: #ff9858;
  }
  
  .footer p {
    margin: 0;
    color: #8f9ab0;
    line-height: 1.6;
    max-width: 360px;
  }
  
  .chip {
    margin-top: 10px;
    display: inline-block;
    background: #d92639;
    font-size: 11px;
    border-radius: 999px;
    padding: 4px 8px;
  }
  
  .footer h4 {
    margin: 0 0 12px;
  }
  
  .footer a {
    display: block;
    color: #9ca7bd;
    margin: 8px 0;
    font-size: 14px;
  }
  
  .footer a:hover {
    color: #fff;
  }
  
  .copyright {
    margin-top: 20px;
    border-top: 1px solid #1a2231;
    padding-top: 16px;
    color: #667289;
    font-size: 12px;
  }
  
  .sticky-cta-wrap {
    position: fixed;
    left: max(8px, env(safe-area-inset-left, 0px));
    right: max(8px, env(safe-area-inset-right, 0px));
    bottom: max(8px, env(safe-area-inset-bottom, 0px));
    z-index: 60;
  }
  
  .sticky-cta,
  .sticky-cta-wrap .style {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    color: #111;
    font-weight: 800;
    border-radius: 7px;
    padding: 13px 10px;
    box-shadow: 0 6px 18px rgba(255, 122, 26, 0.4);
  }
  
  .sticky-cta-wrap button.style {
    width: 100%;
    margin-top: 0;
  }
  
  .icon {
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
  }
  
  .icon-lock {
    width: 100%;
    height: 100%;
  }
  
  .icon-lock-small {
    width: 16px;
    height: 16px;
  }
  
  .icon-check {
    width: 13px;
    height: 13px;
    color: #ffa45d;
  }
  
  .icon-chevron {
    width: 14px;
    height: 14px;
    color: #8f9cb5;
  }
  
  .icon-trust {
    width: 14px;
    height: 14px;
    color: #ff9d57;
  }
  
  @media (max-width: 860px) {
    .topbar-inner {
      gap: 10px;
      align-items: center;
    }

    .brand {
      flex: 0 0 auto;
      min-width: 0;
    }

    .brand-logo {
      height: 11px;
      width: auto;
      max-width: min(118px, 36vw);
      object-fit: contain;
      object-position: left center;
    }

    .menu {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      min-width: 0;
    }

    .menu a {
      display: none;
    }

    .lang-switch {
      flex-shrink: 0;
    }

    .lang-btn {
      min-width: 44px;
      min-height: 40px;
      padding: 6px 10px;
      font-size: 11px;
    }

    .menu .style.interact-button {
      flex: 0 1 auto;
      max-width: min(158px, 44vw);
      width: auto;
      font-size: clamp(9px, 2.35vw, 10px);
      padding: 6px 9px;
      border-radius: 7px;
      white-space: normal;
      line-height: 1.15;
      min-height: 36px;
      align-items: center;
      justify-content: center;
      color: #111;
      font-weight: 800;
      letter-spacing: -0.02em;
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 3px 12px rgba(255, 122, 26, 0.32);
    }

    .menu .style.interact-button .icon-lock-small {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .hero {
      min-height: min(620px, 100dvh);
      padding-top: max(76px, calc(var(--topbar-h) + 28px));
    }

    .hero-content {
      padding-top: clamp(20px, 6vw, 48px);
    }

    .footer-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .acc-body.open {
      max-height: min(320px, 55vh);
    }
  }

  @media (max-width: 520px) {
    .brand-logo {
      max-width: min(104px, 34vw);
    }

    .menu .style.interact-button {
      max-width: min(148px, 42vw);
      padding: 6px 8px;
      font-size: clamp(9px, 2.25vw, 10px);
      min-height: 36px;
      border-radius: 6px;
    }

    .menu .style.interact-button .icon-lock-small {
      width: 11px;
      height: 11px;
    }

    .proofs {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
    }

    .proofs > span {
      justify-content: center;
      text-align: left;
      max-width: 100%;
    }

    .hero .style {
      width: 100%;
      padding-inline: 16px;
      font-size: clamp(12px, 3.6vw, 15px);
    }

    .sticky-cta-wrap .style {
      font-size: clamp(12px, 3.5vw, 15px);
      padding-inline: 12px;
    }

    h2 {
      font-size: clamp(22px, 6vw, 44px);
    }

    .acc-item {
      font-size: 13px;
      padding-inline: 12px;
    }

    .acc-body,
    .acc-body.open {
      font-size: 13px;
      padding-inline: 12px;
    }

    .trust-inner {
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
    }

    .trust-inner p {
      justify-content: center;
      text-align: left;
    }
  }
