:root {
  --premium-bg: #08090c;
  --premium-bg-soft: #0e1015;
  --premium-surface: #13161d;
  --premium-surface-strong: #191d26;
  --premium-border: rgba(255, 255, 255, 0.09);
  --premium-border-gold: rgba(246, 167, 53, 0.32);
  --premium-text: #f7f2e9;
  --premium-muted: #a9acb5;
  --premium-gold: #f6a735;
  --premium-gold-light: #ffd47d;
  --premium-orange: #f06a24;
  --premium-green: #53d5a2;
  --premium-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --premium-radius-sm: 12px;
  --premium-radius-md: 20px;
  --premium-radius-lg: 30px;
}

html {
  scroll-padding-top: 96px;
}

body.premium-site-shell {
  min-width: 320px;
  background: var(--premium-bg);
  color: var(--premium-text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6;
}

body.premium-site-shell h1,
body.premium-site-shell h2,
body.premium-site-shell h3,
body.premium-site-shell h4,
body.premium-site-shell strong,
body.premium-site-shell .premium-brand {
  font-family: "Philosopher", Georgia, serif;
}

body.premium-site-shell a {
  text-underline-offset: 3px;
}

.premium-skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--premium-text);
  color: var(--premium-bg);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.premium-skip-link:focus {
  transform: translateY(0);
}

/* Navigation */
nav.premium-navbar {
  position: fixed !important;
  inset: 0 0 auto 0;
  z-index: 1030;
  width: 100%;
  height: auto !important;
  min-height: 78px;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 9, 12, 0.88) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.premium-navbar .container {
  max-width: 1280px;
}

.premium-navbar__inner {
  display: flex;
  align-items: center;
}

.premium-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin: 0 38px 0 0;
  padding: 0;
  color: var(--premium-text) !important;
  text-decoration: none;
}

.premium-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(246, 167, 53, 0.28));
}

.premium-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.premium-brand strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.premium-brand small {
  margin-top: 5px;
  color: #8d9099;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-navbar .navbar-collapse {
  align-items: center;
}

.premium-navbar__links {
  align-items: center;
  gap: 2px;
}

.premium-navbar__links .nav-link {
  position: relative;
  padding: 10px 12px !important;
  color: #c8c9ce !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.premium-navbar__links .nav-link::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--premium-gold), var(--premium-orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.premium-navbar__links .nav-link:hover,
.premium-navbar__links .nav-link:focus-visible {
  color: #fff !important;
}

.premium-navbar__links .nav-link:hover::after,
.premium-navbar__links .nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.premium-navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.premium-nav-source,
.premium-client-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-nav-source {
  padding: 0 15px;
  border: 1px solid var(--premium-border);
  color: #d5d6db;
  background: rgba(255, 255, 255, 0.025);
}

.premium-nav-source:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
}

.premium-client-button {
  padding: 0 18px;
  border: 1px solid rgba(246, 167, 53, 0.52);
  color: #1a1006;
  background: linear-gradient(135deg, var(--premium-gold-light), var(--premium-gold) 55%, var(--premium-orange));
  box-shadow: 0 10px 28px rgba(240, 106, 36, 0.18);
}

.premium-client-button:hover,
.premium-client-button:focus-visible,
.premium-client-button.show {
  color: #110b05;
  transform: translateY(-1px);
}

.premium-navbar__toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--premium-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.premium-navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--premium-text);
}

.premium-login-menu {
  width: min(360px, calc(100vw - 24px));
  margin-top: 14px !important;
  padding: 22px !important;
  border: 1px solid var(--premium-border-gold) !important;
  border-radius: 20px !important;
  color: var(--premium-text);
  background: rgba(15, 17, 22, 0.98) !important;
  box-shadow: var(--premium-shadow) !important;
}

