:root {
  --bg: #061226;
  --bg-2: #071a36;
  --panel: rgba(255,255,255,.08);
  --panel-strong: rgba(255,255,255,.14);
  --text: #eaf4ff;
  --muted: #a9bad0;
  --line: rgba(255,255,255,.14);
  --cyan: #1bc8ff;
  --blue: #1769ff;
  --blue-2: #0d3da8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 120, 255, .28), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(27, 200, 255, .18), transparent 34%),
    linear-gradient(135deg, #040b18 0%, var(--bg) 48%, #051630 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(4, 12, 27, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 18px;
  display: grid; place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(23,105,255,.9), rgba(27,200,255,.45));
  box-shadow: 0 0 34px rgba(27,200,255,.38), inset 0 0 0 1px rgba(255,255,255,.2);
  letter-spacing: -.04em;
}
.brand-name { letter-spacing: -.03em; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; color: #dbe8ff; }
.main-nav a { opacity: .92; transition: .22s ease; }
.main-nav a:hover { color: var(--cyan); opacity: 1; }
.nav-cta,
.footer-btn,
.btn-primary,
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 16px;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 800;
  transition: .22s ease;
}
.nav-cta,
.btn-primary,
.footer-btn {
  background: linear-gradient(135deg, var(--blue), #0a43d2);
  color: #fff !important;
  box-shadow: 0 16px 35px rgba(23, 105, 255, .3);
}
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.05); }
.nav-cta:hover,
.btn-primary:hover,
.footer-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(27, 200, 255, .28); }
.btn-ghost:hover { border-color: rgba(27,200,255,.55); color: var(--cyan); transform: translateY(-2px); }
.nav-toggle { display: none; border: 0; border-radius: 12px; width: 44px; height: 44px; color: white; background: rgba(255,255,255,.12); font-size: 22px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 92px;
  min-height: 670px;
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,15,34,.55), rgba(5,15,34,.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 740'%3E%3Cg fill='none' stroke='%231c86ff' stroke-opacity='.22'%3E%3Cpath d='M0 624h1440M50 624V440h92v184M185 624V360h88v264M320 624V475h110v149M485 624V300h122v324M660 624V410h82v214M790 624V270h118v354M960 624V430h112v194M1120 624V325h130v299M1290 624V462h95v162'/%3E%3Cpath d='M42 520h96M195 422h70M505 372h82M812 345h74M1138 390h93M1298 520h76'/%3E%3C/g%3E%3Cg fill='%230b2a58' fill-opacity='.64'%3E%3Crect x='45' y='440' width='100' height='184' rx='8'/%3E%3Crect x='184' y='360' width='90' height='264' rx='8'/%3E%3Crect x='318' y='475' width='112' height='149' rx='8'/%3E%3Crect x='484' y='300' width='124' height='324' rx='8'/%3E%3Crect x='658' y='410' width='84' height='214' rx='8'/%3E%3Crect x='790' y='270' width='118' height='354' rx='8'/%3E%3Crect x='958' y='430' width='116' height='194' rx='8'/%3E%3Crect x='1120' y='325' width='132' height='299' rx='8'/%3E%3Crect x='1288' y='462' width='96' height='162' rx='8'/%3E%3C/g%3E%3C/svg%3E") center bottom / cover no-repeat;
  opacity: .88;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 36%, rgba(27,200,255,.16), transparent 24%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { width: min(920px, 100%); margin: 0 auto; text-align: center; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; padding: 8px 13px; border: 1px solid rgba(27,200,255,.28); background: rgba(27,200,255,.08); border-radius: 999px; color: #b8ecff; font-weight: 800; font-size: 13px; margin-bottom: 24px; }
.hero h1 { margin: 0; font-size: clamp(36px, 6vw, 70px); line-height: 1.05; letter-spacing: -.06em; text-shadow: 0 18px 80px rgba(0,0,0,.55); }
.hero h1 span { color: var(--cyan); display: block; }
.hero-subtitle { color: #c8d7eb; font-size: clamp(16px, 2vw, 22px); margin: 22px auto 34px; max-width: 720px; }
.solution-search {
  display: flex; align-items: center; gap: 14px; margin: 0 auto 34px;
  padding: 10px;
  width: min(880px, 100%);
  border-radius: 24px;
  background: #f7fbff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(255,255,255,.45);
}
.solution-search input { flex: 1; min-height: 66px; border: 0; outline: 0; background: transparent; padding: 0 24px; color: #21304c; font-size: 17px; font-weight: 650; }
.solution-search button { width: 68px; height: 68px; border: 0; border-radius: 18px; background: linear-gradient(135deg, var(--blue), #0941c9); color: white; font-size: 30px; box-shadow: 0 14px 36px rgba(23,105,255,.36); cursor: pointer; }
.help-title { color: #d9e9ff; font-size: 18px; font-weight: 850; margin: 8px 0 18px; }
.quick-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: min(850px, 100%); margin: 0 auto; }
.quick-card { display: flex; align-items: center; gap: 12px; min-height: 58px; padding: 14px 16px; background: rgba(255,255,255,.93); color: #173154; border: 1px solid rgba(255,255,255,.6); border-radius: 16px; box-shadow: 0 14px 30px rgba(0,0,0,.2); font-weight: 800; text-align: left; }
.quick-card .icon { color: var(--blue); font-size: 22px; }
.section { padding: 90px 0; }
.section.soft { background: rgba(255,255,255,.03); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-kicker { color: var(--cyan); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; margin-bottom: 10px; }
.section h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.05em; }
.section-desc { margin: 12px 0 0; max-width: 680px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.055)); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(27,200,255,.7), transparent); opacity: .7; }
.card-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(27,200,255,.1); color: var(--cyan); font-size: 28px; margin-bottom: 20px; }
.card h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.card p { color: var(--muted); line-height: 1.72; margin: 0 0 18px; }
.card a.link { color: var(--cyan); font-weight: 850; }
.package-card { display: flex; flex-direction: column; gap: 18px; }
.package-price { font-size: 34px; font-weight: 950; letter-spacing: -.04em; color: #fff; }
.package-price small { font-size: 15px; color: var(--muted); font-weight: 700; }
ul.clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: #cfe0f5; }
ul.clean li::before { content: "✓"; color: var(--cyan); font-weight: 900; margin-right: 9px; }
.steps { counter-reset: step; }
.step-card { min-height: 210px; }
.step-card::after { counter-increment: step; content: "0" counter(step); position: absolute; right: 22px; top: 16px; color: rgba(255,255,255,.08); font-size: 58px; font-weight: 950; letter-spacing: -.08em; }
.reference-card .ref-thumb { height: 180px; border-radius: 18px; background: linear-gradient(135deg, rgba(23,105,255,.28), rgba(27,200,255,.14)); display: grid; place-items: center; color: #b9ecff; font-weight: 900; margin-bottom: 18px; }
.testimonial { font-size: 17px; line-height: 1.8; color: #dbe8ff; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.06); }
.faq-item summary { cursor: pointer; padding: 18px 20px; font-weight: 850; }
.faq-item p { padding: 0 20px 20px; color: var(--muted); margin: 0; line-height: 1.7; }
.cta-band { position: relative; overflow: hidden; border-radius: 34px; padding: 52px; background: linear-gradient(135deg, rgba(23,105,255,.82), rgba(27,200,255,.28)); border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow); }
.cta-band h2 { font-size: clamp(30px, 4vw, 50px); margin: 0 0 12px; letter-spacing: -.05em; }
.cta-band p { color: #dbe8ff; max-width: 680px; line-height: 1.7; }
.page-hero { padding: 76px 0 42px; background: radial-gradient(circle at 20% 0, rgba(27,200,255,.12), transparent 30%); }
.page-hero h1 { margin: 0; font-size: clamp(36px, 5vw, 62px); letter-spacing: -.06em; }
.page-hero p { color: var(--muted); max-width: 760px; line-height: 1.7; font-size: 18px; }
.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.form-box { padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.08); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: #d8e8ff; font-weight: 800; font-size: 14px; }
input, textarea, select { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 14px 16px; background: rgba(255,255,255,.08); color: #fff; outline: 0; font: inherit; }
select option { color: #061226; }
textarea { min-height: 140px; resize: vertical; }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 18px; background: rgba(27,200,255,.12); border: 1px solid rgba(27,200,255,.28); color: #c9f2ff; }
.site-footer { padding: 70px 0 30px; background: rgba(0,0,0,.22); border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand { font-weight: 950; font-size: 22px; letter-spacing: -.03em; }
.site-footer p, .site-footer a { color: var(--muted); line-height: 1.8; display: block; margin: 8px 0; }
.site-footer h3 { margin: 0 0 12px; }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: 14px; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 55; display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 18px; border-radius: 999px; background: #20c75a; color: white; font-weight: 900; box-shadow: 0 16px 38px rgba(0,0,0,.35); }
.empty-state { padding: 24px; border-radius: 20px; border: 1px dashed rgba(255,255,255,.24); color: var(--muted); background: rgba(255,255,255,.04); }
@media (max-width: 900px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .main-nav { position: fixed; inset: 78px 18px auto 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border-radius: 22px; background: rgba(4, 14, 30, .96); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-cta { margin-top: 12px; }
  .hero { min-height: auto; padding: 70px 0; }
  .quick-services, .grid-3, .grid-2, .form-wrap, .footer-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .solution-search { border-radius: 20px; }
  .solution-search input { min-height: 56px; padding: 0 12px; font-size: 15px; }
  .solution-search button { width: 58px; height: 58px; border-radius: 16px; }
  .cta-band { padding: 32px; }
}
@media (max-width: 540px) {
  .container { width: min(100% - 24px, 1160px); }
  .brand-name { max-width: 170px; }
  .hero h1 { font-size: 36px; }
  .quick-card { min-height: 54px; font-size: 14px; }
  .section { padding: 64px 0; }
}

/* Paket 1.1 - Modern premium header */
.site-header.premium-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 14px 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(2, 9, 24, .82), rgba(2, 9, 24, .46));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: padding .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.site-header.premium-header.header-scrolled {
  padding: 9px 0;
  background: rgba(3, 12, 29, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.header-shell {
  min-height: 66px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045)),
    rgba(4, 17, 39, .58);
  box-shadow: 0 18px 58px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
}
.brand-premium {
  min-width: 0;
  gap: 12px;
}
.brand-premium .brand-mark,
.brand-logo-image {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 17px;
  overflow: hidden;
  isolation: isolate;
}
.brand-premium .brand-mark {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.34), transparent 26%),
    linear-gradient(135deg, rgba(12, 80, 255, .96), rgba(27, 200, 255, .55));
  box-shadow: 0 0 32px rgba(27,200,255,.28), inset 0 0 0 1px rgba(255,255,255,.22);
}
.brand-premium .brand-mark::after,
.brand-logo-image::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(27,200,255,.34);
  pointer-events: none;
}
.brand-premium .brand-mark span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 950;
  font-size: 15px;
  letter-spacing: -.07em;
}
.brand-logo-image {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 32px rgba(27,200,255,.20);
}
.brand-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.brand-name {
  font-size: 16px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.045em;
  color: #fff;
  white-space: nowrap;
}
.brand-subtitle {
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8fb6d8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .03em;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(2, 11, 27, .34);
  color: #dcecff;
  font-size: 13px;
  font-weight: 850;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 13px;
  opacity: .84;
  transition: color .2s ease, background .2s ease, opacity .2s ease, transform .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  opacity: 1;
  background: rgba(255,255,255,.08);
}
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(23,105,255,.35));
  box-shadow: 0 0 16px rgba(27,200,255,.55);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
  color: #c8dcf3;
  font-size: 13px;
  font-weight: 850;
  transition: .2s ease;
}
.header-phone:hover {
  color: #fff;
  border-color: rgba(27,200,255,.34);
  background: rgba(27,200,255,.08);
}
.header-actions .nav-cta {
  min-height: 44px;
  border-radius: 16px;
  padding: 0 18px;
  background: linear-gradient(135deg, #1672ff, #0b45d7 52%, #11bff5);
  box-shadow: 0 16px 36px rgba(23,105,255,.30), inset 0 1px 0 rgba(255,255,255,.18);
  white-space: nowrap;
}
.header-actions .nav-cta span {
  transition: transform .2s ease;
}
.header-actions .nav-cta:hover span {
  transform: translateX(3px);
}
.nav-toggle {
  display: none;
  place-items: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.menu-open { overflow: hidden; }
@media (max-width: 1120px) {
  .header-phone { display: none; }
  .main-nav a { padding: 0 10px; }
}
@media (max-width: 980px) {
  .site-header.premium-header { padding: 10px 0; }
  .header-shell { min-height: 62px; border-radius: 22px; }
  .nav-toggle { display: inline-grid; margin-left: auto; }
  .nav-panel {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 88px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(3, 14, 32, .97);
    box-shadow: 0 28px 72px rgba(0,0,0,.42);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-panel.is-open { display: flex; }
  .main-nav {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    box-shadow: none;
  }
  .main-nav.is-open { display: grid; }
  .main-nav a {
    min-height: 46px;
    padding: 0 14px;
    border-bottom: 0;
  }
  .main-nav a.is-active::after { left: 14px; right: auto; width: 38px; }
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .header-actions .nav-cta { width: 100%; }
  .brand-subtitle { max-width: 190px; }
}
@media (max-width: 540px) {
  .header-shell { padding: 8px; }
  .brand-premium .brand-mark,
  .brand-logo-image { width: 44px; height: 44px; flex-basis: 44px; border-radius: 15px; }
  .brand-name { max-width: 190px; font-size: 15px; }
  .brand-subtitle { max-width: 180px; font-size: 10px; }
  .nav-panel { left: 12px; right: 12px; }
}
@media (max-width: 380px) {
  .brand-subtitle { display: none; }
  .brand-name { max-width: 165px; }
}


/* Paket 1.2 - Admin panelden yönetilebilir header seçenekleri */
.site-header.premium-header.header-not-sticky { position: relative; }
.site-header.premium-header {
  --header-bg: #06172e;
  --header-accent: var(--cyan);
  --header-button: var(--blue);
  --header-active: var(--cyan);
}
.site-header.premium-header .header-shell {
  border-color: rgba(255,255,255,.12);
}
.site-header.premium-header.header-style-glass .header-shell {
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    var(--header-bg);
}
.site-header.premium-header.header-style-solid {
  background: var(--header-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.premium-header.header-style-solid .header-shell {
  background: var(--header-bg);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.site-header.premium-header.header-style-minimal {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.premium-header.header-style-minimal .header-shell {
  background: rgba(4, 17, 39, .28);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.site-header.premium-header .brand-premium .brand-mark {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.34), transparent 26%),
    linear-gradient(135deg, var(--header-button), var(--header-accent));
  box-shadow: 0 0 32px color-mix(in srgb, var(--header-accent) 34%, transparent), inset 0 0 0 1px rgba(255,255,255,.22);
}
.site-header.premium-header .brand-premium .brand-mark::after,
.site-header.premium-header .brand-logo-image::after {
  border-color: color-mix(in srgb, var(--header-accent) 42%, transparent);
}
.site-header.premium-header .main-nav a:hover,
.site-header.premium-header .main-nav a.is-active {
  color: #fff;
  background: color-mix(in srgb, var(--header-active) 16%, rgba(255,255,255,.06));
}
.site-header.premium-header .main-nav a.is-active::after {
  background: linear-gradient(90deg, var(--header-active), color-mix(in srgb, var(--header-button) 48%, transparent));
  box-shadow: 0 0 16px color-mix(in srgb, var(--header-active) 62%, transparent);
}
.site-header.premium-header .header-phone:hover {
  border-color: color-mix(in srgb, var(--header-accent) 42%, transparent);
  background: color-mix(in srgb, var(--header-accent) 12%, transparent);
}
.site-header.premium-header .header-actions .nav-cta {
  background: linear-gradient(135deg, var(--header-button), color-mix(in srgb, var(--header-button) 78%, #00113a), var(--header-accent));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--header-button) 34%, transparent), inset 0 1px 0 rgba(255,255,255,.18);
}
@media (max-width: 980px) {
  .site-header.premium-header .nav-panel {
    background: var(--header-bg);
  }
}


/* Paket 1.3 - Admin panelden yönetilebilir premium hero alanı */
.hero.hero-premium-v2 {
  --hero-primary: var(--blue);
  --hero-accent: var(--cyan);
  min-height: 760px;
  padding: 118px 0 96px;
  isolation: isolate;
}
.hero.hero-premium-v2::before {
  opacity: .96;
  background-image:
    linear-gradient(180deg, rgba(2, 8, 24, .54), rgba(2, 8, 24, .96)),
    radial-gradient(circle at 50% 28%, rgba(27,200,255,.18), transparent 28%),
    var(--hero-bg-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 760'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%230b54ff' stop-opacity='.50'/%3E%3Cstop offset='1' stop-color='%231bc8ff' stop-opacity='.16'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1440' height='760' fill='%23030b1b'/%3E%3Cg opacity='.48' fill='url(%23g)'%3E%3Cpath d='M54 640V455h94v185H54zm139 0V350h94v290h-94zm145 0V492h120v148H338zm176 0V285h138v355H514zm190 0V410h98v230h-98zm151 0V250h140v390H855zm192 0V430h126v210h-126zm182 0V330h148v310h-148z'/%3E%3C/g%3E%3Cg opacity='.34' stroke='%231bc8ff' stroke-width='1' fill='none'%3E%3Cpath d='M0 641h1440M90 530h46M211 415h58M540 352h80M884 320h82M1260 395h84M0 230c220 92 410 34 610 98 205 65 332 160 830 52'/%3E%3C/g%3E%3Cg opacity='.22' stroke='%231c86ff'%3E%3Cpath d='M0 160h1440M0 320h1440M0 480h1440M160 0v760M320 0v760M480 0v760M640 0v760M800 0v760M960 0v760M1120 0v760M1280 0v760'/%3E%3C/g%3E%3C/svg%3E"));
  background-size: cover, cover, cover;
  background-position: center, center, center bottom;
}
.hero.hero-premium-v2::after {
  background:
    radial-gradient(circle at 18% 28%, color-mix(in srgb, var(--hero-primary) 28%, transparent), transparent 24%),
    radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--hero-accent) 22%, transparent), transparent 28%),
    linear-gradient(180deg, transparent, rgba(4, 11, 24, .72));
}
.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}
.hero-orb-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 90px;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-primary) 34%, transparent), transparent 68%);
}
.hero-orb-two {
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: 80px;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-accent) 26%, transparent), transparent 70%);
}
.hero-premium-v2 .hero-inner {
  width: min(1040px, 100%);
}
.hero-premium-v2 .hero-main {
  position: relative;
  z-index: 3;
}
.hero-badge {
  position: relative;
  overflow: hidden;
  padding: 9px 16px;
  background: rgba(5, 24, 52, .58);
  border-color: color-mix(in srgb, var(--hero-accent) 34%, transparent);
  box-shadow: 0 16px 46px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.14), transparent);
  transform: translateX(-120%);
  animation: heroSheen 4.8s ease-in-out infinite;
}
@keyframes heroSheen {
  0%, 64% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}
