* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #12141e;
  color: #ffffff;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(255,122,24,0.8);
  color: #fff;
}

::-moz-selection {
  background: rgba(255,122,24,0.8);
  color: #ffffff;
}

.cookie-notice {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 999999;
    width: min(720px, calc(100% - 28px));
    padding: 18px;
    border-radius: 20px;

    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.025), transparent 28%),
        #0b0f16;

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

   
    opacity: 0;
    pointer-events: none;

    transition: all 0.35s ease;
}

.cookie-notice.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-notice__text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
}

.cookie-notice__text a {
    color: #ff7a18;
    text-decoration: none;
}

.cookie-notice__btn {
    flex: 0 0 auto;
    min-width: 86px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
    color: #ffffff;
    
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(255,122,24,0.18);
}

.cookie-notice__btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

@media (max-width: 640px) {
    .cookie-notice {
        bottom: 14px;
        left: 50%;
        transform: translate(-50%, 20px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        bottom: 25px;
    }

    .cookie-notice__btn {
        width: 100%;
    }
}

.support-modal {
    z-index: 9998 !important;
}

#policyModal,
#offerModal {
    z-index: 10000 !important;
}
.support-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 5, 9, 0.88);
    backdrop-filter: blur(8px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.support-box {
    width: 100%;
    max-width: 560px;
    padding: 32px 28px;
    border-radius: 28px;
    background: #0b0f16;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 30px 80px rgba(0,0,0,0.58);
    text-align: center;
}

.support-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.support-badge--success {
    background: rgba(255,122,24,0.14);
    color: #ffb06f;
    border: 1px solid rgba(255,122,24,0.25);
}

.support-badge--error {
    background: rgba(255,80,80,0.14);
    color: #ff9c9c;
    border: 1px solid rgba(255,80,80,0.25);
}

.support-box h1 {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
}

.support-box p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-size: 16px;
}

.support-actions {
    margin-top: 24px;
}

