@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — LIGHT MODE
══════════════════════════════════════════════════════════ */
:root {
  --purple:      #7C3AED;
  --purple-lt:   #8B5CF6;
  --purple-dim:  rgba(124,58,237,0.08);
  --purple-dim2: rgba(124,58,237,0.14);
  --cyan:        #06B6D4;
  --blue:        #0EA5E9;
  --green:       #10B981;
  --amber:       #F59E0B;
  --red:         #EF4444;

  --grad-brand:  linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);

  /* Light Surfaces */
  --bg:          #FFFFFF;
  --bg-surface:  #F8FAFF;
  --bg-alt:      #F0F4FE;
  --bg-card:     #FFFFFF;
  --bg-card-hover: #FAFBFF;
  --bg-border:   #E2E8F0;
  --bg-border-hover: rgba(124,58,237,0.35);

  /* Text */
  --text:        #475569;
  --text-bright: #1E293B;
  --text-dim:    #94A3B8;
  --white:       #FFFFFF;
  --black:       #0F172A;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;

  --shadow-xs:    0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:    0 4px 16px rgba(15,23,42,0.07);
  --shadow-md:    0 8px 32px rgba(15,23,42,0.1);
  --shadow-lg:    0 20px 60px rgba(15,23,42,0.12);
  --shadow-glow:  0 0 60px rgba(124,58,237,0.15);
  --shadow-brand: 0 8px 32px rgba(124,58,237,0.3);

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --font:     'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); color: var(--black); font-weight: 800; line-height: 1.15; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-lt); }

/* ═══════════════════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-brand);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.w-full { width: 100%; }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1rem; color: var(--black); }
.section-header p { color: var(--text); max-width: 580px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }

.section-badge {
  display: inline-block;
  background: var(--purple-dim);
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════
   PROMO / CAMPAIGN BAR
══════════════════════════════════════════════════════════ */
.promo-bar {
  position: relative;
  z-index: 104;
  background: linear-gradient(90deg, #4C0597 0%, #7C3AED 35%, #06B6D4 70%, #0EA5E9 100%);
  background-size: 200% 100%;
  animation: promo-shift 8s ease-in-out infinite alternate;
  overflow: hidden;
}
@keyframes promo-shift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

/* Shine sweep */
.promo-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: promo-shine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes promo-shine {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

.promo-bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 3rem;
}
.promo-bar-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  z-index: 1;
}
.promo-bar-badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.promo-bar-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.promo-bar-text strong {
  color: white;
  font-weight: 800;
}
.promo-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.promo-bar-cta:hover {
  background: #F3E8FF;
  transform: translateX(2px);
}
.promo-bar-cta i { font-size: 0.7rem; }
.promo-bar-close {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1;
}
.promo-bar-close:hover {
  background: rgba(255,255,255,0.28);
  color: white;
}

/* ═══════════════════════════════════════════════════════
   TOPBAR — Premium Dark
══════════════════════════════════════════════════════════ */
.topbar {
  height: 40px;
  background: #0D1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 103;
  /* subtle noise texture */
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Left section */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  height: 100%;
  font-size: 0.755rem;
  color: rgba(255,255,255,0.38);
  cursor: default;
  transition: color 0.2s;
  white-space: nowrap;
}
.topbar-info-item i { font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.topbar-info-text { font-weight: 500; letter-spacing: 0.01em; }
a.topbar-info-link { cursor: pointer; }
a.topbar-info-link:hover { color: rgba(255,255,255,0.7); }
a.topbar-info-link:hover i { color: rgba(255,255,255,0.5); }
.topbar-flag { font-size: 0.9rem; line-height: 1; }

/* Dividers */
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Right section */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

/* Language badge */
.topbar-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  padding: 0.22rem 0.65rem;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
}
.topbar-lang i { font-size: 0.68rem; }
.topbar-lang:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.18); }

.topbar-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.26rem 0.78rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.topbar-auth-btn i { font-size: 0.68rem; }

.topbar-login {
  color: rgba(255,255,255,0.48);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.09);
}
.topbar-login:hover {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.topbar-register {
  color: #C4B5FD;
  background: rgba(124,58,237,0.14);
  border: 1px solid rgba(124,58,237,0.26);
}
.topbar-register:hover {
  color: #DDD6FE;
  background: rgba(124,58,237,0.26);
  border-color: rgba(124,58,237,0.48);
}

/* ═══════════════════════════════════════════════════════
   TOPBAR — USER DROPDOWN (Giriş yapılmış kullanıcı)
══════════════════════════════════════════════════════════ */
.topbar-user {
  display: none; /* JS ile giriş yapılınca gösterilir */
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.topbar-user.visible { display: inline-flex; }

.topbar-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.22rem 0.6rem 0.22rem 0.28rem;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.topbar-user-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.topbar-user-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.topbar-user-name { max-width: 90px; overflow: hidden; text-overflow: ellipsis; }
.topbar-user-chevron { font-size: 0.55rem; opacity: 0.5; margin-left: 1px; transition: transform 0.2s; }
.topbar-user.open .topbar-user-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.topbar-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: #0F1117;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  z-index: 500;
}
.topbar-user.open .topbar-user-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}

.tud-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.75rem 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.4rem;
}
.tud-avatar-lg {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.tud-info strong { display: block; font-size: 0.82rem; font-weight: 700; color: white; line-height: 1.2; }
.tud-info small { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

.tud-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all 0.15s;
  text-decoration: none;
}
.tud-link i { width: 16px; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.tud-link:hover { background: rgba(255,255,255,0.07); color: white; }
.tud-link:hover i { color: var(--purple); }

.tud-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.4rem 0.5rem; }

.tud-logout {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(239,68,68,0.75);
  transition: all 0.15s;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
}
.tud-logout i { width: 16px; text-align: center; font-size: 0.75rem; }
.tud-logout:hover { background: rgba(239,68,68,0.1); color: #FCA5A5; }



/* Cart icon in header (unchanged) */
.header-cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--bg-border);
  justify-content: center;
  position: relative;
  transition: all 0.2s;
  background: var(--white);
}
.header-cart:hover { border-color: rgba(124,58,237,0.4); color: var(--purple); box-shadow: var(--shadow-xs); }
.header-cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--purple);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}



/* ═══════════════════════════════════════════════════════
   BUTTONS — Refined & Premium
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Primary — refined solid purple, no harsh gradient */
.btn-primary {
  background: var(--purple);
  color: #ffffff;
  border-color: var(--purple);
  box-shadow: 0 1px 2px rgba(124,58,237,0.2), 0 4px 12px rgba(124,58,237,0.25);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  background: #6D28D9;
  border-color: #6D28D9;
  box-shadow: 0 2px 4px rgba(124,58,237,0.2), 0 8px 24px rgba(124,58,237,0.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 3px rgba(124,58,237,0.25); }

/* Ghost — clean outlined */
.btn-ghost {
  background: var(--white);
  color: var(--text-bright);
  border-color: var(--bg-border);
  box-shadow: 0 1px 3px rgba(15,23,42,0.06);
}
.btn-ghost:hover {
  border-color: #CBD5E1;
  background: var(--bg-surface);
  box-shadow: 0 2px 8px rgba(15,23,42,0.09);
  transform: translateY(-1px);
}

/* Plan buttons */
.btn-outline-plan {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-bright);
  border: 1.5px solid var(--bg-border);
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-plan:hover {
  border-color: var(--purple-lt);
  color: var(--purple);
  background: var(--purple-dim);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
}

/* Featured plan button */
.btn-plan-featured {
  display: block;
  text-align: center;
  background: var(--purple);
  color: white;
  border: 1.5px solid var(--purple);
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(124,58,237,0.3);
  position: relative;
  overflow: hidden;
}
.btn-plan-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.btn-plan-featured:hover {
  background: #6D28D9;
  border-color: #6D28D9;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
  transform: translateY(-1px);
}

/* Announcement bar removed — replaced by .topbar above */

/* White (inside dark banners) */
.btn-white {
  background: white;
  color: var(--purple);
  border-color: white;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #F8FAFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-lg { padding: 0.95rem 2.1rem; font-size: 0.97rem; border-radius: 12px; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; border-radius: 7px; }



/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--grad-brand);
  padding: 0.7rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 101;
}
.ann-inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0 4rem; }
.ann-text a { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 3px; }
.ann-close {
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); color: white; border: none;
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.75rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ann-close:hover { background: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--bg-border);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.99); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; height: 72px; gap: 2rem; }
.header-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-logo img { height: 38px; width: auto; }
.logo-fallback { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; color: var(--black); }

/* Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem; border-radius: var(--r-sm);
  color: var(--text); font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; border: 1.5px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--black); background: var(--bg-surface); }
.nav-link.active { color: var(--purple); }
.nav-arrow { font-size: 0.62rem; transition: transform 0.3s var(--ease); }
.nav-item-mega.open .nav-arrow { transform: rotate(180deg); }

/* Nav Badges */
.nav-item { position: relative; }
.nav-badge-top {
  position: absolute;
  top: -8px;
  right: -5px;
  background: linear-gradient(135deg, #10B981, #059669); /* Soft emerald green */
  color: white;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  z-index: 10;
}
.nav-badge-top.pulse {
  animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mega Menu */
.nav-item-mega { position: relative; }
.mega-menu {
  position: fixed;
  top: auto;
  left: 0; right: 0;
  margin-top: 14px;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  box-shadow: 0 24px 60px rgba(15,23,42,0.14), 0 4px 16px rgba(15,23,42,0.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
  z-index: 200; overflow: hidden;
  transform: translateY(-8px);
}
.nav-item-mega.open .mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}

/* Grid layouts */
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 210px; }
.mega-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-grid-4 { grid-template-columns: 1fr 1fr 1fr 240px; }

.mega-menu-wide .mega-inner { max-width: 1200px; margin: 0 auto; }
.mega-menu-medium .mega-inner { max-width: 960px; margin: 0 auto; }

.mega-column {
  padding: 1.6rem 1.5rem;
  min-width: 0;
}
.mega-column:not(:last-child) { border-right: 1px solid var(--bg-border); }

.mega-heading {
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mega-heading i { color: var(--purple); font-size: 0.6rem; }

.mega-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 9px;
  transition: all 0.18s;
  color: var(--text-bright);
  position: relative;
  text-decoration: none;
}
.mega-link:hover {
  background: var(--bg-surface);
  transform: translateX(2px);
}
.mega-link:hover strong { color: var(--purple); }

.mega-link-sm { padding: 0.4rem 0.55rem; gap: 0.6rem; }

.mega-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.mega-icon-sm { width: 28px; height: 28px; border-radius: 7px; font-size: 0.72rem; }

.mega-link strong {
  display: block;
  font-size: 0.84rem;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.08rem;
  transition: color 0.18s;
  white-space: nowrap;
}
.mega-link small { font-size: 0.74rem; color: var(--text-dim); line-height: 1.3; white-space: nowrap; }

/* Tags (Popüler, Yeni, Beta, price) */
.mega-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.mega-tag-hot { background: #FEF3C7; color: #D97706; border: 1px solid #FDE68A; }
.mega-tag-new { background: #D1FAE5; color: #059669; border: 1px solid #A7F3D0; }
.mega-tag-cheap { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(124,58,237,0.15); }

/* Divider inside column */
.mega-divider {
  height: 1px;
  background: var(--bg-border);
  margin: 0.75rem 0;
}

/* Feature checklist rows */
.mega-feature-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text);
  padding: 0.3rem 0.65rem;
}
.mega-feature-row i { font-size: 0.7rem; flex-shrink: 0; }

/* DC items (datacenter list) */
.mega-dc-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 9px;
  transition: background 0.15s;
}
.mega-dc-item:hover { background: var(--bg-surface); }
.mega-dc-flag { font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.mega-dc-item > div:nth-child(2) { flex: 1; min-width: 0; }
.mega-dc-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--black); }
.mega-dc-item small { font-size: 0.72rem; color: var(--text-dim); }
.mega-dc-ping {
  font-size: 0.7rem;
  font-weight: 700;
  color: #10B981;
  background: #D1FAE5;
  border: 1px solid #A7F3D0;
  padding: 0.15rem 0.45rem;
  border-radius: 99px;
  flex-shrink: 0;
}

/* Promo card (4th column) */
.mega-promo { padding: 1rem; background: var(--bg-surface); }
.mega-promo-inner {
  background: linear-gradient(160deg, #4C0597 0%, #0A2A5A 100%);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  height: 100%;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.mega-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 0.22rem 0.65rem;
  border-radius: 99px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.2);
}
.mega-promo-inner h4 { font-size: 1.1rem; color: white; font-weight: 800; line-height: 1.25; }
.mega-promo-inner p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; flex: 1; }
.mega-promo-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mega-promo-stat > div { display: flex; flex-direction: column; gap: 0.15rem; }
.mega-promo-stat strong { font-size: 1rem; font-weight: 800; color: white; }
.mega-promo-stat span { font-size: 0.68rem; color: rgba(255,255,255,0.5); }

/* Mega footer bar */
.mega-footer {
  border-top: 1px solid var(--bg-border);
  background: var(--bg-surface);
  padding: 0.7rem 0;
}
.mega-footer-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
}
.mega-footer-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-right: 1.25rem;
  border-right: 1px solid var(--bg-border);
  margin-right: 1.25rem;
  white-space: nowrap;
}
.mega-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.35rem 1rem;
  border-radius: 6px;
  transition: all 0.18s;
  white-space: nowrap;
}
.mega-footer-links a i { font-size: 0.68rem; color: var(--purple); }
.mega-footer-links a:hover {
  background: white;
  color: var(--purple);
  box-shadow: var(--shadow-xs);
}



/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-login { color: var(--text); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.header-login:hover { color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ═══════════════════════════════════════════════════════
   HERO — LIGHT MODE FIXED
══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 5rem 0 4rem;
}

/* Subtle gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  top: -150px; right: 5%;
  animation: float 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
  bottom: -100px; left: 0%;
  animation: float 18s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  top: 30%; left: 30%;
  animation: float 10s ease-in-out infinite 3s;
}
@keyframes float {
  0%,100% { transform: translate(0,0); }
  33%  { transform: translate(15px,-20px); }
  66%  { transform: translate(-10px,10px); }
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 60% 0%, black 20%, transparent 70%);
}

/* Hero layout: two columns, fixed heights */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 4rem;
  min-height: 560px;
}

/* Left: text */
.hero-text { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--purple-dim); border: 1px solid rgba(124,58,237,0.2);
  padding: 0.5rem 1.1rem; border-radius: 99px;
  font-size: 0.82rem; font-weight: 700; color: var(--purple);
  margin-bottom: 1.75rem; width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }

.hero-text h1 {
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 1.5rem;
}

/* Typed text line — fixed height so layout doesn't jump */
.hero-typed-line {
  display: block;
  min-height: 1.15em;
  line-height: 1.1;
}
.typed-cursor {
  display: inline-block;
  color: var(--purple);
  -webkit-text-fill-color: var(--purple);
  animation: cursor-blink 0.9s ease-in-out infinite;
  font-weight: 300;
  margin-left: 2px;
}
@keyframes cursor-blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* AOS visibility — make sure sections below fold are visible */
[data-aos] { opacity: 1 !important; transform: none !important; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}
.hero-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-dim);
}
.trust-item i { color: var(--purple); }

/* Right: Hero Card */
.hero-visual { position: relative; align-self: center; }

.glass-card {
  background: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,58,237,0.05);
  animation: card-float 7s ease-in-out infinite;
}
@keyframes card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hcard-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bg-border);
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.status-dot.online { background: var(--green); box-shadow: 0 0 6px var(--green); animation: blink 2s ease-in-out infinite; }
.hcard-title { font-weight: 700; font-size: 0.875rem; color: var(--black); flex: 1; }
.hcard-status {
  font-size: 0.72rem; font-weight: 700;
  background: rgba(16,185,129,0.1); color: var(--green);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 0.2rem 0.65rem; border-radius: 99px;
}

.hcard-metrics { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.metric-row { display: flex; align-items: center; gap: 0.9rem; }
.metric-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-dim); min-width: 155px;
}
.metric-label i { color: var(--purple-lt); font-size: 0.75rem; width: 12px; }
.metric-bar { flex: 1; height: 5px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--grad-brand); border-radius: 99px; width: 0%; transition: width 1.8s var(--ease); }
.metric-val { font-size: 0.78rem; font-weight: 700; color: var(--black); min-width: 38px; text-align: right; }

.hcard-stats {
  display: flex; justify-content: space-around;
  padding-top: 1.25rem; border-top: 1px solid var(--bg-border);
}
.hstat { text-align: center; }
.hstat strong { display: block; font-size: 1.35rem; font-weight: 900; color: var(--black); }
.hstat small { font-size: 0.72rem; color: var(--text-dim); display: block; margin-top: 0.2rem; }
.hstat-divider { width: 1px; background: var(--bg-border); }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-md);
  border-radius: 99px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 700; color: var(--black);
  white-space: nowrap;
}
.float-badge-1 { top: -18px; left: -36px; animation: fbadge 5s ease-in-out infinite; }
.float-badge-2 { bottom: 24px; right: -36px; animation: fbadge 6s ease-in-out infinite 1.2s; }
@keyframes fbadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--text-dim); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid var(--bg-border);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--purple-lt);
  border-radius: 2px; animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel { 0% { transform:translateY(0); opacity:1; } 100% { transform:translateY(12px); opacity:0; } }

/* ═══════════════════════════════════════════════════════
   TECH LOGOS
══════════════════════════════════════════════════════════ */
.tech-logos-section {
  padding: 2.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  overflow: hidden;
}
.tech-label {
  text-align: center; margin-bottom: 1.75rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim);
}
.logos-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.logos-track {
  display: flex; align-items: center; gap: 4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { height: 26px; display: flex; align-items: center; flex-shrink: 0; filter: saturate(0) opacity(0.45); transition: filter 0.3s; }
.logo-item:hover { filter: saturate(1) opacity(1); }
.logo-item img { height: 100%; width: auto; object-fit: contain; max-width: 100px; }
.logo-item span { font-size: 0.95rem; font-weight: 800; color: #94A3B8; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════
   DOMAIN
══════════════════════════════════════════════════════════ */
.domain-section { padding: 5rem 0; background: var(--bg-surface); }
.domain-box {
  background: var(--white); border: 1px solid var(--bg-border);
  border-radius: var(--r-2xl); padding: 3.5rem 4rem;
  box-shadow: var(--shadow-sm);
}
.domain-box-header { text-align: center; margin-bottom: 2.5rem; }
.domain-box-header h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.domain-box-header p { color: var(--text); }
.domain-form { margin-bottom: 1.75rem; }
.domain-input-wrap {
  display: flex; align-items: center;
  background: var(--bg-surface); border: 1.5px solid var(--bg-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.domain-input-wrap:focus-within { border-color: var(--purple-lt); box-shadow: 0 0 0 4px rgba(124,58,237,0.1); }
.domain-icon { padding: 0 1.25rem; color: var(--text-dim); flex-shrink: 0; }
.domain-input-wrap input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 1.1rem 0; color: var(--black); font-size: 1.05rem; font-family: var(--font);
}
.domain-input-wrap input::placeholder { color: var(--text-dim); }
.domain-input-wrap .btn { border-radius: 0; flex-shrink: 0; }
.tld-price-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.tld-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-surface); border: 1px solid var(--bg-border);
  border-radius: var(--r-sm); padding: 0.65rem 1.25rem;
  cursor: default; transition: all 0.2s;
}
.tld-badge:hover { border-color: rgba(124,58,237,0.35); background: var(--purple-dim); }
.tld-badge.popular { border-color: rgba(124,58,237,0.3); background: var(--purple-dim); }
.tld-name { font-size: 0.88rem; font-weight: 700; color: var(--black); display: flex; align-items: center; gap: 0.4rem; }
.tld-hot { background: var(--purple); color: white; font-size: 0.62rem; font-weight: 800; padding: 0.1rem 0.4rem; border-radius: 4px; }
.tld-price { font-size: 0.85rem; font-weight: 700; color: var(--purple); }
.tld-price small { font-size: 0.7rem; color: var(--text-dim); font-weight: 400; }

/* ═══════════════════════════════════════════════════════
   PLANS — Premium redesign
══════════════════════════════════════════════════════════ */
.plans-section { padding: 7rem 0; }
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }
.toggle-label { font-size: 0.9rem; font-weight: 600; color: var(--text-dim); display: flex; align-items: center; gap: 0.5rem; }
.toggle-switch { position: relative; }
.toggle-switch input { position: absolute; opacity: 0; width: 0; }
.toggle-track {
  display: block; width: 50px; height: 27px;
  background: var(--bg-alt); border-radius: 99px;
  cursor: pointer; position: relative;
  border: 1.5px solid var(--bg-border); transition: background 0.3s;
}
.toggle-switch input:checked + .toggle-track { background: var(--grad-brand); border-color: transparent; }
.toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; background: var(--white);
  border-radius: 50%; transition: transform 0.3s var(--ease);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-track .toggle-thumb { transform: translateX(23px); }