.premium-login-menu__heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.premium-login-menu__heading span,
.premium-modal-kicker {
  color: var(--premium-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-login-menu__heading strong {
  margin-top: 3px;
  color: #fff;
  font-size: 23px;
}

.premium-login-menu .form-label {
  margin-bottom: 6px;
  color: #bfc1c8;
  font-size: 12px;
  font-weight: 750;
}

.premium-login-menu .form-control {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.premium-login-menu .form-control:focus {
  border-color: var(--premium-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(246, 167, 53, 0.12);
}

.premium-login-menu__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: #aaaeb7;
  font-size: 12px;
}

.premium-login-menu__options a,
.premium-login-menu__register a {
  color: var(--premium-gold-light);
}

.premium-login-submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  color: #1b1004;
  background: linear-gradient(135deg, var(--premium-gold-light), var(--premium-orange));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-login-menu__register {
  margin: 14px 0 0;
  color: #8f929b;
  font-size: 12px;
  text-align: center;
}

.premium-alerts {
  position: fixed;
  top: 92px;
  right: 16px;
  z-index: 1050;
  width: min(420px, calc(100vw - 32px));
}

/* Shared elements */
.premium-home {
  overflow: hidden;
  color: var(--premium-text);
  background: var(--premium-bg);
}

.premium-home .container,
.premium-footer .container {
  width: min(100% - 40px, 1240px);
  max-width: 1240px;
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
}

.premium-section {
  position: relative;
  padding: 112px 0;
}

.premium-kicker,
.premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--premium-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.premium-eyebrow span {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--premium-gold), var(--premium-orange));
}

.premium-section-heading {
  margin-bottom: 52px;
}

.premium-section-heading h2,
.premium-journey h2,
.premium-security h2,
.premium-faq h2,
.premium-final-cta h2 {
  margin: 12px 0 0;
  color: var(--premium-text);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.premium-section-heading p,
.premium-journey__intro > p,
.premium-security__content > p,
.premium-faq__intro > p {
  margin: 18px 0 0;
  color: var(--premium-muted);
  font-size: 17px;
  line-height: 1.75;
}

.premium-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 50px;
}

.premium-section-heading--split p {
  margin: 0 0 4px;
}

.premium-section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  text-align: center;
}

.premium-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-button:hover {
  transform: translateY(-2px);
}

.premium-button--primary {
  color: #1c1004 !important;
  background: linear-gradient(135deg, var(--premium-gold-light), var(--premium-gold) 52%, var(--premium-orange));
  box-shadow: 0 16px 36px rgba(240, 106, 36, 0.2);
}

.premium-button--primary:hover {
  box-shadow: 0 20px 42px rgba(240, 106, 36, 0.3);
}

.premium-button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--premium-text) !important;
  background: rgba(255, 255, 255, 0.035);
}

.premium-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.premium-button--light {
  color: #171008 !important;
  background: #fff7e9;
}

.premium-button--outline-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff !important;
  background: rgba(11, 8, 4, 0.15);
}

.premium-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--premium-gold-light);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.premium-text-link i {
  transition: transform 180ms ease;
}

.premium-text-link:hover {
  color: #fff;
}

.premium-text-link:hover i {
  transform: translateX(4px);
}

/* Hero */
.premium-home .home-hero {
  position: relative;
  min-height: 880px;
  padding: 174px 0 52px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.98) 0%, rgba(8, 9, 12, 0.93) 44%, rgba(8, 9, 12, 0.67) 100%),
    url(../../../../site/images/bg/1.jpg) center / cover no-repeat;
}

.premium-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0) 55%, var(--premium-bg) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 1px), rgba(255, 255, 255, 0.022) 20%);
}

.home-hero__glow {
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.23;
}

.home-hero__glow--one {
  top: 12%;
  right: 8%;
  background: var(--premium-orange);
}

.home-hero__glow--two {
  bottom: 10%;
  left: -180px;
  background: #9b5e20;
  opacity: 0.14;
}

.home-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 70px;
  min-height: 580px;
}

