/*
 * ============================================================================
 * MAGAZA TASARIM SISTEMI (ana sayfa + urun sayfalari)
 * ============================================================================
 *
 * Bu dosya YALNIZCA magazaya bakan sayfalarda yuklenir:
 * HomeController ve ProductController -> options["styles"].
 *
 * NEDEN AYRI BIR DOSYA VE AYRI BIR DIL:
 * Ana sayfa bugune kadar ApexHost temasinin bilesenleri (.regular-plan-card,
 * .basic-features-card, .ps-card ...) uzerine yama yapilarak duzeltiliyordu.
 * O bilesenler acik temada tasarlanmis, koyu zeminde duz ve iddiasiz
 * duruyorlar; ustlerine kural yazmak her seferinde temanin kendi degerleriyle
 * cekismek demekti. Burada tema bilesenleri KULLANILMIYOR - bolumlerin
 * tamami kendi isaretlemesi ve kendi stiliyle yeniden yazildi.
 *
 * Onek: .hp-  (home page). Boylece temanin ya da panel.css'in hicbir
 * kuralina carpmiyor, carpismasi da mumkun degil.
 *
 * KOYU ZEMIN ICIN TASARIM NOTU:
 * Acik temada derinlik golgeden gelir. Koyu zeminde golge neredeyse
 * gorunmez; derinlik uc seyden gelir:
 *   1) yuzeyin USTTEN ALTA cok hafif aydinlanmasi (isik yukaridan duser),
 *   2) kenarligin zeminden bir tik acik olmasi,
 *   3) renkli isigin (glow) yuzeyin ARKASINDAN sizmasi.
 * Asagidaki kurallarin tamami bu uc araci kullaniyor.
 */

/* ------------------------------------------------------------- degiskenler */
.hp {
  --hp-bd:        rgba(255, 255, 255, .08);
  --hp-bd-strong: rgba(255, 255, 255, .14);
  --hp-bd-accent: rgba(129, 110, 255, .38);

  --hp-surface:   rgba(255, 255, 255, .026);
  --hp-surface-2: rgba(255, 255, 255, .05);
  --hp-sunken:    rgba(0, 0, 0, .26);

  --hp-lift: linear-gradient(180deg, rgba(255, 255, 255, .045) 0%, rgba(255, 255, 255, 0) 62%);

  --hp-ink:       #f0f0f5;
  --hp-ink-2:     rgba(240, 240, 245, .62);
  --hp-ink-3:     rgba(240, 240, 245, .40);

  --hp-accent:    #6f5bff;
  --hp-accent-2:  #22d3ee;
  --hp-ok:        #22c98c;

  --hp-r-sm: 10px;
  --hp-r:    16px;
  --hp-r-lg: 22px;

  --hp-shadow: 0 24px 60px -30px rgba(0, 0, 0, .95);
}

/* Bolum ritmi: tum bolumler ayni dikey nefesi paylasir. */
.hp-section { position: relative; padding-block: clamp(56px, 6vw, 104px); }
.hp-section + .hp-section { padding-top: 0; }

.hp-wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* ---------------------------------------------------------- bolum basligi */
.hp-head { max-width: 660px; margin-bottom: clamp(28px, 3.4vw, 48px); }
.hp-head-center { margin-inline: auto; text-align: center; }

.hp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 5px 13px;
  border: 1px solid var(--hp-bd);
  border-radius: 999px;
  background: var(--hp-surface);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-ink-2);
}

.hp-h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 1.1rem + 1.9vw, 2.5rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.032em;
  color: var(--hp-ink);
  text-wrap: balance;
}

.hp-sub {
  margin: 0;
  font-size: clamp(.95rem, .9rem + .2vw, 1.06rem);
  line-height: 1.62;
  color: var(--hp-ink-2);
  text-wrap: pretty;
}

.hp-head-center .hp-sub { margin-inline: auto; max-width: 56ch; }

