/* Extracted from plesk.php style block 1 */
:root {
  --color-primary:         #2563EB;
  --color-primary-light:   #3B82F6;
  --color-primary-dark:    #1D4ED8;
  --color-primary-darker:  #1E3A8A;
  --color-secondary:       #60A5FA;
  --color-secondary-light: #93C5FD;
  --color-secondary-dark:  #1E3A8A;
  --color-accent:          #06B6D4;
  --color-accent-light:    #A5F3FC;
  --color-accent-dark:     #0891B2;

  --color-primary-rgb:         37,  99, 235;
  --color-primary-light-rgb:   59, 130, 246;
  --color-primary-dark-rgb:    29,  78, 216;
  --color-primary-darker-rgb:  30,  58, 138;
  --color-secondary-rgb:       96, 165, 250;
  --color-secondary-dark-rgb:  30,  58, 138;
  --color-accent-rgb:           6, 182, 212;

  --border-primary:  rgba(37,99,235,.17);
  --border-secondary:rgba(37,99,235,.09);

  --gradient-horizontal: linear-gradient(90deg, #1D4ED8, #2563EB, #06B6D4);
  --gradient-primary:    linear-gradient(135deg, #0B1328, #1E3A8A, #3B82F6);
  --gradient-card-header:linear-gradient(145deg, #0B1328, #1E3A8A, #2563EB);
  --gradient-overlay:    linear-gradient(135deg,
                           rgba(11,19,40,.94),
                           rgba(0,0,0,.84),
                           rgba(37,99,235,.28));

  --shadow-md:   0 10px 20px rgba(37,99,235,.22);
  --shadow-lg:   0 15px 30px rgba(37,99,235,.30);
  --shadow-xl:   0 20px 40px rgba(37,99,235,.14);
  --shadow-glow: 0 0 30px  rgba(37,99,235,.45);
  --shadow-card: 0 30px 50px -15px rgba(37,99,235,.18);
}


/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.plk-hero {
  position: relative; overflow: hidden;
  background: #080E1F;
  min-height: 640px;
  display: flex; align-items: center;
}

.plk-hero__gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%,
    rgba(37,99,235,.22) 0%, transparent 65%),
    linear-gradient(160deg, #080E1F 0%, #0F1D40 55%, #1E3A8A 100%);
}

/* Diagonal stripe texture */
.plk-hero__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(37,99,235,.04) 28px,
    rgba(37,99,235,.04) 29px
  );
}

/* Large decorative "P" watermark */
.plk-hero__watermark {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 520px; font-weight: 900;
  line-height: 1;
  color: rgba(37,99,235,.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -30px;
}

.plk-hero .container { position: relative; z-index: 2; padding: 100px 20px 90px; }

.plk-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px;
  background: rgba(37,99,235,.14);
  border: 1px solid rgba(37,99,235,.38);
  border-radius: 50px;
  margin-bottom: 28px;

}

.plk-hero__eyebrow img { height: 20px; width: auto; }

.plk-hero__eyebrow span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: #60A5FA;
}

.plk-hero__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900; line-height: 1.05;
  color: #fff; margin: 0 0 24px;
  letter-spacing: -2.5px;
}

.plk-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #3B82F6, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plk-hero__sub {
  font-size: 17px; color: rgba(255,255,255,.68);
  line-height: 1.78; max-width: 560px; margin-bottom: 40px;
  font-weight: 300;
}

.plk-hero__sub strong { color: #fff; font-weight: 600; }

.plk-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Buttons */
.plk-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 10px; font-weight: 700;
  font-size: 15px; text-decoration: none;
  transition: all .28s ease; border: none;
  font-family: 'Outfit', sans-serif;
}

.plk-btn--primary {
  background: linear-gradient(90deg, #1D4ED8, #2563EB);
  color: #fff !important;
  padding: 14px 32px;
  box-shadow: 0 8px 24px rgba(37,99,235,.40);
}

.plk-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,99,235,.55);
  color: #fff !important;
}

.plk-btn--outline {
  background: transparent; color: rgba(255,255,255,.78) !important;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,.25);
}

.plk-btn--outline:hover {
  border-color: rgba(59,130,246,.70);
  color: #3B82F6 !important;
  background: rgba(37,99,235,.06);
}

.plk-btn--light {
  background: #fff; color: #1E3A8A !important;
  padding: 14px 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.plk-btn--light:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.20);
  color: #1E3A8A !important;
}