.save-badge {
  font-style: normal; background: rgba(16,185,129,0.1);
  color: var(--green); border: 1px solid rgba(16,185,129,0.25);
  font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 99px;
}

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

/* Plan card shell */
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--bg-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
}
.plan-card:hover {
  border-color: rgba(124,58,237,0.28);
  box-shadow: 0 20px 50px rgba(15,23,42,0.1), 0 0 0 1px rgba(124,58,237,0.08);
  transform: translateY(-4px);
}

/* Featured card */
.plan-featured {
  background: linear-gradient(160deg, #4C0597 0%, #1E1060 100%);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(124,58,237,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.plan-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(124,58,237,0.4);
}

/* Featured badge */
.plan-featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg,#F59E0B,#EF4444);
  color: white; font-size: 0.68rem; font-weight: 800;
  padding: 0.28rem 1rem; border-radius: 99px;
  letter-spacing: 0.3px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(239,68,68,0.35);
}

/* Plan header: icon + name */
.plan-header { display: flex; align-items: center; gap: 1rem; }
.plan-tier-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--tier-color) 15%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--tier-color) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--tier-color);
  font-size: 1rem; flex-shrink: 0;
  transition: all 0.2s;
}
.plan-card:hover .plan-tier-icon {
  background: color-mix(in srgb, var(--tier-color) 22%, transparent);
}
.plan-featured .plan-tier-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.plan-tier-info {}
.plan-name { font-size: 1.15rem; font-weight: 800; color: var(--black); line-height: 1.2; }
.plan-featured .plan-name { color: white; }
.plan-desc { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.15rem; }
.plan-featured .plan-desc { color: rgba(255,255,255,0.55); }

/* Pricing row */
.plan-pricing { border-top: 1px solid var(--bg-border); border-bottom: 1px solid var(--bg-border); padding: 1.25rem 0; }
.plan-featured .plan-pricing { border-color: rgba(255,255,255,0.12); }
.plan-price-row { display: flex; align-items: flex-end; gap: 0.15rem; }
.plan-currency { font-size: 1.25rem; font-weight: 800; color: var(--text-dim); line-height: 2; }
.plan-featured .plan-currency { color: rgba(255,255,255,0.6); }
.plan-amount { font-size: 3rem; font-weight: 900; color: var(--black); line-height: 1; }
.plan-featured .plan-amount { color: white; }
.plan-period-wrap { display: flex; flex-direction: column; padding-bottom: 0.3rem; margin-left: 0.15rem; }
.plan-period { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); }
.plan-featured .plan-period { color: rgba(255,255,255,0.5); }
.plan-note { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.1rem; }
.plan-featured .plan-note { color: rgba(255,255,255,0.4); }

/* Spec pills row */
.plan-specs-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.spec-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 700;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  color: var(--text-bright);
  padding: 0.28rem 0.65rem; border-radius: 7px;
}
.spec-pill i { font-size: 0.65rem; color: var(--purple-lt); }
.spec-pill-featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}
.spec-pill-featured i { color: rgba(255,255,255,0.6); }

/* Feature list */
.plan-features { display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.875rem; color: var(--text-bright); }
.plan-features li i { flex-shrink: 0; margin-top: 3px; font-size: 0.75rem; }
.plan-features li:not(.plan-feature-off) i { color: var(--green); }
.plan-feature-off { opacity: 0.35; }
.plan-feature-off i { color: var(--text-dim) !important; }
.plan-features li span strong { color: var(--black); font-weight: 700; }
.plan-featured .plan-features li { color: rgba(255,255,255,0.8); }
.plan-featured .plan-features li:not(.plan-feature-off) i { color: #6EE7B7; }
.plan-featured .plan-features li span strong { color: white; }

/* CTA buttons */
.plan-cta-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.85rem;
  border-radius: 11px;
  font-size: 0.88rem; font-weight: 700;
  transition: all 0.22s var(--ease);
  letter-spacing: 0.01em;
}
.plan-cta-outline {
  background: transparent;
  border: 1.5px solid var(--bg-border);
  color: var(--black);
}
.plan-cta-outline:hover {
  border-color: rgba(124,58,237,0.4);
  background: var(--purple-dim);
  color: var(--purple);
}
.plan-cta-primary {
  background: white;
  color: var(--purple);
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.plan-cta-primary:hover {
  background: #F3E8FF;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Guarantee badge inside plan card */
.plan-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  transition: all 0.2s;
}
.plan-guarantee:hover {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.28);
}
.plan-guarantee i { font-size: 0.8rem; flex-shrink: 0; }
.plan-guarantee span { white-space: nowrap; }

/* Featured card variant */
.plan-guarantee-featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: #6EE7B7;
}
.plan-guarantee-featured:hover {
  background: rgba(255,255,255,0.15);
}

/* \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
   GUARANTEE CARD \u2014 Premium
\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 */
.guarantee-card {
  margin-top: 3rem;
  background: var(--white);
  border: 1.5px solid var(--bg-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,23,42,0.07), 0 1px 4px rgba(15,23,42,0.04);
}

/* ── Header Banner ── */
.guarantee-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #3B0764 0%, #1E3A5F 100%);
  position: relative;
  overflow: hidden;
}
.guarantee-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.guarantee-header::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  top: -120px; right: 200px;
  pointer-events: none;
}

.guarantee-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.guarantee-main-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.guarantee-header-left h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.3rem;
  letter-spacing: -0.3px;
}
.guarantee-header-left p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Stats in header */
.guarantee-header-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.75rem 1.5rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.guarantee-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
.guarantee-stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -1px;
}
.guarantee-stat strong small {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.guarantee-stat span {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0.25rem;
  text-align: center;
  white-space: pre;
  line-height: 1.3;
}
.guarantee-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Feature Grid ── */
.guarantee-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--bg-border);
}
.guarantee-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  transition: background 0.2s;
  position: relative;
}
.guarantee-feature:nth-child(even) { border-right: none; }
.guarantee-feature:nth-child(3),
.guarantee-feature:nth-child(4) { border-bottom: none; }
.guarantee-feature:hover { background: var(--bg-surface); }

.gf-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gcl, rgba(124,58,237,0.1));
  border: 1px solid color-mix(in srgb, var(--gc, #7C3AED) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gc, #7C3AED);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.guarantee-feature:hover .gf-icon { transform: scale(1.08); }

.gf-body { flex: 1; min-width: 0; }
.gf-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.gf-body span {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.6;
}

.gf-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.gf-check i { font-size: 0.65rem; color: #10B981; }

/* ── Footer Badges ── */
.guarantee-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.1rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
}
.gf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-bright);
  padding: 0.35rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: 99px;
  transition: all 0.18s;
  white-space: nowrap;
}
.gf-badge i { font-size: 0.7rem; color: var(--purple-lt); }
.gf-badge:hover {
  border-color: rgba(124,58,237,0.3);
  background: var(--purple-dim);
  color: var(--purple);
}
.gf-badge:hover i { color: var(--purple); }

/* Compare hint */
.plans-compare-hint {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.plans-compare-hint i { color: var(--purple-lt); }
.plans-compare-hint a { color: var(--purple); font-weight: 700; }
.plans-compare-hint a:hover { text-decoration: underline; }

/* VDS badge on section */
.vds-badge-section {
  background: rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.3);
  color: #0EA5E9;
}