/* Gradyanli vurgu - baslikta tek bir kelime obegi icin. */
.hp-grad {
  background: linear-gradient(96deg, var(--hp-accent) 8%, #a78bfa 48%, var(--hp-accent-2) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================ 1) HERO
 * Ortalanmis metin blogu yerine ASIMETRIK duzen: solda soz, sagda urunun
 * kendisi. Ziyaretci "ne satiyorsunuz" sorusunun cevabini okumadan once
 * goruyor - bir sunucu paneli ekrani.
 */
.hp-hero { padding-block: clamp(44px, 5vw, 84px) clamp(48px, 5vw, 88px); overflow: hidden; }

/* Arka plan: iki renkli isik + cok soluk bir izgara. Izgara "teknik"
   hissi veriyor ama okumayi engellememesi icin maskeyle sonumleniyor. */
.hp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 380px at 18% 8%,  rgba(111, 91, 255, .28), transparent 68%),
    radial-gradient(680px 420px at 88% 34%, rgba(34, 211, 238, .13), transparent 66%);
}

.hp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(760px 460px at 30% 20%, #000 0%, transparent 78%);
  mask-image: radial-gradient(760px 460px at 30% 20%, #000 0%, transparent 78%);
}

.hp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}

/* --- sol sutun --------------------------------------------------------- */
.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--hp-bd);
  border-radius: 999px;
  background: var(--hp-surface);
  font-size: 12px;
  font-weight: 500;
  color: var(--hp-ink-2);
}

.hp-live {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--hp-ok);
}

.hp-live::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(34, 201, 140, .55);
  animation: hp-ping 2.6s ease-out infinite;
}

@keyframes hp-ping {
  0%   { transform: scale(.55); opacity: .95; }
  70%  { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}

.hp-h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 1.25rem + 3.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.038em;
  color: var(--hp-ink);
  text-wrap: balance;
}

.hp-h1 .hp-grad { display: block; }

.hp-hero-lead {
  margin: 0 0 28px;
  max-width: 52ch;
  font-size: clamp(1rem, .95rem + .3vw, 1.12rem);
  line-height: 1.62;
  color: var(--hp-ink-2);
}

/* --- dugmeler ---------------------------------------------------------- */
.hp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hp-btn:hover { text-decoration: none; transform: translateY(-1px); }

.hp-btn-primary {
  background: linear-gradient(180deg, #7c68ff, var(--hp-accent));
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(111, 91, 255, .95);
}

.hp-btn-primary:hover { color: #fff; box-shadow: 0 16px 34px -14px rgba(111, 91, 255, 1); }

.hp-btn-ghost {
  border-color: var(--hp-bd-strong);
  background: var(--hp-surface);
  color: var(--hp-ink);
}

.hp-btn-ghost:hover { border-color: var(--hp-bd-accent); background: var(--hp-surface-2); color: var(--hp-ink); }

/* Fiyat capasi: "bak" yerine "ne kadara" demek karari kolaylastiriyor. */
.hp-price-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* --- guven satiri ------------------------------------------------------ */
.hp-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
}

.hp-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  color: var(--hp-ink-2);
}

.hp-trust svg { color: var(--hp-accent); opacity: .9; flex: 0 0 auto; }
.hp-trust b { color: var(--hp-ink); font-weight: 600; }

/* --- sag sutun: sunucu karti ------------------------------------------- */
/* Panelde gercekten gorulen bilgilerin sadelestirilmis bir temsili.
   Adresler RFC 5737 belgeleme araligindan (203.0.113.x) - gercek bir
   makineyi isaret etmiyor. */
.hp-console {
  position: relative;
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r-lg);
  background:
    radial-gradient(520px 240px at 70% -10%, rgba(111, 91, 255, .18), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  box-shadow: var(--hp-shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}

.hp-console:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-3px); }

.hp-console-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(0, 0, 0, .22);
}

.hp-dots { display: inline-flex; gap: 6px; }
.hp-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.hp-dots i:first-child { background: rgba(245, 101, 101, .55); }
.hp-dots i:nth-child(2) { background: rgba(249, 180, 78, .55); }
.hp-dots i:nth-child(3) { background: rgba(34, 201, 140, .55); }

.hp-console-title {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--hp-ink-3);
}

.hp-console-body { padding: 20px 20px 22px; }

.hp-console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .07);
}

.hp-console-row:last-of-type { border-bottom: 0; }

