/* ── VPS PREMIUM STYLES ──────────────────────────────────────── */

.vps-premium-container {
  padding: 16px 0 20px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

/* Page animations */
@keyframes revealUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInBlur {
  from { opacity: 0; filter: blur(8px); transform: translateY(-20px); }
  to { opacity: 1; filter: blur(0px); transform: translateY(0); }
}

.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.reveal-word-inner {
  display: inline-block;
  animation: revealUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transform: translateY(100%);
  opacity: 0;
}

.animate-fade-in {
  animation: fadeInBlur 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

/* Headline & Subtitle */
.vps-hero-article {
  text-align: center;
  margin: 0 auto 12px;
  max-width: 100%;
}

.vps-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.vps-hero-subtitle {
  font-size: 16px;
  color: #4b5563;
  max-width: 80%;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Billing Switch */
.vpc-billing-wrap-premium {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

.vpc-switch-premium {
  position: relative;
  display: flex;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  padding: 4px;
  border-radius: 12px;
  z-index: 10;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vpc-switch-premium .vpc-sw-btn {
  position: relative;
  z-index: 10;
  background: none;
  border: none;
  height: 44px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.vpc-switch-premium .vpc-sw-btn.vpc-sw-on {
  color: #ffffff;
}

.vpc-switch-premium .vpc-sw-btn:not(.vpc-sw-on):hover {
  color: var(--brand);
}

.vpc-switch-premium .vpc-sw-save {
  background: #fff7ed;
  color: #ea580c;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid #ffedd5;
  transition: all 0.3s;
}

.vpc-switch-premium .vpc-sw-btn.vpc-sw-on .vpc-sw-save {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: transparent;
}

.vpc-switch-premium .vpc-sw-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 44px;
  background: linear-gradient(to top, #f97316, #fb923c, #ea580c);
  border: 3px solid #ea580c;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

/* Grid Layout */
.vpc-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 0 20px;
}

/* Premium Card */
.vpc-card-premium {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vpc-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vpc-card-premium.vpc-pop {
  border: 2px solid #f97316;
  background: #fffbf9;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.08);
}

.vpc-card-premium.vpc-pop:hover {
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.16);
}

.vpc-pop-label-premium {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f97316;
  color: #ffffff;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vpc-top-premium {
  margin-bottom: 14px;
}

.vpc-name-premium {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.vpc-desc-premium {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 10px;
  min-height: 38px;
}

.vpc-price-row-premium {
  display: flex;
  align-items: baseline;
  color: #111827;
}

.vpc-price-currency {
  font-size: 26px;
  font-weight: 600;
  margin-right: 2px;
}

.vpc-num-premium {
  font-size: 36px;
  font-weight: 800;
  transition: opacity 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.vpc-num-premium.vpc-animating {
  opacity: 0;
  transform: translateY(-10px);
}

.vpc-per-premium {
  font-size: 13px;
  color: #6b7280;
  margin-left: 4px;
  font-weight: 500;
}

/* Actions/Buttons */
.vpc-actions-premium {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.vpc-btn-primary {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  box-sizing: border-box;
}

/* Popular Card Button: Orange Gradient */
.vpc-card-premium.vpc-pop .vpc-btn-primary {
  background: linear-gradient(to top, #f97316, #ea580c);
  color: #ffffff;
  border: 1px solid #f97316;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.vpc-card-premium.vpc-pop .vpc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

/* Normal Card Button: Dark Gray Gradient */
.vpc-card-premium:not(.vpc-pop) .vpc-btn-primary {
  background: linear-gradient(to top, #111827, #374151);
  color: #ffffff;
  border: 1px solid #1f2937;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.25);
}

.vpc-card-premium:not(.vpc-pop) .vpc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.35);
}

.vpc-btn-secondary {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
}

.vpc-btn-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

/* Features List */
.vpc-feat-premium {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  flex-grow: 1;
}

.vpc-feat-head-premium {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.vpc-feat-premium ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vpc-feat-premium li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.vpc-card-premium:not(.vpc-pop) .vpc-feat-icon-wrap {
  border-color: #3b82f6;
}

.vpc-card-premium:not(.vpc-pop) .vpc-feat-icon-svg {
  color: #3b82f6;
}

.vpc-card-premium.vpc-pop .vpc-feat-icon-wrap {
  border-color: #f97316;
}

.vpc-card-premium.vpc-pop .vpc-feat-icon-svg {
  color: #f97316;
}

.vpc-feat-icon-wrap {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 0.3s ease;
}

.vpc-feat-icon-svg {
  width: 10px;
  height: 10px;
  transition: color 0.3s ease;
}

.vpc-feat-text {
  line-height: 1.4;
}

/* Page sections structure refinements */
#vps-premium-section {
  scroll-margin-top: 80px;
}

/* Responsiveness overrides for Mobile */
@media (max-width: 768px) {
  .vps-hero-subtitle {
    max-width: 100%;
  }
  .vpc-grid-premium {
    grid-template-columns: 1fr;
  }
}

/* srv-hero: sadece style.css padding (76px) override + h1 küçük boyut */
.srv-hero {
  padding: 24px 5vw 8px !important;
  color: #ffffff !important;
}

.srv-hero h1 {
  font-size: clamp(0.925rem, 2.5vw, 1.5rem) !important;
}

/* ── BOTTOM SECTIONS PREMIUM STYLES ──────────────────────────────── */

.vps-section-head {
  text-align: center;
  margin: 68px auto 28px;
  max-width: 800px;
}

.vps-section-head h2 {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  color: #07101f;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.vps-section-head h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #3b82f6);
  margin: 10px auto 0;
  border-radius: 99px;
}

.vps-section-head p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Paid Addons Grid */
.vps-addon-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.vps-addon-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  position: relative;
  overflow: hidden;
}

.vps-addon-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.03) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.vps-addon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 20px 40px rgba(7, 16, 31, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.vps-addon-card:hover::before {
  transform: scale(1.5);
}

.vps-addon-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid #ffddd2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  margin-bottom: 22px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.08);
}

.vps-addon-card:hover .vps-addon-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
  border-color: transparent;
}

.vps-addon-icon {
  width: 24px;
  height: 24px;
}

.vps-addon-title {
  font-size: 14px;
  font-weight: 700;
  color: #07101f;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.vps-addon-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Standard Features Grid */
.vps-feat-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.vps-feat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  position: relative;
  overflow: hidden;
}

.vps-feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.vps-feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px rgba(7, 16, 31, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.vps-feat-card:hover::before {
  transform: scale(1.5);
}

.vps-feat-card .vps-feat-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #cce0ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 22px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.vps-feat-card:hover .vps-feat-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  border-color: transparent;
}

.vps-feat-icon {
  width: 24px;
  height: 24px;
}

.vps-feat-title {
  font-size: 14px;
  font-weight: 700;
  color: #07101f;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.vps-feat-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Accordion Styling */
.vps-faq-container-premium {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: left;
  padding: 0 20px;
}

.vps-faq-title-sub {
  font-size: 20px;
  font-weight: 700;
  color: #07101f;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-align: center;
}

.vps-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vps-faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.vps-faq-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 8px 24px rgba(7, 16, 31, 0.03);
}

.vps-faq-item[open] {
  border-color: #f97316;
  border-left-color: #f97316;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.06);
  background: #fffcfb;
}

.vps-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #07101f;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color 0.25s ease;
}

.vps-faq-summary:hover {
  color: #f97316;
}

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

.vps-faq-chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.vps-faq-item[open] .vps-faq-chevron {
  transform: rotate(180deg);
  color: #f97316;
}

.vps-faq-content {
  padding: 0 28px 22px;
}

.vps-faq-content p {
  margin: 0;
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.65;
}

/* Premium Server CTA Card */
.vps-cta-card-premium {
  position: relative;
  background: #07101f !important;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(29, 78, 216, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 40%) !important;
  border-radius: 28px;
  padding: 68px 24px;
  text-align: center;
  overflow: hidden;
  max-width: 1320px;
  margin: 60px auto 80px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(7, 16, 31, 0.25);
  transition: border-color 0.3s ease;
}

.vps-cta-card-premium:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.vps-cta-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.vps-cta-content-premium {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.vps-cta-card-premium h2 {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.vps-cta-card-premium p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.vps-cta-btn-premium {
  display: inline-block;
  background: #ffffff !important;
  color: #07101f !important;
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
}

.vps-cta-btn-premium:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #fdfdfd !important;
}

/* Responsiveness for bottom elements */
@media (max-width: 768px) {
  .vps-addon-grid-premium,
  .vps-feat-grid-premium {
    grid-template-columns: 1fr;
  }
  .vps-cta-card-premium {
    margin: 40px 20px 60px;
    border-radius: 16px;
    padding: 44px 20px;
  }
}

/* ── VPC Switch (vps.php, sunucu.php) ─────────────────────── */
.vpc-sw-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border: none;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-radius: 10px;
  transition: color .2s;
  white-space: nowrap;
}

.vpc-sw-btn.vpc-sw-on { color: #fff; font-weight: 600; }

.vpc-sw-save {
  background: rgba(255,255,255,.22);
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.vpc-sw-btn:not(.vpc-sw-on) .vpc-sw-save {
  background: #dbeafe;
  color: var(--brand);
}

/* ── dt-text utility (aisunucu.php) ── */
.dt-text {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 505;
  line-height: 1.4;
}

