:root {
  color-scheme: dark;
  --bg: #030914;
  --bg-soft: #071221;
  --panel: rgba(10, 21, 36, 0.84);
  --panel-strong: rgba(14, 27, 45, 0.96);
  --line: rgba(150, 206, 232, 0.24);
  --line-strong: rgba(30, 218, 230, 0.78);
  --text: #f7fbff;
  --muted: #b9c8d7;
  --cyan: #20d5df;
  --cyan-strong: #0bb9c7;
  --cyan-soft: rgba(32, 213, 223, 0.16);
  --blue: #83cfff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 72% 14%, rgba(64, 142, 192, 0.2), transparent 34rem),
    radial-gradient(circle at 18% 22%, rgba(16, 207, 220, 0.12), transparent 27rem),
    linear-gradient(180deg, #020712 0%, #07111f 46%, #030914 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(31, 219, 232, 0.14), transparent) 0 240px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(131, 207, 255, 0.16), transparent) 0 620px / 100% 1px no-repeat;
}

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

img,
svg {
  max-width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 18px;
  border-bottom: 1px solid rgba(160, 207, 230, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #001820;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), #0799b2);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(32, 213, 223, 0.36);
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-tagline {
  margin-top: -4px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  padding: 8px 2px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  color: var(--cyan) !important;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: rgba(6, 17, 31, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 9px !important;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  border-radius: 6px;
}

.lang-option:hover,
.lang-option.active {
  color: var(--text) !important;
  background: var(--cyan-soft);
}

.flag {
  display: inline-block;
  width: 21px;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.flag-hr {
  background: linear-gradient(180deg, #f23b3b 0 33.33%, #fff 33.33% 66.66%, #244aa5 66.66%);
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 0 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 0 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 0 42%, #c8102e 42% 58%, transparent 58%),
    #012169;
}

main {
  overflow: hidden;
}

.hero,
.pricing-hero,
.section,
.plans,
.support-strip,
.choice-cta,
.final-cta {
  width: min(var(--max), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 48px;
  min-height: 510px;
  padding: 68px 0;
}

.hero::before,
.pricing-hero::before,
.choice-cta::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 120px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 52%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 50%, var(--blue) 0 2px, transparent 3px),
    linear-gradient(100deg, transparent 0 8%, rgba(32, 213, 223, 0.75) 9%, transparent 10% 16%, rgba(131, 207, 255, 0.6) 17%, transparent 18% 100%);
  background-size: 98px 100%, 130px 100%, 100% 100%;
  opacity: 0.46;
  filter: drop-shadow(0 0 14px rgba(32, 213, 223, 0.55));
}

.hero::before {
  bottom: 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text,
.pricing-hero > p,
.final-cta p,
.choice-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-text {
  max-width: 620px;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #02141a;
  background: linear-gradient(135deg, #25dce4, #09a9bb);
  box-shadow: 0 12px 34px rgba(6, 184, 198, 0.22);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(211, 234, 246, 0.58);
  background: rgba(255, 255, 255, 0.04);
}

.button.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.device,
.shield,
.status-card {
  position: absolute;
}

.device.laptop {
  right: 44px;
  bottom: 70px;
  width: min(470px, 88%);
  height: 255px;
  border: 2px solid rgba(166, 213, 238, 0.56);
  border-radius: 14px 14px 5px 5px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #111b2c, #050914);
  box-shadow:
    inset 0 0 42px rgba(131, 207, 255, 0.12),
    0 26px 80px rgba(0, 0, 0, 0.64);
}

.device.laptop::after {
  position: absolute;
  right: -42px;
  bottom: -22px;
  left: -42px;
  height: 24px;
  content: "";
  background: linear-gradient(180deg, #66798d, #202936);
  border-radius: 3px 3px 18px 18px;
}

.device.laptop span {
  position: absolute;
  right: 44px;
  bottom: 72px;
  left: 44px;
  height: 38px;
  background: linear-gradient(90deg, transparent, rgba(32, 213, 223, 0.78), transparent);
  border-radius: 50%;
  filter: blur(2px);
}

.device.phone {
  right: 0;
  bottom: 56px;
  width: 88px;
  height: 170px;
  padding: 48px 15px 0;
  border: 2px solid rgba(166, 213, 238, 0.5);
  border-radius: 18px;
  background: linear-gradient(180deg, #111c2e, #060a13);
  box-shadow: var(--shadow);
}

.device.phone span {
  display: block;
  height: 10px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 8px;
}

.shield {
  width: 96px;
  height: 108px;
  clip-path: polygon(50% 0, 92% 16%, 83% 78%, 50% 100%, 17% 78%, 8% 16%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(180deg, #a6e8ff, #477596);
  box-shadow: 0 0 34px rgba(131, 207, 255, 0.4);
}

.large-shield {
  right: 114px;
  bottom: 86px;
}

.shield::after {
  position: absolute;
  inset: 22px;
  content: "";
  border-right: 7px solid #032033;
  border-bottom: 7px solid #032033;
  transform: rotate(45deg) translate(-2px, -8px);
}

.status-card {
  padding: 13px 18px;
  color: #dff8ff;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(23, 40, 62, 0.9);
  border: 1px solid rgba(172, 221, 245, 0.35);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.protected {
  top: 80px;
  right: 18px;
}

.response {
  top: 145px;
  right: 135px;
}

.pulse-line {
  position: absolute;
  right: -40px;
  bottom: 170px;
  left: -20px;
  height: 78px;
  background: linear-gradient(90deg, transparent, rgba(32, 213, 223, 0.8), transparent);
  filter: blur(18px);
  opacity: 0.75;
}

.section {
  padding: 58px 0;
  border-top: 1px solid rgba(160, 207, 230, 0.16);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.feature-card,
.plan-card,
.support-strip article,
.choice-cta,
.final-cta {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 210px;
  padding: 28px 24px;
  border-radius: var(--radius);
}

.feature-card p,
.support-strip p,
.plan-fit,
.plan-card li {
  color: var(--muted);
}

.icon,
.plan-icon,
.choice-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border: 1px solid rgba(32, 213, 223, 0.5);
  border-radius: 50%;
  background: rgba(6, 20, 34, 0.8);
  box-shadow: inset 0 0 24px rgba(32, 213, 223, 0.12), 0 0 26px rgba(32, 213, 223, 0.18);
}

.icon::before,
.icon::after,
.plan-icon::before,
.plan-icon::after,
.choice-icon::before,
.choice-icon::after {
  position: absolute;
  content: "";
}

.headset::before {
  width: 34px;
  height: 28px;
  border: 7px solid #a8e8ff;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.headset::after {
  width: 38px;
  height: 24px;
  border-right: 8px solid var(--cyan);
  border-left: 8px solid var(--cyan);
  transform: translateY(12px);
}

.shield-icon::before,
.flow::before {
  width: 38px;
  height: 44px;
  clip-path: polygon(50% 0, 92% 16%, 83% 78%, 50% 100%, 17% 78%, 8% 16%);
  background: linear-gradient(180deg, #a6e8ff, #26758c);
}

.shield-icon::after,
.flow::after {
  width: 14px;
  height: 24px;
  border-right: 5px solid #05202d;
  border-bottom: 5px solid #05202d;
  transform: rotate(45deg) translate(-2px, -6px);
}

.laptop-icon::before {
  width: 40px;
  height: 26px;
  border: 4px solid #a8e8ff;
  border-radius: 3px;
}

.laptop-icon::after {
  width: 52px;
  height: 8px;
  background: linear-gradient(90deg, #90dfff, var(--cyan));
  border-radius: 0 0 8px 8px;
  transform: translateY(21px);
}

.cloud-icon::before {
  width: 44px;
  height: 24px;
  border: 6px solid #a8e8ff;
  border-radius: 24px;
}

.cloud-icon::after {
  width: 15px;
  height: 28px;
  background: var(--cyan);
  clip-path: polygon(50% 0, 100% 45%, 68% 45%, 68% 100%, 32% 100%, 32% 45%, 0 45%);
}

.value-band {
  text-align: center;
}

.wave-band {
  height: 74px;
  margin: 24px 0 8px;
  background:
    radial-gradient(circle at 20% 50%, var(--cyan) 0 4px, transparent 5px),
    linear-gradient(105deg, transparent 0 14%, rgba(32, 213, 223, 0.75) 15%, transparent 16% 32%, rgba(131, 207, 255, 0.62) 33%, transparent 34% 100%);
  background-size: 110px 100%, 100% 100%;
  filter: drop-shadow(0 0 12px rgba(32, 213, 223, 0.55));
  opacity: 0.74;
}

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

.value-grid article {
  padding: 10px 18px;
}

.pulse-icon::before {
  width: 44px;
  height: 30px;
  background: linear-gradient(90deg, transparent 0 10%, var(--cyan) 10% 17%, transparent 17% 30%, var(--cyan) 30% 39%, transparent 39% 52%, var(--cyan) 52% 66%, transparent 66%);
  clip-path: polygon(0 55%, 22% 55%, 32% 10%, 44% 88%, 56% 36%, 69% 55%, 100% 55%, 100% 65%, 66% 65%, 58% 54%, 44% 100%, 31% 38%, 25% 65%, 0 65%);
}

.handshake-icon::before {
  width: 42px;
  height: 18px;
  border-top: 8px solid #a8e8ff;
  border-left: 8px solid var(--cyan);
  transform: rotate(-28deg);
}

.handshake-icon::after {
  width: 42px;
  height: 18px;
  border-top: 8px solid var(--cyan);
  border-right: 8px solid #a8e8ff;
  transform: rotate(28deg);
}

.calendar-icon::before {
  width: 38px;
  height: 36px;
  border: 4px solid #a8e8ff;
  border-top-width: 10px;
  border-radius: 4px;
}

.calendar-icon::after {
  width: 25px;
  height: 15px;
  background:
    linear-gradient(90deg, var(--cyan) 0 5px, transparent 5px 10px, var(--cyan) 10px 15px, transparent 15px 20px, var(--cyan) 20px),
    linear-gradient(90deg, var(--cyan) 0 5px, transparent 5px 10px, var(--cyan) 10px 15px, transparent 15px 20px, var(--cyan) 20px);
  background-size: 100% 5px, 100% 5px;
  background-position: 0 0, 0 10px;
  background-repeat: no-repeat;
  transform: translateY(8px);
}

.final-cta {
  margin-top: 20px;
  margin-bottom: 64px;
  padding: 48px 28px;
  text-align: center;
  border-radius: var(--radius);
}

.pricing-hero {
  position: relative;
  padding: 58px 0 34px;
  text-align: center;
}

.pricing-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.pricing-hero > p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.pricing-hero h1 strong,
.accent {
  color: var(--cyan);
}

.pricing-hero::before {
  bottom: -26px;
}

.benefit-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 28px;
  color: var(--text);
}

.benefit-row span {
  position: relative;
  padding-left: 24px;
  color: #dbeaf2;
  font-weight: 700;
}

.benefit-row span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(32, 213, 223, 0.8);
  transform: translateY(-50%);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  padding: 52px 0 42px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 30px;
  border-radius: 14px;
}

.plan-card.featured {
  border-color: var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(32, 213, 223, 0.3),
    0 0 42px rgba(32, 213, 223, 0.26),
    var(--shadow);
  transform: translateY(-22px);
}

.badge {
  position: absolute;
  top: 12px;
  left: 50%;
  padding: 5px 18px;
  color: #02141a;
  font-size: 0.84rem;
  font-weight: 900;
  background: linear-gradient(135deg, #25dce4, #09a9bb);
  border-radius: 999px;
  transform: translateX(-50%);
}

.plan-icon {
  margin: 22px auto 18px;
}

.rocket::before {
  width: 22px;
  height: 42px;
  background: linear-gradient(180deg, #a8e8ff, var(--cyan));
  border-radius: 50% 50% 8px 8px;
  transform: rotate(45deg);
}

.rocket::after {
  width: 20px;
  height: 20px;
  background: #071221;
  border: 4px solid #043848;
  border-radius: 50%;
  transform: translate(4px, -6px);
}

.growth::before {
  bottom: 18px;
  width: 42px;
  height: 38px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 0 70% / 8px 30% no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 15px 48% / 8px 52% no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 30px 22% / 8px 78% no-repeat;
}

.growth::after {
  width: 38px;
  height: 24px;
  border-top: 5px solid #a8e8ff;
  border-right: 5px solid #a8e8ff;
  transform: translateY(-8px) rotate(-22deg);
}

.plan-card h2 {
  margin-bottom: 6px;
  text-align: center;
}

.plan-fit {
  min-height: 54px;
  margin-bottom: 22px;
  text-align: center;
}

.price {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.price span {
  color: var(--text);
  font-weight: 800;
}

.price strong {
  display: inline-block;
  margin: 0 6px;
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.price em {
  color: var(--muted);
  font-style: normal;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
}

.plan-card li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #03202a;
  content: "";
  background:
    linear-gradient(135deg, transparent 47%, #03202a 48% 54%, transparent 55%) 4px 3px / 10px 10px no-repeat,
    var(--cyan);
  border-radius: 50%;
}

.plan-card .button {
  margin-top: auto;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0 48px;
}

.support-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
}

.support-strip .icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  margin: 0;
}

.support-strip h3,
.support-strip p {
  margin-bottom: 0;
}

.choice-cta {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
  padding: 34px;
  border-radius: 14px;
}

.choice-cta::before {
  bottom: 18px;
  left: -40px;
}

.choice-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.choice-icon::before {
  width: 78px;
  height: 62px;
  border: 12px solid #a8e8ff;
  border-bottom: 0;
  border-radius: 62px 62px 0 0;
}

.choice-icon::after {
  width: 88px;
  height: 58px;
  border-right: 18px solid var(--cyan);
  border-left: 18px solid var(--cyan);
  transform: translateY(28px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: var(--cyan);
  font-weight: 900;
  border-bottom: 2px solid rgba(32, 213, 223, 0.5);
  transition: transform 180ms ease;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 46px;
  }

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

  .device.laptop {
    right: 72px;
    width: min(470px, calc(100% - 100px));
  }

  .service-grid,
  .plans,
  .support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }

  .choice-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .choice-cta .button-row {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(var(--max), calc(100% - 32px));
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.95rem;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero,
  .pricing-hero,
  .section,
  .plans,
  .support-strip,
  .choice-cta,
  .final-cta {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

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

  .device.laptop {
    right: 38px;
    bottom: 54px;
    height: 190px;
    width: calc(100% - 68px);
  }

  .device.phone {
    right: 4px;
    width: 70px;
    height: 136px;
  }

  .large-shield {
    right: 72px;
    bottom: 72px;
    width: 72px;
    height: 82px;
  }

  .status-card {
    display: none;
  }

  .service-grid,
  .value-grid,
  .plans,
  .support-strip {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .price {
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .feature-card,
  .plan-card,
  .choice-cta,
  .final-cta {
    padding: 24px 20px;
  }
}

.admin-body {
  min-height: 100vh;
}

.admin-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-topbar h1,
.login-panel h1 {
  margin-bottom: 0;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-lang-switcher {
  flex: 0 0 auto;
}

.admin-panel {
  margin-bottom: 22px;
  padding: 26px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-panel {
  max-width: 520px;
  margin: 9vh auto 0;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-editor {
  gap: 8px;
}

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

.plans-admin-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  background: rgba(3, 9, 20, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.admin-form input {
  min-height: 46px;
  padding: 0 14px;
}

.admin-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(32, 213, 223, 0.16);
}

.admin-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-form legend {
  padding: 0 8px;
  color: var(--cyan);
  font-weight: 900;
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.admin-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.admin-message.success {
  color: #d7fff7;
  background: rgba(25, 153, 107, 0.22);
  border: 1px solid rgba(25, 153, 107, 0.5);
}

.admin-message.error {
  color: #ffe5e5;
  background: rgba(185, 54, 54, 0.22);
  border: 1px solid rgba(185, 54, 54, 0.5);
}

.admin-savebar {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding: 16px 0 0;
  background: linear-gradient(180deg, transparent, var(--bg) 42%);
}

@media (max-width: 900px) {
  .admin-topbar,
  .admin-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-grid,
  .plans-admin-grid {
    grid-template-columns: 1fr;
  }
}
