*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #F7F6F2;
      --white: #FFFFFF;
      --ink: #0F0F0E;
      --ink2: #4A4A46;
      --ink3: #9A9992;
      --border: rgba(15,15,14,0.10);
      --border2: rgba(15,15,14,0.18);
      --surface: #F0EFE9;
      --lime: #C4F135;
      --lime-dark: #8FB800;
      --r: 18px;
      --r-sm: 12px;
      --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
      --shadow-lg: 0 2px 8px rgba(0,0,0,.08), 0 12px 40px rgba(0,0,0,.1);
      --font: 'Manrope', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }
    @media (min-width: 768px) { body { padding-bottom: 0; } }
    a { color: inherit; text-decoration: none; }

    /* HEADER */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(247,246,242,0.9);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding-top: env(safe-area-inset-top);
    }
    .header-inner {
      max-width: 1120px; margin: 0 auto;
      padding: 0 clamp(14px, 4vw, 24px); min-height: 54px;
      display: flex; align-items: center; gap: 8px;
    }
    .logo { font-size: 16px; font-weight: 900; letter-spacing: -0.04em; flex-shrink: 0; }
    .logo-dot { color: var(--lime-dark); }
    nav.desk { display: none; margin-left: 24px; gap: 4px; }
    @media (min-width: 900px) { nav.desk { display: flex; } }
    nav.desk a {
      font-size: 13.5px; font-weight: 600; color: var(--ink2);
      padding: 6px 12px; border-radius: 8px;
      transition: background .15s, color .15s;
    }
    nav.desk a:hover { background: var(--surface); color: var(--ink); }

    /* Горизонтальное меню разделов на телефонах (десктопное скрыто до 900px) */
    .nav-mob {
      display: flex; gap: 8px; overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0 16px 12px;
      margin-top: -2px;
    }
    .nav-mob::-webkit-scrollbar { display: none; }
    .nav-mob a {
      flex-shrink: 0;
      font-size: 12.5px; font-weight: 700; color: var(--ink2);
      padding: 9px 14px; border-radius: 999px;
      background: var(--white); border: 1px solid var(--border);
      -webkit-tap-highlight-color: transparent;
      transition: background .15s, border-color .15s;
    }
    .nav-mob a:active { background: var(--surface); }
    @media (min-width: 900px) { .nav-mob { display: none; } }

    .header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .btn-ghost {
      font-size: 13px; font-weight: 700; color: var(--ink2);
      padding: 8px 14px; border-radius: 10px; border: 1.5px solid var(--border2);
      background: transparent; transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
    }
    .btn-ghost:hover { background: var(--surface); }
    .btn-primary {
      font-size: 13px; font-weight: 800; color: #fff;
      padding: 9px 16px; border-radius: 10px;
      background: var(--ink); transition: background .15s;
      display: inline-flex; align-items: center; justify-content: center;
      white-space: nowrap;
      -webkit-tap-highlight-color: transparent;
      min-height: 44px;
    }
    .btn-primary-full { display: inline; }
    .btn-primary-short { display: none; }
    @media (max-width: 419px) {
      .btn-primary-full { display: none; }
      .btn-primary-short { display: inline; }
    }
    @media (max-width: 359px) {
      .btn-primary { padding: 8px 12px; font-size: 12px; }
    }
    .btn-primary:hover { background: #2a2a28; }

    /* HERO */
    .hero-wrap { max-width: 1120px; margin: 0 auto; padding: 60px 24px 48px; }
    @media (max-width: 599px) {
      .hero-wrap { padding: 32px 16px 36px; }
    }
    .hero-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
    @media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 380px; align-items: start; } }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; max-width: 100%;
      background: var(--lime); color: var(--ink);
      font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
      padding: 5px 13px; border-radius: 100px; margin-bottom: 22px;
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

    h1 {
      font-size: clamp(2.2rem, 5.5vw, 3.6rem);
      font-weight: 900; letter-spacing: -0.04em; line-height: 1.07; color: var(--ink);
    }
    h1 .muted { color: var(--ink2); }
    .hero-sub {
      margin-top: 20px; max-width: 540px;
      font-size: 17px; font-weight: 500; line-height: 1.65; color: var(--ink2);
    }
    .hero-sub + .hero-sub { margin-top: 14px; }
    .hero-sub-lead {
      font-weight: 600;
      color: var(--ink);
      max-width: 520px;
    }
    .hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .cta-main {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink); color: #fff;
      font-size: 15px; font-weight: 800;
      padding: 14px 28px; border-radius: 14px; min-height: 52px;
      transition: background .15s, transform .1s;
      -webkit-tap-highlight-color: transparent;
    }
    .cta-main:hover { background: #2a2a28; }
    .cta-main:active { transform: scale(.98); }
    .arrow { display: inline-block; transition: transform .2s; }
    .cta-main:hover .arrow { transform: translateX(3px); }
    .cta-alt {
      display: inline-flex; align-items: center;
      font-size: 14px; font-weight: 700; color: var(--ink2);
      padding: 13px 20px; border-radius: 14px;
      border: 1.5px solid var(--border2); background: var(--white); min-height: 52px;
      transition: background .15s;
      -webkit-tap-highlight-color: transparent;
    }
    @media (max-width: 480px) {
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .cta-main,
      .hero-ctas .cta-alt { width: 100%; justify-content: center; text-align: center; }
    }
    .cta-alt:hover { background: var(--surface); }

    .hero-trust { margin-top: 28px; display: flex; gap: 20px; flex-wrap: wrap; }
    .trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 600; color: var(--ink3);
    }
    .trust-icon {
      width: 20px; height: 20px; border-radius: 6px;
      background: var(--surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; font-size: 11px;
    }

    .hero-stats {
      margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
      display: grid; grid-template-columns: repeat(3, 1fr);
    }
    .stat { padding-right: 24px; min-width: 0; }
    .stat + .stat { padding-left: 24px; border-left: 1px solid var(--border); }
    .stat-num { font-size: 2.1rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
    @media (max-width: 380px) {
      .stat { padding-right: 10px; }
      .stat + .stat { padding-left: 10px; }
      .stat-num { font-size: 1.65rem; }
      .stat-label { font-size: 10px; }
    }
    .stat-label { font-size: 11.5px; font-weight: 700; color: var(--ink3); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.05em; }

    /* PAY CARD */
    .pay-card {
      background: var(--white); border-radius: 24px;
      border: 1px solid var(--border); box-shadow: var(--shadow-lg);
      padding: 28px; position: relative; overflow: hidden;
    }
    .pay-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--lime);
    }
    .pay-card-title { font-size: 12px; font-weight: 800; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.08em; }
    .pay-card-sub { font-size: 16px; font-weight: 900; color: var(--ink); margin-top: 4px; letter-spacing: -0.02em; }

    .plans-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .plan {
      display: block; padding: 14px 14px 12px;
      border-radius: 12px; border: 1.5px solid var(--border);
      background: var(--bg); text-decoration: none;
      transition: border-color .15s, background .15s, transform .1s;
      min-height: 48px;
      -webkit-tap-highlight-color: transparent;
    }
    .plan:hover { border-color: var(--border2); background: var(--white); }
    .plan:active { transform: scale(.98); }
    .plan.pop { border-color: var(--ink); background: var(--ink); }
    .plan-tag { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink3); }
    .plan.pop .plan-tag { color: rgba(255,255,255,.45); }
    .hit-badge {
      display: inline-block; background: var(--lime); color: var(--ink);
      font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
      padding: 2px 7px; border-radius: 100px; margin-left: 6px; vertical-align: middle;
    }
    .plan-price { font-size: 22px; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); margin-top: 6px; }
    .plan.pop .plan-price { color: #fff; }
    .plan-save {
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink3);
      margin-top: 6px;
      line-height: 1.35;
      letter-spacing: -0.01em;
    }
    .plan-period { font-size: 11.5px; font-weight: 600; color: var(--ink3); }
    .plan.pop .plan-period { color: rgba(255,255,255,.5); }

    .pay-btn {
      display: flex; align-items: center; justify-content: center;
      margin-top: 16px; padding: 15px;
      background: var(--ink); color: #fff;
      font-size: 14.5px; font-weight: 800; letter-spacing: -0.01em;
      border-radius: 12px; transition: background .15s;
    }
    .pay-btn:hover { background: #2a2a28; }
    .pay-methods {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 13px; font-size: 12px; font-weight: 600; color: var(--ink3);
    }
    .method { padding: 3px 10px; background: var(--surface); border-radius: 6px; font-size: 11px; font-weight: 700; }

    /* MARQUEE */
    .marquee-wrap {
      overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      background: var(--white); padding: 16px 0;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
    .m-item {
      white-space: nowrap; padding: 0 32px;
      font-size: 13px; font-weight: 700; color: var(--ink3);
      display: flex; align-items: center; gap: 12px;
    }
    .m-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--lime-dark); flex-shrink: 0; }

    /* SECTIONS */
    section { padding: 72px 24px; }
    @media (max-width: 599px) {
      section { padding: 48px 16px; }
    }
    .s-inner { max-width: 1120px; margin: 0 auto; }
    .s-label { font-size: 11px; font-weight: 800; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; }
    h2 + p { margin-top: 14px; font-size: 16px; line-height: 1.65; color: var(--ink2); max-width: 560px; }

    /* SERVERS */
    .servers-bg { background: var(--ink); }
    .servers-bg .s-label { color: rgba(255,255,255,.3); }
    .servers-bg h2 { color: #fff; }
    .servers-bg h2 + p { color: rgba(255,255,255,.5); }
    .srv-grid { margin-top: 40px; display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 600px) { .srv-grid { grid-template-columns: repeat(4, 1fr); } }
    .srv-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px; padding: 16px 14px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .15s;
    }
    .srv-card:hover { background: rgba(255,255,255,.12); }
    .srv-left { display: flex; align-items: center; gap: 10px; }
    .srv-flag { font-size: 20px; line-height: 1; }
    .srv-city { font-size: 13.5px; font-weight: 700; color: #fff; }
    .srv-country { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); margin-top: 1px; }
    .srv-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .d-green { background: #4ADE80; }
    .d-amber { background: #FBBF24; }

    /* PRICING */
    .p-grid { margin-top: 48px; display: grid; gap: 16px; grid-template-columns: 1fr; }
    @media (min-width: 560px) { .p-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .p-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }
    .p-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--r); padding: 26px 22px;
      position: relative; overflow: hidden; display: block;
      transition: box-shadow .2s, transform .15s, border-color .2s;
    }
    .p-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--border2); }
    .p-card.feat { background: var(--ink); border-color: var(--ink); }
    .p-card.feat:hover { box-shadow: 0 8px 40px rgba(0,0,0,.25); }
    .p-badge {
      position: absolute; top: 16px; right: 16px;
      background: var(--lime); color: var(--ink);
      font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em;
      padding: 3px 9px; border-radius: 100px;
    }
    .p-period { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink3); }
    .p-card.feat .p-period { color: rgba(255,255,255,.4); }
    .p-amount { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.05em; margin-top: 10px; line-height: 1; }
    .p-card.feat .p-amount { color: #fff; }
    .p-save {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--ink2);
      margin-top: 8px;
      line-height: 1.4;
      max-width: 220px;
      margin-left: auto;
      margin-right: auto;
    }
    .p-sub { font-size: 12.5px; font-weight: 600; color: var(--ink2); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
    .p-card.feat .p-sub { color: rgba(255,255,255,.45); border-top-color: rgba(255,255,255,.12); }
    .p-btn {
      display: block; text-align: center; margin-top: 18px; padding: 12px;
      background: transparent; border: 1.5px solid var(--border2);
      border-radius: 10px; font-size: 13.5px; font-weight: 800; color: var(--ink);
      transition: background .15s;
    }
    .p-card:hover .p-btn { background: var(--surface); }
    .p-card.feat .p-btn { background: var(--lime); border-color: var(--lime); color: var(--ink); }
    .p-card.feat:hover .p-btn { background: #d4f54a; }

    /* HOW */
    .how-bg { background: var(--surface); }
    .steps { margin-top: 48px; display: grid; gap: 16px; grid-template-columns: 1fr; }
    @media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
    .step {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r); padding: 28px 24px;
    }
    .step-num {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--ink); color: #fff;
      font-size: 15px; font-weight: 900;
      display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    }
    .step h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
    .step p { font-size: 14px; font-weight: 500; color: var(--ink2); line-height: 1.6; margin-top: 8px; }
    .step a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border2); }
    .step a:hover { text-decoration-color: var(--ink); }
    .step .step-note { margin-top: 10px; font-size: 13px; font-weight: 500; color: var(--ink3); line-height: 1.55; }

    /* FAQ */
    .faq-list { margin-top: 40px; max-width: 720px; }
    details {
      border: 1px solid var(--border); border-radius: var(--r-sm);
      background: var(--white); overflow: hidden; margin-bottom: 10px;
      transition: box-shadow .2s;
    }
    details[open] { box-shadow: var(--shadow); }
    summary {
      cursor: pointer; list-style: none;
      padding: 18px 20px; font-size: 15px; font-weight: 700;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      -webkit-tap-highlight-color: transparent;
    }
    summary::-webkit-details-marker { display: none; }
    .fq-plus {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
      background: var(--surface); display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--ink2); transition: background .15s, transform .25s;
    }
    details[open] .fq-plus { transform: rotate(45deg); background: var(--ink); color: #fff; }
    .faq-body {
      padding: 16px 20px 18px; border-top: 1px solid var(--border);
      font-size: 14.5px; font-weight: 500; color: var(--ink2); line-height: 1.65;
    }
    .faq-body a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

    /* CTA BANNER */
    .cta-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px 72px; }
    @media (max-width: 599px) { .cta-wrap { padding: 0 16px 56px; } }
    .cta-banner {
      background: var(--lime); border-radius: 24px; padding: 48px 40px;
      display: flex; flex-direction: column; gap: 24px;
    }
    @media (min-width: 700px) { .cta-banner { flex-direction: row; align-items: center; justify-content: space-between; } }
    .cta-banner-actions {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: flex-start;
    }
    @media (min-width: 700px) {
      .cta-banner-actions { justify-content: flex-end; }
    }
    @media (max-width: 699px) {
      .cta-banner { padding: 28px 20px; border-radius: 20px; }
      .cta-banner-actions { flex-direction: column; }
      .cta-banner-actions .btn-dark { width: 100%; justify-content: center; white-space: normal; text-align: center; }
    }
    .cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.04em; }
    .cta-banner p { font-size: 15px; font-weight: 500; color: var(--ink2); margin-top: 8px; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink); color: #fff; font-size: 15px; font-weight: 800;
      padding: 15px 30px; border-radius: 14px; white-space: nowrap;
      transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 48px;
    }
    .btn-dark:hover { background: #2a2a28; }

    /* FOOTER */
    footer { border-top: 1px solid var(--border); background: var(--white); padding: 32px 24px; }
    @media (max-width: 599px) { footer { padding: 28px 16px; } }
    .foot-inner {
      max-width: 1120px; margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
    }
    .foot-logo { font-size: 14px; font-weight: 900; letter-spacing: -0.03em; }
    .foot-links { display: flex; gap: 4px; }
    .foot-links a { font-size: 13px; font-weight: 600; color: var(--ink3); padding: 6px 10px; border-radius: 7px; transition: background .15s, color .15s; }
    @media (max-width: 520px) {
      .foot-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
      .foot-links { flex-wrap: wrap; gap: 6px; max-width: 100%; }
      .foot-links a { padding: 8px 12px; min-height: 44px; display: inline-flex; align-items: center; }
    }
    .foot-links a:hover { background: var(--surface); color: var(--ink); }
    .foot-email { font-size: 13px; font-weight: 600; color: var(--ink3); }
    .foot-email:hover { color: var(--ink); }

    /* Юридические страницы */
    .legal-page { padding-bottom: 48px; }
    .legal-body { margin-top: 28px; max-width: 640px; }
    .legal-body h2 {
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 28px 0 10px;
    }
    .legal-body h2:first-of-type { margin-top: 8px; }
    .legal-body p {
      font-size: 15px;
      font-weight: 500;
      line-height: 1.65;
      color: var(--ink2);
      margin: 0 0 12px;
    }
    .legal-body a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
    .legal-body a:hover { color: var(--lime-dark); }

    /* MOBILE BAR */
    .mob-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: rgba(247,246,242,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--border); padding: 12px 16px;
      padding-bottom: max(12px, env(safe-area-inset-bottom));
      display: flex; align-items: center; gap: 12px;
    }
    @media (min-width: 768px) { .mob-bar { display: none; } }
    .mob-info { flex: 1; min-width: 0; }
    .mob-label { font-size: 11px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.05em; }
    .mob-price { font-size: 18px; font-weight: 900; letter-spacing: -0.03em; }
    .mob-cta {
      flex: 2; display: flex; align-items: center; justify-content: center;
      background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 800;
      padding: 14px 20px; border-radius: 12px; transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 48px;
    }
    .mob-cta:hover { background: #2a2a28; }

    /* IP SECTION */
    .ip-section { background: var(--white); padding: 72px 24px; }
    @media (max-width: 599px) { .ip-section { padding: 48px 16px; } }
    @media (max-width: 480px) {
      .ip-left .cta-main {
        display: flex !important;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
      }
    }
    .ip-checker-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
    @media (min-width: 860px) { .ip-checker-grid { grid-template-columns: 1fr 1.4fr; align-items: center; } }
    .ip-cards { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
    @media (max-width: 560px) {
      .ip-cards {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .ip-vs {
        order: 2;
        text-align: center;
        padding: 2px 0;
        font-size: 12px;
        letter-spacing: 0.12em;
      }
      .ip-card:first-of-type { order: 1; }
      .ip-card:last-of-type { order: 3; }
    }
    .ip-card {
      border-radius: 18px; padding: 20px;
      border: 1.5px solid var(--border);
      background: var(--bg);
    }
    .ip-exposed { border-color: rgba(255,59,48,0.2); }
    .ip-safe { border-color: rgba(52,199,89,0.25); background: rgba(52,199,89,0.04); }
    .ipc-tag { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink3); margin-bottom: 12px; }
    .ipc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .red-dot { background: #FF3B30; }
    .green-dot { background: #34C759; }
    .ipc-ip { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 12px; font-variant-numeric: tabular-nums; }
    .safe-ip { color: #1A7A35; letter-spacing: 0.02em; }
    .ipc-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .ipc-row { display: flex; justify-content: space-between; gap: 8px; font-size: 12.5px; }
    .ipc-lbl { font-weight: 600; color: var(--ink3); }
    .ipc-val { font-weight: 700; color: var(--ink2); text-align: right; }
    .ipc-warn { font-size: 12px; font-weight: 700; color: #CC2D25; padding: 8px 10px; background: rgba(255,59,48,0.07); border-radius: 8px; }
    .ipc-ok { font-size: 12px; font-weight: 700; color: #1A7A35; padding: 8px 10px; background: rgba(52,199,89,0.1); border-radius: 8px; }
    .ip-vs { font-size: 11px; font-weight: 900; color: var(--ink3); letter-spacing: 0.05em; }
    @keyframes ip-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
    .ip-skel { display: inline-block; height: 14px; width: 140px; background: var(--surface); border-radius: 6px; animation: ip-pulse 1.3s ease-in-out infinite; vertical-align: middle; }

    /* ANIM */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
    .fu { opacity: 0; }

/* —— Внутренние страницы (оплата, кабинет, успех) —— */
body.page-inner { padding-bottom: 32px; }
.sub-page-wrap { max-width: 600px; margin: 0 auto; padding: 20px 22px 64px; }
.sub-page-wrap--wide { max-width: 820px; }
.inner-kicker {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink3);
  margin-bottom: 10px;
}
.inner-kicker span { color: var(--lime-dark); }
.sub-page-title { font-size: clamp(1.5rem, 4.2vw, 2.05rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.12; color: var(--ink); }
.sub-page-lead { margin-top: 14px; font-size: 16px; font-weight: 500; color: var(--ink2); line-height: 1.65; max-width: 520px; }
.sub-page-lead a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.sub-card {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.sub-card--stripe::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lime);
}
.sub-card--muted { background: var(--surface); border-color: transparent; box-shadow: none; }
.sub-card-title { font-size: 13px; font-weight: 800; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.sub-hint {
  margin-top: 14px; padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(196,241,53,0.12); border: 1px solid rgba(143,184,0,0.22);
  font-size: 13px; font-weight: 600; color: var(--ink2); line-height: 1.5;
}
.sub-hint strong { color: var(--ink); font-weight: 800; }
.sub-hint a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.pm-line-large { font-weight: 800; font-size: 1.05rem; margin-top: 8px; line-height: 1.45; color: var(--ink); }
.cabinet-dual { display: grid; gap: 18px; margin-top: 4px; }
@media (min-width: 800px) {
  .cabinet-dual { grid-template-columns: 1fr 1fr; align-items: start; }
}
.cabinet-email-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; margin-top: 8px; }
.cabinet-email-row .field-input { flex: 1; min-width: 220px; }
.cabinet-email-row .submit-pay { width: auto; margin-top: 0; padding: 14px 26px; white-space: nowrap; }
@media (max-width: 540px) {
  .cabinet-email-row { flex-direction: column; }
  .cabinet-email-row .submit-pay { width: 100%; }
}
.sub-stat-big { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.03em; margin-top: 6px; line-height: 1.2; }
.sub-actions-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pm-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: 100px;
  background: var(--surface); color: var(--ink2); border: 1px solid var(--border);
}
.pm-badge--ok { background: rgba(52,199,89,0.12); color: #1a6b2c; border-color: rgba(52,199,89,0.25); }
.pm-badge--off { background: var(--bg); color: var(--ink3); }
.checkout-stack { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.field-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink3); margin-bottom: 8px; display: block; }
.field-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
}
.field-input:focus { outline: none; border-color: var(--ink2); background: var(--white); }
.sub-plans { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.sub-plan-btn {
  display: block; width: 100%; text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .15s, background .15s, transform .1s;
}
.sub-plan-btn:hover { border-color: var(--border2); background: var(--white); }
.sub-plan-btn:active { transform: scale(.99); }
.sub-plan-btn.pop { border-color: var(--ink); background: var(--ink); color: #fff; }
.sub-plan-btn .ptag { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink3); }
.sub-plan-btn.pop .ptag { color: rgba(255,255,255,.5); }
.sub-plan-btn .pprice { font-size: 22px; font-weight: 900; letter-spacing: -0.04em; margin-top: 6px; }
.sub-plan-btn.pop .pprice { color: #fff; }
.sub-plan-btn .psub { font-size: 12px; font-weight: 600; color: var(--ink3); margin-top: 4px; }
.sub-plan-btn.pop .psub { color: rgba(255,255,255,.45); }
.submit-pay {
  width: 100%; margin-top: 20px;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s;
}
.submit-pay:hover { background: #2a2a28; }
.submit-pay:disabled { opacity: .55; cursor: not-allowed; }
.pay-methods-foot {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--ink3);
}
/* Блок «что будет с оплатой» на странице checkout */
.pay-notice {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 18px 18px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
}
.pay-notice.is-visible { display: flex; }
.pay-notice--trial {
  background: linear-gradient(145deg, rgba(196, 241, 53, 0.2) 0%, var(--surface) 42%, var(--white) 100%);
  border-color: rgba(15, 15, 14, 0.18);
  border-width: 1.5px;
}
.pay-notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font);
}
.pay-notice--trial .pay-notice-icon {
  background: var(--lime);
  color: var(--ink);
}
.pay-notice-body { min-width: 0; flex: 1; }
.pay-notice-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.pay-notice-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}
.pay-notice-text strong { color: var(--ink); font-weight: 800; }
.pay-notice-text a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pay-notice-text a:hover { color: var(--lime-dark); }

.alert-err { color: #9e2a1f; font-size: 14px; font-weight: 600; margin-top: 10px; }
.loading-txt { color: var(--ink3); font-size: 15px; font-weight: 500; }
.success-card .sub-url-box {
  word-break: break-all; font-size: 13px; font-weight: 600;
  background: var(--surface); padding: 14px; border-radius: var(--r-sm);
  border: 1px solid var(--border); margin: 14px 0;
  line-height: 1.45;
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 12px;
  border: 1.5px solid var(--border2);
  background: var(--white);
  font-size: 14px; font-weight: 800;
  font-family: var(--font);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
}
.btn-secondary:hover { background: var(--surface); }
.profile-block { margin-top: 8px; }
.pm-line { font-weight: 700; font-size: 15px; margin-top: 6px; }
.unbind-row { margin-top: 14px; }
.modal-root {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,15,14,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-box {
  background: var(--white); border-radius: var(--r);
  padding: 24px; max-width: 400px; width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { font-size: 18px; font-weight: 900; letter-spacing: -0.02em; }
.modal-box p { margin-top: 10px; font-size: 14px; color: var(--ink2); line-height: 1.55; }
.modal-actions { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.hidden { display: none !important; }
.flex { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* REFERRAL LANDING */
.ref-section {
  padding: 72px 24px 80px;
  background: linear-gradient(165deg, rgba(196, 241, 53, 0.14) 0%, var(--bg) 42%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ref-section-inner { max-width: 1120px; margin: 0 auto; }
.ref-section-head { max-width: 720px; margin-bottom: 40px; }
.ref-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-top: 12px;
}
.ref-accent {
  background: linear-gradient(120deg, var(--lime-dark), #5a7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ref-lead {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink2);
  font-weight: 500;
}
.ref-lead a {
  font-weight: 800;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ref-bento {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .ref-bento {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ref-card--steps { grid-column: 1 / -1; }
}
.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ref-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.ref-card--hero {
  background: linear-gradient(145deg, var(--white) 0%, rgba(196, 241, 53, 0.2) 100%);
  border-color: rgba(143, 184, 0, 0.35);
}
.ref-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}
.ref-card-title {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}
.ref-card-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink2);
  font-weight: 500;
}
.ref-card--steps .ref-card-text { margin-top: 0; }
.ref-steps {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink2);
  font-weight: 500;
}
.ref-steps li { margin-bottom: 10px; }
.ref-code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: var(--surface);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--ink);
}
.ref-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}
@media (max-width: 480px) {
  .ref-cta-row { flex-direction: column; align-items: stretch; }
  .ref-cta-row .cta-main,
  .ref-cta-row .cta-alt { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 599px) {
  .ref-section { padding: 48px 16px 56px; }
}
@media (max-width: 420px) {
  .pay-card { padding: 22px 16px; border-radius: 20px; }
  .plan-price { font-size: clamp(1.1rem, 5vw, 22px); }
}