.support-btn {
    min-height: 52px;
    padding: 0 26px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.support-btn--primary {
    background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(255,122,24,0.18);
}

@media (max-width: 780px) {
    .support-box {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .support-box h1 {
        font-size: 27px;
    }

    .support-btn {
        width: 100%;
    }
}
.support-modal h3 {
    margin: 0 0 22px;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
}

.support-form textarea {
    width: 100%;
    min-height: 140px;
    resize: vertical;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #070b12;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.support-form textarea:focus {
    border-color: rgba(255,122,24,0.42);
    box-shadow: 0 0 0 4px rgba(255,122,24,0.08);
}

.support-note {
    margin-top: 14px;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    line-height: 1.6;
}

.support-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: min(420px, calc(100% - 24px));
  padding: 18px 20px;
  
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;

  backdrop-filter: blur(14px);
  z-index: 9999;

  opacity: 1;
  transition: all 0.3s ease;
}

.support-alert::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

/* SUCCESS */
.support-alert--success {
  background: rgba(255,122,24,0.12);
  color: #ffb06f;
  border: 1px solid rgba(255,122,24,0.25);
}

/* ERROR */
.support-alert--error {
  background: rgba(255,80,80,0.12);
  color: #ff9c9c;
  border: 1px solid rgba(255,80,80,0.25);
}

.auth-switch {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 5px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.auth-switch-btn {
    position: relative;
    z-index: 2;
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.2s ease;
}

.auth-switch-btn.active {
    color: #ffffff;
    
}

.auth-switch-slider {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
    box-shadow: 0 10px 24px rgba(255,122,24,0.18);
    transition: transform 0.25s ease;
}

.auth-switch.register-active .auth-switch-slider {
    transform: translateX(100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}
.footer-new__col li {
  position:relative;
  left:20px;
}
.container {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

/* =========================
   MODAL BASE
========================= */

.modal,
.auth-modal,
.modal-overlay {
  display: none;
}

.modal,
.modal-overlay {
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 5, 9, 0.88);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.modal.show,
.modal-overlay.show {
  display: flex;
}

/* если где-то JS открывает display:flex напрямую */
.modal[style*="display: flex"],
.modal-overlay[style*="display: flex"] {
  display: flex !important;
}

/* =========================
   MODAL BOX
========================= */

.modal-content,
.modal-box {
  width: min(560px, calc(100% - 24px));
  max-height: 90vh;
  overflow-y: auto;
  padding: 72px 26px 28px;
  border-radius: 18px;
  background: #0b0f16;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}

.modal-box {
  width: min(760px, calc(100% - 24px));
  max-height: 90vh;
}

/* =========================
   LEGAL MODALS 98%
========================= */

.legal-modal {
  width: 98vw !important;
  max-width: 98vw !important;
  height: 98vh !important;
  max-height: 98vh !important;
  padding: 78px 30px 24px !important;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.legal-scroll {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

.legal-scroll h4 {
  margin: 26px 0 10px;
  font-size: 20px;
  color: #ffffff;
}

.legal-scroll p,
.legal-scroll li {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.legal-scroll ul {
  padding-left: 22px;
  margin: 0 0 12px;
}

.legal-scroll::-webkit-scrollbar {
  width: 8px;
}

.legal-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 8px;
}

.legal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* =========================
   CLOSE BUTTON
========================= */

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.modal-close:hover {
  background: rgba(255,122,24,0.15);
}

/* =========================
   AUTH MODAL
========================= */

.auth-modal-content {
  width: min(560px, calc(100% - 24px));
  min-height: 420px;
  padding: 78px 28px 28px;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.auth-tab {
  flex: 1;
  min-height: 50px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.auth-tab.active {
  background: #ff7a18;
  color: #ffffff;
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-panel h3,
.modal-content h3,
.modal-title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}

/* =========================
   FORMS
========================= */

.auth-form,
.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form input,
.order-form input,
.auth-form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #070b12;
  color: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}

.auth-form textarea {
  height: 140px;
  padding: 14px;
  line-height: 1.5;
  resize: vertical;
}

.auth-form input::placeholder,
.order-form input::placeholder,
.auth-form textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.auth-form input:focus,
.order-form input:focus,
.auth-form textarea:focus {
  border-color: #ff7a18;
}

.auth-form button,
.order-form button {
  height: 54px;
  border-radius: 14px;
  border: none;
  background: #ff7a18;
  color: #fff;
  
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.auth-form .auth-checkbox input[type="checkbox"] {
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    padding: 0 !important;
    margin: 0 0 0 !important;
    border-radius: 4px;
    accent-color: #ff7a18;
    flex: 0 0 16px;
}

.auth-checkboxes {
    width: 100%;
    margin: 8px 0 4px;
    display: grid;
    gap: 10px;
}

.auth-checkbox {
    width: 100%;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.auth-checkbox-text {
    min-width: 0;
    overflow-wrap: anywhere;
}

.auth-checkbox a {
    color: #ff7a18;
    text-decoration: none;
}

.auth-checkbox a:hover {
    text-decoration: underline;
}
/* =========================
   HERO
========================= */

.hero-screen {
  position: relative;
  min-height: 100vh;
  max-height: 900px;
  overflow: hidden;
  background: #12141e;
}

.hero-screen__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  opacity: 1;
}

.hero-shell {
  position: relative;
  z-index: 2;
}

/* HEADER */

.hero-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hero-brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hero-brand__text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ff8a1f;
}

.brand-fox {
  color: #ff8a1f;
}

.brand-vpn {
  color: #ffffff;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.hero-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.86);
  transition: opacity 0.2s ease;
}

.hero-nav a:hover {
  opacity: 0.75;
}

.hero-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-lang-btn,
.hero-login-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  
  font-size: 16px;
  font-weight: 700;
}

.hero-lang-btn {
  min-width: 88px;
  padding: 0 20px;
  background: transparent;
  color: #ffffff;
  
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
}

.hero-login-btn {
  min-width: 116px;
  padding: 0 26px;
  background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(255, 122, 24, 0.18);
}

.hero-login-btn:hover {
transform: translateY(-1px);
                opacity: 0.96;  
}
.hero-login-btn.open-auth-modal:hover {
    transform: translateY(-1px);
}
/* MAIN HERO LAYOUT */

.hero-main-grid {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.hero-copy {
  max-width: 680px;
  padding-top: 14px;
}

.hero-kicker {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #ff8a1f;
}

.hero-heading {
  margin: 0;
  font-size: clamp(62px, 6vw, 70px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-description {
  margin: 26px 0 0;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
}

.hero-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.hero-points li {
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 122, 24, 0.24);
}

.footer-points {
  list-style: none;
  padding: 0;
  display: grid;

}


.footer-points li {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.footer-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 122, 24, 0.24);
}

.hero-actions-row {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn--accent {
  min-width: 220px;
  background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
  color: #ffffff;
  
  box-shadow: 0 16px 24px rgba(255, 122, 24, 0.22);
}

.notice {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.notice--error {
  background: rgba(255, 80, 80, 0.10);
  border-color: rgba(255, 80, 80, 0.22);
  color: #ffb3b3;
}

.notice--success {
  background: rgba(255, 122, 24, 0.10);
  border-color: rgba(255, 122, 24, 0.22);
  color: #ffd2b0;
}

.notice--info {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
}

.hero-btn--dark {
  min-width: 180px;
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.hero-guarantee {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
}

.hero-guarantee__icon {
  font-size: 24px;
}

/* VISUAL */

.hero-visual {
  position: relative;
  min-height: calc(100vh - 104px);
  overflow: hidden;
}

.hero-globe {
  position: absolute;
  right: 10px;
  top: 44px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,136,31,0.10) 0%, rgba(255,136,31,0.05) 38%, transparent 64%),
    radial-gradient(circle at 52% 48%, rgba(32, 74, 108, 0.42) 0%, rgba(11, 21, 33, 0.92) 58%, rgba(3, 6, 13, 0) 72%);
  box-shadow:
    0 0 0 2px rgba(255,122,24,0.10),
    0 0 80px rgba(255,122,24,0.12);
}

.hero-globe::before,
.hero-globe::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,122,24,0.16);
}

.hero-globe::after {
  inset: 72px;
  border-color: rgba(255,122,24,0.10);
}

.hero-fox {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: min(800px, 100%);
  z-index: 2;
  object-fit: contain;

}

.hero-status-card {
  position: absolute;
  right: 66px;
  bottom: 60px;
  z-index: 3;
  width: 400px;
  min-height: 80px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(10, 13, 20, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.46);
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-status-card__icon {
  font-size: 34px;
  line-height: 1;
}

.hero-status-card__text {
  flex: 1;
}

.hero-status-card__title {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.hero-status-card__desc {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
}

.hero-status-card__signal {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 28px;
}

.hero-status-card__signal_2 {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 28px;
}

.hero-status-card__signal span {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: #74ff53;
}

.hero-status-card__signal_2 span {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: #ee7e36;
}

.hero-status-card__signal span:nth-child(1) { height: 12px; }
.hero-status-card__signal span:nth-child(2) { height: 18px; }
.hero-status-card__signal span:nth-child(3) { height: 28px; }
.hero-status-card__signal span:nth-child(4) { height: 36px; }

.hero-status-card__signal_2 span:nth-child(1) { height: 12px; }
.hero-status-card__signal_2 span:nth-child(2) { height: 18px; }
.hero-status-card__signal_2 span:nth-child(3) { height: 28px; }
.hero-status-card__signal_2 span:nth-child(4) { height: 36px; }
/* START NOW */

.start-now {
  padding: 20px 0 80px;
  background: #12141e;
}

.start-now-head {
  text-align: center;
  margin-bottom: 34px;
}

.start-now-kicker {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ff7a18;
}

.start-now-head h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
}

.start-now-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.start-card {
  cursor: pointer;
  position: relative;
  min-height: 360px;
  padding: 30px 24px 24px;
  border-radius: 22px;
  background: #0b0f16;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.start-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,24,0.35);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.start-card--accent {
  border: 2px solid #ff7a18;
}

.start-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fd6b05;
  padding-bottom: 30px;
  padding-top: 20px;
}

.start-card-icon img {
  width: 46px;
  height: 46px;
  display: block;
}

.start-card h3 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.start-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.72);
  flex: 1;
}

.start-card-btn {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.start-card-btn--accent {
  background: #ff7a18;
  color: #ffffff;
  
}

.start-card-btn--accent:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.start-card-btn--ghost {
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
}

.start-card-btn--ghost:hover {
  border-color: rgba(255,122,24,0.35);
  color: #ffffff;
}

/* FEATURES */

.features-box {
  padding: 60px 50px;
  margin-bottom: 70px;
  border-radius: 28px;
  background: #0d0f15;
  border: 1px solid rgba(255,255,255,0.06);
}

.features-head {
  text-align: center;
  margin-bottom: 40px;
}

.features-kicker {
  color: #ff8a1f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-head h2 {
  font-size: 36px;
  font-weight: 900;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.72);
  flex: 1;
}
.features-grid .card {
  padding: 28px 22px;
  cursor: pointer;
  border-radius: 20px;
  background: #101620;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: 0.2s ease;
}

.features-grid .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,31,0.4);
}

.card-icon {
  font-size: 64px;
  color: #fd6b05;
  padding-bottom: 10px;
  padding-top: 0px;
}

.card-icon img {
  width: 96px;
  height: 96px;
  display: block;
}

.features-map-block {
  margin-top: 30px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 28px;
  background: #101620;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.2s ease;
}

.features-map img {
  width: 100%;
  opacity: 0.85;
}

.features-map-info h3 {
  font-size: 34px;
  font-weight: 900;
  margin: 12px 0;
  color: #ffffff;
}

.features-map-info p {
  color: rgba(236, 248, 238, 0.74);
  margin-bottom: 20px;
  line-height: 1.6;
}

.features-btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  transition: 0.2s;
}

.features-btn:hover {
  border-color: #ff8a1f;
}

/* PRICING */

.pricing-top {
  margin-bottom: 54px;
  text-align: center;
}

.pricing-kicker {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #ff7a18;
}

.pricing-top h2,
.pricing-head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
}

.platforms-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.platform-card {
  cursor: pointer;
  min-height: 142px;
  padding: 24px 16px 18px;
  border-radius: 18px;
  background: #0b0f16;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,122,24,0.35);
}

.platform-icon {
  font-size: 42px;
  line-height: 1;
  color: #ffffff;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-greeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: 0.2s ease;
}

/* hover эффект (как у кнопок) */
.hero-greeting:hover {
  border-color: rgba(255,122,24,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
  opacity: 0.96;  
}

.platform-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.platform-card {
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.platform-card .platform-icon,
.platform-card .platform-title,
.platform-card .platform-icon i {
  transition: color 0.2s ease;
}

.platform-card:hover .platform-icon,
.platform-card:hover .platform-title,
.platform-card:hover .platform-icon i {
  color: #fd6b05;
}

.pricing-head {
  padding-top:30px;
  margin: 0 0 32px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  min-height: 430px;
  padding: 34px 28px 28px;
  border-radius: 22px;
  background: #0b0f16;
  cursor:pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,24,0.35);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.price-card.popular {
  border: 2px solid #ff7a18;
  box-shadow:
    0 0 0 1px rgba(255,122,24,0.15),
    0 20px 60px rgba(0,0,0,0.34);
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #ff7a18;
  color: #ffffff;
  
  font-size: 13px;
  font-weight: 700;
}

.price-card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.price-row {
  margin-bottom: 12px;
}

.price-old {
  margin-bottom: 6px;
  font-size: 18px;
  color: rgba(255,255,255,0.42);
  text-decoration: line-through;
}

.price-main {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

.price-period {
  font-size: 16px;
  color: rgba(255,255,255,0.64);
  font-weight: 700;
}

.price-saving {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 700;
  color: #ff7a18;
}

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

.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.84);
}

.price-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 900;
  color: #ff7a18;
}

.faq-section {
  padding: 30px 0 80px;
  background: #12141e;
}

.faq-box {
  padding: 56px 48px;
  border-radius: 28px;
  background: #0d0f15;
  border: 1px solid rgba(255,255,255,0.06);
}

.faq-head {
  text-align: center;
  margin-bottom: 34px;
}

.faq-kicker {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ff7a18;
}

.faq-head h2 {
  margin: 0 0 14px;
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
}

.faq-item h3 {
 padding: 0 0 0 0;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.faq-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

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

.faq-item {
  border-radius: 20px;
  background: #101620;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255,122,24,0.28);
  transform: translateY(-2px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 550px; /* или больше */
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 10px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: block;
  background: rgba(255,122,24,0.10);
  border: 1px solid rgba(255,122,24,0.18);
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #ff7a18;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-icon span {
  position: relative;
  top: -1px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.74);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .faq-box {
    padding: 40px 22px;
  }

  .faq-head h2 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px 18px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }
}

.price-card button {
  margin-top: 26px;
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: #ff7a18;
  color: #ffffff;
  
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.price-card button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* FOOTER */

.footer-stats {
  padding: 40px 0 24px;
  background: #12141e;
}

.footer-stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 26px 32px;
  border-radius: 24px;
  background: #0b0f16;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-stat-item {
  text-align: center;
  padding: 10px 12px;
}

.footer-stat-value {
  margin-bottom: 6px;
  font-size: 30px;
  font-weight: 900;
  color: #ff7a18;
}

.footer-stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
}