/* Trust strip */
.plk-trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 52px; flex-wrap: wrap;
}

.plk-trust__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.58); font-weight: 500;
}

.plk-trust__item i { color: #3B82F6; font-size: 13px; }
.plk-trust__sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.16); }

/* ─────────────────────────────────────────
   SECTION HELPERS
   ───────────────────────────────────────── */
.plk-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 8px;
  color: #2563EB; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 14px;
}

.plk-section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900; color: #0B1328;
  letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1.15;
}

.plk-section-title em { font-style: normal; color: #2563EB; }

.plk-section-sub {
  font-size: 16px; color: #556080;
  line-height: 1.72; max-width: 580px;
  margin: 0 auto 60px; font-weight: 300;
}

/* ─────────────────────────────────────────
   PRICING TABS
   ───────────────────────────────────────── */
.plk-pricing {
  background: #F0F4FF;
  padding: 96px 0 80px;
}

.plk-tabs {
  display: inline-flex;
  background: rgba(37,99,235,.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 52px;
  border: 1px solid rgba(37,99,235,.14);
}

.plk-tab {
  padding: 10px 32px;
  border-radius: 9px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  color: #556080;
  transition: all .25s ease;
  border: none; background: none;
  font-family: 'Outfit', sans-serif;
}

.plk-tab.active {
  background: #2563EB;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.plk-plan-set { display: none; }
.plk-plan-set.active { display: grid; }

/* Plans grid - FIXED */
.plk-plans {
  display: grid;  /* Added this line */
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .plk-plans { 
    grid-template-columns: 1fr; 
    max-width: 480px; 
  }
}

/* Plan card */
.plk-plan {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(37,99,235,.12);
  transition: all .35s ease;
  position: relative;
  display: flex; flex-direction: column;
}

.plk-plan::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1D4ED8, #2563EB, #06B6D4);
}

.plk-plan:hover {
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 24px 56px rgba(37,99,235,.14);
  transform: translateY(-6px);
}

.plk-plan.featured {
  border-color: #2563EB;
  box-shadow: 0 20px 48px rgba(37,99,235,.18);
}

.plk-plan.featured::before {
  height: 4px;
  background: linear-gradient(90deg, #1E3A8A, #2563EB, #06B6D4);
}

.plk-plan__popular {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(90deg, #1D4ED8, #2563EB);
  color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 6px;
}

.plk-plan__head { padding: 32px 28px 24px; }

.plk-plan__edition {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #2563EB; margin-bottom: 8px;
}

.plk-plan__name {
  font-size: 22px; font-weight: 800;
  color: #0B1328; margin-bottom: 6px;
  line-height: 1.2;
}

.plk-plan__tagline {
  font-size: 13px; color: #7a8aaa;
  font-weight: 300; margin-bottom: 24px;
}

.plk-plan__price {
  display: flex; align-items: flex-start; gap: 2px;
  margin-bottom: 6px;
}

.plk-plan__currency {
  font-size: 20px; font-weight: 800;
  color: #2563EB; margin-top: 8px;
}

.plk-plan__amount {
  font-size: 56px; font-weight: 900;
  color: #2563EB; line-height: 1;
  letter-spacing: -3px;
}

.plk-plan__period {
  font-size: 13px; color: #9aaabb;
  margin-top: auto; padding-bottom: 4px;
  align-self: flex-end;
}

.plk-plan__server-type {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(37,99,235,.08);
  color: #2563EB;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 6px;
  letter-spacing: .5px;
  margin-bottom: 24px;
}

.plk-plan__divider {
  height: 1px; background: rgba(37,99,235,.08);
  margin: 0 28px 24px;
}

.plk-plan__features {
  padding: 0 28px;
  list-style: none; margin: 0 0 28px;
  flex: 1;
}

.plk-plan__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #3d4f6b; font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid rgba(37,99,235,.06);
}

.plk-plan__features li:last-child { border-bottom: none; }

.plk-plan__features li i {
  color: #2563EB; margin-top: 2px; font-size: 13px; flex-shrink: 0;
}

.plk-plan__features li strong { color: #0B1328; font-weight: 700; }

.plk-plan__footer { padding: 0 28px 28px; }

.plk-plan__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #1D4ED8, #2563EB);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; width: 100%;
  box-shadow: 0 8px 20px rgba(37,99,235,.28);
  transition: all .3s ease;
}

.plk-plan__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,99,235,.44);
  color: #fff !important;
}

.plk-plan__cta--ghost {
  background: transparent;
  color: #2563EB !important;
  border: 2px solid #2563EB;
  box-shadow: none;
}

.plk-plan__cta--ghost:hover {
  background: #2563EB;
  color: #fff !important;
}

/* ─────────────────────────────────────────
   COMPARE TABLE
   ───────────────────────────────────────── */
.plk-compare {
  background: #fff;
  padding: 90px 0;
}

.plk-compare__table-wrap {
  overflow-x: auto;
  margin-top: 52px;
  border-radius: 18px;
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 20px 48px rgba(37,99,235,.08);
}

.plk-compare__table {
  width: 100%; border-collapse: collapse;
  min-width: 640px;
}

.plk-compare__table thead tr {
  background: linear-gradient(145deg, #0B1328, #1E3A8A, #2563EB);
}

.plk-compare__table thead th {
  padding: 20px 24px;
  font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,.90);
  text-align: center;
  letter-spacing: .3px;
}

.plk-compare__table thead th:first-child { text-align: left; color: rgba(255,255,255,.65); }
.plk-compare__table thead th.highlight { color: #93C5FD; }

.plk-compare__table tbody tr {
  border-bottom: 1px solid rgba(37,99,235,.07);
  transition: background .2s;
}

.plk-compare__table tbody tr:last-child { border-bottom: none; }
.plk-compare__table tbody tr:hover { background: rgba(37,99,235,.03); }

.plk-compare__table tbody td {
  padding: 15px 24px;
  font-size: 14px; color: #3d4f6b;
  text-align: center;
}

.plk-compare__table tbody td:first-child {
  text-align: left; font-weight: 600; color: #0B1328;
}

.plk-compare__table tbody td.highlight {
  background: rgba(37,99,235,.04);
}

.plk-compare__table i.fa-check { color: #2563EB; font-size: 14px; }
.plk-compare__table i.fa-times { color: #c0ccdd; font-size: 13px; }

.plk-compare__table tfoot td {
  padding: 20px 24px;
  text-align: center;
  background: #F0F4FF;
}

/* ─────────────────────────────────────────
   WHY PLESK
   ───────────────────────────────────────── */
.plk-why {
  background: linear-gradient(160deg, #080E1F 0%, #0F1D40 50%, #1E3A8A 100%);
  padding: 90px 0;
  position: relative; overflow: hidden;
}

.plk-why::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent, transparent 28px,
    rgba(37,99,235,.05) 28px, rgba(37,99,235,.05) 29px
  );
}

.plk-why .container { position: relative; z-index: 1; }

.plk-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

@media (max-width: 900px) { .plk-why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .plk-why__grid { grid-template-columns: 1fr; } }

.plk-why__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(37,99,235,.22);
  border-radius: 16px; padding: 30px 24px;
  transition: all .3s ease;
}

.plk-why__card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(59,130,246,.50);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(37,99,235,.25);
}

.plk-why__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(37,99,235,.35);
}

