/* ==========================================================================
   Antalya Website — 2026
   ========================================================================== */

:root {
  --bg: #080C1C;
  --bg-2: #0C1227;
  --bg-3: #111a36;
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .07);
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);
  --text: #EEF2FF;
  --muted: #A3ACC7;
  --accent: #F7A33B;          /* logodaki turuncu */
  --accent-2: #FCC54E;        /* logodaki sarı */
  --accent-soft: rgba(247, 163, 59, .12);
  --teal: #2DD4BF;            /* Akdeniz vurgusu */
  --coral: #FF7A59;
  --on-accent: #1A1004;
  --grad: linear-gradient(100deg, #FCD06A 0%, #F7A33B 50%, #FF7A59 100%);

  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-lg: 32px;
  --container: 1320px;
  --gutter: clamp(16px, 4vw, 48px);
  --section: clamp(88px, 12vw, 168px);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

.lang-ar {
  --font-display: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Arabic", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); position: relative; }

/* Tipografi -------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.lang-ar .eyebrow { letter-spacing: 0; font-size: 15px; }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.hero__eyebrow::before { display: none; }

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.lang-ar .h2 { letter-spacing: 0; line-height: 1.3; font-weight: 700; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 60ch;
}

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

/* Butonlar --------------------------------------------------------------- */
.btn {
  --h: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--h);
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s var(--ease), background-color .25s, border-color .25s, color .25s, box-shadow .35s;
  will-change: transform;
}
.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
[dir="rtl"] .btn .icon { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .icon { transform: scaleX(-1) translateX(4px); }

.btn--sm { --h: 44px; padding: 0 20px; font-size: 15px; }
.btn--lg { --h: 60px; padding: 0 32px; font-size: 17px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 30px -10px rgba(247, 163, 59, .6);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s;
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(255, 122, 89, .6); }

.btn--ghost {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, .08); }

.btn--light { background: var(--text); color: var(--on-accent); }
.btn--light:hover { background: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  padding-block: 8px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color .25s, gap .35s var(--ease);
}
.link-arrow:hover { border-color: var(--accent); gap: 16px; }
[dir="rtl"] .link-arrow .icon { transform: scaleX(-1); }

/* Loader ----------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: clip-path 1s var(--ease-in-out), visibility 0s 1s;
  clip-path: inset(0 0 0 0);
}
.loader__inner { display: grid; gap: 18px; justify-items: center; }
.loader__logo {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: -.02em;
  direction: ltr;
}
.loader__logo b { font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.loader__bar { width: 180px; height: 2px; background: var(--line); overflow: hidden; border-radius: 2px; }
.loader__bar i { display: block; height: 100%; width: 100%; background: var(--grad); transform-origin: left; animation: load 1.1s var(--ease) forwards; }
@keyframes load { from { transform: scaleX(0); } to { transform: scaleX(1); } }
body.is-loaded .loader { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader { animation: loaderOut .8s var(--ease-in-out) 4s forwards; }
@keyframes loaderOut { to { clip-path: inset(0 0 100% 0); visibility: hidden; } }

/* Özel imleç (yalnızca fare) ----------------------------------------------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 998;
    pointer-events: none;
    width: 12px; height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background: var(--text);
    mix-blend-mode: difference;
    transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background-color .3s;
  }
  .cursor span {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 700; letter-spacing: .04em;
    color: var(--on-accent);
    opacity: 0; transition: opacity .2s;
    white-space: nowrap; text-align: center;
  }
  .cursor.is-hover { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .cursor.is-label { width: 110px; height: 110px; margin: -55px 0 0 -55px; background: var(--accent); mix-blend-mode: normal; }
  .cursor.is-label span { opacity: 1; }
}

/* Header ----------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .4s, border-color .4s, transform .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(7, 11, 26, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--line);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: 84px; transition: min-height .4s var(--ease); }
.header.is-scrolled .header__inner { min-height: 70px; }



.header__actions { display: flex; align-items: center; gap: 12px; }

.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  font-weight: 700; font-size: 14px;
  transition: border-color .25s, background-color .25s;
}
.lang__btn:hover { border-color: var(--text); }
.lang__btn[aria-expanded="true"] .icon:last-child { transform: rotate(180deg); }
.lang__list {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  min-width: 190px;
  padding: 8px;
  background: rgba(13, 20, 42, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
}
.lang.is-open .lang__list { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.lang__list a {
  display: flex; align-items: center; gap: 12px;
  min-height: 44px; padding: 0 12px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  color: var(--muted);
}
.lang__list a span { font-size: 12px; font-weight: 800; color: var(--accent); width: 22px; }
.lang__list a:hover, .lang__list a[aria-current] { background: var(--surface-2); color: var(--text); }

.burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  position: relative;
}
.burger span {
  position: absolute;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.burger span:first-child { top: 19px; }
.burger span:last-child { top: 27px; }
.burger[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 110px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .7s var(--ease-in-out);
}
[dir="rtl"] .mobile-menu { clip-path: circle(0% at 40px 40px); }
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); }
[dir="rtl"] .mobile-menu.is-open { clip-path: circle(150% at 40px 40px); }
.mobile-menu__langs { display: flex; gap: 8px; }
.mobile-menu__langs a {
  display: grid; place-items: center;
  min-width: 52px; min-height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-weight: 700;
}
.mobile-menu__langs a[aria-current] { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.08);
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 26, .95) 0%, rgba(7, 11, 26, .75) 38%, rgba(7, 11, 26, .15) 70%, rgba(7, 11, 26, .25) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 11, 26, 0) 35%);
}
[dir="rtl"] .hero__video { transform: scale(1.08) scaleX(-1); }
[dir="rtl"] .hero__shade {
  background:
    linear-gradient(270deg, rgba(7, 11, 26, .95) 0%, rgba(7, 11, 26, .75) 38%, rgba(7, 11, 26, .15) 70%, rgba(7, 11, 26, .25) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 11, 26, 0) 35%);
}
.hero__glow {
  position: absolute;
  z-index: -1;
  width: 60vmax; height: 60vmax;
  inset-inline-start: -20vmax; top: -10vmax;
  background: radial-gradient(circle, rgba(247, 163, 59, .18), transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.hero__content { position: relative; padding-bottom: clamp(40px, 6vw, 72px); }
.hero__eyebrow {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  letter-spacing: .06em;
  font-size: 12px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(247, 163, 59, .7);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(247, 163, 59, 0); } 100% { box-shadow: 0 0 0 0 rgba(247, 163, 59, 0); } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, min(8.4vw, 14svh), 132px);
  line-height: .98;
  letter-spacing: -.035em;
  margin-block: 8px 28px;
}
.lang-ar .hero__title { letter-spacing: 0; line-height: 1.25; font-weight: 700; font-size: clamp(42px, min(7.4vw, 13svh), 112px); }
.lang-ru .hero__title { font-size: clamp(38px, min(7.2vw, 13svh), 116px); }
.hero__title .line { display: block; overflow: hidden; padding-block: .04em .16em; margin-bottom: -.14em; }
.hero__title .line > span { display: inline-block; }
.hero__sub { max-width: 560px; color: #C9D0E6; font-size: clamp(16px, 1.3vw, 19px); }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__badge {
  position: absolute;
  inset-inline-end: var(--gutter);
  top: 38%;
  width: 132px; height: 132px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(7, 11, 26, .45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
}
.hero__badge svg {
  position: absolute; inset: 6px;
  width: calc(100% - 12px); height: calc(100% - 12px);
  animation: spin 16s linear infinite;
  font-family: "Unbounded", sans-serif; font-size: 9.6px; font-weight: 600; letter-spacing: .18em;
  fill: var(--text);
}
.hero__badge-arrow {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  transform: rotate(90deg);
  transition: transform .4s var(--ease);
}
.hero__badge:hover .hero__badge-arrow { transform: rotate(90deg) scale(1.12); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero__stat { padding: 26px 0; padding-inline-end: 20px; }
.hero__stat + .hero__stat { padding-inline-start: 28px; border-inline-start: 1px solid var(--line); }
.hero__stat strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}
[dir="rtl"] .hero__stat strong { text-align: end; }
.hero__stat span { color: var(--muted); font-size: 14px; font-weight: 600; }

/* Marquee ---------------------------------------------------------------- */
.marquee {
  padding-block: 34px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  direction: ltr;
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 36px; padding-inline-end: 36px; }
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 242, 255, .45);
  transition: color .3s;
}
.marquee span:nth-of-type(3n+1) { color: var(--text); -webkit-text-stroke: 0; }
.marquee i { font-style: normal; font-size: 26px; color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Hakkımızda ------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.about__media { position: relative; aspect-ratio: 5 / 6; }
.about__img { position: absolute; overflow: hidden; border-radius: var(--radius-lg); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--a { inset: 0 18% 12% 0; }
.about__img--b {
  width: 58%; aspect-ratio: 4 / 3;
  inset-inline-end: 0; bottom: 0;
  border: 6px solid var(--bg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
}
[dir="rtl"] .about__img--a { inset: 0 0 12% 18%; }
.about__since {
  position: absolute;
  inset-inline-start: -18px; bottom: 18%;
  padding: 18px 22px;
  border-radius: 20px;
  background: var(--coral);
  color: var(--on-accent);
  box-shadow: 0 20px 40px -12px rgba(255, 122, 89, .6);
}
.about__since strong { display: block; font-family: "Unbounded", sans-serif; font-size: 30px; line-height: 1; }
.about__since span { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.about__text .h2 { margin-bottom: 24px; }
.checks { display: grid; gap: 14px; margin-block: 32px 36px; }
.checks li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.checks__i {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(247, 163, 59, .14);
  color: var(--accent);
}

/* Bölüm başlığı ----------------------------------------------------------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px 64px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head > div { max-width: 760px; }
.section-head .lead { max-width: 420px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.services { background: var(--bg-2); }

/* Süreç ------------------------------------------------------------------ */
.process { background: var(--bg-2); overflow: hidden; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.steps__line {
  position: absolute;
  top: 36px;
  inset-inline: 0;
  height: 1px;
  background: var(--line);
}
.steps__line i {
  display: block;
  height: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
}
[dir="rtl"] .steps__line i { transform-origin: right; }
.step { position: relative; }
.step__num {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  position: relative;
  transition: background-color .4s, color .4s, border-color .4s;
}
.step.is-on .step__num { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--muted); }

/* Yorumlar --------------------------------------------------------------- */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .3s, background-color .3s;
}
.testi__card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.testi__q { color: var(--coral); }
.testi__card blockquote { font-size: 18px; line-height: 1.6; flex: 1; }
.testi__card figcaption { display: grid; gap: 2px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi__card figcaption span { color: var(--muted); font-size: 14px; }

/* SSS -------------------------------------------------------------------- */
.faq__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.faq__head { position: sticky; top: 120px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 26px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 700;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform .4s var(--ease), background-color .3s, color .3s;
}
.faq__item[open] summary i { transform: rotate(45deg); background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.faq__a { padding-bottom: 26px; color: var(--muted); max-width: 64ch; }

/* CTA -------------------------------------------------------------------- */
.cta {
  position: relative;
  padding-block: clamp(100px, 14vw, 200px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(40% 50% at 25% 40%, rgba(247, 163, 59, .35), transparent 70%),
    radial-gradient(40% 50% at 75% 60%, rgba(255, 122, 89, .32), transparent 70%),
    radial-gradient(30% 40% at 50% 50%, rgba(125, 211, 252, .18), transparent 70%);
  filter: blur(40px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: rotate(12deg) scale(1.1); } }
.cta__inner { display: grid; justify-items: center; gap: 24px; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 14ch;
  text-wrap: balance;
}
.lang-ar .cta__title { letter-spacing: 0; line-height: 1.3; }
.cta .lead { color: #D3D9EE; }
.cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 12px; }

/* İletişim --------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.contact__info .h2 { margin-bottom: 20px; }
.contact__list { display: grid; gap: 14px; margin-top: 40px; }
.contact__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact__list li > span {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(247, 163, 59, .12);
  color: var(--accent);
}
.contact__list small { display: block; color: var(--muted); font-size: 13px; font-weight: 600; }
.contact__list a { font-weight: 700; word-break: break-word; }
.contact__list a:hover { color: var(--accent); }

.form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 700; }
.field label em { color: var(--coral); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: rgba(7, 11, 26, .6);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23A3ACC7' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-inline-end: 44px;
}
[dir="rtl"] .field select { background-position: left 18px center; }
.field select option { background: var(--bg-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(247, 163, 59, .18);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--coral); }
.form__note { color: var(--muted); font-size: 14px; }
.form__status { font-weight: 600; min-height: 1.6em; }
.form__status.is-ok { color: var(--accent); }
.form__status.is-err { color: var(--coral); }
.form button[disabled] { opacity: .7; cursor: progress; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer ----------------------------------------------------------------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 90px; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1.3fr; gap: 40px; }
.footer__brand p { color: var(--muted); margin-block: 18px 24px; max-width: 36ch; }
.footer h3 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.lang-ar .footer h3 { letter-spacing: 0; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { transition: color .25s; }
.footer ul a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: background-color .3s, color .3s, border-color .3s;
}
.footer__social a:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.footer__giant {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: min(calc((100vw - 2 * var(--gutter)) / 9.5), 128px);
  letter-spacing: -.05em;
  line-height: .9;
  margin-top: 80px;
  text-align: center;
  direction: ltr;
  background: linear-gradient(180deg, rgba(238, 242, 255, .16), rgba(238, 242, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  white-space: nowrap;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer__langs { display: flex; gap: 6px; }
.footer__langs a { padding: 8px 10px; border-radius: 8px; font-weight: 700; }
.footer__langs a:hover, .footer__langs a[aria-current] { color: var(--text); background: var(--surface-2); }
.to-top { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; font-weight: 700; }
.to-top:hover { color: var(--accent); }

/* WhatsApp --------------------------------------------------------------- */
.wa-float {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 80;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }

/* Scroll reveal (JS yoksa görünür kalır) ------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(36px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); }

/* Hareket azaltma -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero__video { transform: none; }
  .marquee__track { animation: none; }
}

/* İnce ayarlar */
.about__text .h2, .faq__head .h2, .contact__info .h2 { font-size: clamp(30px, 3.6vw, 54px); }

/* ==========================================================================
   v2 — Çok sayfalı yapı bileşenleri
   ========================================================================== */

.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; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.15; letter-spacing: -.01em; }
.lead--strong { color: var(--text); font-weight: 500; }
.lead + .lead { margin-top: 18px; }
.center-link { display: flex; justify-content: center; margin-top: 48px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; direction: ltr; }
.logo__svg { flex-shrink: 0; overflow: visible; transition: transform .6s var(--ease); }
.logo:hover .logo__svg { transform: rotate(-6deg) scale(1.04); }
.logo__text { display: flex; flex-direction: column; line-height: 1; font-family: "Manrope", sans-serif; }
.logo__text span { font-weight: 300; font-size: 17px; letter-spacing: .01em; }
.logo__text b { font-weight: 800; font-size: 21px; letter-spacing: -.01em; margin-top: 2px; }
.loader__logo { display: block; }
.loader__logo .logo__svg { animation: logoPop 1s var(--ease) both; }
@keyframes logoPop { from { transform: scale(.6) rotate(-12deg); opacity: 0; } }

/* Üst bilgi çubuğu */
.topbar {
  height: 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  transition: height .4s var(--ease), opacity .3s;
}
.header.is-scrolled .topbar { height: 0; opacity: 0; border-color: transparent; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 100%; gap: 20px; }
.topbar__info { display: flex; gap: 24px; }
.topbar__info li, .topbar__info a { display: inline-flex; align-items: center; gap: 8px; }
.topbar__info a:hover { color: var(--text); }
.topbar__info .icon { color: var(--accent); }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__social { display: flex; gap: 4px; }
.topbar__social a { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; transition: color .2s, background-color .2s; }
.topbar__social a:hover { color: var(--text); background: var(--surface-2); }
.topbar__wa { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); }
.topbar__wa .dot { background: #25D366; }

/* Ana menü */
.nav { margin-inline-start: auto; }
.nav__list { display: flex; gap: 2px; align-items: center; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 0 14px;
  border: 0; background: none;
  font-size: 15px; font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color .25s, background-color .25s;
}
.nav__link .icon { transition: transform .3s var(--ease); }
.nav__link:hover, .nav__link.is-current, .has-drop:hover > .nav__link, .has-drop.is-open > .nav__link { color: var(--text); background: var(--surface-2); }
.nav__link.is-current { color: var(--accent); }
.has-drop { position: relative; }
.has-drop:hover > .nav__link .icon, .has-drop.is-open > .nav__link .icon { transform: rotate(180deg); }

.drop, .mega {
  position: absolute;
  top: 100%;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .35s var(--ease), visibility 0s .35s;
  z-index: 10;
}
.drop {
  inset-inline-start: 0;
  min-width: 260px;
  padding: 10px;
  margin-top: 8px;
  background: rgba(14, 20, 42, .97);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
}
.drop::before, .mega::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.drop a {
  display: flex; align-items: center; gap: 12px;
  min-height: 46px; padding: 0 14px;
  border-radius: 12px;
  font-weight: 600; font-size: 15px; color: var(--muted);
  transition: background-color .2s, color .2s;
}
.drop a .icon { color: var(--accent); }
.drop a:hover { background: var(--surface-2); color: var(--text); }

.has-mega { position: static; }
.mega {
  inset-inline: 0;
  padding-top: 8px;
}
.mega__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 28px;
  background: rgba(14, 20, 42, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .8);
}
.mega__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 20px; }
.mega__title { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); padding: 0 12px 10px; }
.lang-ar .mega__title { letter-spacing: 0; font-size: 14px; }
.mega__item { display: flex; gap: 12px; padding: 12px; border-radius: 14px; transition: background-color .2s; }
.mega__item:hover { background: var(--surface-2); }
.mega__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  transition: background-color .25s, color .25s, transform .4s var(--ease);
}
.mega__item:hover .mega__icon { background: var(--accent); color: var(--on-accent); transform: rotate(-6deg); }
.mega__item strong { display: block; font-size: 14.5px; line-height: 1.3; }
.mega__item small { display: block; font-size: 12.5px; line-height: 1.45; color: var(--muted); margin-top: 3px; }
.mega__cta { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.mega__cta img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.mega__cta > div { padding: 18px; display: grid; gap: 10px; font-size: 14px; color: var(--muted); }
.mega__cta-title { font-weight: 800; font-size: 16px; color: var(--text); }
.mega__all { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--text); }
.mega__all:hover { color: var(--accent); }

@media (hover: hover) {
  .has-drop:hover > .drop, .has-drop:hover > .mega { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
}
.has-drop.is-open > .drop, .has-drop.is-open > .mega, .has-drop:focus-within > .drop, .has-drop:focus-within > .mega { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }

/* Mobil menü v2 */
.mobile-menu { padding-top: 100px; }
.mm > li { border-bottom: 1px solid var(--line); }
.mm > li > a, .mm summary {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 60px;
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.mm summary::-webkit-details-marker { display: none; }
.mm details[open] summary .icon { transform: rotate(180deg); }
.mm summary .icon { transition: transform .3s var(--ease); color: var(--accent); }
.mm__sub { display: grid; padding-bottom: 16px; }
.mm__sub a { min-height: 42px; display: flex; align-items: center; color: var(--muted); font-weight: 600; }
.mm__sub a:hover { color: var(--text); }
.mm__group { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-top: 14px; }
.mobile-menu__contact { display: grid; gap: 10px; }
.mobile-menu__contact a { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--muted); }
.mobile-menu__contact .icon { color: var(--accent); }

/* Hero v2 */
.hero { padding-top: 190px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 32px; color: #CBD2E6; font-size: 14.5px; font-weight: 600; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .icon { color: var(--accent); }

/* Sekmeli hizmetler */
.tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.tab {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px;
  text-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: background-color .3s, border-color .3s, transform .4s var(--ease);
}
.tab:hover { border-color: var(--line-2); transform: translateY(-2px); }
.tab[aria-selected="true"] { background: linear-gradient(160deg, rgba(247, 163, 59, .16), rgba(247, 163, 59, .03)); border-color: rgba(247, 163, 59, .55); }
.tab__num { font-family: "Unbounded", sans-serif; font-size: 13px; color: var(--accent); padding-top: 3px; }
.tab__text { display: grid; gap: 4px; }
.tab__text strong { font-size: 17px; }
.tab__text small { color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.tabpanel { animation: fadeUp .6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }

/* Hizmet kartı */
.scard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scard {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 16px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .3s, background-color .3s;
}
.scard:hover { transform: translateY(-6px); border-color: rgba(247, 163, 59, .45); background: var(--surface-2); }
.scard__img { display: block; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; margin-bottom: 14px; }
.scard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.scard:hover .scard__img img { transform: scale(1.07); }
.scard__icon {
  position: absolute;
  top: 28px; inset-inline-start: 28px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: rgba(8, 12, 28, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  border: 1px solid var(--line-2);
}
.scard__title, .scard__desc, .scard__more { padding-inline: 10px; }
.scard__title { font-family: var(--font-display); font-size: 21px; font-weight: 600; line-height: 1.25; }
.scard__desc { color: var(--muted); font-size: 15.5px; flex: 1; }
.scard__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent); margin-top: 6px; }
.scard__more .icon { transition: transform .35s var(--ease); }
.scard:hover .scard__more .icon { transform: translateX(5px); }
[dir="rtl"] .scard__more .icon, [dir="rtl"] .bcard__more .icon, [dir="rtl"] .mega__all .icon { transform: scaleX(-1); }
[dir="rtl"] .scard:hover .scard__more .icon { transform: scaleX(-1) translateX(5px); }

/* Neden biz */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.why__item { padding: 36px; border-bottom: 1px solid var(--line); border-inline-end: 1px solid var(--line); position: relative; transition: background-color .4s; }
.why__item:hover { background: var(--surface); }
.why__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--accent-soft); color: var(--accent); margin-bottom: 22px; transition: transform .5s var(--ease), background-color .3s, color .3s; }
.why__item:hover .why__icon { transform: rotate(-8deg) scale(1.05); background: var(--accent); color: var(--on-accent); }
.why__item h3 { font-size: 20px; margin-bottom: 8px; }
.why__item p { color: var(--muted); }

/* Sektörler */
.sectors { padding-block: 56px; border-block: 1px solid var(--line); overflow: hidden; background: var(--bg-2); }
.sectors__label { text-align: center; color: var(--muted); font-weight: 700; margin-bottom: 26px; }
.sectors__row { overflow: hidden; direction: ltr; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.sectors__track { display: flex; gap: 14px; width: max-content; animation: marquee 40s linear infinite reverse; }
.chip { display: inline-flex; align-items: center; min-height: 52px; padding: 0 26px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); font-weight: 700; white-space: nowrap; }
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-inline-end: 12px; }