/* ═══════════════════════════════════════════════════════
   VDS — Premium redesign
══════════════════════════════════════════════════════════ */
.vds-section { padding: 7rem 0; background: var(--bg-surface); border-top: 1px solid var(--bg-border); }
.vds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.vds-card {
  background: var(--white);
  border: 1.5px solid var(--bg-border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
  position: relative;
}
.vds-card:hover {
  border-color: rgba(124,58,237,0.28);
  box-shadow: 0 16px 40px rgba(15,23,42,0.1), 0 0 0 1px rgba(124,58,237,0.06);
  transform: translateY(-4px);
}
.vds-featured {
  background: linear-gradient(160deg, #2D0A7A 0%, #0A1D3D 100%);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(124,58,237,0.28);
}
.vds-featured:hover {
  box-shadow: 0 28px 70px rgba(124,58,237,0.38);
  transform: translateY(-6px);
}

/* Top row: badge + name */
.vds-card-top { display: flex; align-items: center; justify-content: space-between; }
.vds-tier-badge {
  font-size: 0.65rem; font-weight: 800;
  padding: 0.22rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: var(--bg-alt);
  color: var(--text-dim);
  border: 1px solid var(--bg-border);
}
.vds-tier-hot  { background: rgba(124,58,237,0.12); color: var(--purple); border-color: rgba(124,58,237,0.25); }
.vds-tier-pro  { background: rgba(14,165,233,0.1); color: #0EA5E9; border-color: rgba(14,165,233,0.3); }
.vds-tier-enterprise { background: rgba(239,68,68,0.1); color: #EF4444; border-color: rgba(239,68,68,0.25); }
.vds-card-name {
  font-size: 1.5rem; font-weight: 900;
  color: var(--black); letter-spacing: -0.5px;
}
.vds-featured .vds-tier-badge { background: rgba(255,255,255,0.15); color: #A78BFA; border-color: rgba(255,255,255,0.2); }
.vds-featured .vds-card-name { color: white; }

/* Pricing */
.vds-pricing {
  display: flex; align-items: flex-end; gap: 0.1rem;
  border-bottom: 1px solid var(--bg-border);
  padding-bottom: 1.1rem;
}
.vds-featured .vds-pricing { border-color: rgba(255,255,255,0.1); }
.vds-currency { font-size: 1.1rem; font-weight: 800; color: var(--text-dim); line-height: 2; }
.vds-amount { font-size: 2.5rem; font-weight: 900; color: var(--black); line-height: 1; }
.vds-period { font-size: 0.82rem; color: var(--text-dim); padding-bottom: 0.25rem; }
.vds-featured .vds-currency, .vds-featured .vds-period { color: rgba(255,255,255,0.45); }
.vds-featured .vds-amount { color: white; }

/* Hardware 2x2 grid */
.vds-hw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.vds-hw-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.vds-card:hover .vds-hw-item { border-color: rgba(124,58,237,0.18); }
.vds-hw-item > i { font-size: 0.85rem; color: var(--purple-lt); flex-shrink: 0; }
.vds-hw-item > div { display: flex; flex-direction: column; gap: 0; min-width: 0; }
.vds-hw-item strong { font-size: 0.82rem; font-weight: 800; color: var(--black); line-height: 1.2; white-space: nowrap; }
.vds-hw-item small { font-size: 0.65rem; color: var(--text-dim); line-height: 1; white-space: nowrap; }
.vds-featured .vds-hw-item { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.vds-featured .vds-hw-item > i { color: #A78BFA; }
.vds-featured .vds-hw-item strong { color: white; }
.vds-featured .vds-hw-item small { color: rgba(255,255,255,0.45); }

/* OS pills */
.vds-os-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vds-os-pill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.22rem 0.6rem; border-radius: 6px;
  background: var(--bg-alt); border: 1px solid var(--bg-border);
  color: var(--text-dim);
}
.vds-os-pill i { font-size: 0.65rem; }
.vds-os-featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
}

/* Includes mini list */
.vds-includes {
  display: flex; flex-direction: column; gap: 0.45rem;
  padding: 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
}
.vds-includes span {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; color: var(--text-bright);
}
.vds-includes i { font-size: 0.68rem; color: var(--green); }
.vds-featured .vds-includes { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); }
.vds-featured .vds-includes span { color: rgba(255,255,255,0.75); }
.vds-featured .vds-includes i { color: #6EE7B7; }

/* CTA buttons */
.vds-cta-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 700;
  transition: all 0.22s var(--ease);
}
.vds-cta-outline {
  background: transparent;
  border: 1.5px solid var(--bg-border);
  color: var(--black);
}
.vds-cta-outline:hover {
  border-color: rgba(124,58,237,0.4);
  background: var(--purple-dim);
  color: var(--purple);
}
.vds-cta-primary {
  background: white;
  color: var(--purple);
  border: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.vds-cta-primary:hover {
  background: #F3E8FF;
  transform: translateY(-1px);
}

/* VDS footer note */
.vds-footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.84rem;
  color: var(--text-dim);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.vds-footer-note i { color: var(--purple-lt); }
.vds-footer-note a { color: var(--purple); font-weight: 700; }
.vds-footer-note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features-section { padding: 7rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--bg-border);
  border-radius: var(--r-xl); padding: 2.25rem;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
}
.feature-card:hover { border-color: rgba(124,58,237,0.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon-wrap {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.5rem;
}
.feature-card h4 { font-size: 1.05rem; margin-bottom: 0.65rem; color: var(--black); }
.feature-card p { font-size: 0.875rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.feature-link { font-size: 0.85rem; font-weight: 700; color: var(--purple); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.feature-card:hover .feature-link { gap: 0.65rem; }

/* ═══════════════════════════════════════════════════════
   COMPARISON
══════════════════════════════════════════════════════════ */
.comparison-section {
  padding: 7rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
}
.comp-table-wrap { overflow-x: auto; border-radius: var(--r-xl); border: 1px solid var(--bg-border); background: var(--white); box-shadow: var(--shadow-sm); }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.comp-table th {
  padding: 1.1rem 1.5rem; text-align: left;
  font-size: 0.82rem; font-weight: 800; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid var(--bg-border);
  background: var(--bg-surface);
}
.comp-table th.comp-us { color: var(--purple); background: var(--purple-dim); }
.comp-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--bg-border); color: var(--text-bright); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: var(--bg-surface); }
.comp-table td.comp-us { background: rgba(124,58,237,0.03); }
.comp-table td:first-child { font-weight: 600; color: var(--black); }
.comp-yes { color: var(--green); font-size: 1rem; }
.comp-no  { color: var(--text-dim); font-size: 1rem; }
.comp-partial { color: var(--amber); font-size: 0.82rem; font-weight: 700; }
.comp-badge { display: inline-block; background: var(--purple); color: white; font-size: 0.62rem; font-weight: 800; padding: 0.1rem 0.45rem; border-radius: 4px; margin-left: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section { padding: 7rem 0; }
.review-stars { display: flex; align-items: center; gap: 0.35rem; justify-content: center; margin-top: 1rem; color: var(--amber); font-size: 1rem; }
.review-stars span { color: var(--text-dim); font-size: 0.85rem; margin-left: 0.5rem; font-weight: 600; }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--bg-border);
  border-radius: var(--r-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
}
.testi-card:hover { border-color: rgba(124,58,237,0.2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testi-stars { display: flex; gap: 0.2rem; color: var(--amber); font-size: 0.85rem; }
.testi-card > p { font-size: 0.875rem; color: var(--text); line-height: 1.8; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; font-weight: 800; flex-shrink: 0; }
.testi-author strong { font-size: 0.88rem; color: var(--black); display: block; }
.testi-author small { font-size: 0.78rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #4C0597 0%, #06121F 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl); padding: 2.5rem 2rem;
  text-align: center; transition: all 0.3s var(--ease);
}
.stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.stat-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; margin: 0 auto 1.25rem; }
.stat-number { font-size: 3rem; font-weight: 900; color: white; line-height: 1; }
.stat-plus { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.7); }
.stat-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.6rem; font-weight: 600; }

/* \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
   CTA BANNER - Premium
\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 */
.cta-banner-section { padding: 6rem 0; }
.cta-banner {
  background: linear-gradient(135deg, #2D0A7A 0%, #031835 100%);
  border-radius: 28px;
  padding: 5.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(45,10,122,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Background Patterns & Orbs */
.cta-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}
.cta-orb-1 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: -200px; left: -100px; filter: blur(50px);
  pointer-events: none;
}
.cta-orb-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  bottom: -150px; right: -50px; filter: blur(50px);
  pointer-events: none;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.cta-badge i { color: #6EE7B7; font-size: 0.75rem; }

.cta-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.cta-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 580px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--purple) !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.95rem 2rem;
  border-radius: 14px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.cta-btn-primary i { transition: transform 0.2s; }
.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  background: #F8FAFC;
}
.cta-btn-primary:hover i { transform: translateX(3px); }

.cta-btn-secondary {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  color: white !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(8px);
}
.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.6); }
.footer-top { padding: 5rem 0 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo-link img { height: 36px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-contact a { font-size: 0.83rem; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 0.6rem; transition: color 0.2s; }
.footer-contact a:hover { color: white; }
.footer-contact i { color: var(--purple-lt); }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: all 0.2s;
}
.footer-socials a:hover { background: var(--purple); border-color: var(--purple); color: white; transform: translateY(-2px); }
.footer-links-col h5 { font-size: 0.78rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-inner p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.payment-icons { display: flex; gap: 1.1rem; color: rgba(255,255,255,0.3); font-size: 1.6rem; }

/* ═══════════════════════════════════════════════════════
   CHAT WIDGET
══════════════════════════════════════════════════════════ */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; }
.chat-toggle {
  width: 58px; height: 58px;
  background: var(--grad-brand); color: white;
  border-radius: 50%; font-size: 1.25rem;
  box-shadow: var(--shadow-brand);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  transition: all 0.3s var(--ease); border: none;
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 16px 48px rgba(124,58,237,0.55); }
.chat-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; background: var(--red); color: white;
  font-size: 0.7rem; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.chat-popup {
  position: absolute; bottom: 72px; right: 0; width: 320px;
  background: white; border: 1px solid var(--bg-border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  overflow: hidden; transform-origin: bottom right;
  transform: scale(0.9); opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease);
}
.chat-popup.open { transform: scale(1); opacity: 1; pointer-events: all; }
.chat-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; background: var(--grad-brand);
}
.chat-agent { display: flex; align-items: center; gap: 0.75rem; }
.agent-avatar { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; }
.chat-popup-header strong { display: block; font-size: 0.88rem; color: white; }
.agent-status { font-size: 0.72rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.4rem; }
.chat-close { color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: color 0.2s; cursor: pointer; }
.chat-close:hover { color: white; }
.chat-body { padding: 1.25rem; background: var(--bg-surface); }
.chat-bubble { background: white; border: 1px solid var(--bg-border); border-radius: 12px 12px 12px 4px; padding: 0.85rem 1rem; font-size: 0.875rem; color: var(--text-bright); line-height: 1.6; box-shadow: var(--shadow-xs); }
.chat-time { display: block; font-size: 0.7rem; color: var(--text-dim); margin-top: 0.4rem; }
.chat-actions { padding: 0 1.25rem 1.25rem; background: var(--bg-surface); display: flex; flex-direction: column; gap: 0.5rem; }
.chat-action-btn {
  background: white; border: 1px solid var(--bg-border);
  border-radius: var(--r-sm); padding: 0.65rem 1rem;
  font-size: 0.82rem; color: var(--text-bright); font-weight: 600;
  transition: all 0.2s; text-align: center; display: block; box-shadow: var(--shadow-xs);
}
.chat-action-btn:hover { border-color: rgba(124,58,237,0.3); color: var(--purple); background: var(--purple-dim); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .vds-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-scroll-hint { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  
  .guarantee-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .guarantee-header-stats { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 1rem; }
  .guarantee-stat { padding: 0 1rem; }
  .guarantee-features { grid-template-columns: 1fr; }
  .guarantee-feature:nth-child(even) { border-right: none; }
  .guarantee-feature:nth-child(3) { border-bottom: 1px solid var(--bg-border); }
  .guarantee-feature { border-right: none; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    height: calc(100vh - 72px);
    background: white; padding: 1.5rem;
    overflow-y: auto; z-index: 90;
    border-top: 1px solid var(--bg-border);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav.open .nav-list { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .main-nav.open .mega-menu { display: none; position: static; opacity: 1; visibility: visible; pointer-events: all; transform: none; width: 100%; margin-top: 0.5rem; border-radius: var(--r-lg); box-shadow: none; border: 1px solid var(--bg-border); }
  .main-nav.open .nav-item-mega.open .mega-menu { display: block; }
  .main-nav.open .mega-inner { grid-template-columns: 1fr; }
  .main-nav.open .mega-column { padding: 1rem; border-right: none; border-bottom: 1px solid var(--bg-border); }
  .main-nav.open .mega-column:last-child { border-bottom: none; }
  .main-nav.open .mega-promo { border-left: none; border-top: 1px solid var(--bg-border); background: var(--bg-surface); }
  
  .hamburger { display: flex; }
  .topbar-left { display: none; }
  .topbar-right { gap: 0.35rem; }
  .promo-bar-text { display: none; }
  .promo-bar-content { gap: 0.6rem; }
  .header-inner { gap: 1rem; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .domain-box { padding: 2rem 1.5rem; }
  .cta-banner { padding: 3rem 2rem; }
  .vds-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .guarantee-header-stats { justify-content: center; }
  .guarantee-footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .gf-badge { width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .btn-lg { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .domain-input-wrap { flex-wrap: wrap; }
  .domain-input-wrap .btn { border-radius: 0 0 var(--r-lg) var(--r-lg); width: 100%; justify-content: center; }
  .tld-price-row { justify-content: flex-start; }
  
  .guarantee-header { padding: 1.5rem; }
  .guarantee-feature { padding: 1.25rem 1rem; gap: 0.75rem; }
  .guarantee-stat { padding: 0 0.5rem; }
  .guarantee-stat-sep { display: none; }
}

/* =========================================================================
   INNER PAGE SPECIFIC STYLES
   ========================================================================= */

.hero-section.inner-page-hero {
  padding: 8rem 0 4rem; /* less padding for inner pages */
  min-height: auto;
}
.inner-page-hero .hero-inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.inner-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.inner-hero-icon-wrapper {
  width: 250px;
  height: 250px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--bg-border);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  position: relative;
  animation: card-float 6s ease-in-out infinite;
}
.inner-hero-icon-wrapper.linux i { color: #10B981; }
.inner-hero-icon-wrapper.windows i { color: #0EA5E9; }

.inner-hero-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  z-index: -1;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  opacity: 0.15;
  filter: blur(15px);
}

/* Inner Features (Neden Biz?) */
.inner-features-section {
  padding: 4rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  margin-top: 2rem;
}
.inner-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media(max-width: 991px) {
  .inner-features-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-page-hero .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .inner-page-hero .hero-cta-row { justify-content: center; }
  .inner-page-hero .hero-trust { justify-content: center; }
}
@media(max-width: 768px) {
  .inner-features-grid { grid-template-columns: 1fr; }
}

.inner-feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.inner-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, 0.2);
}
.inner-feature-card .if-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.inner-feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.inner-feature-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Inner Page 4-Column Pricing */
.inner-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
@media(max-width: 1200px) {
  .inner-plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
  .inner-plans-grid { grid-template-columns: 1fr; }
}

.inner-plan-card {
  background: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  z-index: 1;
}
.inner-plan-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.1);
  transform: translateY(-8px);
  z-index: 2;
}

/* Glassmorphism for the featured card */
.inner-plan-card.iperform {
  border: 2px solid var(--purple);
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
}
.inner-plan-card.iperform:hover {
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25);
  transform: translateY(-10px);
}


.inner-plan-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white; padding: 0.4rem 1.25rem; border-radius: 99px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); text-transform: uppercase;
  white-space: nowrap; z-index: 5;
}

/* New UI Flow: Icon at top */
.inner-plan-icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.5rem auto;
  background: rgba(124, 58, 237, 0.05); color: var(--purple);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.inner-plan-header { text-align: center; margin-bottom: 0.5rem; }
.inner-plan-name { font-size: 1.4rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; letter-spacing:-0.5px; }
.inner-plan-desc { font-size: 0.85rem; color: var(--text-dim); }

.inner-plan-price { text-align: center; margin: 1.5rem 0 2rem 0; padding-bottom: 1.5rem; border-bottom: 1px solid var(--bg-border); }
.inner-plan-price .currency { font-size: 1.25rem; font-weight: 600; color: var(--text-dim); vertical-align: super; }
.inner-plan-price .plan-amount {
  font-size: 3.5rem; font-weight: 900; line-height: 1; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--black) 0%, var(--purple-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.iperform .inner-plan-price .plan-amount {
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.inner-plan-price .period { font-size: 0.9rem; color: var(--text-dim); font-weight: 600; margin-left:2px; }

/* Enhanced Spec Sheet List */
.inner-plan-features { list-style: none; padding: 0; margin: 0 0 2rem 0; flex-grow: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.inner-plan-features li { 
  display: flex; align-items: center; gap: 0.75rem; 
  font-size: 0.9rem; color: var(--text); 
  padding: 0.6rem 0.75rem; border-radius: 8px;
  transition: background 0.2s ease;
}
.inner-plan-features li:nth-child(odd) { background: rgba(0,0,0,0.015); }
.inner-plan-features li:hover { background: rgba(124, 58, 237, 0.04); }
.inner-plan-features li i { color: var(--green); font-size: 0.9rem; flex-shrink: 0; }
.inner-plan-features li.off { color: var(--text-muted); text-decoration: line-through; opacity:0.6; }
.inner-plan-features li.off:hover { background: transparent; }
.inner-plan-features li.off i { color: #cbd5e1; text-decoration:none; }

.inner-plan-cta {
  display: block; width: 100%; text-align: center;
  padding: 1rem; border-radius: var(--r-md);
  font-weight: 700; font-size: 1rem; transition: all 0.3s var(--ease);
}
.inner-plan-cta.btn-outline { background: transparent; border: 2px solid rgba(124, 58, 237, 0.3); color: var(--purple); }
.inner-plan-cta.btn-outline:hover { background: rgba(124, 58, 237, 0.05); border-color: var(--purple); }
.inner-plan-cta.btn-primary { 
  background: linear-gradient(135deg, var(--purple), var(--cyan)); 
  color: white; border: none; box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3); 
}
.inner-plan-cta.btn-primary:hover { box-shadow: 0 12px 25px rgba(124, 58, 237, 0.5); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   VDS PLAN CARD — HARDWARE SPEC BARS
══════════════════════════════════════════════════════════ */
.vds-hw-specs {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.iperform .vds-hw-specs {
  background: rgba(124,58,237,0.04);
  border-color: rgba(124,58,237,0.18);
}
.hw-spec-row {
  display: grid;
  grid-template-columns: 36px 1fr 52px;
  align-items: center;
  gap: 0.6rem;
}
.hw-spec-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hw-spec-label i { font-size: 0.7rem; }
.hw-spec-cores {
  display: flex;
  gap: 3px;
  align-items: center;
}
.core-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--bg-border);
  transition: background 0.2s;
}
.core-dot.active {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}
.iperform .core-dot.active {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.hw-spec-bar {
  height: 7px;
  background: var(--bg-border);
  border-radius: 99px;
  overflow: hidden;
}
.hw-spec-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: width 0.6s var(--ease);
}
.iperform .hw-spec-fill {
  background: linear-gradient(90deg, var(--purple), var(--blue));
}
.hw-spec-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--black);
  text-align: right;
  white-space: nowrap;
}

/* VDS OS Row */
.vds-os-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.vds-os-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.65rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.vds-os-badge:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-dim);
}
.vds-os-badge i { font-size: 0.8rem; }

/* VDS Plan card: side-by-side icon + name on top */
.vds-plan-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.vds-plan-top .inner-plan-icon {
  margin: 0;
  flex-shrink: 0;
}
.vds-plan-top .inner-plan-header {
  text-align: left;
  margin-bottom: 0;
}
.vds-plan-network {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 0.3rem;
}
.vds-plan-network i { font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════
   LINUX PLAN CARD ENHANCEMENTS
══════════════════════════════════════════════════════════ */
.linux-plan-accent {
  height: 4px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
}
.iperform .linux-plan-accent {
  margin-top: 1rem;
}
.linux-storage-visual {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}
.linux-storage-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.linux-storage-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.linux-storage-amount {
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
}
.linux-storage-bar {
  height: 6px;
  background: var(--bg-border);
  border-radius: 99px;
  overflow: hidden;
}
.linux-storage-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.8s var(--ease);
}
.linux-plan-stats {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.linux-stat-pill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.55rem 0.4rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  text-align: center;
}
.linux-stat-pill strong {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.linux-stat-pill span {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
/* ═══════════════════════════════════════════════════════
   MODERN MAIL PLANS — Concept UI
══════════════════════════════════════════════════════════ */
.mail-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mail-card {
    background: var(--white);
    border: 1px solid var(--bg-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.mail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: var(--purple-lt);
}

.mc-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    transition: opacity 0.4s;
}

.mail-card:hover .mc-glow {
    opacity: 0.25;
}

.mc-glow-indigo { background: #6366f1; }
.mc-glow-purple { background: #8b5cf6; }
.mc-glow-blue   { background: #3b82f6; }

.mc-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.mc-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-surface);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--purple);
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.mc-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.mc-header p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0.2rem 0 0 0;
}

.mc-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.mc-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dim);
}

.plan-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -2px;
}

