:root {
  --small: #ff7f00;
  --medium: #66ff00;
  --large: #169dd3;
  --xlarge: #991987;

  --white: #ffffff;
  --text: #121a24;
  --muted: #52606f;
  --line: rgba(18, 26, 36, 0.1);

  --yellow: #ffd84d;
  --yellow-2: #fff09c;
  --green-ok: #18a44c;
  --red-no: #d82424;

  --shadow-soft: 0 14px 40px rgba(10, 18, 28, 0.08);
  --shadow-neon-small: 0 0 0 1px rgba(255, 127, 0, 0.18), 0 0 18px rgba(255, 127, 0, 0.16);
  --shadow-neon-medium: 0 0 0 1px rgba(102, 255, 0, 0.18), 0 0 18px rgba(102, 255, 0, 0.14);
  --shadow-neon-large: 0 0 0 1px rgba(22, 157, 211, 0.2), 0 0 20px rgba(22, 157, 211, 0.16);
  --shadow-neon-xlarge: 0 0 0 1px rgba(153, 25, 135, 0.22), 0 0 20px rgba(153, 25, 135, 0.16);

  --container: 1380px;
  --menu-height: 74px;
  --card-height: 395px;
}

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

html,
body {
  overflow-x: hidden;
  background: #ffffff;
}

body {
  font-family: "Outfit", sans-serif;
  background: #ffffff;
  color: var(--text);
}

/* INTRO */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at top, rgba(133, 212, 255, 0.2), transparent 30%),
    radial-gradient(circle at bottom, rgba(183, 229, 95, 0.22), transparent 35%),
    #0d1623;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  backdrop-filter: blur(4px);
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}

.intro-line {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  filter: blur(10px);
  animation: introReveal 1s forwards;
}

.intro-line-1 {
  font-size: clamp(22px, 3vw, 38px);
  animation-delay: 0.15s;
}

.intro-line-2 {
  font-size: clamp(34px, 5vw, 72px);
  margin-top: 10px;
  color: #b7e55f;
  animation-delay: 0.7s;
}

.intro-line-3 {
  font-size: clamp(18px, 2.2vw, 28px);
  margin-top: 18px;
  color: #d8e6f4;
  font-weight: 500;
  animation-delay: 1.3s;
}

@keyframes introReveal {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* FLOATING PROOF */
.top-floating-proof {
  position: fixed;
  left: 16px;
  top: 12px;
  width: 245px;
  height: 34px;
  z-index: 1100;
  pointer-events: none;
}

.proof-window {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.proof-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.proof-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(115%);
  transition: transform 0.65s ease, opacity 0.65s ease;
  white-space: nowrap;
}

.proof-item.active {
  opacity: 1;
  transform: translateY(0);
}

.proof-item.prev {
  opacity: 0;
  transform: translateY(-115%);
}

.proof-blue {
  color: #169dd3;
}

.proof-green {
  color: #2eaf2e;
}

/* TOP MENU */
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--menu-height);
  z-index: 1000;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(18, 26, 36, 0.08);
}

.top-menu-nav {
  width: min(var(--container), calc(100% - 24px));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.top-menu-nav a {
  font-size: 18px;
  font-weight: 700;
  color: #24313f;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.top-menu-nav a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* PAGE */
.page-shell {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  min-height: 100vh;
  background: #ffffff;
}

.page-shell.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* VIEW */
.view-section {
  display: none;
  background: #ffffff;
}

.view-section.active-view {
  display: block;
  animation: sectionFadeIn 0.45s ease;
}

@keyframes sectionFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* HERO */
.pricing-hero {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--menu-height) + 6px);
  padding-bottom: 50px;
  background: #ffffff;
}

.hero-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 120px;
  padding-right: 4px;
}

.hero-logo {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.hero-slogan-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
  padding-left: 0;
}

.slogan-window {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 78px;
  overflow: hidden;
  background: #ffffff;
}

.slogan-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slogan-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(120%);
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111111;
  transition: transform 0.75s ease, opacity 0.75s ease;
}

.slogan-item.active {
  opacity: 1;
  transform: translateY(0);
}

.slogan-item.prev {
  opacity: 0;
  transform: translateY(-120%);
}

/* PRICING */
.pricing-area {
  background: #ffffff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.plan-card,
.extra-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 22px;
  border: 3px solid transparent;
  overflow: visible;
  opacity: 0;
  transform: translateY(48px) scale(0.98);
}

.plan-card {
  min-height: var(--card-height);
}

.plan-card.small {
  border-color: rgba(255, 127, 0, 0.75);
  box-shadow: var(--shadow-soft), var(--shadow-neon-small);
}

.plan-card.medium {
  border-color: rgba(102, 255, 0, 0.75);
  box-shadow: var(--shadow-soft), var(--shadow-neon-medium);
}

.plan-card.large {
  border-color: rgba(22, 157, 211, 0.75);
  box-shadow: var(--shadow-soft), var(--shadow-neon-large);
}

.plan-card.xlarge {
  border-color: rgba(153, 25, 135, 0.75);
  box-shadow: var(--shadow-soft), var(--shadow-neon-xlarge);
}

.plan-card.in-view,
.extra-package-card.in-view {
  animation: dominoIn 2s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}

.domino-1.in-view,
.extra-domino-1.in-view { animation-delay: 0.12s; }

.domino-2.in-view,
.extra-domino-2.in-view { animation-delay: 0.36s; }

.domino-3.in-view,
.extra-domino-3.in-view { animation-delay: 0.60s; }

.domino-4.in-view,
.extra-domino-4.in-view { animation-delay: 0.84s; }

.extra-domino-5.in-view { animation-delay: 1.08s; }
.extra-domino-6.in-view { animation-delay: 1.32s; }
.extra-domino-7.in-view { animation-delay: 1.56s; }
.extra-domino-8.in-view { animation-delay: 1.80s; }