.hero-premium-v2 h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 6.6vw, 82px);
  line-height: .98;
  letter-spacing: -.075em;
}
.hero-premium-v2 h1 span {
  color: var(--hero-accent);
  text-shadow: 0 0 42px color-mix(in srgb, var(--hero-accent) 34%, transparent);
}
.hero-premium-v2 .hero-subtitle {
  max-width: 760px;
  font-size: clamp(16px, 2vw, 23px);
  color: #d5e5fb;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin: -8px 0 26px;
}
.hero-primary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hero-primary), #073fcf);
}
.hero-secondary {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.solution-search.solution-search-v2 {
  position: relative;
  padding: 9px;
  gap: 10px;
  margin-bottom: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 28px 88px rgba(0, 0, 0, .48), 0 0 0 8px rgba(255,255,255,.05);
}
.solution-search-v2 .search-symbol {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(23,105,255,.08);
  color: var(--hero-primary);
  font-size: 25px;
  font-weight: 950;
}
.solution-search.solution-search-v2 input {
  min-height: 64px;
  padding: 0 12px;
  color: #10213d;
}
.solution-search.solution-search-v2 button {
  width: auto;
  min-width: 134px;
  height: 60px;
  padding: 0 22px;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--hero-primary), #093fcb);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.hero-stats {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 2px auto 28px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  box-shadow: 0 16px 54px rgba(0,0,0,.20);
  backdrop-filter: blur(18px);
}
.hero-stat {
  display: grid;
  gap: 3px;
  min-width: 145px;
  padding: 14px 20px;
  background: rgba(4, 18, 42, .44);
}
.hero-stat strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.04em;
}
.hero-stat span {
  color: #aecaeb;
  font-size: 12px;
  font-weight: 800;
}
.quick-services.quick-services-v2 {
  gap: 12px;
  width: min(920px, 100%);
}
.quick-services-v2 .quick-card {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  padding: 15px 17px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(236,247,255,.91));
  box-shadow: 0 18px 48px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.86);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.quick-services-v2 .quick-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--hero-primary), var(--hero-accent));
  transform: translateY(3px);
  transition: transform .22s ease;
}
.quick-services-v2 .quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.30);
}
.quick-services-v2 .quick-card:hover::after {
  transform: translateY(0);
}
.quick-services-v2 .quick-card .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(23,105,255,.10);
  color: var(--hero-primary);
}
.hero-layout-split .hero-inner {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: center;
  gap: 46px;
  text-align: left;
}
.hero-layout-split h1,
.hero-layout-split .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}
.hero-layout-split .hero-actions,
.hero-layout-split .hero-stats {
  justify-content: flex-start;
  margin-left: 0;
}
.hero-layout-split .solution-search-v2,
.hero-layout-split .quick-services-v2 {
  margin-left: 0;
}
.hero-layout-split .quick-services-v2 {
  grid-template-columns: repeat(2, 1fr);
}
.hero-side-panel {
  position: relative;
  z-index: 3;
}
.panel-glow {
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  background: color-mix(in srgb, var(--hero-accent) 22%, transparent);
  filter: blur(32px);
}
.mini-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: 0 30px 90px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(22px);
}
.mini-dashboard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hero-accent), transparent);
}
.mini-top {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}
.mini-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
}
.mini-dashboard h3 {
  margin: 0 0 18px;
  font-size: 26px;
  letter-spacing: -.04em;
}
.mini-row {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #d9e8ff;
}
.mini-row b {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(27,200,255,.10);
  color: var(--hero-accent);
}
.mini-dashboard a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hero-primary), #093fcb);
  color: #fff;
  font-weight: 950;
}
@media (max-width: 900px) {
  .hero.hero-premium-v2 {
    min-height: auto;
    padding: 82px 0 66px;
  }
  .hero-layout-split .hero-inner {
    display: block;
    text-align: center;
  }
  .hero-layout-split h1,
  .hero-layout-split .hero-subtitle,
  .hero-layout-split .solution-search-v2,
  .hero-layout-split .quick-services-v2 {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-layout-split .hero-actions {
    justify-content: center;
  }
  .hero-layout-split .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-side-panel {
    display: none;
  }
  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stat {
    min-width: 0;
    padding: 13px 10px;
  }
  .hero-stat strong {
    font-size: 18px;
  }
  .quick-services.quick-services-v2,
  .hero-layout-split .quick-services-v2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .hero-premium-v2 h1 {
    font-size: 38px;
    letter-spacing: -.06em;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions a {
    width: 100%;
  }
  .solution-search.solution-search-v2 {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }
  .solution-search-v2 .search-symbol {
    display: none;
  }
  .solution-search.solution-search-v2 input {
    min-height: 54px;
    padding: 0 14px;
  }
  .solution-search.solution-search-v2 button {
    width: 100%;
    height: 54px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    text-align: left;
    gap: 10px;
  }
}

/* Paket 1.4 - Premium hizmet/paket vitrin alanları */
.section-luminous {
  position: relative;
  overflow: hidden;
}
.section-luminous::before {
  content: "";
  position: absolute;
  inset: -140px auto auto -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27,200,255,.16), transparent 68%);
  pointer-events: none;
}
.section-head-premium {
  position: relative;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.showcase-grid.compact-grid {
  gap: 16px;
}
.service-showcase-card,
.pricing-card {
  min-height: 100%;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.service-showcase-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27,200,255,.38);
  box-shadow: 0 30px 90px rgba(0,0,0,.32), 0 0 0 1px rgba(27,200,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.125), rgba(255,255,255,.06));
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.service-card-top .card-icon {
  margin-bottom: 0;
}
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(27,200,255,.09);
  color: #9eeaff;
  border: 1px solid rgba(27,200,255,.20);
  font-weight: 950;
  letter-spacing: -.03em;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.premium-grid .service-showcase-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.compact-grid .service-showcase-card {
  padding: 22px;
  min-height: 230px;
}
.package-grid.pricing-grid .pricing-card {
  padding: 30px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}