.footer-new {
  padding: 64px 0 26px;
  background: #12141e;
}

.footer-new__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-new__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-new__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-new__logo span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-new__text {
  max-width: 320px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-new__socials {
  display: flex;
  gap: 14px;
}

.footer-new__socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 18px;
  font-weight: 700;
  transition: 0.2s ease;
}

.footer-new__socials a:hover {
  border-color: rgba(255,122,24,0.35);
  color: #ff7a18;
}

.footer-new__col h4 {
  margin: 10px 0 20px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-new__col a {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  transition: 0.2s ease;
}

.footer-new__col a:hover {
  color: #ff7a18;
}

.footer-new__support p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-new__contact {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-new__contact-icon {
  width: 28px;
  text-align: center;
  color: #ff7a18;
  font-size: 20px;
  font-weight: 700;
}

.footer-new__bottom {
  margin-top: 34px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.56);
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .hero-nav {
    gap: 28px;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 20px 0 30px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-globe {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 520px;
    height: 520px;
  }

  .hero-fox {
    position: absolute;
    right: -24px;
    bottom: -6px;
    width: min(750px, 100%);
    max-width: none;
    z-index: 2;
    object-fit: contain;
    filter: none;
  }

  .hero-status-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 24px));
  }
}

@media (max-width: 1180px) {
  .start-now-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-map-block {
    grid-template-columns: 1fr;
  }

  .footer-stats-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
  }

  .footer-new__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 1320px);
  }

  .hero-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-points li {
    text-align: left;
  }

  .hero-actions-row,
  .hero-guarantee {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-globe {
    width: 500px;
    height: 500px;
  }

  .hero-status-card {
    min-height: 110px;
    padding: 20px 22px;
  }

  .hero-status-card__title {
    font-size: 22px;
  }

  .hero-status-card__desc {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

.platform-card {
    background: #0a0f16;
    padding: 8px 8px 8px;
    min-height: 110px;
}
  .pricing-top h2,
  .pricing-head h2 {
    font-size: 28px;
  }

  .price-main {
    font-size: 34px;
  }
}

@media (max-width: 700px) {
  .start-now {
    padding: 70px 0 30px;
  }

  .start-now-head h2 {
    font-size: 30px;
  }

  .start-now-grid {
    grid-template-columns: 1fr;
  }

  .start-card {
    min-height: unset;
  }

  .footer-stats-box {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-new__grid {
    grid-template-columns: 1fr;
  }

  .footer-stat-value {
    font-size: 28px;
  }

  .legal-modal {
    width: 98vw !important;
    max-width: 98vw !important;
    height: 98vh !important;
    max-height: 98vh !important;
    padding: 72px 18px 18px !important;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .hero-brand__text {
    font-size: 22px;
  }
  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    background: #0b0f16;
    border-radius:20px;
    padding: 10px 20px 10px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  .hero-nav {
    display: none;
  }

  .hero-header {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .hero-lang-btn,
  .hero-login-btn {
    min-height: 48px;
    font-size: 15px;
  }

  .hero-lang-btn {
    min-width: 70px;
    padding: 0 14px;
  }
  


  .hero-login-btn {
    min-width: 92px;
    padding: 0 18px;
  }

  .hero-kicker {
    font-size: 16px;
    padding-top: 20px;
  }

  .hero-heading {
    font-size: 36px;
    line-height: 1.02;
  }

.hero-copy {
    padding-top: 0px;
}
  .hero-description {
    font-size: 18px;
    margin-top: 22px;
  }

  .hero-points {
    gap: 14px;
    margin-top: 40px;
  }

  .hero-points li {
    padding-left: 40px;
    font-size: 14px;
  }

  .hero-points li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .hero-actions-row {
    gap: 14px;
  }

  .hero-btn {
    width: 99%;
    min-height: 62px;
    font-size: 17px;
  }
  
  .modal, .modal-overlay {
    padding: 0px;
  }

  .hero-btn--accent,
  .hero-btn--dark {
    min-width: 0;
  }

  .hero-greeting {
    display:none;
  }
  .hero-guarantee {
    font-size: 15px;
  }

  .hero-visual {
    display:none;
  }

  .features-box {
    padding: 40px 0px 0px 0px;
    border: 0px solid rgba(255, 255, 255, 0.06);
    background: rgb(0 0 0 / 0%);
  }
  
  .features-map-block{
    background: #0b0f16;
  }
  
  .features-grid .card {
    border: 1px solid rgba(255,255,255,0.06);
    background: #0b0f16;
    padding: 15px 10px;
}

.start-card {
    border: 1px solid rgba(255,255,255,0.06);
}

    .faq-box {
        padding: 26px 0px;
        border: 0px solid #ff6f12;
    background: rgba(0, 0, 0, 0.0);
    }
 
 .faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    background: #0b0f16;
 }
  .price-card {
    border: 1px solid rgba(255,255,255,0.06);
  }
      .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
  .hero-globe {
    width: 360px;
    height: 360px;
    top: 16px;
  }

  .hero-status-card {
    bottom: 18px;
    width: calc(100% - 8px);
    border-radius: 18px;
    padding: 16px 16px;
    gap: 14px;
  }

  .hero-status-card__title {
    font-size: 18px;
  }

  .hero-status-card__desc {
    font-size: 14px;
  }

  .modal-content,
  .modal-box,
  .auth-modal-content {
    width: calc(100% - 20px);
    padding: 74px 16px 20px;
    border-radius: 16px;
  }

  .auth-tabs {
    gap: 8px;
  }

  .auth-tab {
    min-height: 48px;
    font-size: 16px;
  }

  .auth-panel h3,
  .modal-content h3,
  .modal-title {
    font-size: 24px;
  }

  .auth-form button,
  .order-form button {
    font-size: 16px;
  }
}

/* =========================
   ACCOUNT PAGE
========================= */

.dashboard-page {
  min-height: 100vh;
  padding-top: 9px;
  background: #12141e;
}

.account-hero-top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(4,5,9,0.94);
  backdrop-filter: blur(8px);
}

.hero-header--account {
  min-height: 86px;
  padding: 16px 0;
}

.hero-header__actions--account {
  gap: 10px;
}

.account-greeting-pill {
  border: 1px solid rgba(255,255,255,0.22);
}

.dash-main {
  padding: 34px 0 40px;
}

.dash-page-title {
  margin: 0 0 8px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.dash-page-subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255,255,255,0.60);
}

.dash-card {
  background:
   
    #0d0f15;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
}

.dash-card-pad {
  padding: 20px;
}

.dash-section-title,
.dash-section-title-2 {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 900;
  color: #ffffff;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.btn-accent {
  background: #ff7a18;
  color: #ffffff;
  
  box-shadow: 0 12px 28px rgba(255,122,24,0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
}

.btn-full {
  width: 100%;
}

.dash-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 18px;
  margin-bottom: 28px;
}

.dash-hero-status {
  min-height: 408px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
}

.dash-shield-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-shield-circle {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,122,24,0.58);
  box-shadow:
    0 0 0 18px rgba(255,122,24,0.05),
    0 0 40px rgba(255,122,24,0.12);
  color: #ff7a18;
  font-size: 74px;
}