@keyframes dominoIn {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gift-badge {
  position: absolute;
  top: -14px;
  left: 12px;
  z-index: 6;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.01em;
  animation: giftPulse 1.4s ease-in-out infinite;
  transform-origin: center;
}

.gift-small {
  background: var(--small);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 14px 26px rgba(255, 127, 0, 0.42), 0 0 12px rgba(255, 127, 0, 0.18);
}

.gift-medium {
  background: var(--medium);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 14px 26px rgba(102, 255, 0, 0.34), 0 0 12px rgba(102, 255, 0, 0.18);
}

.gift-large {
  background: var(--large);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 14px 26px rgba(22, 157, 211, 0.38), 0 0 12px rgba(22, 157, 211, 0.18);
}

.gift-xlarge {
  background: var(--xlarge);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 14px 26px rgba(153, 25, 135, 0.4), 0 0 12px rgba(153, 25, 135, 0.18);
}

@keyframes giftPulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.08) translateY(-3px); }
}

.plan-top {
  min-height: 68px;
  padding: 10px 10px 10px;
  text-align: center;
  color: #ffffff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.plan-top h2 {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.plan-price {
  margin-top: 6px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.plan-price span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.92;
}

.plan-top-small { background: var(--small); }
.plan-top-medium { background: var(--medium); }
.plan-top-large { background: var(--large); }
.plan-top-xlarge { background: var(--xlarge); }

.plan-body {
  position: relative;
  flex: 1;
  padding: 12px 12px 14px;
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 5px;
}

.plan-list li {
  position: relative;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 500;
  color: #16202b;
  padding-left: 14px;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
}

.special-item {
  padding-right: 4px;
}

.special-badge {
  position: absolute;
  right: -12px;
  top: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-2));
  color: #493600;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 216, 77, 0.34);
  animation: blinkBadge 1.2s infinite ease-in-out;
  z-index: 3;
}

@keyframes blinkBadge {
  0%, 100% { transform: scale(1) rotate(-3deg); opacity: 1; }
  50% { transform: scale(1.05) rotate(-1deg); opacity: 0.72; }
}

.plan-action-wrap,
.extra-action-wrap {
  margin-top: auto;
  padding-top: 16px;
}