.home-hero__content h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  color: #fff;
  font-size: clamp(54px, 6.8vw, 94px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.home-hero__content h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, var(--premium-gold-light), var(--premium-gold) 42%, var(--premium-orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.home-hero__lead {
  max-width: 660px;
  margin: 0;
  color: #bbbcc3;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 700px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.home-hero__trust > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.home-hero__trust i {
  color: var(--premium-gold);
  font-size: 17px;
}

.home-hero__trust span {
  display: flex;
  flex-direction: column;
  color: #888b94;
  font-size: 11px;
  line-height: 1.35;
}

.home-hero__trust strong {
  color: #e4e0d9;
  font-family: Inter, "Segoe UI", sans-serif !important;
  font-size: 12px;
}

.home-hero__visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(246, 167, 53, 0.18);
  border-radius: 50%;
}

.hero-orbit--outer {
  width: min(530px, 100%);
  aspect-ratio: 1;
  animation: premium-spin 40s linear infinite;
}

.hero-orbit--outer::before,
.hero-orbit--inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--premium-gold);
  box-shadow: 0 0 20px var(--premium-gold);
}

.hero-orbit--inner {
  width: min(410px, 78%);
  aspect-ratio: 1;
  border-style: dashed;
  animation: premium-spin 28s linear infinite reverse;
}

.hero-brand-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(380px, 76%);
  aspect-ratio: 0.83;
  align-items: center;
  justify-content: center;
  padding: 62px 34px 38px;
  overflow: hidden;
  border: 1px solid rgba(246, 167, 53, 0.3);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 10%, rgba(246, 167, 53, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(27, 29, 36, 0.96), rgba(10, 11, 15, 0.94));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 255, 255, 0.06);
}

.hero-brand-card::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -22%;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 167, 53, 0.12);
  border-radius: 50%;
}

.hero-brand-card > img {
  position: relative;
  z-index: 2;
  width: 92%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.hero-brand-card__status {
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9bcc3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-brand-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--premium-green);
  box-shadow: 0 0 12px rgba(83, 213, 162, 0.8);
}

.hero-brand-card__caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-brand-card__caption strong {
  color: #fff;
  font-size: 16px;
}

.hero-brand-card__caption span {
  margin-top: 3px;
  color: #797d87;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px 1fr;
  width: 210px;
  align-items: center;
  gap: 1px 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(17, 19, 25, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.hero-floating-card i {
  grid-row: 1 / span 2;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--premium-gold-light);
  background: rgba(246, 167, 53, 0.12);
  place-items: center;
}

.hero-floating-card span {
  color: #7d8089;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  color: #f4f0e9;
  font-family: Inter, "Segoe UI", sans-serif !important;
  font-size: 12px;
}

.hero-floating-card--license {
  top: 15%;
  right: -4%;
}

.hero-floating-card--updates {
  bottom: 13%;
  left: -7%;
}

.home-news-wrap {
  position: relative;
  z-index: 4;
  margin-top: 46px;
}

.home-news {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 66px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  color: #ddd9d2;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.home-news:hover {
  border-color: var(--premium-border-gold);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.home-news__label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 11px;
  color: var(--premium-gold-light);
  background: rgba(246, 167, 53, 0.1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-news > strong {
  overflow: hidden;
  font-family: Inter, "Segoe UI", sans-serif !important;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news__action {
  color: #9b9da5;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-news__action i {
  margin-left: 7px;
}

/* Plans */
.premium-plans {
  background:
    radial-gradient(circle at 12% 22%, rgba(246, 167, 53, 0.07), transparent 26%),
    var(--premium-bg);
}

.premium-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 278px), 1fr));
  gap: 22px;
  align-items: stretch;
}

.premium-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--premium-border);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(24, 27, 35, 0.98), rgba(12, 14, 18, 0.98));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.premium-plan-card:hover {
  z-index: 2;
  border-color: rgba(246, 167, 53, 0.36);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(-7px);
}

.premium-plan-card--featured {
  border-color: rgba(246, 167, 53, 0.48);
  background:
    radial-gradient(circle at 75% 0%, rgba(246, 167, 53, 0.17), transparent 32%),
    linear-gradient(155deg, rgba(26, 27, 32, 1), rgba(13, 14, 18, 1));
}

.premium-plan-card__featured {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1d1104;
  background: var(--premium-gold-light);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-plan-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--premium-border);
}

.premium-plan-card__number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(246, 167, 53, 0.25);
  border-radius: 10px;
  color: var(--premium-gold);
  background: rgba(246, 167, 53, 0.07);
  font-size: 10px;
  font-weight: 900;
  place-items: center;
}