.dash-status-meta {
  display: grid;
  gap: 18px;
}

.dash-status-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.58);
  font-size: 15px;
}

.dash-status-item b {
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
}

.dash-status-item b.accent {
  color: #ff7a18;
}

.dash-status-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.dash-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
}

.dash-card-title .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff7a18;
  border: 1px solid rgba(255,122,24,0.42);
  font-size: 21px;
}

.dash-info-table,
.stat-table {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.dash-info-row,
.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-info-row:last-child,
.stat-row:last-child {
  border-bottom: none;
}

.dash-info-label,
.stat-row span {
  color: rgba(255,255,255,0.58);
  font-size: 15px;
}

.dash-info-value,
.stat-row b {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-align: right;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.quick-card {
  min-height: 192px;
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,122,24,0.28);
}

.quick-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255,255,255,0.46);
  font-size: 21px;
}

.quick-icon {
  margin-bottom: 18px;
  font-size: 40px;
  color: #ff7a18;
}

.quick-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.quick-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.stat-row-traffic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.stat-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.stat-left span {
  font-size: 16px;
}

.stat-sub {
  font-size: 10px;
  color: #fe6f03;
  line-height: 1.4;
  text-align: left;
}

.stat-value {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.mini {
  font-size: 10px;
  color: #cccccc;
}

.telegram-card {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.telegram-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.telegram-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
}

.telegram-bot {
  display: flex;
  align-items: center;
  gap: 14px;
}

.telegram-bot-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,122,24,0.42);
  box-shadow: 0 0 0 10px rgba(255,122,24,0.04);
  background: #12141e;
}