.pricing-card.is-featured {
  border-color: rgba(27,200,255,.46);
  background:
    radial-gradient(circle at 50% 0, rgba(27,200,255,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.065));
}
.package-badge {
  position: absolute;
  top: -14px;
  right: 22px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  color: #031327;
  background: linear-gradient(135deg, #c8f4ff, var(--cyan));
  box-shadow: 0 16px 34px rgba(27,200,255,.26);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pricing-card-head h3 {
  margin-bottom: 12px;
}
.package-features {
  flex: 1;
}
.package-features li {
  line-height: 1.55;
}
.premium-page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 54px;
  background:
    radial-gradient(circle at 16% 0, rgba(27,200,255,.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(23,105,255,.18), transparent 32%),
    linear-gradient(180deg, rgba(4,13,31,.22), rgba(4,13,31,.02));
}
.premium-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,200,255,.38), transparent);
}
.premium-page-hero .eyebrow {
  margin-bottom: 18px;
}
.premium-page-hero h1 {
  max-width: 820px;
}
.premium-page-hero p {
  max-width: 760px;
}
.service-page-search {
  margin: 28px 0 0;
  width: min(760px, 100%);
}
.service-page-search button {
  width: auto;
  min-width: 100px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 950;
}
.premium-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-list-card {
  min-height: 270px;
}
.alert a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.packages-page-grid .pricing-card {
  min-height: 430px;
}
@media (max-width: 980px) {
  .showcase-grid,
  .premium-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .section-head-premium {
    padding: 18px;
    align-items: flex-start;
  }
  .showcase-grid,
  .premium-list-grid {
    grid-template-columns: 1fr;
  }
  .premium-page-hero {
    padding: 76px 0 42px;
  }
  .service-page-search {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }
  .service-page-search .search-symbol {
    display: none;
  }
  .service-page-search button {
    width: 100%;
    height: 54px;
  }
  .package-badge {
    right: 18px;
  }
}