/* Proje kartları */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.pgrid--home .pcard:nth-child(3n+2) { margin-top: 64px; }
.pcard__img { overflow: hidden; border-radius: 26px; aspect-ratio: 4 / 3; background: var(--bg-3); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 1.2s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.02); }
.pcard__meta { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; }
.pcard h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.pcard p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.pcard__year { flex-shrink: 0; align-self: flex-start; padding: 5px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.pcard.is-hidden { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter { min-height: 44px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; font-weight: 700; font-size: 15px; transition: background-color .25s, color .25s, border-color .25s; }
.filter:hover { border-color: var(--text); }
.filter.is-active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* Yorumlar v2 */
.testi__stars { display: flex; gap: 2px; color: var(--accent-2); }
.testi__stars .icon { fill: currentColor; }
.testi__card figcaption { display: flex; align-items: center; gap: 12px; }
.testi__card figcaption small { display: block; color: var(--muted); font-size: 14px; }
.testi__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: var(--on-accent); font-weight: 800; }

/* Blog kartları */
.blog-home { background: var(--bg-2); }
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bgrid--2 { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.bcard__link, .bfeat__link { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.bcard__img, .bfeat__img { display: block; overflow: hidden; border-radius: 22px; aspect-ratio: 16 / 9; background: var(--bg-3); }
.bcard__img img, .bfeat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bcard__link:hover img, .bfeat__link:hover img { transform: scale(1.05); }
.bcard__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); font-size: 13.5px; margin-top: 6px; }
.bcard__cat { padding: 4px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 12.5px; }
.bcard__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.3; transition: color .25s; }
.bcard__link:hover .bcard__title, .bfeat__link:hover .bfeat__title { color: var(--accent); }
.bcard__excerpt { color: var(--muted); font-size: 15.5px; flex: 1; }
.bcard__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.bfeat__link { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.bfeat__body { display: flex; flex-direction: column; gap: 14px; }
.bfeat__title { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 36px); font-weight: 600; line-height: 1.2; transition: color .25s; }