.mc-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dim);
}

.mc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--bg-surface);
    border-radius: 18px;
    border: 1px solid var(--bg-border);
}

.mc-stat {
    display: flex;
    flex-direction: column;
}

.mc-stat-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--black);
}

.mc-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.mc-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.mc-features li i {
    color: var(--green);
    font-size: 0.85rem;
}

.mc-features li.off {
    opacity: 0.5;
    text-decoration: line-through;
}

.mc-features li.off i {
    color: var(--text-dim);
}

/* Featured Variant */
.mc-featured {
    border-color: var(--purple-lt);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.mc-featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--grad-brand);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

@media (max-width: 991px) {
    .mail-concept-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mail-concept-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ═══════════════════════════════════════════════════════
   TRADEMARK CERTIFICATE PLANS — Concept UI
══════════════════════════════════════════════════════════ */
.tm-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.tm-card {
    background: var(--white);
    border: 1px solid var(--bg-border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    /* Certificate-like subtle texture */
    background-image: radial-gradient(var(--bg-border) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #fff;
}

.tm-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-lt);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.08);
}

.tm-seal {
    width: 64px;
    height: 64px;
    background: var(--bg-surface);
    border-radius: 50%;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--bg-border);
    color: var(--text-dim);
    transition: all 0.4s ease;
}