.premium-plan-card__top h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.1;
}

.premium-plan-card--featured .premium-plan-card__top {
  padding-right: 118px;
}

.premium-plan-card__image {
  position: relative;
  aspect-ratio: 1.15;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 167, 53, 0.1), transparent 54%),
    #0b0d11;
}

.premium-plan-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(10, 12, 16, 0.9));
}

.premium-plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 350ms ease, filter 350ms ease;
}

.premium-plan-card:hover .premium-plan-card__image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.premium-details-button {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease;
}

.premium-details-hint {
  position: absolute;
  bottom: 58px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1px;
  color: #fff4df;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.9));
  pointer-events: none;
  transform: translateX(-50%);
}

.premium-details-hint span {
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--premium-gold-light);
  background: rgba(8, 9, 12, 0.82);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-details-hint i {
  color: var(--premium-gold-light);
  font-size: 17px;
  animation: premium-details-point 1.15s ease-in-out infinite;
}

.premium-details-button:hover,
.premium-details-button:focus-visible {
  border-color: var(--premium-gold);
  background: rgba(16, 17, 21, 0.94);
}

.premium-plan-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.premium-plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--premium-text);
}

.premium-plan-card__price > span {
  color: var(--premium-gold);
  font-size: 12px;
  font-weight: 900;
}

.premium-plan-card__price strong {
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
}

.premium-plan-card__price small {
  color: #777b84;
  font-size: 11px;
}

.premium-plan-card__features {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 20px 0 0;
  border-top: 1px solid var(--premium-border);
  list-style: none;
}

.premium-plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #aaaeb6;
  font-size: 12px;
  line-height: 1.45;
}

.premium-plan-card__features i {
  margin-top: 3px;
  color: var(--premium-green);
  font-size: 10px;
}

.premium-plan-card__buy {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(246, 167, 53, 0.34);
  border-radius: 13px;
  color: var(--premium-gold-light);
  background: rgba(246, 167, 53, 0.07);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.premium-plan-card__buy:hover,
.premium-plan-card__buy:focus-visible {
  border-color: var(--premium-gold);
  color: #1a1005;
  background: var(--premium-gold);
}

.premium-empty-state {
  padding: 70px 28px;
  border: 1px dashed var(--premium-border-gold);
  border-radius: var(--premium-radius-lg);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.premium-empty-state > i {
  color: var(--premium-gold);
  font-size: 42px;
}

.premium-empty-state h3 {
  margin: 20px 0 8px;
  font-size: 30px;
}

.premium-empty-state p {
  margin: 0 0 24px;
  color: var(--premium-muted);
}

/* Features */
.premium-ecosystem {
  border-top: 1px solid var(--premium-border);
  border-bottom: 1px solid var(--premium-border);
  background:
    linear-gradient(rgba(10, 11, 15, 0.94), rgba(10, 11, 15, 0.96)),
    url(../../../../site/images/bg/3.jpg) center / cover no-repeat;
}

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

.premium-feature-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius-md);
  background: rgba(255, 255, 255, 0.028);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.premium-feature-card:hover {
  border-color: rgba(246, 167, 53, 0.3);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-5px);
}

.premium-feature-card__index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 850;
}

.premium-feature-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(246, 167, 53, 0.25);
  border-radius: 15px;
  color: var(--premium-gold-light);
  background: rgba(246, 167, 53, 0.08);
  font-size: 19px;
  place-items: center;
}

.premium-feature-card h3 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}

.premium-feature-card p {
  margin: 0;
  color: #92959e;
  font-size: 14px;
  line-height: 1.7;
}

/* Journey */
.premium-journey {
  background:
    radial-gradient(circle at 85% 32%, rgba(246, 167, 53, 0.07), transparent 25%),
    var(--premium-bg-soft);
}

.premium-journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.1fr);
  gap: 100px;
}

.premium-journey__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.premium-journey__intro .premium-text-link {
  margin-top: 28px;
}

.premium-journey__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-journey__steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--premium-border);
}

