/* ==========================================================================
   RemoPanel — ortak tasarım sistemi
   ========================================================================== */

:root {
  --bg: #050b09;
  --bg-2: #07100d;
  --surface: #0b1612;
  --surface-2: #10201a;
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .16);
  --text: #e7f2ec;
  --muted: #94a89e;
  --faint: #677a70;

  --brand: #10b981;
  --brand-2: #22c55e;
  --accent: #34d399;
  --lime: #a3e635;
  --wa: #25d366;
  --wa-2: #128c4d;

  --grad-brand: linear-gradient(135deg, #059669, var(--brand) 45%, var(--brand-2));
  --grad-logo: linear-gradient(90deg, #22c55e, #34d399, #a3e635, #2dd4bf, #22c55e);
  --grad-text: linear-gradient(90deg, #6ee7b7, #a7f3d0 45%, #bef264);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-glow: 0 18px 40px -12px rgba(16, 185, 129, .45);

  --container: 1200px;
  --header-h: 68px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 800; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 10px 16px; border-radius: var(--radius-sm);
  background: var(--brand); color: #fff; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* Arka plan dokusu */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(16, 185, 129, .20), transparent 60%),
    radial-gradient(700px 420px at 95% 5%, rgba(45, 212, 191, .10), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(34, 197, 94, .10), transparent 60%);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section.section--after-hero { padding-top: 40px; }
.section.section--flush { padding-top: 24px; }
.stack-top { margin-top: 32px; }
.footnote { margin-top: 24px; text-align: center; color: var(--faint); font-size: .85rem; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .02) 20%, rgba(255, 255, 255, .02) 80%, transparent); }

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.section-foot { margin-top: 40px; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding: 6px 14px;
  border: 1px solid rgba(16, 185, 129, .35); border-radius: 999px;
  background: rgba(16, 185, 129, .10);
  color: #a7f3d0; font-size: .82rem; font-weight: 700; letter-spacing: .01em;
}
.eyebrow i { color: var(--accent); }

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: .95rem; line-height: 1.2; white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { box-shadow: 0 22px 44px -12px rgba(16, 185, 129, .65); }
.btn--wa { background: linear-gradient(135deg, var(--wa), var(--wa-2)); color: #fff; box-shadow: 0 14px 30px -12px rgba(37, 211, 102, .55); }
.btn--wa:hover { box-shadow: 0 20px 40px -12px rgba(37, 211, 102, .7); }
.btn--ghost { border-color: var(--border-strong); background: rgba(255, 255, 255, .04); color: var(--text); }
.btn--ghost:hover { border-color: rgba(110, 231, 183, .6); background: rgba(16, 185, 129, .12); }
.btn--sm { min-height: 40px; padding: 8px 18px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: #6ee7b7; font-weight: 700; }
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
/* Bulanık zemin ayrı katmanda: header'a backdrop-filter verilirse mobil menü (position: fixed) header'a hapsolur. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(5, 11, 9, .82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  opacity: 0; transition: opacity .25s ease;
}
.site-header.is-scrolled,
.site-header.is-open { border-bottom-color: var(--border); }
.site-header.is-scrolled::before,
.site-header.is-open::before { opacity: 1; }
.site-header .container { height: 100%; display: flex; align-items: center; gap: 24px; }

.logo {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; line-height: 1;
  color: #fff; white-space: nowrap;
}
.logo__hl {
  background: var(--grad-logo); background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: logoShift 8s linear infinite;
}
@keyframes logoShift { to { background-position: 300% 50%; } }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: block; padding: 8px 12px; border-radius: 999px;
  color: var(--muted); font-size: .92rem; font-weight: 600;
  transition: color .2s ease, background-color .2s ease;
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav__link[aria-current="page"] { color: #fff; background: rgba(16, 185, 129, .18); }
.header__cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; margin-left: auto;
  border: 1px solid var(--border-strong); border-radius: 12px;
  background: rgba(255, 255, 255, .04); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.is-open .nav-toggle__bars { background: transparent; }
.is-open .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.is-open .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0;
    padding: 20px 20px 32px;
    background: rgba(5, 11, 9, .97);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .is-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav__cta { display: block; margin-top: 16px; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 1081px) { .nav__cta { display: none; } }

/* ---------- Hero (ana sayfa) ---------- */
.hero { padding: 72px 0 88px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.035em; }
.hero__lead { margin-top: 20px; max-width: 560px; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.15rem); }
.hero .btn-row { margin-top: 32px; }
.checklist { display: grid; gap: 10px; margin-top: 28px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: #cfe0d7; font-size: .95rem; }
.checklist i { margin-top: 4px; color: var(--accent); }

.mockup {
  position: relative;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(16, 185, 129, .1), 0 30px 120px -40px rgba(16, 185, 129, .55);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s ease;
}
.mockup:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.mockup__bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.mockup__bar span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.mockup__bar span:nth-child(2) { background: #febc2e; }
.mockup__bar span:nth-child(3) { background: #28c840; }
.mockup__url {
  margin-left: 12px; padding: 4px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .05); color: var(--faint); font-size: .75rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mockup__img { border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }
.mockup__img img { width: 100%; aspect-ratio: 16 / 9.1; object-fit: cover; object-position: top left; }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border: 1px solid var(--border-strong); border-radius: 14px;
  background: rgba(11, 22, 18, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-size: .82rem; font-weight: 700; white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}
.float-chip small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.float-chip__icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; color: #fff; background: var(--grad-brand);
}
.float-chip--a { left: -28px; bottom: 36px; }
.float-chip--b { right: 20px; top: -22px; animation-delay: -3s; }
@media (min-width: 1280px) { .float-chip--b { right: -24px; top: 56px; } }
.float-chip--b .float-chip__icon { background: linear-gradient(135deg, #10b981, #059669); }
@keyframes floaty { 50% { transform: translateY(-8px); } }

@media (max-width: 960px) {
  .hero { padding: 40px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .mockup { transform: none; }
  .float-chip--a { left: 12px; bottom: -18px; }
  .float-chip--b { right: 12px; top: -18px; }
}

/* ---------- İstatistik şeridi ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .02);
}
.stat { padding: 26px 20px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat__value { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.stat__label { margin-top: 4px; color: var(--muted); font-size: .88rem; }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}

/* ---------- Kart ---------- */
.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(110, 231, 183, .35); box-shadow: var(--shadow-glow); }
.card h2, .card h3 { font-size: 1.15rem; letter-spacing: -.01em; }
.card p { margin-top: 10px; color: var(--muted); font-size: .95rem; }

.icon-box {
  width: 52px; height: 52px; flex-shrink: 0; margin-bottom: 20px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(16, 185, 129, .14); border: 1px solid rgba(16, 185, 129, .3);
  color: #6ee7b7; font-size: 1.3rem;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.card:hover .icon-box { transform: scale(1.06) rotate(-4deg); background: var(--brand); color: #fff; }
.icon-box--teal { background: rgba(45, 212, 191, .12); border-color: rgba(45, 212, 191, .3); color: #5eead4; }
.icon-box--lime { background: rgba(163, 230, 53, .12); border-color: rgba(163, 230, 53, .3); color: #bef264; }
.icon-box--green { background: rgba(37, 211, 102, .12); border-color: rgba(37, 211, 102, .3); color: #86efac; }
.icon-box--mint { background: rgba(132, 204, 22, .10); border-color: rgba(132, 204, 22, .28); color: #d9f99d; }

/* Tıklanabilir hizmet kartı */
.tile { padding: 24px; }
.tile__arrow {
  position: absolute; top: 24px; right: 24px;
  color: var(--faint); pointer-events: none; transition: color .2s ease, transform .2s ease;
}
.tile:hover .tile__arrow { color: #fff; transform: translate(3px, -3px); }
.tile a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.tile img.tile__logo { height: 22px; width: auto; margin: 15px 0 35px; opacity: .9; }

/* ---------- Demo galerisi ---------- */
.demo {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.demo:hover { transform: translateY(-4px); border-color: rgba(45, 212, 191, .4); box-shadow: 0 20px 40px -16px rgba(45, 212, 191, .3); }
.demo__media { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; background: #0b1612; }
.demo__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.demo:hover .demo__media img { transform: scale(1.05); }
.demo__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(5, 11, 9, 0) 30%, rgba(5, 11, 9, .75));
  opacity: 0; transition: opacity .3s ease;
}
.demo:hover .demo__overlay, .demo:focus-within .demo__overlay { opacity: 1; }
.demo__overlay span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; color: #05120d; font-weight: 800; font-size: .88rem;
}
.demo__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; }
.demo__title { font-size: 1rem; font-weight: 700; }
.demo__tag {
  flex-shrink: 0; padding: 4px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(16, 185, 129, .15); color: #a7f3d0;
}
.demo__tag--custom { background: rgba(163, 230, 53, .15); color: #bef264; }
.demo__tag--panel { background: rgba(45, 212, 191, .15); color: #99f6e4; }
.demo > a::after { content: ""; position: absolute; inset: 0; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.filter {
  padding: 8px 18px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: transparent; color: var(--muted); font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: all .2s ease;
}
.filter:hover { color: #fff; border-color: rgba(110, 231, 183, .6); }
.filter[aria-pressed="true"] { background: var(--grad-brand); border-color: transparent; color: #fff; }
.demo[hidden] { display: none; }

/* ---------- Fiyat kartları ---------- */
.price-card { padding: 32px 28px; }
.price-card--featured {
  border-color: rgba(34, 197, 94, .6);
  background: linear-gradient(180deg, rgba(16, 185, 129, .16), var(--surface) 55%);
  box-shadow: 0 30px 60px -30px rgba(16, 185, 129, .6);
}
.price-card__badge {
  position: absolute; top: -13px; left: 28px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--grad-brand); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.price-card__head { display: flex; align-items: center; gap: 14px; }
.price-card__head .icon-box { margin: 0; }
.price-card__name { font-size: 1.1rem; }
.price-card__desc { margin-top: 2px !important; font-size: .85rem !important; }
.price { margin: 24px 0 4px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price__value { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price__value--text { font-size: 2rem; }
.price__period { color: var(--muted); font-weight: 600; }
.price__try { min-height: 1.4em; color: var(--faint); font-size: .85rem; }
.price__note { color: var(--muted); font-size: .85rem; }
.features-list { display: grid; gap: 12px; margin: 24px 0 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.features-list li { display: flex; gap: 12px; align-items: flex-start; color: #cfe0d7; font-size: .95rem; line-height: 1.45; }
.features-list i { width: 18px; margin-top: 3px; flex-shrink: 0; text-align: center; color: var(--accent); }
.features-list small { color: var(--faint); }
.price-card .btn { margin-top: auto; }

/* ---------- Sayfa başlığı (alt sayfalar) ---------- */
.page-hero { padding: 56px 0 24px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -.03em; }
.page-hero p { max-width: 640px; margin: 16px auto 0; color: var(--muted); font-size: 1.05rem; }
.page-hero .btn-row { justify-content: center; margin-top: 28px; }

.breadcrumb { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; font-size: .85rem; color: var(--faint); }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--faint); }

/* ---------- SSS ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); transition: border-color .2s ease, background-color .2s ease;
}
.faq__item[open] { border-color: rgba(16, 185, 129, .45); background: var(--surface-2); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .8rem;
  flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255, 255, 255, .05); color: var(--accent);
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__q { font-size: inherit; font-weight: inherit; letter-spacing: 0; line-height: 1.4; }
.faq__answer { padding: 0 24px 22px; color: var(--muted); }
.faq__answer .link-arrow { display: inline; }

/* ---------- İletişim ---------- */
.contact-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-main {
  padding: 36px;
  border-color: rgba(37, 211, 102, .35);
  background:
    radial-gradient(500px 260px at 0% 0%, rgba(37, 211, 102, .16), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}
.contact-main:hover { transform: none; }
.contact-main__head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.contact-main__icon {
  width: 64px; height: 64px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 18px; background: linear-gradient(135deg, var(--wa), var(--wa-2));
  color: #fff; font-size: 2rem; box-shadow: 0 14px 30px -12px rgba(37, 211, 102, .6);
}
.contact-main__badge { display: inline-flex; align-items: center; gap: 2px; margin-bottom: 6px; color: #86efac; font-size: .8rem; font-weight: 700; }
.card .contact-main__head h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); }
.contact-main > p { max-width: 520px; }
.contact-main__number { display: inline-block; margin-top: 18px; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; }
.contact-main__number:hover { color: #86efac; }
.contact-main__btn { margin-top: 18px; align-self: flex-start; }
@media (max-width: 640px) { .contact-main { padding: 24px; } .contact-main__btn { align-self: stretch; } }

.topics { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.topics__title { margin-bottom: 14px; color: var(--muted); font-size: .88rem; font-weight: 600; }
.topics__list { display: flex; flex-wrap: wrap; gap: 10px; }
.topic {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(255, 255, 255, .03); color: var(--text); font-size: .88rem; font-weight: 600;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.topic i { color: var(--accent); }
.topic:hover { border-color: rgba(37, 211, 102, .6); background: rgba(37, 211, 102, .12); transform: translateY(-2px); }

.contact-side { display: grid; gap: 16px; }
.contact-side .card { padding: 24px; }
.card .contact-side__title { margin-bottom: 18px; font-size: 1.05rem; }
.info-list { display: grid; gap: 16px; }
.info-list li { display: flex; align-items: center; gap: 14px; }
.info-list .icon-box { margin: 0; width: 42px; height: 42px; font-size: 1rem; }
.info-list strong { display: block; font-size: .92rem; }
.info-list span { color: var(--muted); font-size: .88rem; }

.contact-link { flex-direction: row; align-items: center; gap: 14px; }
.contact-link .icon-box { margin: 0; width: 46px; height: 46px; font-size: 1.1rem; }
.contact-link strong { display: block; font-size: .98rem; }
.contact-link span:not(.icon-box) { display: block; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.arrow-diag { rotate: -45deg; }
.contact-link__arrow { margin-left: auto; color: var(--faint); transition: color .2s ease, transform .2s ease; }
.contact-link:hover .arrow-diag { rotate: -45deg; }
.contact-link__arrow { color: #fff; transform: translateX(3px); }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37, 211, 102, .18); vertical-align: middle; }

/* ---------- Donanım tablosu (VDS) ---------- */
.spec { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: .92rem; }
.spec:last-child { border-bottom: 0; }
.spec dt { color: var(--muted); display: flex; align-items: center; gap: 10px; }
.spec dt i { width: 16px; text-align: center; color: var(--accent); }
.spec dd { margin: 0; text-align: right; font-weight: 700; }
.spec-list { margin: 24px 0; padding-top: 12px; border-top: 1px solid var(--border); }
.shared-specs { margin-top: 24px; padding: 20px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255, 255, 255, .02); }
.shared-specs__title { font-weight: 700; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-band .chips { margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--border-strong); border-radius: 999px;
  color: #cfe0d7; font-size: .85rem; font-weight: 600;
}
.chip i { color: var(--accent); }

/* ---------- Dil seçici ---------- */
.lang-switch { display: inline-flex; padding: 4px; border: 1px solid var(--border-strong); border-radius: 999px; background: rgba(255, 255, 255, .04); }
.lang-switch { gap: 2px; }
.lang-switch button {
  display: grid; place-items: center;
  padding: 7px 12px; border: 0; border-radius: 999px; background: transparent;
  cursor: pointer; opacity: .5; transition: opacity .2s ease, background-color .2s ease;
}
.lang-switch button:hover { opacity: .85; }
.lang-switch button[aria-pressed="true"] { opacity: 1; background: rgba(16, 185, 129, .22); box-shadow: inset 0 0 0 1px rgba(52, 211, 153, .45); }
.flag { display: block; width: 26px; height: 17px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .18); }

/* Header dil seçici: masaüstünde menüden sonra, mobilde menü düğmesinin solunda */
.nav { order: 1; }
.header__lang { order: 2; flex-shrink: 0; }
.header__cta { order: 3; }
.nav-toggle { order: 4; }
.header__lang button { padding: 5px 8px; }
.header__lang .flag { width: 22px; height: 15px; }
@media (max-width: 1080px) {
  .header__lang { margin-left: auto; }
  .site-header .container { gap: 12px; }
  .nav-toggle { margin-left: 0; }
}
.checklist--center { justify-content: center; justify-items: center; margin-top: 20px; }
.cta-band p + p { margin-top: 8px; }

/* ---------- Kısa öne çıkanlar ---------- */
.highlight {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
}
.highlight .icon-box { margin: 0; width: 46px; height: 46px; font-size: 1.1rem; }
.highlight h2 { font-size: 1.02rem; letter-spacing: 0; }
.highlight p { margin-top: 4px; color: var(--muted); font-size: .92rem; }

/* ---------- CTA bandı ---------- */.cta-band {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: 48px; border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 197, 94, .35);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(16, 185, 129, .35), transparent 70%),
    radial-gradient(500px 300px at 100% 100%, rgba(45, 212, 191, .18), transparent 70%),
    var(--surface);
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { margin-top: 10px; color: var(--muted); max-width: 520px; }
@media (max-width: 640px) { .cta-band { padding: 32px 24px; } .cta-band .btn-row, .cta-band .btn { width: 100%; } }

/* ---------- Footer ---------- */
.site-footer { margin-top: 40px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding: 56px 0 40px; }
.footer__about p { margin-top: 14px; color: var(--muted); font-size: .92rem; max-width: 320px; }
.footer__title { margin-bottom: 14px; color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: var(--muted); font-size: .92rem; transition: color .2s ease; }
.footer__links a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--border-strong); border-radius: 12px; color: var(--muted);
  transition: all .2s ease;
}
.socials a:hover { color: #fff; border-color: transparent; background: var(--brand); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 20px 88px 28px 0; border-top: 1px solid var(--border);
  color: var(--faint); font-size: .85rem;
}
@media (max-width: 640px) { .footer__bottom { padding: 20px 0 96px; } }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
  position: fixed; z-index: 90;
  right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%;
  background: var(--wa); color: #fff; font-size: 30px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .2s ease;
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse { from { transform: scale(1); opacity: .7; } to { transform: scale(1.6); opacity: 0; } }

/* ---------- Görünür olunca animasyon ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .mockup { transform: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .card { padding: 22px; }
  .hero .btn-row .btn { flex: 1 1 100%; }
}