.tm-card:hover .tm-seal {
    border-color: var(--purple);
    color: var(--purple);
    transform: rotate(15deg);
}

.tm-seal i { font-size: 1.25rem; }
.tm-seal-text { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; margin-top: -2px; }

.tm-seal-gold { border-color: rgba(245, 158, 11, 0.3); color: #F59E0B; }
.tm-seal-blue { border-color: rgba(14, 165, 233, 0.3); color: #0EA5E9; }

.tm-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.tm-header p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin: 0.25rem 0 2rem 0;
}

.tm-price-box {
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.tm-service-fee {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-border);
}

.tm-fee-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tm-fee-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--black);
}

.tm-official-fee .tm-fee-amount {
    font-size: 0.95rem;
    color: var(--purple);
}

.tm-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex: 1;
}

.tm-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-bright);
    margin-bottom: 0.85rem;
}

.tm-features li i {
    color: var(--purple);
    margin-top: 0.2rem;
    font-size: 0.95rem;
}

/* Featured / Euro-Premium */
.tm-featured {
    border: 2px solid var(--purple-lt);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.05);
}

.tm-featured-tag {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background: var(--grad-brand);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

@media (max-width: 991px) {
    .tm-concept-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tm-concept-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ═══════════════════════════════════════════════════════
   INNER PAGE - MODERN UI SYSTEM
══════════════════════════════════════════════════════════ */

/* Hero Modern */
.hero-inner-modern {
  position: relative;
  padding: 10rem 0 8rem;
  background: #020617;
  overflow: hidden;
  text-align: center;
}

.hero-main-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glass-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: orb-float 20s infinite alternate;
}

.hero-orb-blue {
  background: #3B82F6;
  top: -10%; left: -10%;
}

.hero-orb-indigo {
  background: #6366F1;
  bottom: -10%; right: -10%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.1); }
}