.premium-journey__steps li:first-child {
  padding-top: 4px;
}

.premium-journey__steps > li > span {
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid var(--premium-border-gold);
  border-radius: 50%;
  color: var(--premium-gold);
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.premium-journey__steps h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
}

.premium-journey__steps p {
  margin: 0;
  color: #92959e;
  font-size: 14px;
  line-height: 1.75;
}

/* Security */
.premium-security {
  border-top: 1px solid var(--premium-border);
  border-bottom: 1px solid var(--premium-border);
  background:
    linear-gradient(120deg, rgba(18, 20, 26, 0.96), rgba(9, 10, 13, 0.98)),
    url(../../../../site/images/bg/2.jpg) center / cover no-repeat;
}

.premium-security__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
}

.premium-security__visual {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
}

.premium-security__ring {
  position: absolute;
  width: min(430px, 90%);
  aspect-ratio: 1;
  border: 1px solid rgba(246, 167, 53, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(246, 167, 53, 0.04), 0 0 80px rgba(0, 0, 0, 0.2);
}

.premium-security__ring::before,
.premium-security__ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  animation: premium-spin 36s linear infinite;
}

.premium-security__ring::after {
  inset: 27%;
  border-style: solid;
  border-color: rgba(246, 167, 53, 0.12);
  animation-direction: reverse;
}

.premium-security__shield {
  position: relative;
  z-index: 3;
  display: grid;
  width: 130px;
  height: 150px;
  border: 1px solid rgba(246, 167, 53, 0.5);
  border-radius: 56% 56% 62% 62% / 35% 35% 72% 72%;
  color: var(--premium-gold-light);
  background: linear-gradient(150deg, rgba(246, 167, 53, 0.2), rgba(240, 106, 36, 0.06));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 0 45px rgba(246, 167, 53, 0.07);
  font-size: 46px;
  place-items: center;
}

.premium-security__node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--premium-border-gold);
  border-radius: 50%;
  color: var(--premium-gold-light);
  background: #17191f;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  place-items: center;
}

.premium-security__node--one {
  top: 12%;
  left: 21%;
}

.premium-security__node--two {
  top: 36%;
  right: 9%;
}

.premium-security__node--three {
  bottom: 12%;
  left: 26%;
}

.premium-security__content > p {
  max-width: 650px;
}

.premium-security__content ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.premium-security__content li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #b4b6bd;
  font-size: 14px;
}

.premium-security__content li i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: var(--premium-green);
  background: rgba(83, 213, 162, 0.08);
  font-size: 10px;
  place-items: center;
}

.premium-security__content li strong {
  color: #f4f0e9;
  font-family: Inter, "Segoe UI", sans-serif !important;
}

.premium-security__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

/* Resources and FAQ */
.premium-support {
  background: var(--premium-bg);
}

.premium-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-resource-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius-md);
  color: var(--premium-text);
  background: linear-gradient(145deg, rgba(25, 28, 35, 0.9), rgba(13, 15, 19, 0.9));
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease;
}

.premium-resource-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(246, 167, 53, 0.12);
  border-radius: 50%;
}

.premium-resource-card:hover {
  border-color: var(--premium-border-gold);
  color: #fff;
  transform: translateY(-5px);
}

.premium-resource-card > i {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  color: var(--premium-gold-light);
  background: rgba(246, 167, 53, 0.09);
  font-size: 19px;
  place-items: center;
}

.premium-resource-card > span {
  margin-top: 34px;
  color: var(--premium-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.premium-resource-card > strong {
  max-width: 310px;
  margin-top: 7px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.premium-resource-card > small {
  margin-top: auto;
  color: #898c95;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-resource-card > small i {
  margin-left: 6px;
}

.premium-faq {
  border-top: 1px solid var(--premium-border);
  background: var(--premium-bg-soft);
}

.premium-faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(520px, 1.1fr);
  gap: 100px;
}

.premium-faq__intro .premium-text-link {
  margin-top: 26px;
}

.premium-faq__list {
  border-top: 1px solid var(--premium-border);
}

.premium-faq details {
  border-bottom: 1px solid var(--premium-border);
}

.premium-faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #f0ede7;
  cursor: pointer;
  font-family: "Philosopher", Georgia, serif;
  font-size: 20px;
  list-style: none;
}

.premium-faq summary::-webkit-details-marker {
  display: none;
}

.premium-faq summary i {
  color: var(--premium-gold);
  font-size: 12px;
}

.premium-faq details p {
  max-width: 700px;
  margin: -2px 0 24px;
  color: #92959e;
  font-size: 14px;
  line-height: 1.75;
}

.premium-final-cta {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.17), transparent 32%),
    linear-gradient(115deg, #a94412, var(--premium-orange) 45%, #d58b25 100%);
}