/* Paket 1.5 - Ana sayfa güven, süreç ve sosyal kanıt vitrinleri */
.why-premium-section,
.process-premium-section,
.references-premium-section,
.testimonials-premium-section,
.faq-premium-section,
.final-cta-section {
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.why-grid.compact-cards {
  gap: 16px;
}
.why-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27,200,255,.38);
  box-shadow: 0 32px 90px rgba(0,0,0,.32), 0 0 0 1px rgba(27,200,255,.08);
}
.why-card-glow {
  position: absolute;
  inset: -80px -80px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27,200,255,.18), transparent 68%);
  pointer-events: none;
}
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.why-card-top .card-icon {
  margin-bottom: 0;
}
.why-card-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #a8edff;
  border: 1px solid rgba(255,255,255,.11);
  font-weight: 950;
}
.why-card h3,
.why-card p {
  position: relative;
  z-index: 1;
}
.why-grid.compact-cards .why-card {
  min-height: 220px;
  padding: 22px;
}
.process-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-roadmap.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,200,255,.45), transparent);
  pointer-events: none;
}
.process-card {
  position: relative;
  min-height: 240px;
  padding-top: 30px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27,200,255,.34);
  box-shadow: 0 28px 76px rgba(0,0,0,.27);
}
.process-number {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  color: #031327;
  background: linear-gradient(135deg, #d7f8ff, var(--cyan));
  box-shadow: 0 18px 36px rgba(27,200,255,.24);
  font-weight: 950;
  letter-spacing: -.04em;
}
.process-roadmap.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.reference-premium-grid,
.testimonial-premium-grid {
  margin-top: 22px;
}
.reference-premium-card {
  padding: 0;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.reference-premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27,200,255,.36);
  box-shadow: 0 32px 90px rgba(0,0,0,.31);
}
.ref-image,
.ref-thumb-premium {
  min-height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ref-thumb-premium {
  background:
    radial-gradient(circle at 22% 18%, rgba(27,200,255,.26), transparent 32%),
    radial-gradient(circle at 80% 28%, rgba(23,105,255,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  color: #fff;
  font-weight: 950;
  text-align: center;
  font-size: 22px;
  letter-spacing: -.04em;
}
.reference-card-body {
  padding: 24px;
}
.reference-card-body span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(27,200,255,.24);
  background: rgba(27,200,255,.08);
  color: #a8edff;
  font-size: 12px;
  font-weight: 900;
}
.reference-card-body h3 {
  margin: 0 0 10px;
}
.reference-card-body p {
  min-height: 58px;
}
.testimonial-card-premium {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.testimonial-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(27,200,255,.32);
  box-shadow: 0 28px 76px rgba(0,0,0,.28);
}
.stars {
  color: #ffd36a;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 18px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.testimonial-person > span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #031327;
  background: linear-gradient(135deg, #d7f8ff, var(--cyan));
  font-weight: 950;
}
.testimonial-person h3,
.testimonial-person p {
  margin: 0;
}
.testimonial-person p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}
.faq-premium-list {
  width: min(930px, 100%);
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
}
.faq-item-premium {
  background: linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.13);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}
.faq-item-premium summary {
  font-size: 16px;
}
.cta-band-premium {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  text-align: left;
  border: 1px solid rgba(27,200,255,.26);
  background:
    radial-gradient(circle at 12% 0, color-mix(in srgb, var(--cta-accent) 28%, transparent), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(23,105,255,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
}
.cta-band-premium::after {
  content: "";
  position: absolute;
  inset: auto -70px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27,200,255,.18), transparent 68%);
  pointer-events: none;
}
.cta-band-premium .section-kicker {
  justify-content: flex-start;
  margin-bottom: 16px;
}
.cta-band-premium h2,
.cta-band-premium p,
.cta-actions {
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@supports not (background: color-mix(in srgb, red 20%, transparent)) {
  .cta-band-premium {
    background:
      radial-gradient(circle at 12% 0, rgba(27,200,255,.20), transparent 34%),
      radial-gradient(circle at 88% 16%, rgba(23,105,255,.22), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  }
}
@media (max-width: 980px) {
  .why-grid,
  .process-roadmap,
  .process-roadmap.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-roadmap.timeline::before {
    display: none;
  }
  .cta-band-premium {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  .why-grid,
  .process-roadmap,
  .process-roadmap.cards {
    grid-template-columns: 1fr;
  }
  .why-card,
  .process-card,
  .testimonial-card-premium {
    min-height: auto;
  }
  .ref-image,
  .ref-thumb-premium {
    min-height: 150px;
  }
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Paket 1.6 - Hizmet/Paket detay sayfaları ve teklif akışı */
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 62px;
  background:
    radial-gradient(circle at 18% 0%, rgba(27,200,255,.18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(23,105,255,.20), transparent 30%),
    linear-gradient(135deg, rgba(5,16,36,.92), rgba(4,10,24,.98));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(27,200,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,200,255,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.detail-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  gap: 28px;
  align-items: center;
}
.detail-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -.07em;
  max-width: 860px;
}
.detail-hero p {
  max-width: 760px;
  color: #c4d5ec;
  line-height: 1.75;
  font-size: 18px;
}
.detail-hero-actions,
.package-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.package-card-actions { margin-top: auto; }
.package-card-actions .btn-primary,
.package-card-actions .btn-ghost { flex: 1; min-width: 135px; }
.detail-summary-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-summary-card .btn-primary { margin-top: 18px; }
.package-summary-card .package-price { margin: 10px 0 8px; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.detail-main h2,
.detail-list-card h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.detail-rich-content {
  color: #d3e3f7;
  line-height: 1.85;
  font-size: 17px;
}
.detail-sticky {
  position: sticky;
  top: 110px;
}
.detail-sticky .btn-primary { width: 100%; }
.detail-info-grid .card { min-height: 100%; }
.detail-check-list { margin-top: 22px !important; }
.detail-check-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.detail-check-list li:last-child { border-bottom: 0; }
.detail-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-mini-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #bff1ff;
  font-weight: 950;
  background: rgba(27,200,255,.10);
  border: 1px solid rgba(27,200,255,.20);
  margin-bottom: 18px;
}
.process-mini-card p {
  margin: 0;
  color: #d4e5fa;
  font-weight: 720;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.detail-cta-band .detail-hero-actions { margin-top: 28px; }
.detail-final-cta-section { padding-top: 40px; }
.selected-interest-box {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  margin: 0 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(27,200,255,.26);
  background: rgba(27,200,255,.08);
}
.selected-interest-box span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 950;
}
.selected-interest-box strong { font-size: 18px; }
.selected-interest-box small { color: var(--muted); }
.quote-form-wrap { align-items: start; }
.quote-side-card { min-height: 360px; }
@media (max-width: 980px) {
  .detail-hero-grid,
  .detail-layout,
  .detail-info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .detail-sticky { position: relative; top: auto; }
  .detail-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .detail-hero { padding: 64px 0 42px; }
  .detail-process-grid { grid-template-columns: 1fr; }
  .detail-hero-actions,
  .package-card-actions { flex-direction: column; align-items: stretch; }
  .detail-hero-actions .btn-primary,
  .detail-hero-actions .btn-ghost,
  .package-card-actions .btn-primary,
  .package-card-actions .btn-ghost { width: 100%; }
}


/* Paket 1.6.1 - Mobil menü görünürlük düzeltmesi */
@media (max-width: 980px) {
  .site-header.premium-header { z-index: 10000; }
  .site-header.premium-header .nav-panel {
    top: 88px;
    z-index: 10001;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
  .site-header.premium-header .nav-panel.is-open {
    display: flex;
  }
}
@media (max-width: 540px) {
  .site-header.premium-header .nav-panel {
    top: 82px;
  }
}

/* Paket 1.7 - Blog / SEO / İçerik Güçlendirme */
.blog-archive-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 50% 0%,rgba(27,200,255,.22),transparent 32%),linear-gradient(135deg,#05142b 0%,#082b52 55%,#061226 100%)}
.blog-archive-hero:after{content:"";position:absolute;inset:auto -12% -42% -12%;height:280px;background:radial-gradient(circle,rgba(23,105,255,.34),transparent 62%);filter:blur(10px);pointer-events:none}
.blog-search{position:relative;z-index:1;max-width:760px;margin:28px auto 0;display:flex;gap:10px;padding:10px;border-radius:24px;background:rgba(255,255,255,.94);box-shadow:0 22px 70px rgba(0,0,0,.28)}
.blog-search input{flex:1;border:0;background:transparent;padding:16px 18px;color:#071a31;font-weight:700;outline:0;min-width:0}
.blog-search button{border:0;border-radius:18px;background:linear-gradient(135deg,#1769ff,#1bc8ff);color:#fff;font-weight:900;padding:14px 24px;cursor:pointer;box-shadow:0 14px 35px rgba(23,105,255,.28)}
.blog-filter-section{padding-top:26px;padding-bottom:10px}
.blog-category-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.blog-category-pills a{padding:10px 15px;border-radius:999px;border:1px solid rgba(148,210,255,.22);background:rgba(255,255,255,.06);color:#dbeeff;text-decoration:none;font-weight:800;font-size:.92rem;transition:.2s ease}
.blog-category-pills a:hover,.blog-category-pills a.active{background:linear-gradient(135deg,rgba(23,105,255,.34),rgba(27,200,255,.24));border-color:rgba(27,200,255,.48);color:#fff;transform:translateY(-2px)}
.featured-blog-card{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:0;overflow:hidden;padding:0;background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.05));border-color:rgba(27,200,255,.20)}
.featured-blog-media,.blog-card-media{display:flex;align-items:center;justify-content:center;min-height:300px;background:radial-gradient(circle at 30% 20%,rgba(27,200,255,.28),transparent 30%),linear-gradient(135deg,#0b2a51,#07172e);background-size:cover;background-position:center;text-decoration:none;color:#fff;position:relative;overflow:hidden}
.featured-blog-media:before,.blog-card-media:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(2,8,23,.42))}
.featured-blog-media span,.blog-card-media span{position:relative;z-index:1;max-width:75%;text-align:center;font-size:1.45rem;font-weight:950;letter-spacing:-.03em;color:#fff}
.featured-blog-body{padding:36px;display:flex;flex-direction:column;justify-content:center;gap:16px}
.featured-blog-body h2{font-size:clamp(1.8rem,3vw,3rem);line-height:1.05;margin:0;color:#fff}
.featured-blog-body h2 a,.blog-card h3 a{color:inherit;text-decoration:none}
.featured-blog-body p{color:#b8c9dd;font-size:1.03rem;line-height:1.7;margin:0}
.blog-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.blog-card{overflow:hidden;padding:0;background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.045));border-color:rgba(148,210,255,.15);transition:.22s ease}
.blog-card:hover{transform:translateY(-6px);border-color:rgba(27,200,255,.42);box-shadow:0 24px 70px rgba(0,0,0,.24)}
.blog-card-media{min-height:190px}
.blog-card-media span{font-size:1.06rem}
.blog-card-body{padding:22px;display:flex;flex-direction:column;gap:12px}
.blog-card h3{margin:0;color:#fff;font-size:1.15rem;line-height:1.28}
.blog-card p{margin:0;color:#aebed2;line-height:1.65}
.blog-meta-line{display:flex;align-items:center;flex-wrap:wrap;gap:8px;color:#9fb3c9;font-size:.84rem;font-weight:800}
.blog-meta-line a,.blog-meta-line span{display:inline-flex;align-items:center;gap:6px;color:#aeeaff;text-decoration:none;background:rgba(27,200,255,.08);border:1px solid rgba(27,200,255,.15);border-radius:999px;padding:6px 10px}
.blog-detail-hero{background:radial-gradient(circle at 15% 0%,rgba(27,200,255,.24),transparent 35%),linear-gradient(135deg,#061226,#08294d 58%,#061226)}
.blog-detail-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;align-items:end;gap:28px;text-align:left}
.blog-detail-hero h1{max-width:900px;margin-left:0;margin-right:0}
.blog-detail-hero p{max-width:760px;margin-left:0;margin-right:0}
.hero-meta{justify-content:flex-start;margin-bottom:18px}
.blog-detail-panel{padding:24px;background:rgba(255,255,255,.10);backdrop-filter:blur(18px)}
.blog-detail-panel strong{display:block;color:#fff;font-size:1.05rem;margin-bottom:8px}
.blog-detail-panel p{font-size:.94rem;line-height:1.65;color:#b8c9dd;margin:0 0 14px}
.blog-detail-panel span{font-size:.84rem;color:#aeeaff;font-weight:900}
.blog-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:28px;align-items:start}
.blog-article{padding:0;overflow:hidden;background:rgba(255,255,255,.07)}
.blog-detail-cover{height:360px;background-size:cover;background-position:center;border-bottom:1px solid rgba(255,255,255,.08)}
.blog-content{padding:36px;color:#d5e2f0;font-size:1.04rem;line-height:1.9}
.blog-content h2,.blog-content h3{color:#fff}
.blog-detail-cta{margin:0 36px 36px;padding:26px;border-radius:24px;background:linear-gradient(135deg,rgba(23,105,255,.24),rgba(27,200,255,.12));border:1px solid rgba(27,200,255,.24);display:flex;gap:20px;align-items:center;justify-content:space-between}
.blog-detail-cta span{color:#aeeaff;font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:.76rem}
.blog-detail-cta h2{margin:6px 0 8px;color:#fff;font-size:1.45rem}
.blog-detail-cta p{margin:0;color:#c3d2e5;line-height:1.65}
.blog-sidebar{display:flex;flex-direction:column;gap:18px;position:sticky;top:110px}
.sidebar-card{padding:22px;background:rgba(255,255,255,.07)}
.sidebar-card h3{margin:0 0 14px;color:#fff;font-size:1rem}
.sidebar-link,.sidebar-post{display:flex;gap:10px;text-decoration:none;color:#dbeeff;padding:12px 0;border-top:1px solid rgba(255,255,255,.08)}
.sidebar-link:first-of-type,.sidebar-post:first-of-type{border-top:0}
.sidebar-link span:first-child{width:30px;height:30px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;background:rgba(27,200,255,.12);color:#aeeaff;flex:0 0 auto}
.sidebar-post{flex-direction:column;gap:5px}
.sidebar-post strong{color:#fff;line-height:1.35}
.sidebar-post span{color:#9fb3c9;font-size:.84rem}
.home-blog-section{position:relative;overflow:hidden}
.home-blog-grid .blog-card{min-height:100%}
@media (max-width: 980px){
  .featured-blog-card,.blog-detail-hero-grid,.blog-layout{grid-template-columns:1fr}
  .blog-sidebar{position:static}
  .blog-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .blog-detail-panel{display:none}
}
@media (max-width: 680px){
  .blog-search{flex-direction:column;border-radius:20px;padding:8px}
  .blog-search button{width:100%}
  .blog-card-grid{grid-template-columns:1fr}
  .featured-blog-media{min-height:210px}
  .featured-blog-body{padding:24px}
  .blog-detail-cover{height:220px}
  .blog-content{padding:24px;font-size:1rem}
  .blog-detail-cta{margin:0 20px 24px;flex-direction:column;align-items:flex-start}
}