.telegram-bot-avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.telegram-bot-name {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.telegram-bot-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
}

.ref-card {
  margin-bottom: 18px;
}

.ref-card p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
}

.ref-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.ref-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.ref-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ref-stat {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.ref-stat b {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 900;
  color: #ff7a18;
}

.ref-stat span {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
}

.ref-users-title {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.ref-users {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ref-user-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ref-user-badge--paid {
  background: rgba(255,122,24,0.14);
  color: #ffb06f;
  border: 1px solid rgba(255,122,24,0.28);
}

.ref-user-badge--unpaid {
  background: rgba(152,152,152,0.14);
  color: #cccccc;
  border: 1px solid rgba(172,172,172,0.28);
}

.danger-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
}

.danger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.danger-card {
  min-height: 108px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: 0.2s ease;
}

.danger-card:hover {
  transform: translateY(-2px);
}

.danger-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.danger-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255,122,24,0.10);
  color: #ff7a18;
}

.danger-card--red .danger-icon {
  background: rgba(255,60,60,0.10);
  color: #ff4f4f;
}

.danger-main {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
}

.danger-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
}

.danger-arrow {
  font-size: 22px;
  color: rgba(255,255,255,0.46);
}

.delete-account-form {
  margin: 0;
}

.danger-submit {
  width: 100%;
  text-align: left;
  font-family: inherit;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.015), transparent 26%),
    #0b0f16;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 20px 22px;
}