.hp-console-k { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--hp-ink-3); }
.hp-console-v {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .92rem;
  color: var(--hp-ink);
}

.hp-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(34, 201, 140, .3);
  background: rgba(34, 201, 140, .12);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 600;
}

.hp-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.hp-spec {
  flex: 1 1 0;
  min-width: 84px;
  padding: 11px 12px;
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r-sm);
  background: var(--hp-sunken);
  text-align: center;
}

.hp-spec b {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 1.02rem;
  color: var(--hp-ink);
  letter-spacing: -.01em;
}

.hp-spec span { font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--hp-ink-3); }

.hp-console-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px;
  border-radius: var(--hp-r-sm);
  background: linear-gradient(180deg, rgba(124, 104, 255, .22), rgba(111, 91, 255, .12));
  border: 1px solid rgba(129, 110, 255, .28);
  font-size: .9rem;
  font-weight: 600;
  color: #c7bcff;
}

/* ============================================================ 2) ADIMLAR
 * Yatay zaman cizgisi. Kartlarin arasindaki cizgi surekliligi anlatiyor:
 * bunlar bagimsiz ozellikler degil, sirali bir akis.
 */
/* list-style/margin/padding SIFIRLAMASI sart: bu bir <ol>. Sifirlanmazsa
 * tarayici varsayilani "1. 2. 3." madde isaretlerini kutunun DISINA basar
 * (list-style-position: outside) ve 40px'lik padding-inline-start izgarayi
 * saga kaydirir - dugumler cizgiden kayar. */
.hp-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Kartlarin arkasindan gecen tek cizgi. */
.hp-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hp-bd-accent) 18%, var(--hp-bd-accent) 82%, transparent);
}

.hp-step { position: relative; text-align: center; }

.hp-step-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 1px solid var(--hp-bd-accent);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 25%, rgba(111, 91, 255, .32), rgba(111, 91, 255, .08) 70%),
    #0f0f16;
  color: #c7bcff;
  transition: transform .2s ease, border-color .2s ease;
}

.hp-step:hover .hp-step-node { transform: translateY(-3px); border-color: rgba(129, 110, 255, .7); }

.hp-step-no {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c68ff, var(--hp-accent));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.hp-step h3 { margin: 0 0 8px; font-size: 1.06rem; font-weight: 600; color: var(--hp-ink); letter-spacing: -.015em; }
.hp-step p  { margin: 0 auto; max-width: 34ch; font-size: .9rem; line-height: 1.6; color: var(--hp-ink-2); }

/* ============================================================ 3) PAKETLER
 * Gercek bir fiyat tablosu: rakam kartin en buyuk ogesi, onerilen paket
 * uc ayri isaretle belli oluyor (serit, gradyan kenar, dolu dugme).
 */
/* IZGARA DEGIL ESNEK KUTU: paket sayisi katalogdan geliyor, sabit degil.
 * Dort sutunlu bir izgarada bes paket son satirda tek basina ve SOLA
 * yaslanmis kaliyordu - kirik gorunuyor. Sarmalanan satir burada
 * ortalaniyor, yani 5, 6, 7... her sayi duzgun oturuyor.
 *
 * flex-basis 250px: bu genislikte fiyat, ozellik listesi ve dugme
 * sikismadan siga geliyor. max-width olmazsa tek paketi olan bir
 * katalogda kart tum satiri kaplardi. */
.hp-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: stretch;
}

.hp-plans > .hp-plan { flex: 1 1 250px; min-width: 0; max-width: 320px; }

.hp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r);
  background-image: var(--hp-lift);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hp-plan:hover {
  transform: translateY(-4px);
  border-color: var(--hp-bd-accent);
  box-shadow: var(--hp-shadow);
}

/* Onerilen paket: gradyan kenarlik maske ile ciziliyor - boylece kart
   zemini seffaf kalirken kenar renkli oluyor. */
.hp-plan-featured {
  background-image:
    radial-gradient(420px 200px at 50% -12%, rgba(111, 91, 255, .22), transparent 66%),
    var(--hp-lift);
}