.buy-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.buy-btn-small {
  background: linear-gradient(180deg, #ff9a3f, #ff7f00);
  box-shadow: 0 14px 26px rgba(255, 127, 0, 0.28);
}

.buy-btn-medium {
  background: linear-gradient(180deg, #89ff44, #66ff00);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(102, 255, 0, 0.20);
}

.buy-btn-large {
  background: linear-gradient(180deg, #35baf0, #169dd3);
  box-shadow: 0 14px 26px rgba(22, 157, 211, 0.24);
}

.buy-btn-xlarge {
  background: linear-gradient(180deg, #b43aa6, #991987);
  box-shadow: 0 14px 26px rgba(153, 25, 135, 0.24);
}

.buy-btn-extra-blue {
  background: linear-gradient(180deg, #35baf0, #169dd3);
  box-shadow: 0 14px 26px rgba(22, 157, 211, 0.24);
}

.buy-btn-extra-orange {
  background: linear-gradient(180deg, #ff9a3f, #ff7f00);
  box-shadow: 0 14px 26px rgba(255, 127, 0, 0.28);
}

.buy-btn-extra-purple {
  background: linear-gradient(180deg, #b43aa6, #991987);
  box-shadow: 0 14px 26px rgba(153, 25, 135, 0.24);
}

.buy-btn-extra-dark {
  background: linear-gradient(180deg, #2b3949, #121a24);
  box-shadow: 0 14px 26px rgba(18, 26, 36, 0.22);
}

.compare-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.compare-link {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  color: #101820;
  cursor: pointer;
  animation: pulseCompare 1.8s ease-in-out infinite;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.compare-link:hover {
  opacity: 0.72;
}

@keyframes pulseCompare {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* INFO SECTIONS */
.special-features-section,
.hosting-highlight-section,
.mailserver-highlight-section {
  padding-top: 54px;
  background: #ffffff;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 26px;
}

.section-title {
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.04em;
  color: #111111;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

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

.feature-info-card {
  background: #ffffff;
  border: 2px solid rgba(18, 26, 36, 0.08);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-title {
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.feature-title-blue { color: var(--large); }
.feature-title-green { color: #2d9b15; }
.feature-title-orange { color: var(--small); }
.feature-title-purple { color: var(--xlarge); }

.feature-info-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #5a6877;
}

.hosting-highlight-grid,
.mailserver-highlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.mailserver-highlight-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.hosting-visual-card,
.hosting-text-card,
.mailserver-visual-card,
.mailserver-text-card {
  background: #ffffff;
  border: 2px solid rgba(18, 26, 36, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.hosting-visual-card,
.mailserver-visual-card {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
}

.hosting-text-card,
.mailserver-text-card {
  padding: 28px;
}

.hosting-text-card h3,
.mailserver-text-card h3 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #121a24;
  margin-bottom: 14px;
}

.hosting-text-card p,
.mailserver-text-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6877;
  margin-bottom: 14px;
}

.hosting-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.hosting-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2b37;
}

.hosting-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--large);
}

.interactive-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(18, 26, 36, 0.12);
  border-color: rgba(22, 157, 211, 0.18);
}

/* HOSTING VISUAL */
.server-stage {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1 / 1;
}

.server-aura {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
}

.aura-1 {
  width: 240px;
  height: 240px;
  background: rgba(22, 157, 211, 0.14);
}

.aura-2 {
  width: 320px;
  height: 320px;
  background: rgba(153, 25, 135, 0.08);
}

.server-grid {
  position: absolute;
  inset: 8% 8%;
  background-image:
    linear-gradient(rgba(22,157,211,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,157,211,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.9;
  mask-image: radial-gradient(circle, #000 60%, transparent 100%);
}

.server-core {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.server-core-top {
  position: absolute;
  left: 28px;
  top: 0;
  width: 114px;
  height: 36px;
  background: linear-gradient(180deg, #203145, #16212d);
  transform: skewX(-30deg);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(18, 26, 36, 0.15);
}

.server-core-front {
  position: absolute;
  left: 0;
  top: 24px;
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, #121a24, #1d2a39);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(18, 26, 36, 0.22);
  overflow: hidden;
}

.server-core-side {
  position: absolute;
  right: 0;
  top: 24px;
  width: 56px;
  height: 120px;
  background: linear-gradient(180deg, #243447, #17222f);
  transform: skewY(-35deg);
  border-radius: 14px;
}

.rack-line {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

.r1 { top: 34px; }
.r2 { top: 58px; }
.r3 { top: 82px; }

.rack-light {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3ee16a;
  box-shadow: 0 0 12px rgba(62,225,106,0.7);
  animation: blinkRack 1.6s infinite ease-in-out;
}

.l1 { left: 16px; top: 20px; }
.l2 { left: 34px; top: 20px; animation-delay: 0.35s; }
.l3 { left: 52px; top: 20px; animation-delay: 0.7s; }

@keyframes blinkRack {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.server-node {
  position: absolute;
  min-width: 82px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(18, 26, 36, 0.14);
  z-index: 2;
}

.sn-top {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  background: var(--large);
}

.sn-left {
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--small);
}

.sn-right {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--xlarge);
}

.sn-bottom {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: var(--medium);
  color: #132028;
}

.beam {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(22,157,211,0.22));
}

.beam-top,
.beam-bottom {
  width: 6px;
  height: 92px;
  left: 50%;
  transform: translateX(-50%);
}

.beam-left,
.beam-right {
  width: 92px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.beam-top { top: 20%; }
.beam-bottom { bottom: 20%; }
.beam-left { left: 20%; }
.beam-right { right: 20%; }

.beam-packet {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #b7e55f, #169dd3);
  box-shadow: 0 0 14px rgba(22,157,211,0.38);
  z-index: 4;
}

.bp-top,
.bp-bottom {
  width: 6px;
  height: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.bp-left,
.bp-right {
  width: 24px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.bp-top { top: 20%; animation: packetDown 2.2s linear infinite; }
.bp-bottom { bottom: 20%; animation: packetUp 2.2s linear infinite; }
.bp-left { left: 20%; animation: packetRight 2s linear infinite; }
.bp-right { right: 20%; animation: packetLeft 2s linear infinite; }

@keyframes packetDown {
  0% { top: 20%; opacity: 0; }
  15% { opacity: 1; }
  100% { top: 39%; opacity: 0; }
}
@keyframes packetUp {
  0% { bottom: 20%; opacity: 0; }
  15% { opacity: 1; }
  100% { bottom: 39%; opacity: 0; }
}
@keyframes packetRight {
  0% { left: 20%; opacity: 0; }
  15% { opacity: 1; }
  100% { left: 39%; opacity: 0; }
}
@keyframes packetLeft {
  0% { right: 20%; opacity: 0; }
  15% { opacity: 1; }
  100% { right: 39%; opacity: 0; }
}

/* MAIL WORLD */
.world-mail-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.18 / 1;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(22,157,211,0.12), transparent 35%),
    radial-gradient(circle at 75% 28%, rgba(153,25,135,0.08), transparent 26%),
    linear-gradient(180deg, #fafdff 0%, #f6fbff 100%);
}

.world-mail-stage.network-fade .world-map-svg,
.world-mail-stage.network-fade .world-glow {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.world-mail-stage.network-fade .mail-travel-icon {
  opacity: 0;
}

.world-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.world-glow-1 {
  width: 180px;
  height: 180px;
  left: 14%;
  top: 18%;
  background: rgba(22, 157, 211, 0.10);
}

.world-glow-2 {
  width: 220px;
  height: 220px;
  right: 10%;
  bottom: 12%;
  background: rgba(22, 157, 211, 0.07);
}

.world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.45s ease;
}

.continent-line {
  fill: none;
  stroke: rgba(22, 157, 211, 0.22);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.network-arc {
  fill: none;
  stroke: rgba(22, 157, 211, 0.55);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
  animation: arcDash 8s linear infinite;
}

@keyframes arcDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -120; }
}

.world-node {
  fill: #169dd3;
  filter: drop-shadow(0 0 8px rgba(22,157,211,0.4));
  animation: pulseNode 2.2s ease-in-out infinite;
}

.world-node:nth-of-type(2n) {
  animation-delay: 0.5s;
}

.target-node {
  fill: #23c55e;
  filter: drop-shadow(0 0 10px rgba(35,197,94,0.55));
  animation: pulseTarget 1.8s ease-in-out infinite;
}

@keyframes pulseNode {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.22); }
}

@keyframes pulseTarget {
  0%, 100% { opacity: 0.75; r: 10; }
  50% { opacity: 1; r: 12; }
}

.mail-travel-icon {
  position: absolute;
  left: 18%;
  top: 40%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #ffffff;
  font-size: 17px;
  box-shadow:
    0 8px 20px rgba(34,197,94,0.30),
    0 0 16px rgba(34,197,94,0.25);
  z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* LOCK */
.lock-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 126px;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}

.lock-stage.visible {
  animation: lockAppear 0.2s ease forwards;
}

@keyframes lockAppear {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

.lock-icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.lock-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 78px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fcff, #dcebf6);
  box-shadow:
    0 14px 28px rgba(18,26,36,0.16),
    inset 0 0 0 1px rgba(18,26,36,0.06);
  z-index: 2;
}

.lock-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #728fa2;
}

.lock-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 12px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #728fa2;
}

.lock-shackle {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 48px;
  height: 40px;
  transform-origin: 20% 88%;
  transform: translateX(-50%) rotate(-38deg) translateY(-8px);
  z-index: 1;
}

.lock-shackle::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #a3c7db;
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  background: transparent;
}

.lock-stage.locked .lock-shackle {
  animation: appleLockClose 0.38s cubic-bezier(0.2, 0.95, 0.22, 1) forwards;
}

@keyframes appleLockClose {
  0% { transform: translateX(-50%) rotate(-38deg) translateY(-8px); }
  65% { transform: translateX(-50%) rotate(3deg) translateY(0); }
  100% { transform: translateX(-50%) rotate(0deg) translateY(0); }
}

/* SECURITY TEXT */
.security-copy {
  position: absolute;
  left: 50%;
  top: calc(50% + 86px);
  transform: translateX(-50%);
  width: min(72%, 280px);
  opacity: 0;
  z-index: 7;
  pointer-events: none;
}

.security-copy.visible {
  animation: secCopyFade 0.45s ease forwards;
}

@keyframes secCopyFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.security-copy-window {
  position: relative;
  width: 100%;
  height: 34px;
  overflow: hidden;
}

.security-copy-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.security-copy-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(110%);
  color: #0f1720;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform 0.65s ease, opacity 0.65s ease;
  text-align: center;
}

.security-copy-item.active {
  opacity: 1;
  transform: translateY(0);
}

.security-copy-item.prev {
  opacity: 0;
  transform: translateY(-110%);
}

/* COMPARE PAGE */
.compare-page,
.extra-packages-page {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  min-height: 100vh;
  padding-top: calc(var(--menu-height) + 18px);
  padding-bottom: 40px;
  background: #ffffff;
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  background: #ffffff;
}

.sticky-compare-head {
  position: sticky;
  top: var(--menu-height);
  z-index: 900;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 26, 36, 0.08);
}

.home-btn {
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid #121a24;
  border-radius: 16px;
  background: #ffffff;
  color: #121a24;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.compare-title {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
  text-align: right;
}

.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.compare-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.compare-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(18, 26, 36, 0.18);
  border-radius: 999px;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 980px;
  background: #ffffff;
}

.compare-table th,
.compare-table td {
  border-right: 2px solid rgba(18, 26, 36, 0.08);
  border-bottom: 2px solid rgba(18, 26, 36, 0.08);
  padding: 14px 16px;
  text-align: center;
  background: #ffffff;
}

.compare-table tr > *:first-child {
  border-left: 2px solid rgba(18, 26, 36, 0.08);
}

.compare-table thead tr:first-child th {
  border-top: 2px solid rgba(18, 26, 36, 0.08);
}

.compare-table thead th {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 5;
}

.compare-table .feature-col {
  background: #121a24;
  min-width: 260px;
}

.compare-table .small-col { background: var(--small); }
.compare-table .medium-col { background: var(--medium); color: #121a24; }
.compare-table .large-col { background: var(--large); }
.compare-table .xlarge-col { background: var(--xlarge); }

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: #16202b;
  background: #ffffff;
}

.compare-table .yes {
  color: var(--green-ok);
  font-size: 24px;
  font-weight: 900;
}

.compare-table .no {
  color: var(--red-no);
  font-size: 24px;
  font-weight: 900;
}

.addon-cell {
  white-space: nowrap;
}

.base-text {
  font-size: 15px;
  font-weight: 900;
  color: #121a24;
  margin-right: 8px;
}

.addon-x {
  color: var(--red-no);
  font-size: 24px;
  font-weight: 900;
  vertical-align: middle;
  margin-right: 8px;
}

.addon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ebfff2;
  border: 1px solid rgba(24, 164, 76, 0.22);
  color: #13843d;
  font-size: 13px;
  font-weight: 800;
  animation: addonBlink 1.2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes addonBlink {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 rgba(24, 164, 76, 0); }
  50% { transform: scale(1.05); opacity: 0.8; box-shadow: 0 0 18px rgba(24, 164, 76, 0.2); }
}

/* EXTRA PACKAGES */
.extra-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.extra-package-card {
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.extra-badge {
  position: absolute;
  top: -14px;
  left: 14px;
  z-index: 8;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 14px 26px rgba(10, 18, 28, 0.35), 0 0 18px rgba(10, 18, 28, 0.20);
}

.badge-blue { background: linear-gradient(180deg, #2cb8eb, #169dd3); }
.badge-orange { background: linear-gradient(180deg, #ff9c45, #ff7f00); }
.badge-purple { background: linear-gradient(180deg, #b640aa, #991987); }
.badge-dark { background: linear-gradient(180deg, #2b3949, #121a24); }

.sms-pack { border-color: rgba(22, 157, 211, 0.50); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(22,157,211,0.14), 0 0 18px rgba(22,157,211,0.08); }
.reels-pack { border-color: rgba(255, 127, 0, 0.50); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,127,0,0.14), 0 0 18px rgba(255,127,0,0.08); }
.mail-pack { border-color: rgba(18, 26, 36, 0.20); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(18,26,36,0.08), 0 0 18px rgba(18,26,36,0.04); }
.lang-pack { border-color: rgba(255, 127, 0, 0.42); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,127,0,0.14), 0 0 18px rgba(255,127,0,0.08); }
.app-pack { border-color: rgba(153, 25, 135, 0.50); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(153,25,135,0.14), 0 0 18px rgba(153,25,135,0.08); }
.b2b-pack { border-color: rgba(153, 25, 135, 0.42); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(153,25,135,0.14), 0 0 18px rgba(153,25,135,0.08); }
.push-pack { border-color: rgba(22, 157, 211, 0.42); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(22,157,211,0.14), 0 0 18px rgba(22,157,211,0.08); }
.security-pack { border-color: rgba(153, 25, 135, 0.50); box-shadow: var(--shadow-soft), 0 0 0 1px rgba(153,25,135,0.14), 0 0 18px rgba(153,25,135,0.08); }

.extra-package-top {
  min-height: 98px;
  padding: 18px 18px 14px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: #ffffff;
}

.sms-pack .extra-package-top { background: linear-gradient(180deg, #169dd3, #117ea9); }
.reels-pack .extra-package-top { background: linear-gradient(180deg, #ff9839, #ff7f00); }
.mail-pack .extra-package-top { background: linear-gradient(180deg, #283748, #121a24); }
.lang-pack .extra-package-top { background: linear-gradient(180deg, #ffa653, #ff7f00); }
.app-pack .extra-package-top { background: linear-gradient(180deg, #b43aa6, #991987); }
.b2b-pack .extra-package-top { background: linear-gradient(180deg, #b43aa6, #991987); }
.push-pack .extra-package-top { background: linear-gradient(180deg, #4ab1dd, #169dd3); }
.security-pack .extra-package-top { background: linear-gradient(180deg, #b33aa5, #991987); }

.extra-package-top h3 {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.extra-package-price {
  margin-top: 10px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  animation: pricePulse 1.8s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.extra-package-body {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.extra-package-meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6f8091;
}

.extra-package-apply {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #16202b;
}

.mobile-compare-cards {
  display: none;
}

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(11, 18, 27, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-overlay.active {
  display: flex;
  animation: modalFade 0.22s ease;
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  position: relative;
  width: min(100%, 760px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 26, 36, 0.08);
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(10, 18, 28, 0.18);
  padding: 18px 18px 16px;
}

.main-form-box { max-width: 760px; }
.extra-form-box { max-width: 620px; }

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: #f2f6fb;
  color: #121a24;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.modal-close:hover {
  transform: scale(1.06);
  background: #e7eef6;
}

.modal-head {
  padding-right: 46px;
  margin-bottom: 14px;
}

.modal-head h3 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111111;
}

.modal-head p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #5d6c7c;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
  color: #18222d;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(18, 26, 36, 0.10);
  border-radius: 14px;
  background: #ffffff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: #121a24;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-field textarea {
  min-height: 78px;
  padding: 12px 14px;
  resize: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(22, 157, 211, 0.40);
  box-shadow: 0 0 0 4px rgba(22, 157, 211, 0.08);
}

.form-warning {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid rgba(255, 191, 0, 0.22);
  color: #7a5d00;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.submit-request-btn,
.success-close-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #35baf0, #169dd3);
  box-shadow: 0 16px 28px rgba(22, 157, 211, 0.22);
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.submit-request-btn:hover,
.success-close-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.form-success-box {
  display: none;
  text-align: center;
  padding: 22px 6px 6px;
}

.form-success-box.active {
  display: block;
}

.form-success-box h4 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111111;
}

.form-success-box p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6877;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-hero { min-height: auto; padding-bottom: 24px; }
  .hosting-highlight-grid,
  .mailserver-highlight-grid { grid-template-columns: 1fr; }
  .extra-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .top-floating-proof {
    left: 12px;
    top: 8px;
    width: 210px;
    height: 28px;
  }

  .proof-item { font-size: 15px; }

  .top-menu {
    height: auto;
    min-height: 64px;
    padding: 10px 0;
  }

  .top-menu-nav {
    gap: 10px 12px;
    justify-content: center;
  }

  .top-menu-nav a { font-size: 13px; }

  .pricing-hero,
  .compare-page,
  .extra-packages-page {
    padding-top: 96px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-logo-wrap,
  .hero-slogan-wrap {
    justify-content: center;
    padding: 0;
  }

  .hero-logo { width: min(100%, 340px); }

  .slogan-window { max-width: 760px; height: 64px; }

  .slogan-item {
    justify-content: center;
    text-align: center;
    font-size: 24px;
  }

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

  .compare-head {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-title { text-align: left; }

  .world-mail-stage { width: 100%; }

  .modal-box { width: min(100%, 700px); }
}

@media (max-width: 760px) {
  .top-floating-proof {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    width: 210px;
    height: 24px;
  }

  .proof-item {
    justify-content: center;
    font-size: 13px;
  }

  .pricing-hero,
  .compare-page,
  .extra-packages-page {
    width: min(var(--container), calc(100% - 16px));
    padding-top: 102px;
    padding-bottom: 20px;
  }

  .top-menu-nav {
    gap: 8px 10px;
    padding-top: 18px;
  }

  .top-menu-nav a { font-size: 11px; }

  .hero-top {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-logo-wrap { min-height: 92px; }
  .hero-logo { width: min(100%, 280px); }
  .hero-slogan-wrap { min-height: 76px; }

  .slogan-window {
    max-width: 100%;
    height: 58px;
  }

  .slogan-item {
    justify-content: center;
    text-align: center;
    font-size: 20px;
    line-height: 1.1;
  }

  .plans-grid,
  .extra-packages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-card {
    min-height: auto;
    border-radius: 20px;
  }

  .plan-top {
    min-height: auto;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 10px 10px 9px;
  }

  .plan-top h2 { font-size: 18px; }
  .plan-price { font-size: 16px; }
  .plan-price span { font-size: 11px; }

  .plan-body {
    min-height: auto;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 12px 12px 14px;
  }

  .plan-list { gap: 5px; }

  .plan-list li {
    font-size: 11px;
    line-height: 1.18;
    padding-left: 14px;
  }

  .gift-badge {
    font-size: 10px;
    min-height: 28px;
    padding: 5px 9px;
  }

  .compare-link {
    font-size: 20px;
    text-align: center;
  }

  .special-badge {
    position: relative;
    right: auto;
    top: auto;
    margin-left: 6px;
    margin-top: 3px;
    display: inline-flex;
    font-size: 9px;
    min-height: 22px;
    padding: 3px 7px;
  }

  .special-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
  }

  .feature-info-card,
  .hosting-text-card,
  .mailserver-text-card {
    padding: 20px;
  }

  .feature-title { font-size: 22px; }

  .feature-info-card p,
  .hosting-text-card p,
  .mailserver-text-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hosting-visual-card,
  .mailserver-visual-card,
  .hosting-text-card,
  .mailserver-text-card,
  .extra-package-card {
    border-radius: 22px;
  }

  .hosting-visual-card,
  .mailserver-visual-card {
    min-height: 320px;
    padding: 18px;
  }

  .server-core {
    width: 136px;
    height: 136px;
  }

  .server-core-top {
    left: 22px;
    width: 92px;
    height: 28px;
  }

  .server-core-front {
    width: 96px;
    height: 98px;
  }

  .server-core-side {
    width: 44px;
    height: 98px;
  }

  .server-node {
    min-width: 68px;
    min-height: 36px;
    font-size: 11px;
  }

  .world-mail-stage {
    aspect-ratio: 1 / 1.02;
    border-radius: 22px;
  }

  .mail-travel-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .lock-stage {
    width: 82px;
    height: 108px;
  }

  .lock-body {
    width: 66px;
    height: 54px;
    border-radius: 16px;
  }

  .lock-shackle {
    width: 40px;
    height: 36px;
    top: 20px;
  }

  .security-copy {
    width: min(74%, 220px);
    top: calc(50% + 78px);
  }

  .security-copy-window { height: 30px; }

  .security-copy-item { font-size: 15px; }

  .extra-badge {
    font-size: 10px;
    min-height: 28px;
    padding: 5px 10px;
  }

  .extra-package-top {
    min-height: 90px;
    padding: 16px 16px 12px;
  }

  .extra-package-top h3 { font-size: 20px; }
  .extra-package-price { font-size: 24px; }

  .extra-package-body {
    padding: 14px 16px 16px;
  }

  .extra-package-apply { font-size: 15px; }

  .buy-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .modal-overlay { padding: 12px; }

  .modal-box {
    width: 100%;
    border-radius: 22px;
    padding: 16px 14px 14px;
  }

  .modal-head { margin-bottom: 12px; }
  .modal-head h3 { font-size: 24px; }
  .modal-head p { font-size: 13px; }

  .modal-form-grid,
  .extra-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 42px;
    font-size: 14px;
  }

  .form-field textarea {
    min-height: 68px;
  }

  .form-warning {
    min-height: 40px;
    font-size: 12px;
    padding: 10px 12px;
  }

  .submit-request-btn,
  .success-close-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .compare-table-wrap { display: none; }

  .mobile-compare-cards {
    display: grid;
    gap: 14px;
    margin-top: 10px;
  }

  .compare-mobile-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(18, 26, 36, 0.08);
    overflow: hidden;
  }

  .compare-mobile-card.small-card { border-color: rgba(255, 127, 0, 0.35); }
  .compare-mobile-card.medium-card { border-color: rgba(102, 255, 0, 0.35); }
  .compare-mobile-card.large-card { border-color: rgba(22, 157, 211, 0.35); }
  .compare-mobile-card.xlarge-card { border-color: rgba(153, 25, 135, 0.35); }

  .compare-mobile-head {
    padding: 14px 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .compare-mobile-head.small-head { background: var(--small); }
  .compare-mobile-head.medium-head { background: var(--medium); color: #121a24; }
  .compare-mobile-head.large-head { background: var(--large); }
  .compare-mobile-head.xlarge-head { background: var(--xlarge); }

  .compare-mobile-body {
    padding: 12px 14px 14px;
    display: grid;
    gap: 10px;
  }

  .compare-mobile-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(18, 26, 36, 0.08);
  }

  .compare-mobile-row:last-child {
    border-bottom: none;
  }

  .compare-mobile-label {
    font-size: 13px;
    font-weight: 700;
    color: #16202b;
    line-height: 1.25;
  }

  .compare-mobile-value {
    text-align: right;
    font-size: 14px;
    font-weight: 800;
    color: #16202b;
  }

  .compare-mobile-value.yes {
    color: var(--green-ok);
    font-size: 20px;
  }

  .compare-mobile-value.no {
    color: var(--red-no);
    font-size: 20px;
  }

  .compare-mobile-addon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
  }

  .compare-mobile-addon .addon-x {
    margin-right: 0;
    font-size: 18px;
  }

  .compare-mobile-addon .addon-pill {
    font-size: 11px;
    min-height: 24px;
    padding: 3px 8px;
  }

  .compare-mobile-addon .base-text {
    margin-right: 0;
    font-size: 13px;
  }
}

/* SUCCESS UPSELL */
.form-success-box {
  display: none;
  text-align: left;
  padding: 22px 6px 6px;
}

.form-success-box.active {
  display: block;
}

.form-success-box h4 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111111;
  text-align: center;
}

.form-success-box p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6877;
  margin-bottom: 16px;
  text-align: center;
}

.success-reco-title {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 900;
  color: #16202b;
  text-align: center;
}

.success-reco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.success-reco-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(22, 157, 211, 0.12);
}

.success-reco-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-reco-name {
  font-size: 14px;
  font-weight: 900;
  color: #111111;
  line-height: 1.2;
}

.success-reco-meta {
  font-size: 12px;
  font-weight: 700;
  color: #5f7082;
  line-height: 1.3;
}

.success-reco-rate {
  flex-shrink: 0;
  min-width: 64px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #35baf0, #169dd3);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(22, 157, 211, 0.22);
}

.success-close-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #35baf0, #169dd3);
  box-shadow: 0 16px 28px rgba(22, 157, 211, 0.22);
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.success-close-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

@media (max-width: 760px) {
  .success-reco-card {
    padding: 11px 12px;
    gap: 8px;
  }

  .success-reco-name {
    font-size: 13px;
  }

  .success-reco-meta {
    font-size: 11px;
  }

  .success-reco-rate {
    min-width: 58px;
    min-height: 30px;
    font-size: 12px;
    padding: 5px 8px;
  }
}

/* LIVE PROOF COUNTERS */
.plan-live-proof,
.extra-live-proof {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #687788;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.plan-live-proof strong,
.extra-live-proof strong {
  color: #169dd3;
  font-weight: 900;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29c05e;
  box-shadow: 0 0 0 rgba(41, 192, 94, 0.35);
  animation: proofPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes proofPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(41, 192, 94, 0.22);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(41, 192, 94, 0);
  }
}

/* MINI SOCIAL TOAST */
.social-proof-toast-wrap {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 2200;
  pointer-events: none;
}

.social-proof-toast {
  min-width: 280px;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 26, 36, 0.08);
  box-shadow: 0 18px 40px rgba(10, 18, 28, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.social-proof-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-proof-toast-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.social-proof-badge {
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #35baf0, #169dd3);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.social-proof-title {
  font-size: 13px;
  font-weight: 900;
  color: #101820;
  line-height: 1.2;
}

.social-proof-text {
  font-size: 13px;
  line-height: 1.45;
  color: #58697a;
}

.social-proof-text strong {
  color: #111111;
}

@media (max-width: 760px) {
  .plan-live-proof,
  .extra-live-proof {
    font-size: 11px;
  }

  .social-proof-toast-wrap {
    right: 10px;
    left: 10px;
    bottom: 12px;
  }

  .social-proof-toast {
    min-width: 0;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .social-proof-title,
  .social-proof-text {
    font-size: 12px;
  }
}

/* TURKIYE'DE TEK FLAG */
.turkey-unique-card {
  position: relative;
  overflow: visible;
}

.turkey-unique-flag {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 8;
  min-height: 34px;
  padding: 7px 14px 7px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff4d4d, #d61f1f);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.01em;
  border-radius: 10px 10px 2px 10px;
  box-shadow:
    0 10px 22px rgba(214, 31, 31, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: rotate(3deg);
}

.turkey-unique-flag::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 12px solid #9f1111;
  border-top: 10px solid transparent;
  filter: brightness(0.95);
}

@media (max-width: 760px) {
  .turkey-unique-flag {
    top: -8px;
    right: -6px;
    min-height: 30px;
    padding: 6px 12px 6px 13px;
    font-size: 10px;
  }

  .turkey-unique-flag::after {
    bottom: -8px;
    border-left: 10px solid #9f1111;
    border-top: 8px solid transparent;
  }
}

/* PLAN VE EK PAKET FİYAT ALANINDAKİ İNCELEME YAZILARINI PREMIUM GÖRÜNÜMLÜ AÇIK TON YAP */
.plan-top .plan-live-proof,
.extra-package-top .extra-live-proof {
  color: rgba(255, 255, 255, 0.92) !important;
}

.plan-top .plan-live-proof strong,
.extra-package-top .extra-live-proof strong {
  color: #fff3a6 !important;
  text-shadow: 0 0 10px rgba(255, 243, 166, 0.28);
}

.plan-top .proof-dot,
.extra-package-top .proof-dot {
  background: #fff3a6 !important;
  box-shadow:
    0 0 0 0 rgba(255, 243, 166, 0.28),
    0 0 8px rgba(255, 243, 166, 0.32);
}

.plan-top .proof-dot,
.extra-package-top .proof-dot {
  animation: premiumProofPulse 1.8s ease-in-out infinite !important;
}

@keyframes premiumProofPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 243, 166, 0.22),
      0 0 8px rgba(255, 243, 166, 0.26);
  }
  50% {
    transform: scale(1.15);
    box-shadow:
      0 0 0 8px rgba(255, 243, 166, 0),
      0 0 14px rgba(255, 243, 166, 0.34);
  }
}

/* MAIL SERVER PACKAGES PAGE */
.mailserver-packages-page {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  min-height: 100vh;
  padding-top: calc(var(--menu-height) + 18px);
  padding-bottom: 40px;
  background: #ffffff;
}

.mailserver-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.mail-server-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: #ffffff;
  border-radius: 22px;
  border: 3px solid transparent;
  overflow: visible;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(48px) scale(0.98);
}

.mail-server-card.in-view {
  animation: dominoIn 2s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}

.mail-domino-1.in-view { animation-delay: 0.12s; }
.mail-domino-2.in-view { animation-delay: 0.36s; }
.mail-domino-3.in-view { animation-delay: 0.60s; }
.mail-domino-4.in-view { animation-delay: 0.84s; }

.ms-pack-100 {
  border-color: rgba(22, 157, 211, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(22,157,211,0.14), 0 0 18px rgba(22,157,211,0.08);
}

.ms-pack-250 {
  border-color: rgba(255, 127, 0, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,127,0,0.14), 0 0 18px rgba(255,127,0,0.08);
}

.ms-pack-500 {
  border-color: rgba(153, 25, 135, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(153,25,135,0.14), 0 0 18px rgba(153,25,135,0.08);
}

.ms-pack-1000 {
  border-color: rgba(18, 26, 36, 0.24);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(18,26,36,0.08), 0 0 18px rgba(18,26,36,0.04);
}

.ms-pack-100 .extra-package-top { background: linear-gradient(180deg, #169dd3, #117ea9); }
.ms-pack-250 .extra-package-top { background: linear-gradient(180deg, #ff9839, #ff7f00); }
.ms-pack-500 .extra-package-top { background: linear-gradient(180deg, #b43aa6, #991987); }
.ms-pack-1000 .extra-package-top { background: linear-gradient(180deg, #283748, #121a24); }

.mail-server-body {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}

.mail-server-list {
  list-style: none;
  display: grid;
  gap: 7px;
}

.mail-server-list li {
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #16202b;
  padding-left: 14px;
}

.mail-server-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
}

.ms-pack-100 .mail-server-list li::before { color: #169dd3; background: #169dd3; }
.ms-pack-250 .mail-server-list li::before { color: #ff7f00; background: #ff7f00; }
.ms-pack-500 .mail-server-list li::before { color: #991987; background: #991987; }
.ms-pack-1000 .mail-server-list li::before { color: #121a24; background: #121a24; }

.ms-pack-100 .extra-package-price span,
.ms-pack-250 .extra-package-price span,
.ms-pack-500 .extra-package-price span,
.ms-pack-1000 .extra-package-price span {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.94;
}

@media (max-width: 1280px) {
  .mailserver-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mailserver-packages-page {
    width: min(var(--container), calc(100% - 16px));
    padding-top: 102px;
    padding-bottom: 20px;
  }

  .mailserver-packages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mail-server-card {
    min-height: auto;
    border-radius: 22px;
  }

  .mail-server-body {
    padding: 14px 16px 16px;
  }

  .mail-server-list li {
    font-size: 12px;
    line-height: 1.35;
  }
}

/* HOSTING + MAIL SERVER EXTRA CARDS */
.extra-domino-9.in-view { animation-delay: 2.04s; }
.extra-domino-10.in-view { animation-delay: 2.28s; }
.extra-domino-11.in-view { animation-delay: 2.52s; }

.backup-pack {
  border-color: rgba(22, 157, 211, 0.42);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(22,157,211,0.14), 0 0 18px rgba(22,157,211,0.08);
}

.ssl-pack {
  border-color: rgba(18, 26, 36, 0.20);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(18,26,36,0.08), 0 0 18px rgba(18,26,36,0.04);
}

.speed-pack {
  border-color: rgba(255, 127, 0, 0.42);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,127,0,0.14), 0 0 18px rgba(255,127,0,0.08);
}

.backup-pack .extra-package-top { background: linear-gradient(180deg, #4ab1dd, #169dd3); }
.ssl-pack .extra-package-top { background: linear-gradient(180deg, #283748, #121a24); }
.speed-pack .extra-package-top { background: linear-gradient(180deg, #ff9839, #ff7f00); }

/* HOSTING PACKAGES PAGE */
.hosting-packages-page {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  min-height: 100vh;
  padding-top: calc(var(--menu-height) + 18px);
  padding-bottom: 40px;
  background: #ffffff;
}

.hosting-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hosting-server-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  background: #ffffff;
  border-radius: 22px;
  border: 3px solid transparent;
  overflow: visible;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(48px) scale(0.98);
}

.hosting-server-card.in-view {
  animation: dominoIn 2s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}

.hosting-domino-1.in-view { animation-delay: 0.12s; }
.hosting-domino-2.in-view { animation-delay: 0.36s; }
.hosting-domino-3.in-view { animation-delay: 0.60s; }

.hs-pack-starter {
  border-color: rgba(22, 157, 211, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(22,157,211,0.14), 0 0 18px rgba(22,157,211,0.08);
}

.hs-pack-business {
  border-color: rgba(255, 127, 0, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,127,0,0.14), 0 0 18px rgba(255,127,0,0.08);
}

.hs-pack-professional {
  border-color: rgba(153, 25, 135, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(153,25,135,0.14), 0 0 18px rgba(153,25,135,0.08);
}

.hs-pack-starter .extra-package-top { background: linear-gradient(180deg, #169dd3, #117ea9); }
.hs-pack-business .extra-package-top { background: linear-gradient(180deg, #ff9839, #ff7f00); }
.hs-pack-professional .extra-package-top { background: linear-gradient(180deg, #b43aa6, #991987); }

.hosting-server-body {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}

.hosting-server-list {
  list-style: none;
  display: grid;
  gap: 7px;
}

.hosting-server-list li {
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #16202b;
  padding-left: 14px;
}

.hosting-server-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
}

.hs-pack-starter .hosting-server-list li::before { color: #169dd3; background: #169dd3; }
.hs-pack-business .hosting-server-list li::before { color: #ff7f00; background: #ff7f00; }
.hs-pack-professional .hosting-server-list li::before { color: #991987; background: #991987; }

.hs-pack-starter .extra-package-price span,
.hs-pack-business .extra-package-price span,
.hs-pack-professional .extra-package-price span {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.94;
}

/* MAIL SERVER PACKAGES PAGE */
.mailserver-packages-page {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  min-height: 100vh;
  padding-top: calc(var(--menu-height) + 18px);
  padding-bottom: 40px;
  background: #ffffff;
}

.mailserver-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.mail-server-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: #ffffff;
  border-radius: 22px;
  border: 3px solid transparent;
  overflow: visible;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(48px) scale(0.98);
}

.mail-server-card.in-view {
  animation: dominoIn 2s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}

.mail-domino-1.in-view { animation-delay: 0.12s; }
.mail-domino-2.in-view { animation-delay: 0.36s; }
.mail-domino-3.in-view { animation-delay: 0.60s; }
.mail-domino-4.in-view { animation-delay: 0.84s; }

.ms-pack-100 {
  border-color: rgba(22, 157, 211, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(22,157,211,0.14), 0 0 18px rgba(22,157,211,0.08);
}

.ms-pack-250 {
  border-color: rgba(255, 127, 0, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,127,0,0.14), 0 0 18px rgba(255,127,0,0.08);
}

.ms-pack-500 {
  border-color: rgba(153, 25, 135, 0.50);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(153,25,135,0.14), 0 0 18px rgba(153,25,135,0.08);
}

.ms-pack-1000 {
  border-color: rgba(18, 26, 36, 0.24);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(18,26,36,0.08), 0 0 18px rgba(18,26,36,0.04);
}

.ms-pack-100 .extra-package-top { background: linear-gradient(180deg, #169dd3, #117ea9); }
.ms-pack-250 .extra-package-top { background: linear-gradient(180deg, #ff9839, #ff7f00); }
.ms-pack-500 .extra-package-top { background: linear-gradient(180deg, #b43aa6, #991987); }
.ms-pack-1000 .extra-package-top { background: linear-gradient(180deg, #283748, #121a24); }

.mail-server-body {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}

.mail-server-list {
  list-style: none;
  display: grid;
  gap: 7px;
}

.mail-server-list li {
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #16202b;
  padding-left: 14px;
}

.mail-server-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
}

.ms-pack-100 .mail-server-list li::before { color: #169dd3; background: #169dd3; }
.ms-pack-250 .mail-server-list li::before { color: #ff7f00; background: #ff7f00; }
.ms-pack-500 .mail-server-list li::before { color: #991987; background: #991987; }
.ms-pack-1000 .mail-server-list li::before { color: #121a24; background: #121a24; }

.ms-pack-100 .extra-package-price span,
.ms-pack-250 .extra-package-price span,
.ms-pack-500 .extra-package-price span,
.ms-pack-1000 .extra-package-price span {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.94;
}

@media (max-width: 1280px) {
  .hosting-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .hosting-packages-page,
  .mailserver-packages-page {
    width: min(var(--container), calc(100% - 16px));
    padding-top: 102px;
    padding-bottom: 20px;
  }

  .hosting-packages-grid,
  .mailserver-packages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hosting-server-card,
  .mail-server-card {
    min-height: auto;
    border-radius: 22px;
  }

  .hosting-server-body,
  .mail-server-body {
    padding: 14px 16px 16px;
  }

  .hosting-server-list li,
  .mail-server-list li {
    font-size: 12px;
    line-height: 1.35;
  }
}