.hero-inner-container {
  position: relative;
  z-index: 2;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #06B6D4;
  border-radius: 50%;
  box-shadow: 0 0 12px #06B6D4;
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-title-modern {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-gradient-azure {
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-modern {
  font-size: 1.25rem;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

/* Modern Search Bar */
.modern-domain-search {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 24px;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}

.search-icon {
  color: #38BDF8;
  font-size: 1.5rem;
}

.search-input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.15rem;
  font-weight: 500;
}

.search-input-wrapper input::placeholder {
  color: #475569;
}

.search-input-wrapper input:focus {
  outline: none;
}

.search-btn-modern {
  background: #3B82F6;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.search-btn-modern:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

/* Fast TLD Pills */
.fast-tld-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tld-pill-modern {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tld-pill-modern:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.2);
}

.tld-pill-modern span {
  color: #38BDF8;
  margin-left: 0.5rem;
}

/* Hero Stats */
.hero-stats-modern {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 6rem;
  flex-wrap: wrap;
}

.h-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #64748B;
  font-size: 0.95rem;
  font-weight: 500;
}

.h-stat-card i {
  color: #38BDF8;
  font-size: 1.25rem;
}

/* Section Header Modern */
.section-header-modern {
  text-align: center;
  margin-bottom: 5rem;
}

.header-badge-modern {
  background: var(--purple-dim);
  color: var(--purple);
  padding: 0.5rem 1.5rem;
  border-radius: 99px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.header-title-modern {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.header-subtitle-modern {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* TLD Concept Grid */
.tld-pricing-section {
  padding: 8rem 0;
  background: #F8FAFF;
}

.tld-concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tld-modern-card {
  background: white;
  border: 1px solid var(--bg-border);
  padding: 2.5rem 2rem;
  border-radius: 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}

.tld-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  border-color: var(--purple-lt);
}

.tld-modern-card.highlight {
  border: 2px solid var(--purple-lt);
  background: linear-gradient(to bottom, white, #FAF5FF);
}

.tld-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--bg-surface);
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
}

.tld-badge.hot {
  background: #FFEDD5;
  color: #EA580C;
}

.tld-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.tld-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 0.25rem;
}

.tld-price small {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 500;
}

.tld-renew {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.tld-features-mini {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.tld-features-mini span {
  font-size: 0.88rem;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tld-features-mini i {
  color: #10B981;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.tld-action-footer {
  text-align: center;
  margin-top: 4rem;
}

/* Features Grid Modern */
.domain-features-modern {
  padding: 8rem 0;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.feat-card-modern {
  text-align: center;
}

.feat-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  transition: all 0.3s;
}

.icon-blue { background: #EEF2FF; color: #4F46E5; }
.icon-purple { background: #FAF5FF; color: #9333EA; }
.icon-green { background: #ECFDF5; color: #059669; }
.icon-azure { background: #F0F9FF; color: #0EA5E9; }

.feat-card-modern:hover .feat-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.feat-card-modern h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feat-card-modern p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tld-concept-grid, .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tld-concept-grid, .features-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* Steps Section Modern */
.steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  background: white;
  border: 4px solid var(--bg-alt);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.step-item:hover .step-num {
  border-color: var(--purple-lt);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(124,58,237,0.1);
}

.step-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.step-arrow {
  padding-top: 1.25rem;
  color: var(--bg-border);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

.step-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--bg-alt);
  color: var(--purple);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s;
}

.step-item:hover .step-icon-modern {
  background: var(--purple);
  color: white;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 20px rgba(124,58,237,0.2);
}

/* WHOIS Section Modern */
.whois-section-modern {
  padding: 8rem 0;
  background: white;
}

.whois-card-modern {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.whois-search-inner {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.whois-search-inner input {
  flex: 1;
  background: var(--bg-surface);
  border: 2px solid var(--bg-border);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.3s;
}

.whois-search-inner input:focus {
  outline: none;
  border-color: var(--purple-lt);
  background: white;
}

.whois-result-modern {
  border-top: 1px solid var(--bg-border);
  padding-top: 3rem;
  animation: fadeIn 0.5s ease;
}

.whois-res-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
}

.whois-res-header i {
  color: #10B981;
}

.whois-res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.whois-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wi-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wi-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.text-green { color: #10B981; }
.text-blue { color: #3B82F6; }

/* FAQ Section Modern */
.faq-section-modern {
  padding: 8rem 0;
  background: var(--bg-surface);
}

.faq-grid-modern {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.faq-item-modern {
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.faq-item-modern:hover {
  border-color: var(--purple-lt);
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.faq-q {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q i {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: transform 0.3s;
}

.faq-a {
  margin-top: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .whois-search-inner { flex-direction: column; }
  .whois-res-grid { grid-template-columns: 1fr; }
}

/* Transfer Section Modern */
.transfer-section-modern {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.transfer-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.transfer-content-modern h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.transfer-benefits-modern {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dim);
}

.t-benefit-item i {
  color: #10B981;
}

.transfer-card-modern {
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.t-step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.t-step-num {
  width: 40px;
  height: 40px;
  background: var(--purple-dim);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.t-step-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.t-step-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

@media (max-width: 991px) {
  .transfer-grid-modern { grid-template-columns: 1fr; gap: 3rem; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE - MODERN UI
══════════════════════════════════════════════════════════ */

.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding: 6rem 0;
}

.contact-sidebar-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card-modern {
  background: white;
  border: 1px solid var(--bg-border);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s;
}

.info-card-modern:hover {
  transform: translateX(10px);
  border-color: var(--purple-lt);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-icon-modern {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content-modern h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-content-modern p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.info-content-modern a {
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
}

/* Glass Form Modern */
.contact-form-modern {
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.form-title-modern {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-subtitle-modern {
  color: var(--text-dim);
  margin-bottom: 3rem;
}

.modern-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.modern-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modern-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-input, .modern-select, .modern-textarea {
  background: var(--bg-surface);
  border: 2px solid var(--bg-border);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.modern-input:focus, .modern-select:focus, .modern-textarea:focus {
  outline: none;
  border-color: var(--purple-lt);
  background: white;
  box-shadow: 0 0 0 4px var(--purple-dim);
}

.modern-textarea { min-height: 150px; resize: none; }

.modern-submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.modern-submit-btn:hover {
  background: var(--purple-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(124,58,237,0.3);
}

@media (max-width: 991px) {
  .contact-grid-modern { grid-template-columns: 1fr; }
  .modern-form-row { grid-template-columns: 1fr; }
  .contact-form-modern { padding: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════
   INFRASTRUCTURE PAGE - MODERN UI
══════════════════════════════════════════════════════════ */

.infra-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 6rem 0;
}

.infra-card-modern {
  background: white;
  border: 1px solid var(--bg-border);
  padding: 3rem 2.5rem;
  border-radius: 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.infra-card-modern:hover {
  transform: translateY(-10px);
  border-color: var(--purple-lt);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.infra-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  background: var(--bg-surface);
}

/* DC Locations Grid */
.dc-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.dc-loc-card {
  background: white;
  border: 1px solid var(--bg-border);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s;
}

.dc-loc-card:hover {
  border-color: var(--purple-lt);
  background: var(--bg-surface);
}

.dc-flag-modern {
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.dc-info-modern h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.dc-info-modern p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.dc-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #10B981;
  background: #ECFDF5;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-top: 0.5rem;
}

.status-dot-active {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

@media (max-width: 1024px) {
  .infra-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .dc-locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .infra-grid-modern, .dc-locations-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM PAGE COMPONENTS (UI SYSTEM 2.0)
══════════════════════════════════════════════════════════ */

.contact-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.contact-info-panel {
    width: 40%;
    padding: 5rem 4rem;
    background: linear-gradient(160deg, #0D1B3E 0%, #0A0618 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-panel {
    width: 60%;
    padding: 5rem 4rem;
    background: rgba(255, 255, 255, 0.02);
}

.panel-header h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: white; letter-spacing: -1px; }
.panel-header p { color: rgba(255,255,255,0.5); line-height: 1.6; font-size: 1.1rem; }

.p-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    transition: transform 0.3s;
}
.p-info-item:hover { transform: translateX(10px); }

.p-info-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--purple-lt);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.premium-info-list h5 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.premium-info-list a { color: white; text-decoration: none; font-weight: 700; font-size: 1.35rem; transition: color 0.3s; }
.premium-info-list a:hover { color: var(--purple-lt); }

.social-links-premium { display: flex; gap: 1.25rem; }
.social-links-premium a {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: white; transition: all 0.3s;
    font-size: 1.2rem;
}
.social-links-premium a:hover { 
    background: var(--purple); 
    border-color: var(--purple-lt); 
    transform: translateY(-5px) rotate(8deg); 
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Form Premium Elements */
.input-group-modern { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.input-group-modern label { font-size: 0.7rem; font-weight: 800; color: #64748b; letter-spacing: 1.5px; text-transform: uppercase; }

.input-group-modern input, .input-group-modern select, .input-group-modern textarea {
    background: rgba(248, 250, 252, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--black);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-group-modern input:focus, .input-group-modern select:focus, .input-group-modern textarea:focus { 
    border-color: var(--purple); 
    outline: none; 
    background: white; 
    box-shadow: 0 0 0 5px var(--purple-dim), 0 20px 40px rgba(124, 58, 237, 0.08);
    transform: translateY(-3px);
}

.btn-premium-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.btn-premium-glow::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.btn-premium-glow:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.btn-premium-glow:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.office-location-card {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    margin: 4rem auto;
    text-align: center;
}

.loc-badge {
    background: var(--purple-dim); color: var(--purple);
    padding: 0.5rem 1.25rem; border-radius: 99px;
    font-size: 0.75rem; font-weight: 800; display: inline-block; margin-bottom: 1.5rem;
}

.loc-map-container { border-radius: 24px; overflow: hidden; margin-top: 2rem; }

@media (max-width: 991px) {
    .contact-card-premium { flex-direction: column; margin-top: -50px; }
    .contact-info-panel, .contact-form-panel { width: 100%; padding: 3rem 2rem; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM UI UTILITIES (UI SYSTEM 3.0)
══════════════════════════════════════════════════════════ */

.legal-reader-modern {
    background: white;
    border: 1px solid var(--bg-border);
    border-radius: 40px;
    padding: 5rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.04);
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.legal-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-item {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.sidebar-item.active {
    background: var(--purple-dim);
    color: var(--purple);
}

.sidebar-item:hover:not(.active) {
    background: #f8fafc;
    color: var(--black);
    transform: translateX(5px);
}

.legal-text-content {
    flex: 1;
}

.legal-text-content h3 { font-size: 1.75rem; margin: 3rem 0 1.5rem; color: var(--black); }
.legal-text-content p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.legal-text-content ul { padding-left: 1.5rem; margin-bottom: 2rem; }
.legal-text-content li { color: var(--text-dim); line-height: 1.8; margin-bottom: 0.75rem; position: relative; }
.legal-text-content li::before { content: '•'; color: var(--purple); font-weight: 800; position: absolute; left: -1.25rem; }

.legal-highlight-box {
    background: #f8fafc;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px dashed var(--bg-border);
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
}

.legal-highlight-box i { font-size: 1.5rem; color: var(--purple); }
.legal-highlight-box p { margin-bottom: 0; font-style: italic; font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   PANEL PAGES — LIGHT MODE
   panel-hizmetlerim, panel-alan-adlarim, panel-faturalar,
   panel-destek, panel-bakiye, panel-profil
══════════════════════════════════════════════════════════ */

/* ── Panel Sub-Navigation ── */
.panel-subnav {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border) !important;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-xs);
}
.panel-subnav-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; height:52px; }
.panel-nav { display:flex; align-items:center; gap:0.25rem; overflow-x:auto; scrollbar-width:none; }
.panel-nav::-webkit-scrollbar { display:none; }

.pnav-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9px;
  text-decoration: none;
  color: var(--text-dim) !important;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all 0.2s;
}
.pnav-item i { font-size:0.85rem; }
.pnav-item:hover { background:var(--purple-dim) !important; color:var(--purple) !important; }
.pnav-item.active { background:var(--purple-dim) !important; color:var(--purple) !important; font-weight:700; }

.pnav-badge { display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 5px; border-radius:99px; font-size:0.65rem; font-weight:800; background:var(--bg-border); color:var(--text-dim); }
.pnav-badge.danger { background:rgba(239,68,68,0.12); color:#DC2626; }

.panel-nav-user { display:flex; align-items:center; gap:0.75rem; flex-shrink:0; }
.pnav-avatar { width:30px; height:30px; border-radius:8px; background:linear-gradient(135deg,#7C3AED,#06B6D4); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.72rem; color:white; }
.pnav-name { font-size:0.82rem; font-weight:700; color:var(--text-bright) !important; }
.pnav-logout { color:var(--text-dim) !important; font-size:0.9rem; transition:color 0.2s; text-decoration:none; }
.pnav-logout:hover { color:#DC2626 !important; }

/* ── Panel Content ── */
.panel-content { padding:2.5rem 0 4rem; min-height:70vh; }
.page-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:2rem; }
.page-top h1 { font-size:1.6rem; font-weight:800; letter-spacing:-0.5px; color:var(--black); }
.breadcrumb { display:flex; align-items:center; gap:0.5rem; color:var(--text-dim); font-size:0.8rem; font-weight:500; margin-bottom:0.35rem; }
.breadcrumb i { font-size:0.6rem; }

/* ── Panel Shared Button ── */
.btn-new { display:inline-flex; align-items:center; gap:0.6rem; padding:0.7rem 1.35rem; border-radius:11px; background:linear-gradient(135deg,#7C3AED,#4F46E5); color:white; font-weight:700; font-size:0.88rem; text-decoration:none; transition:all 0.3s; box-shadow:0 4px 14px rgba(124,58,237,0.3); }
.btn-new:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(124,58,237,0.4); }

/* ── Alert Banners ── */
.renew-alert { background:rgba(245,158,11,0.06); border:1px solid rgba(245,158,11,0.2); border-radius:16px; padding:1rem 1.5rem; display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem; }
.unpaid-alert { background:rgba(239,68,68,0.06); border:1px solid rgba(239,68,68,0.18); border-radius:16px; padding:1rem 1.5rem; display:flex; align-items:center; gap:1.25rem; margin-bottom:1.75rem; }

/* ── Filter Tabs ── */
.filter-tabs { display:flex; gap:0.4rem; background:var(--bg-alt); border:1px solid var(--bg-border); border-radius:12px; padding:0.3rem; width:fit-content; margin-bottom:1.5rem; }
.ftab { padding:0.5rem 1rem; border-radius:9px; font-size:0.82rem; font-weight:700; color:var(--text-dim); cursor:pointer; border:none; background:none; font-family:'Plus Jakarta Sans',sans-serif; transition:all 0.2s; display:flex; align-items:center; gap:0.4rem; }
.ftab.active { background:var(--purple); color:white; }
.ftab:not(.active):hover { background:var(--bg-card); color:var(--text-bright); }

/* ── Service Cards ── */
.svc-grid { display:flex; flex-direction:column; gap:0.75rem; }
.svc-card { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:18px; padding:1.25rem 1.5rem; display:grid; grid-template-columns:48px 1fr auto auto auto auto; gap:1.25rem; align-items:center; transition:all 0.25s; box-shadow:var(--shadow-xs); }
.svc-card:hover { border-color:rgba(124,58,237,0.25); box-shadow:var(--shadow-sm); transform:translateY(-1px); }
.svc-icon { width:48px; height:48px; border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.svc-name { font-weight:700; font-size:0.93rem; color:var(--black); }
.svc-meta { font-size:0.78rem; color:var(--text-dim); margin-top:0.25rem; }
.svc-price { font-weight:800; font-size:0.93rem; white-space:nowrap; color:var(--black); }
.svc-renew { font-size:0.78rem; color:var(--text-dim); white-space:nowrap; }

/* ── Status Pills ── */
.spill { display:inline-flex; align-items:center; gap:0.4rem; padding:0.3rem 0.85rem; border-radius:99px; font-size:0.72rem; font-weight:800; }
.spill-active   { background:rgba(16,185,129,0.1); color:#059669; }
.spill-pending  { background:rgba(245,158,11,0.1); color:#D97706; }
.spill-suspended{ background:rgba(239,68,68,0.1); color:#DC2626; }
.spill-expired  { background:rgba(107,114,128,0.1); color:#6B7280; }
.spill-paid     { background:rgba(16,185,129,0.1); color:#059669; }
.spill-unpaid   { background:rgba(239,68,68,0.1); color:#DC2626; }
.spill-cancelled{ background:rgba(107,114,128,0.1); color:#6B7280; }

.svc-btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.5rem 1rem; border-radius:9px; font-size:0.8rem; font-weight:700; text-decoration:none; transition:all 0.2s; }

/* ── Invoice / Domain Tables ── */
.mini-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-bottom:2rem; }
.mini-stat { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:15px; padding:1.25rem 1.5rem; box-shadow:var(--shadow-xs); }
.mini-stat-val { font-size:1.5rem; font-weight:800; line-height:1; margin-bottom:0.3rem; }
.mini-stat-label { font-size:0.75rem; color:var(--text-dim); font-weight:600; }

.inv-head, .inv-row { display:grid; grid-template-columns:120px 1fr 120px 120px auto auto; gap:1rem; align-items:center; padding:0.875rem 1rem; }
.inv-head { border-bottom:1px solid var(--bg-border); }
.inv-head span { font-size:0.72rem; font-weight:800; text-transform:uppercase; letter-spacing:1px; color:var(--text-dim); }
.inv-body .inv-row { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:14px; margin-bottom:0.6rem; transition:all 0.2s; box-shadow:var(--shadow-xs); }
.inv-body .inv-row:hover { border-color:rgba(124,58,237,0.25); box-shadow:var(--shadow-sm); }

.dtable-head, .dtable-row { display:grid; grid-template-columns:1fr 130px 130px auto auto; gap:1rem; align-items:center; padding:0.875rem 1rem; }
.dtable-head { border-bottom:1px solid var(--bg-border); }
.dtable-head span { font-size:0.72rem; font-weight:800; text-transform:uppercase; letter-spacing:1px; color:var(--text-dim); }
.dtable-body .dtable-row { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:14px; margin-bottom:0.6rem; transition:all 0.2s; box-shadow:var(--shadow-xs); }
.dtable-body .dtable-row:hover { border-color:rgba(124,58,237,0.25); box-shadow:var(--shadow-sm); }

.btn-pay { display:inline-flex; align-items:center; gap:0.5rem; padding:0.5rem 1rem; border-radius:9px; background:var(--purple-dim); color:var(--purple); font-weight:700; font-size:0.8rem; text-decoration:none; transition:all 0.2s; border:none; cursor:pointer; font-family:'Plus Jakarta Sans',sans-serif; }
.btn-pay:hover { background:var(--purple-dim2); }
.btn-pdf { display:inline-flex; align-items:center; gap:0.4rem; padding:0.5rem 0.875rem; border-radius:9px; background:var(--bg-surface); color:var(--text-dim); font-weight:700; font-size:0.8rem; text-decoration:none; transition:all 0.2s; border:1px solid var(--bg-border); }
.btn-pdf:hover { color:var(--black); border-color:rgba(124,58,237,0.3); }

/* ── Bakiye ── */
.bakiye-layout { display:grid; grid-template-columns:1fr 340px; gap:2rem; align-items:start; }
.balance-card { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:24px; padding:2rem; margin-bottom:1.5rem; text-align:center; position:relative; overflow:hidden; box-shadow:var(--shadow-sm); }
.balance-card::before { content:""; position:absolute; inset:-40%; background:radial-gradient(circle,rgba(124,58,237,0.06) 0%,transparent 70%); pointer-events:none; }
.balance-label { font-size:0.8rem; font-weight:700; color:var(--text-dim); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:0.75rem; }
.balance-amount { font-size:3rem; font-weight:800; color:var(--purple); line-height:1; margin-bottom:0.5rem; }
.balance-sub { font-size:0.83rem; color:var(--text-dim); }

.form-card { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:20px; padding:1.75rem; margin-bottom:1.5rem; box-shadow:var(--shadow-xs); }
.form-card h4 { font-size:1rem; font-weight:800; margin-bottom:1.5rem; color:var(--black); }
.amount-btns { display:grid; grid-template-columns:repeat(4,1fr); gap:0.6rem; margin-bottom:1.25rem; }
.amt-btn { padding:0.7rem 0.5rem; border-radius:11px; background:var(--bg-surface); border:1.5px solid var(--bg-border); color:var(--text); font-weight:700; font-size:0.88rem; cursor:pointer; transition:all 0.2s; font-family:'Plus Jakarta Sans',sans-serif; text-align:center; }
.amt-btn:hover, .amt-btn.active { border-color:rgba(124,58,237,0.4); background:var(--purple-dim); color:var(--purple); }
.form-group { margin-bottom:1.1rem; }
.form-label { display:block; font-size:0.78rem; font-weight:700; color:var(--text-dim); margin-bottom:0.45rem; text-transform:uppercase; letter-spacing:0.04em; }
.form-ctrl { width:100%; background:var(--bg-surface); border:1.5px solid var(--bg-border); border-radius:11px; padding:0.8rem 1rem; color:var(--black); font-family:'Plus Jakarta Sans',sans-serif; font-size:0.9rem; outline:none; transition:all 0.2s; }
.form-ctrl:focus { border-color:rgba(124,58,237,0.5); box-shadow:0 0 0 3px rgba(124,58,237,0.08); }
.form-ctrl::placeholder { color:var(--text-dim); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ── Profile ── */
.profile-hero { background:var(--bg-card); border:1px solid var(--bg-border); border-radius:24px; padding:2rem; display:flex; align-items:center; gap:2rem; margin-bottom:2rem; box-shadow:var(--shadow-sm); }
.profile-avatar-wrap { position:relative; flex-shrink:0; }
.profile-avatar { width:80px; height:80px; border-radius:20px; background:linear-gradient(135deg,#7C3AED,#06B6D4); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.75rem; color:white; }
.avatar-edit { position:absolute; bottom:-6px; right:-6px; width:26px; height:26px; background:#7C3AED; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:0.7rem; cursor:pointer; border:2px solid white; color:white; }
.profile-info { flex:1; }
.profile-name { font-size:1.35rem; font-weight:800; color:var(--black); }
.profile-role { font-size:0.83rem; color:var(--text-dim); margin-top:0.25rem; }
.profile-badges { display:flex; gap:0.6rem; margin-top:0.75rem; flex-wrap:wrap; }
.pbadge { display:inline-flex; align-items:center; gap:0.4rem; padding:0.3rem 0.75rem; border-radius:7px; font-size:0.72rem; font-weight:700; }
.pbadge-green { background:rgba(16,185,129,0.1); color:#059669; }
.pbadge-blue  { background:rgba(14,165,233,0.1); color:#0EA5E9; }
.profile-stats { display:flex; gap:2rem; }
.pstat { text-align:center; }
.pstat-val { font-size:1.4rem; font-weight:800; color:var(--black); }
.pstat-label { font-size:0.72rem; color:var(--text-dim); font-weight:600; margin-top:0.2rem; }

.tab-nav { display:flex; gap:0.4rem; background:var(--bg-alt); border:1px solid var(--bg-border); border-radius:12px; padding:0.3rem; width:fit-content; margin-bottom:1.75rem; }
.tnav { padding:0.55rem 1.1rem; border-radius:9px; font-size:0.85rem; font-weight:700; color:var(--text-dim); cursor:pointer; border:none; background:none; font-family:'Plus Jakarta Sans',sans-serif; transition:all 0.2s; display:flex; align-items:center; gap:0.5rem; }
.tnav.active { background:var(--purple); color:white; }
.tnav:not(.active):hover { background:var(--bg-card); color:var(--text-bright); }
.tab-panel { display:none; }
.tab-panel.active { display:block; }

/* ── Responsive Panel ── */
@media (max-width:900px) {
  .mini-stats { grid-template-columns:1fr; }
  .inv-head,.inv-row { grid-template-columns:1fr auto auto; }
  .dtable-head,.dtable-row { grid-template-columns:1fr auto; }
  .svc-card { grid-template-columns:40px 1fr auto auto; }
  .bakiye-layout { grid-template-columns:1fr; }
  .profile-hero { flex-direction:column; text-align:center; }
  .profile-stats { justify-content:center; }
}
@media (max-width:600px) {
  .svc-card { grid-template-columns:1fr auto; }
  .form-row { grid-template-columns:1fr; }
  .profile-badges { justify-content:center; }
  .amount-btns { grid-template-columns:repeat(2,1fr); }
}