.hp-plan-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, var(--hp-accent), rgba(34, 211, 238, .8), var(--hp-accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hp-plan-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px 6px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #7c68ff, var(--hp-accent));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hp-plan-featured { padding-top: 38px; }

.hp-plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid var(--hp-bd);
  border-radius: 13px;
  background: var(--hp-sunken);
  color: #b3a6ff;
}

.hp-plan-name { margin: 0 0 6px; font-size: 1.12rem; font-weight: 650; color: var(--hp-ink); letter-spacing: -.015em; }

.hp-plan-desc {
  margin: 0 0 20px;
  min-height: 2.85em;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--hp-ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-plan-priceline { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--hp-ink-3); margin-bottom: 4px; }

.hp-plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }

.hp-plan-amount {
  font-size: clamp(1.85rem, 1.3rem + 1.1vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--hp-ink);
  font-variant-numeric: tabular-nums;
}

.hp-plan-cycle { font-size: .85rem; color: var(--hp-ink-3); }

.hp-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--hp-bd-strong);
  border-radius: var(--hp-r-sm);
  background: var(--hp-surface);
  color: var(--hp-ink);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .18s ease, background .18s ease, border-color .18s ease;
}

.hp-plan-cta:hover { gap: 12px; background: var(--hp-surface-2); border-color: var(--hp-bd-accent); color: var(--hp-ink); text-decoration: none; }

.hp-plan-featured .hp-plan-cta {
  border-color: transparent;
  background: linear-gradient(180deg, #7c68ff, var(--hp-accent));
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(111, 91, 255, .95);
}

.hp-plan-sep { margin: 22px 0 16px; border: 0; border-top: 1px dashed rgba(255, 255, 255, .09); }

.hp-plan-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.hp-plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: .875rem; line-height: 1.5; color: var(--hp-ink-2); }

.hp-plan-feats svg { flex: 0 0 auto; margin-top: 2px; color: var(--hp-ok); }

.hp-plan-out {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border: 1px dashed var(--hp-bd-strong);
  border-radius: var(--hp-r-sm);
  color: var(--hp-ink-3);
  font-size: .9rem;
  font-weight: 600;
}

.hp-plan-stock { margin-top: 9px; font-size: .8rem; color: #f0b45c; text-align: center; }

/* ==================================================== 4) HER PAKETTE VAR */
.hp-included {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r-lg);
  background:
    radial-gradient(600px 260px at 8% 0%, rgba(111, 91, 255, .15), transparent 62%),
    var(--hp-lift);
}

.hp-included-grid {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 26px;
}

.hp-included-grid li { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--hp-ink); }

.hp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 8px;
  background: rgba(34, 201, 140, .14);
  color: var(--hp-ok);
}

/* ==================================================== 5) OZELLIKLER (bento)
 * Esit dort kutu yerine farkli boyutlarda hucreler. Goz once buyuk
 * hucreye gidiyor, sonra kucuklere; duz izgarada boyle bir sira yok.
 */
.hp-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hp-cell {
  position: relative;
  padding: 24px;
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r);
  background-image: var(--hp-lift);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hp-cell:hover { transform: translateY(-3px); border-color: var(--hp-bd-accent); box-shadow: var(--hp-shadow); }

.hp-cell-lg { grid-column: span 2; grid-row: span 2; }
.hp-cell-wide { grid-column: span 2; }

.hp-cell-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid var(--hp-bd);
  border-radius: 12px;
  background: var(--hp-sunken);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.hp-cell h3 { margin: 0 0 8px; font-size: 1.08rem; font-weight: 620; color: var(--hp-ink); letter-spacing: -.015em; }
.hp-cell p  { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--hp-ink-2); }

.hp-cell-lg h3 { font-size: clamp(1.2rem, 1rem + .6vw, 1.5rem); }
.hp-cell-lg p  { font-size: .96rem; max-width: 40ch; }

/* Buyuk hucrenin altindaki gorsel: yukselen cubuklar. Somut bir olcum
   iddiasi tasimiyor, hiz temasini gorsellestiriyor. */
.hp-bars { display: flex; align-items: flex-end; gap: 7px; height: 96px; margin-top: 24px; }

.hp-bars i {
  flex: 1 1 0;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(124, 104, 255, .95), rgba(111, 91, 255, .18));
  animation: hp-bar 3.4s ease-in-out infinite;
}