/* İç sayfa başlığı */
.phero { position: relative; padding: 220px 0 90px; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line); }
.phero__bg { position: absolute; inset: 0; z-index: -1; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.phero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg) 0%, rgba(8, 12, 28, .55) 60%, rgba(8, 12, 28, .8) 100%); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 26px; }
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs a:hover { color: var(--text); }
.crumbs [aria-current] { color: var(--accent); }
[dir="rtl"] .crumbs .icon { transform: scaleX(-1); }
.phero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 5.6vw, 80px); line-height: 1.05; letter-spacing: -.03em; max-width: 18ch; text-wrap: balance; }
.lang-ar .phero__title { letter-spacing: 0; line-height: 1.3; }
.phero__sub { margin-top: 22px; font-size: clamp(17px, 1.4vw, 20px); color: #C9D0E6; max-width: 60ch; }

/* Hakkımızda sayfası */
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.story__grid .h2 { margin-bottom: 24px; font-size: clamp(30px, 3.6vw, 52px); }
.story__img { border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 3.4; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.stats-band__item { padding: 34px; display: grid; gap: 6px; }
.stats-band__item + .stats-band__item { border-inline-start: 1px solid var(--line); }
.stats-band strong { font-family: "Unbounded", sans-serif; font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; direction: ltr; unicode-bidi: isolate; text-align: start; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
[dir="rtl"] .stats-band strong { text-align: end; }
.stats-band span { color: var(--muted); font-weight: 600; }
.mv { padding-top: 0; }
.mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv__card { padding: 44px; border-radius: 28px; background: linear-gradient(160deg, rgba(247, 163, 59, .12), rgba(255, 255, 255, .02)); border: 1px solid var(--line); }
.mv__icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px; background: var(--accent); color: var(--on-accent); margin-bottom: 24px; }
.mv__card h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.mv__card p { color: #C9D0E6; font-size: 18px; }
.values { background: var(--bg-2); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.values__item { padding: 30px; border-radius: 24px; border: 1px solid var(--line); background: var(--surface); }
.values__num { font-family: "Unbounded", sans-serif; color: var(--accent); font-size: 14px; }
.values__item h3 { font-size: 21px; margin: 18px 0 8px; }
.values__item p { color: var(--muted); }

/* Hizmetler sayfası */
.group-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 70px; position: sticky; top: 84px; z-index: 5; padding: 10px; border-radius: 999px; background: rgba(12, 18, 39, .85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--line); width: fit-content; max-width: 100%; }
.group-nav a { min-height: 42px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 999px; font-weight: 700; font-size: 14.5px; color: var(--muted); transition: background-color .2s, color .2s; }
.group-nav a:hover, .group-nav a.is-active { background: var(--accent); color: var(--on-accent); }
.svc-group { scroll-margin-top: 170px; }
.svc-group + .svc-group { margin-top: 100px; }
.svc-group__head { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 36px; }
.svc-group__num { font-family: "Unbounded", sans-serif; font-size: 14px; color: var(--accent); padding: 10px 14px; border: 1px solid rgba(247, 163, 59, .4); border-radius: 999px; }
.svc-group__head p { color: var(--muted); margin-top: 6px; }

/* Hizmet detay */
.svc-intro__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.svc-intro .h2 { margin-bottom: 24px; }
.svc-intro__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.svc-intro__img { position: relative; border-radius: 30px; overflow: hidden; aspect-ratio: 4 / 3; }
.svc-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-intro__icon { position: absolute; inset-inline-start: 22px; bottom: 22px; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 20px; background: var(--accent); color: var(--on-accent); box-shadow: 0 20px 40px -12px rgba(247, 163, 59, .6); }
.features { background: var(--bg-2); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { padding: 30px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); transition: border-color .3s, transform .5s var(--ease); }
.feat:hover { border-color: rgba(247, 163, 59, .45); transform: translateY(-4px); }
.feat__num { font-family: "Unbounded", sans-serif; font-size: 13px; color: var(--accent); }
.feat h3 { font-size: 20px; margin: 14px 0 8px; }
.feat p { color: var(--muted); }
.included { margin-top: 40px; padding: 30px 34px; border-radius: 24px; border: 1px dashed rgba(247, 163, 59, .45); display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; }
.included__title { font-weight: 800; }
.included ul { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.included li { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: #D5DAEA; }
.included .checks__i { width: 24px; height: 24px; }

/* Blog yazısı */
.article__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(40px, 5vw, 80px); align-items: start; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 26px; }
.article__img { border-radius: 26px; overflow: hidden; margin-bottom: 44px; }
.article__back { margin-top: 44px; }
.article__side { position: sticky; top: 110px; display: grid; gap: 20px; }
.side-card { padding: 26px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); display: grid; gap: 12px; color: var(--muted); font-size: 15px; }
.side-card__label { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.side-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--accent-soft); color: var(--accent); }
.side-card__title { font-weight: 800; font-size: 18px; color: var(--text); }
.side-card--cta { background: linear-gradient(160deg, #F7A33B, #F07F3C); border: 0; color: rgba(26, 16, 4, .8); }
.side-card--cta .side-card__title { color: var(--on-accent); }
.prose { font-size: 18px; line-height: 1.8; color: #D3D8E8; }
.prose h2 { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 28px); font-weight: 600; line-height: 1.3; color: var(--text); margin: 44px 0 14px; }
.prose p { margin-bottom: 18px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__wrap { max-width: 860px; }
.legal__wrap h2:first-child { margin-top: 0; }

/* İletişim sayfası */
.contact__grid { grid-template-columns: 4fr 7fr; }
.contact__list { margin-top: 0; }
.contact__list p { font-weight: 600; }
.form__title { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--muted); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex-shrink: 0; }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.consent em { color: var(--coral); font-style: normal; }
.consent.is-invalid { color: var(--coral); }
.field select optgroup { background: var(--bg-2); color: var(--accent); }
.map { height: 440px; border-top: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9) hue-rotate(180deg); }

/* 404 */
.nf { min-height: 80vh; display: grid; place-items: center; padding: 200px 0 120px; text-align: center; }
.nf__inner { display: grid; justify-items: center; gap: 18px; }
.nf__code { font-family: "Unbounded", sans-serif; font-size: clamp(100px, 20vw, 240px); font-weight: 700; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nf__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 12px; }

/* Footer v2 */
.footer__top { grid-template-columns: 1.6fr 1fr 1.6fr 1.5fr; }
.footer__h { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 800; }
.lang-ar .footer__h { letter-spacing: 0; font-size: 15px; }
.footer__label { font-weight: 700; margin-bottom: 12px !important; color: var(--text) !important; }
.footer__svc ul { grid-template-columns: 1fr 1fr; column-gap: 20px; }
.footer__svc a { color: var(--muted); font-size: 15px; }
.footer ul a { color: var(--muted); }
.footer ul a:hover { color: var(--accent); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.footer__contact .icon { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__wa { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 12px 18px; border-radius: 999px; background: rgba(37, 211, 102, .12); color: #7BE8A6; font-weight: 700; font-size: 14.5px; }
.footer__wa .dot { background: #25D366; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a:hover { color: var(--text); }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .topbar { display: none; }
  .burger { display: inline-block; }
  .header__actions { margin-inline-start: auto; }
}

@media (max-width: 960px) {
  .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }
  .faq__head { position: static; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .steps__line { display: none; }
  .testi__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__badge { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .header__cta { display: none; }
  .hero { padding-top: 120px; }
  .hero__shade, [dir="rtl"] .hero__shade {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(7, 11, 26, .8) 45%, rgba(7, 11, 26, .35) 100%);
  }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat { padding-block: 18px; }
  .hero__stat:nth-child(3) { padding-inline-start: 0; border-inline-start: 0; }
  .hero__stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero__btns .btn { flex: 1 1 100%; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta__btns .btn { flex: 1 1 100%; }
  .about__since { inset-inline-start: 8px; }
  .wa-float { width: 54px; height: 54px; }
}

/* v2 responsive */
@media (max-width: 1280px) {
  .mega__inner { grid-template-columns: 1fr; }
  .mega__cta { display: none; }
  .nav__link { padding: 0 11px; font-size: 14.5px; }
}
@media (max-width: 1180px) {
  .hero { padding-top: 140px; }
  .tabs { grid-template-columns: 1fr 1fr; }
  .phero { padding-top: 170px; }
}
@media (max-width: 960px) {
  .scard-grid, .pgrid, .bgrid, .feat-grid { grid-template-columns: 1fr 1fr; }
  .pgrid--home .pcard:nth-child(3n+2) { margin-top: 0; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .story__grid, .svc-intro__grid, .article__grid, .bfeat__link, .mv__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band__item:nth-child(3) { border-inline-start: 0; }
  .stats-band__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .article__side { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .tabs { grid-template-columns: 1fr; gap: 8px; }
  .tab { padding: 16px; }
  .tab__text small { display: none; }
  .scard-grid, .pgrid, .bgrid, .bgrid--2, .feat-grid, .why__grid, .values__grid { grid-template-columns: 1fr; }
  .why__item { padding: 28px; }
  .phero { padding: 140px 0 60px; }
  .group-nav { position: static; border-radius: 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__svc ul { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; gap: 8px; }
  .map { height: 320px; }
  .mv__card { padding: 30px; }
  .logo__text span { font-size: 15px; }
  .logo__text b { font-size: 18px; }
  .hero__trust { font-size: 13.5px; }
}
.section-head > div { max-width: 680px; }