.plk-why__icon i { color: #fff; font-size: 19px; }

.plk-why__card h3 {
  font-size: 17px; font-weight: 800;
  color: #fff; margin-bottom: 10px;
}

.plk-why__card p {
  font-size: 13px; color: rgba(255,255,255,.58);
  line-height: 1.72; margin: 0; font-weight: 300;
}

/* ─────────────────────────────────────────
   MIGRATION
   ───────────────────────────────────────── */
.plk-migration {
  background: #F0F4FF;
  padding: 90px 0;
}

.plk-migration__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: center;
}

@media (max-width: 900px) { .plk-migration__layout { grid-template-columns: 1fr; gap: 40px; } }

.plk-migration__content h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900; color: #0B1328;
  letter-spacing: -1.5px; margin-bottom: 18px; line-height: 1.15;
}

.plk-migration__content h2 em { font-style: normal; color: #2563EB; }

.plk-migration__content p {
  font-size: 15px; color: #556080; line-height: 1.75;
  margin-bottom: 14px; font-weight: 300;
}

.plk-migration__list {
  list-style: none; padding: 0; margin: 28px 0 36px;
}

.plk-migration__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #3d4f6b;
  padding: 10px 0;
  border-bottom: 1px solid rgba(37,99,235,.09);
}

.plk-migration__list li:last-child { border-bottom: none; }