.hp-bars i:nth-child(1) { height: 34%; animation-delay: 0s; }
.hp-bars i:nth-child(2) { height: 52%; animation-delay: .18s; }
.hp-bars i:nth-child(3) { height: 44%; animation-delay: .36s; }
.hp-bars i:nth-child(4) { height: 72%; animation-delay: .54s; }
.hp-bars i:nth-child(5) { height: 60%; animation-delay: .72s; }
.hp-bars i:nth-child(6) { height: 88%; animation-delay: .9s;  background: linear-gradient(180deg, #22d3ee, rgba(34, 211, 238, .18)); }
.hp-bars i:nth-child(7) { height: 68%; animation-delay: 1.08s; }

@keyframes hp-bar {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(.82); }
}

.hp-tone-indigo .hp-cell-icon { color: #b3a6ff; }
.hp-tone-green  .hp-cell-icon { color: #6ee7b7; }
.hp-tone-blue   .hp-cell-icon { color: #7bbcff; }
.hp-tone-violet .hp-cell-icon { color: #d0b3ff; }

.hp-tone-indigo:hover .hp-cell-icon { background: rgba(111, 91, 255, .18); border-color: rgba(129, 110, 255, .42); }
.hp-tone-green:hover  .hp-cell-icon { background: rgba(34, 201, 140, .16); border-color: rgba(34, 201, 140, .42); }
.hp-tone-blue:hover   .hp-cell-icon { background: rgba(35, 145, 254, .16); border-color: rgba(35, 145, 254, .42); }
.hp-tone-violet:hover .hp-cell-icon { background: rgba(168, 85, 247, .16); border-color: rgba(168, 85, 247, .42); }

/* ==================================================== 6) URUN AILELERI */
.hp-family { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.hp-fam {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r);
  background-image: var(--hp-lift);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hp-fam:hover { transform: translateY(-3px); border-color: var(--hp-bd-accent); box-shadow: var(--hp-shadow); color: inherit; text-decoration: none; }

.hp-fam-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }

.hp-fam-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hp-bd);
  border-radius: 12px;
  background: var(--hp-sunken);
  color: #b3a6ff;
}

.hp-fam-arrow { color: var(--hp-ink-3); transition: transform .2s ease, color .2s ease; }
.hp-fam:hover .hp-fam-arrow { transform: translateX(3px); color: var(--hp-accent); }

.hp-fam h3 { margin: 0 0 7px; font-size: 1.05rem; font-weight: 620; color: var(--hp-ink); }
.hp-fam p  { margin: 0; font-size: .875rem; line-height: 1.55; color: var(--hp-ink-2); }

/* ==================================================== 7) LOKASYONLAR */
.hp-loc-wrap { position: relative; }

.hp-loc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
}

.hp-loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px 9px 10px;
  border: 1px solid var(--hp-bd);
  border-radius: 999px;
  background: var(--hp-surface);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.hp-loc:hover { border-color: var(--hp-bd-accent); background: var(--hp-surface-2); transform: translateY(-2px); }

.hp-loc img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.hp-loc-name { font-size: .9rem; font-weight: 550; color: var(--hp-ink); }

.hp-loc-ms {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .8rem;
  color: var(--hp-ok);
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.hp-map { position: relative; }

.hp-map img {
  width: 100%;
  height: auto;
  opacity: .38;
  filter: grayscale(1) brightness(1.5);
  -webkit-mask-image: radial-gradient(90% 78% at 50% 45%, #000 42%, transparent 88%);
  mask-image: radial-gradient(90% 78% at 50% 45%, #000 42%, transparent 88%);
}

/* ============================================================== 8) SSS */
.hp-faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 20px; align-items: start; }

.hp-faq-item {
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r-sm);
  background-image: var(--hp-lift);
  transition: border-color .18s ease, background .18s ease;
}

.hp-faq-item[open] { border-color: var(--hp-bd-accent); }
.hp-faq-item:hover { border-color: var(--hp-bd-strong); }

.hp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 19px;
  cursor: pointer;
  list-style: none;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--hp-ink);
}

.hp-faq-q::-webkit-details-marker { display: none; }
.hp-faq-q::marker { content: ""; }

.hp-faq-mark { flex: 0 0 auto; color: var(--hp-ink-3); transition: transform .2s ease, color .2s ease; }
.hp-faq-item[open] .hp-faq-mark { transform: rotate(180deg); color: var(--hp-accent); }

.hp-faq-a { margin: 0; padding: 0 19px 18px; font-size: .9rem; line-height: 1.66; color: var(--hp-ink-2); }

/* ========================================================= 9) DUYURULAR */
.hp-news { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.hp-post {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--hp-bd);
  border-radius: var(--hp-r);
  background-image: var(--hp-lift);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hp-post:hover { transform: translateY(-3px); border-color: var(--hp-bd-accent); box-shadow: var(--hp-shadow); }

.hp-post-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hp-ink-3);
}