.premium-final-cta::before {
  content: "";
  position: absolute;
  top: -180px;
  right: 8%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.premium-final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.premium-final-cta .premium-kicker {
  color: #ffe0ad;
}

.premium-final-cta h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 60px);
}

.premium-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

/* Modals */
.premium-terms-modal .modal-content,
#modalCheckout .modal-content {
  overflow: hidden;
  border: 1px solid var(--premium-border-gold);
  border-radius: 24px;
  color: var(--premium-text);
  background: #15171d;
  box-shadow: var(--premium-shadow);
}

.premium-terms-modal .modal-header,
#modalCheckout .modal-header {
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--premium-border);
}

.premium-terms-modal .modal-title,
#modalCheckout .modal-title {
  margin: 3px 0 0;
  color: #fff;
  font-size: 27px;
}

.premium-terms-modal .btn-close,
#modalCheckout .btn-close {
  filter: invert(1) grayscale(1);
}

.premium-terms-modal .modal-body,
#modalCheckout .modal-body {
  padding: 24px;
  color: #b8bac1;
  font-size: 14px;
  line-height: 1.75;
}

.premium-terms-modal .modal-footer {
  gap: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--premium-border);
}

.premium-modal-cancel {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  color: #a9abb2;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

body.license-dialog-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.premium-license-modal.license-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(3, 4, 6, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.premium-license-modal.license-modal.active {
  visibility: visible;
  opacity: 1;
}

.premium-license-modal .license-modal-content {
  position: relative;
  display: block;
  width: min(920px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--premium-border-gold);
  border-radius: 26px;
  color: var(--premium-text);
  background: #15171d;
  box-shadow: var(--premium-shadow);
  transform: translateY(18px) scale(0.985);
  transition: transform 200ms ease;
}

.premium-license-modal.active .license-modal-content {
  transform: translateY(0) scale(1);
}

.premium-license-modal .license-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--premium-border);
  background: rgba(255, 255, 255, 0.015);
}

.premium-license-modal .license-modal-header h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
}

.premium-license-modal .license-modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  border: 1px solid var(--premium-border);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-family: Inter, sans-serif;
  font-size: 26px;
  line-height: 1;
  place-items: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.premium-license-modal .license-modal-close:hover {
  border-color: rgba(246, 167, 53, 0.4);
  background: rgba(246, 167, 53, 0.1);
}

.premium-license-modal .license-modal-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 34px;
  padding: 28px;
}

.premium-license-modal .license-modal-img {
  display: grid;
  min-height: 360px;
  padding: 14px;
  border: 1px solid var(--premium-border);
  border-radius: 20px;
  background: radial-gradient(circle, rgba(246, 167, 53, 0.09), transparent 62%), #0c0e12;
  place-items: center;
}

.premium-license-modal .license-modal-img img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.premium-license-modal .license-modal-summary {
  display: flex;
  flex-direction: column;
}

.premium-license-modal .license-modal-price {
  display: block;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--premium-border);
  color: inherit;
  background: transparent;
  text-align: left;
}

.premium-license-modal .license-modal-price > span {
  color: #81848d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.premium-license-modal .license-modal-price h3 {
  margin: 5px 0 3px;
  color: var(--premium-gold-light);
  font-size: 42px;
  font-weight: 400;
}

.premium-license-modal .license-modal-price p {
  margin: 0;
  color: #92959e;
  font-size: 12px;
}

.premium-license-modal .license-modal-features {
  margin-top: 24px;
}