.danger-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.danger-submit .danger-main,
.danger-submit .danger-sub {
  display: block;
  text-align: left;
}

.delete-modal-content {
  width: min(560px, calc(100vw - 24px));
}

.delete-modal-text {
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 16px;
}

.delete-modal-warning {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.18);
  color: #ffd1d1;
  line-height: 1.7;
  font-size: 14px;
}

.delete-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.delete-modal-danger-btn {
  background: linear-gradient(135deg, #ff5b5b 0%, #e33d3d 100%);
  box-shadow: 0 12px 28px rgba(255,80,80,0.18);
}

.delete-modal-danger-btn:hover {
  filter: brightness(1.04);
}

.qr-inline-box {
  display: none;
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.qr-inline-title {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
}

.qr-inline-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.wireguard-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.traffic-progress-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.traffic-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
}

.traffic-progress-value {
  color: #ffffff;
  font-weight: 800;
}

.traffic-progress-track {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.traffic-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8f1f 0%, #ff6f12 100%);
  box-shadow: 0 0 18px rgba(255,122,24,0.28);
}

.traffic-progress-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.58);
}

.dash-bottom-help {
  padding: 26px 0 12px;
  text-align: center;
  color: rgba(255,255,255,0.66);
  font-size: 16px;
}

.dash-bottom-help a {
  color: #ff7a18;
}