.hp-post h3 { margin: 0 0 10px; font-size: 1.04rem; font-weight: 620; line-height: 1.35; letter-spacing: -.012em; }
.hp-post h3 a { color: var(--hp-ink); text-decoration: none; }
.hp-post h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.hp-post h3 a:hover { color: var(--hp-ink); text-decoration: none; }

.hp-post p {
  margin: 0 0 16px;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--hp-ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-post-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
  color: #a99bff;
  transition: gap .18s ease;
}

.hp-post:hover .hp-post-more { gap: 10px; }

/* ========================================================= 10) KAPANIS */
.hp-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--hp-bd-accent);
  border-radius: var(--hp-r-lg);
  background:
    radial-gradient(560px 300px at 88% -30%, rgba(34, 211, 238, .16), transparent 62%),
    linear-gradient(135deg, rgba(111, 91, 255, .2) 0%, rgba(111, 91, 255, .05) 58%, transparent 100%);
  overflow: hidden;
}

.hp-cta h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); font-weight: 700; letter-spacing: -.03em; color: var(--hp-ink); }
.hp-cta p  { margin: 0; max-width: 48ch; font-size: .96rem; line-height: 1.55; color: var(--hp-ink-2); }
.hp-cta-actions { display: flex; flex-wrap: wrap; gap: 11px; }

/* ============================================================ DUYARLILIK */
@media (max-width: 1199.98px) {
  .hp-plans > .hp-plan { flex-basis: 260px; max-width: 380px; }
  .hp-family { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-cell-lg { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 991.98px) {
  .hp-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  /* Sunucu karti mobilde duz duruyor: egik duran kart dar ekranda
     kenarlarindan kirpiliyor ve okunmuyor. */
  .hp-console { transform: none; }
  .hp-console:hover { transform: translateY(-3px); }
  .hp-steps { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .hp-steps::before { display: none; }
  .hp-included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-faq { grid-template-columns: minmax(0, 1fr); }
  .hp-news { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .hp-hero-bg::after { display: none; }
  .hp-plans > .hp-plan { flex-basis: 100%; max-width: none; }
  .hp-family { grid-template-columns: minmax(0, 1fr); }
  .hp-bento { grid-template-columns: minmax(0, 1fr); }
  .hp-cell-lg, .hp-cell-wide { grid-column: span 1; }
  .hp-included-grid { grid-template-columns: minmax(0, 1fr); }
  .hp-news { grid-template-columns: minmax(0, 1fr); }
  .hp-actions .hp-btn { flex: 1 1 auto; justify-content: center; }
  .hp-cta { flex-direction: column; align-items: flex-start; }
  .hp-cta-actions { width: 100%; }
  .hp-cta-actions .hp-btn { flex: 1 1 auto; justify-content: center; }
  .hp-trust { gap: 10px 18px; }
}

/* Hareketi azalt: cubuk animasyonu ve nabiz durur, gecisler kisalir. */
@media (prefers-reduced-motion: reduce) {
  .hp-bars i, .hp-live::after { animation: none; }
  .hp-console { transform: none; }
}

/* Donanim rozetleri artik katalogdan geliyor: "4 vCPU", "8 GB RAM" gibi
   serbest metinler. Sabit ust/alt satir yerine tek satirlik rozet. */
.hp-spec b { font-size: .88rem; letter-spacing: 0; }