.premium-license-modal .license-modal-features h4 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.premium-license-modal .license-modal-features ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-license-modal .license-modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  color: #b5b7be;
  font-size: 13px;
  line-height: 1.5;
}

.premium-license-modal .license-modal-features li::before {
  content: none;
}

.premium-license-modal .license-modal-features li i {
  margin-top: 4px;
  color: var(--premium-green);
  font-size: 10px;
}

.premium-license-modal .license-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 26px;
  border-top: 1px solid var(--premium-border);
  background: rgba(255, 255, 255, 0.015);
}

/* Footer and music */
footer.premium-footer {
  position: relative;
  min-height: 0;
  padding: 62px 0 28px;
  border-top: 1px solid var(--premium-border);
  color: var(--premium-text);
  background: #08090c;
}

footer.premium-footer::before {
  content: none;
}

.premium-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.premium-footer__brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.premium-footer__brand strong {
  color: #fff;
  font-size: 22px;
}

.premium-footer__brand p {
  margin: 1px 0 0;
  color: #7f828b;
  font-size: 12px;
}

.premium-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 34px;
  padding: 24px 0;
  border-top: 1px solid var(--premium-border);
  border-bottom: 1px solid var(--premium-border);
}

.premium-footer__links a {
  color: #a7a9b1;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.premium-footer__links a:hover {
  color: var(--premium-gold-light);
}

.premium-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #686b74;
  font-size: 11px;
}

.premium-footer__bottom p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  text-transform: none;
}

.premium-footer__bottom span {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
}

.premium-music-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1020;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 167, 53, 0.42);
  border-radius: 50%;
  color: var(--premium-gold-light);
  background: rgba(16, 18, 23, 0.92);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  font-size: 15px;
  place-items: center;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.premium-music-toggle:hover {
  transform: translateY(-3px);
}

.premium-music-toggle.is-playing {
  color: #07120e;
  background: var(--premium-green);
}

.premium-music-toggle.has-error {
  border-color: rgba(255, 255, 255, 0.12);
  color: #777a82;
}

@keyframes premium-spin {
  to { transform: rotate(360deg); }
}

@keyframes premium-details-point {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}

@media (max-width: 1199.98px) {
  .premium-navbar__toggle {
    display: block;
    margin-left: auto;
  }

  .premium-navbar .navbar-collapse {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    max-height: calc(100vh - 78px);
    padding: 18px max(20px, calc((100vw - 1240px) / 2));
    overflow-y: auto;
    border-bottom: 1px solid var(--premium-border);
    background: rgba(8, 9, 12, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  }

  .premium-navbar__links {
    align-items: stretch;
  }

  .premium-navbar__links .nav-link {
    padding: 11px 4px !important;
  }

  .premium-navbar__links .nav-link::after {
    right: auto;
    bottom: 7px;
    left: 4px;
    width: 30px;
  }

  .premium-navbar__actions {
    align-items: stretch;
    margin: 14px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--premium-border);
  }

  .premium-nav-source,
  .premium-client-button {
    min-height: 46px;
  }

  .premium-login-menu {
    position: static !important;
    width: 100%;
    margin-top: 10px !important;
    transform: none !important;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
    gap: 34px;
  }

  .home-hero__content h1 {
    font-size: clamp(52px, 7.4vw, 76px);
  }

  .hero-floating-card--license {
    right: 0;
  }

  .hero-floating-card--updates {
    left: 0;
  }

  .premium-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-journey__grid,
  .premium-security__grid,
  .premium-faq__grid {
    gap: 62px;
  }
}