.badge-green,
.badge-red,
.badge-yellow,
.badge-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.badge-green {
  background: rgba(255,122,24,0.12);
  color: #ffb06f;
  border: 1px solid rgba(255,122,24,0.24);
}

.badge-red {
  background: rgba(255,80,80,0.12);
  color: #ff9c9c;
  border: 1px solid rgba(255,80,80,0.24);
}

.badge-yellow {
  background: rgba(255,190,80,0.12);
  color: #ffd07d;
  border: 1px solid rgba(255,190,80,0.24);
}

.badge-blue {
  background: rgba(255,255,255,0.06);
  color: #d4d9df;
  border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 1180px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .telegram-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-header--account {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .dash-hero-grid,
  .two-col-grid,
  .danger-grid {
    grid-template-columns: 1fr;
  }

  .dash-hero-status {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .dash-shield-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .hero-header--account {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .hero-header__actions--account {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .hero-login-btn,
  .hero-greeting {
    height: 46px;
    min-height: 46px;
    font-size: 16px;
    padding: 0 40px;
    line-height: 1;
  }

  .dash-page-title {
    font-size: 26px;
  }

  .quick-grid {
    display: none;
  }

  .ref-stats {
    grid-template-columns: 1fr;
  }

  .dash-info-row,
  .stat-row {
    flex-direction: column;
    gap: 6px;
  }

  .dash-info-value,
  .stat-row b {
    text-align: left;
  }

  .stat-row-traffic {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .stat-row-traffic .stat-left {
    width: 100%;
    align-items: flex-start;
    text-align: left !important;
  }

  .stat-row-traffic .stat-left span,
  .stat-row-traffic .stat-sub,
  .stat-row-traffic .stat-value {
    text-align: left !important;
  }

  .stat-row-traffic .stat-value {
    width: 100%;
  }

  .dash-status-actions,
  .ref-row,
  .wireguard-actions,
  .delete-modal-actions {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .btn,
  .ref-row button,
  .wireguard-actions .btn,
  .delete-modal-actions .btn {
    width: 100%;
  }

  .dash-shield-wrap,
  .dash-section-title-2 {
    display: none;
  }
}