.plk-migration__list li i {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(37,99,235,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #2563EB; font-size: 11px; margin-top: 1px;
}

.plk-migration__list li span strong { color: #0B1328; font-weight: 700; }

/* Stat boxes */
.plk-migration__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.plk-stat-box {
  background: #fff;
  border-radius: 14px; padding: 24px 20px;
  text-align: center;
  border: 1.5px solid rgba(37,99,235,.14);
  box-shadow: 0 8px 24px rgba(37,99,235,.07);
  transition: all .3s ease;
}

.plk-stat-box:hover {
  border-color: rgba(37,99,235,.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,99,235,.12);
}

.plk-stat-box__num {
  font-size: 40px; font-weight: 900;
  color: #2563EB; line-height: 1;
  letter-spacing: -2px; margin-bottom: 6px;
}

.plk-stat-box__num span { font-size: 22px; }

.plk-stat-box__label {
  font-size: 13px; color: #6a7a99; font-weight: 500;
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.plk-faq {
  background: #fff;
  padding: 90px 0;
}

.plk-faq__wrap {
  max-width: 840px; margin: 52px auto 0;
}

.plk-faq__item {
  border-bottom: 1px solid rgba(37,99,235,.10);
  padding: 22px 0;
}

.plk-faq__item:first-child { border-top: 1px solid rgba(37,99,235,.10); }

.plk-faq__q {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  cursor: pointer;
}

.plk-faq__q h4 {
  font-size: 16px; font-weight: 700;
  color: #0B1328; margin: 0; line-height: 1.45;
}

.plk-faq__icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(37,99,235,.10); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #2563EB; font-size: 13px; margin-top: 2px;
  transition: all .3s ease;
}

.plk-faq__item.open .plk-faq__icon {
  background: #2563EB; color: #fff; transform: rotate(45deg);
}

.plk-faq__a {
  font-size: 14px; color: #556080; line-height: 1.78;
  margin-top: 14px; font-weight: 300; display: none;
}

.plk-faq__item.open .plk-faq__a { display: block; }

/* ─────────────────────────────────────────
   BOTTOM CTA
   ───────────────────────────────────────── */
.plk-cta {
  background: linear-gradient(135deg, #080E1F 0%, #0F1D40 50%, #1E3A8A 100%);
  padding: 96px 0;
  position: relative; overflow: hidden;
}

.plk-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%,
    rgba(37,99,235,.20) 0%, transparent 70%);
}

.plk-cta .container { position: relative; z-index: 1; }

.plk-cta__inner {
  text-align: center;
}

.plk-cta__inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; color: #fff;
  letter-spacing: -2px; margin-bottom: 18px; line-height: 1.1;
}

.plk-cta__inner h2 em { font-style: normal; color: #60A5FA; }

.plk-cta__inner p {
  font-size: 17px; color: rgba(255,255,255,.62);
  font-weight: 300; line-height: 1.72;
  max-width: 560px; margin: 0 auto 40px;
}

.plk-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   DIVIDER
   ───────────────────────────────────────── */
.uh-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
}

.uh-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.25), transparent);
}

.uh-divider-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 20px;
  box-shadow: 0 4px 18px rgba(37,99,235,.38);
  transition: all .3s ease;
}

.uh-divider-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37,99,235,.58);
}

.uh-divider-icon img {
  width: 28px; height: 28px; border-radius: 4px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 768px) {
  .plk-hero__watermark { display: none; }
  .plk-tabs { width: 100%; }
  .plk-tab { flex: 1; text-align: center; padding: 10px 12px; }
  .plk-plan__amount { font-size: 44px; }
}

/* Extracted from plesk.php style block 2 */
/* Plesk-specific button style */
.plk-btn--fill {
    background: #2563EB;
    color: white;
    border: none;
    box-shadow: 0 8px 16px rgba(37,99,235,0.2);
}

.plk-btn--fill:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37,99,235,0.3);
    color: white;
}

/* Ensure compatibility with existing styles */
.greybg2 {
    background-color: #f8fafc;
}
.topbottompadding70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.topbottompadding50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.text42 {
    font-size: 42px;
    line-height: 1.2;
}
.text24 {
    font-size: 24px;
    line-height: 1.4;
}
.text20 {
    font-size: 20px;
    line-height: 1.5;
}
.text50 {
    font-size: 50px;
    line-height: 1.1;
}
.w700 {
    font-weight: 700;
}
.w400 {
    font-weight: 400;
}
:root {
    --uh-text: #1e293b;
    --uh-muted: #64748b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .text42 {
        font-size: 32px;
    }
    .text50 {
        font-size: 36px;
    }
    .text24 {
        font-size: 20px;
    }
}