@media (max-width: 991.98px) {
  .premium-section {
    padding: 88px 0;
  }

  .premium-home .home-hero {
    min-height: 0;
    padding-top: 145px;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: 760px;
  }

  .home-hero__visual {
    width: min(640px, 100%);
    min-height: 580px;
    margin: -8px auto 0;
  }

  .premium-section-heading--split,
  .premium-journey__grid,
  .premium-security__grid,
  .premium-faq__grid {
    grid-template-columns: 1fr;
  }

  .premium-section-heading--split {
    gap: 18px;
  }

  .premium-section-heading--split p {
    max-width: 690px;
    margin: 0;
  }

  .premium-journey__intro {
    position: static;
  }

  .premium-security__visual {
    order: 2;
  }

  .premium-resource-grid {
    grid-template-columns: 1fr;
  }

  .premium-resource-card {
    min-height: 250px;
  }

  .premium-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .premium-final-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .premium-home .container,
  .premium-footer .container {
    width: min(100% - 28px, 1240px);
  }

  .premium-section {
    padding: 72px 0;
  }

  .premium-section-heading {
    margin-bottom: 38px;
  }

  .premium-section-heading h2,
  .premium-journey h2,
  .premium-security h2,
  .premium-faq h2,
  .premium-final-cta h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .premium-brand {
    margin-right: 12px;
  }

  .premium-brand small {
    display: none;
  }

  .premium-navbar__actions {
    flex-direction: column;
  }

  .premium-home .home-hero {
    padding: 132px 0 36px;
  }

  .home-hero__content h1 {
    margin-top: 18px;
    font-size: clamp(47px, 14.5vw, 70px);
  }

  .home-hero__lead {
    font-size: 16px;
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__actions .premium-button {
    width: 100%;
  }

  .home-hero__trust {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .home-hero__trust span {
    flex-direction: row;
    gap: 5px;
  }

  .home-hero__visual {
    min-height: 480px;
  }

  .hero-brand-card {
    width: min(350px, 78%);
  }

  .hero-floating-card {
    width: 186px;
    padding: 12px;
  }

  .hero-floating-card--license {
    top: 10%;
  }

  .hero-floating-card--updates {
    bottom: 8%;
  }

  .home-news {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .home-news__label {
    display: none;
  }

  .premium-feature-grid {
    grid-template-columns: 1fr;
  }

  .premium-feature-card {
    min-height: 0;
  }

  .premium-security__visual {
    min-height: 390px;
  }

  .premium-final-cta {
    padding: 62px 0;
  }

  .premium-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium-license-modal .license-modal-body {
    grid-template-columns: 1fr;
  }

  .premium-license-modal .license-modal-img {
    min-height: 290px;
  }

  .premium-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  nav.premium-navbar {
    min-height: 72px;
  }

  .premium-brand img {
    width: 40px;
    height: 40px;
  }

  .premium-brand strong {
    font-size: 16px;
  }

  .premium-home .home-hero {
    padding-top: 116px;
  }

  .home-hero__visual {
    min-height: 410px;
  }

  .hero-brand-card {
    width: min(310px, 82%);
    border-radius: 26px;
  }

  .hero-orbit--outer {
    width: 98%;
  }

  .hero-floating-card {
    display: none;
  }

  .home-news {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .home-news__action {
    display: none;
  }

  .home-news > strong {
    white-space: normal;
  }

  .premium-plan-grid {
    grid-template-columns: 1fr;
  }

  .premium-journey__steps li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .premium-journey__steps > li > span {
    width: 44px;
    height: 44px;
  }

  .premium-security__visual {
    min-height: 330px;
  }

  .premium-security__shield {
    width: 102px;
    height: 120px;
    font-size: 36px;
  }

  .premium-faq summary {
    min-height: 72px;
    font-size: 18px;
  }

  .premium-license-modal.license-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .premium-license-modal .license-modal-content {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .premium-license-modal .license-modal-header,
  .premium-license-modal .license-modal-footer {
    padding: 17px;
  }

  .premium-license-modal .license-modal-header h2 {
    font-size: 25px;
  }

  .premium-license-modal .license-modal-body {
    gap: 20px;
    padding: 18px;
  }

  .premium-license-modal .license-modal-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .premium-license-modal .license-modal-footer .premium-button {
    width: 100%;
  }

  .premium-terms-modal .modal-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .premium-terms-modal .modal-footer .premium-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --premium-border: rgba(255, 255, 255, 0.3);
    --premium-muted: #d2d3d7;
  }
}

.premium-site-shell :focus-visible {
  outline: 3px solid var(--premium-gold-light);
  outline-offset: 3px;
}
