/* =========================================================
   havadakalmasin.com — Modern airline review platform
   Design tokens
   ========================================================= */
:root {
  /* Brand palette */
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink-900: #0b1437;
  --ink-800: #111b46;
  --ink-700: #1c2a5e;
  --ink-500: #4a5685;
  --ink-400: #6b76a3;
  --ink-300: #9aa3c5;
  --line: #e6e8f3;
  --line-strong: #d2d7ea;

  /* Accents */
  --accent: #ff6b35;
  --accent-2: #ff8a5c;
  --accent-soft: #fff1ea;

  --gold: #f5b042;
  --good: #16a36b;
  --bad: #e2424a;

  /* Effects */
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 14px rgba(11, 20, 55, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 20, 55, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 20, 55, 0.12);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink-900);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Buttons / chips / eyebrow
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 53, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 107, 53, .45); }
.btn--ghost {
  color: var(--ink-800);
  background: transparent;
}
.btn--ghost:hover { background: var(--line); }
.btn--ghost-light {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }
.btn--lg { padding: 14px 24px; font-size: 15.5px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
}
.eyebrow i { color: var(--accent); font-size: 16px; }
.eyebrow--dark {
  color: var(--ink-700);
  background: var(--accent-soft);
  border-color: #ffd9c4;
}
.eyebrow--dark i { color: var(--accent); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.chip i { font-size: 15px; color: var(--accent); }
.chip--link {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.chip--link:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }

.grad {
  background: linear-gradient(135deg, var(--accent) 0%, #ffb86b 60%, #ffd86b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Navbar
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 20, 55, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 20px rgba(255,107,53,.35);
}
.logo__mark i { color: #fff; font-size: 22px; transform: rotate(-20deg); }
.logo__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo__text span { color: var(--accent); }
.logo__text em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-left: 2px;
  font-size: 14px;
}
.logo--footer { color: var(--ink-900); }
.logo--footer .logo__text em { color: var(--ink-400); }

.nav__links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: 14.5px;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__links a:hover { background: rgba(255,255,255,.08); color: #fff; }

.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn--ghost { color: rgba(255,255,255,.85); }
.nav__cta .btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.08);
}
.nav__burger i { font-size: 22px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 60% 30%, rgba(0,0,0,.7), transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 60% 30%, rgba(0,0,0,.7), transparent 70%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.hero__glow--a { width: 520px; height: 520px; background: #ff6b35; top: -180px; right: -120px; }
.hero__glow--b { width: 420px; height: 420px; background: #3a6cf3; bottom: -200px; left: -100px; opacity: .35; }
.hero__path { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 110px;
  min-height: 720px;
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.05;
  margin: 22px 0 18px;
  color: #fff;
}
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  margin: 0 0 32px;
  max-width: 540px;
}

/* Search */
.search {
  display: grid;
  grid-template-columns: 1.1fr 1px 1.2fr 1px .9fr auto;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 12px;
  box-shadow: var(--shadow-lg);
  gap: 6px;
}
.search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .2s var(--ease);
}
.search__field:hover { background: var(--bg); }
.search__field i { color: var(--accent); font-size: 18px; }
.search__field input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 14.5px;
  color: var(--ink-900);
}
.search__field input::placeholder { color: var(--ink-400); }
.search__divider { width: 1px; height: 26px; background: var(--line); }
.search__btn { padding: 12px 22px; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

/* Hero ticket card */
.hero__card {
  position: relative;
  display: grid;
  place-items: center;
}
.ticket {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius-xl);
  padding: 26px 26px 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 6px 16px rgba(0,0,0,.18);
  transform: rotate(-2deg);
  transition: transform .6s var(--ease);
}
.ticket:hover { transform: rotate(-1deg) translateY(-4px); }
.ticket__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.ticket__airline { display: flex; align-items: center; gap: 12px; }
.ticket__logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800;
  display: grid; place-items: center; font-size: 15px;
}
.ticket__name { font-weight: 700; font-size: 15px; }
.ticket__flight { font-size: 12.5px; color: var(--ink-400); }
.ticket__rating {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); color: #b9442a;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px;
}
.ticket__rating i { color: var(--gold); }

.ticket__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ticket__stop { text-align: left; }
.ticket__stop:last-child { text-align: right; }
.ticket__code { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -.02em; }
.ticket__city { font-size: 13px; color: var(--ink-400); margin-top: -4px; }
.ticket__time { font-size: 13px; font-weight: 600; margin-top: 4px; color: var(--ink-700); }
.ticket__line {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--ink-400); font-size: 11.5px; font-weight: 600;
}
.ticket__line i { color: var(--accent); font-size: 22px; transform: rotate(20deg); }

.ticket__divider {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  margin: 18px -8px;
  padding: 0 8px;
  position: relative;
}
.ticket__divider span {
  flex: 1;
  height: 2px;
  background: var(--line-strong);
  border-radius: 2px;
}
.ticket__divider::before, .ticket__divider::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  background: var(--ink-900);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.ticket__divider::before { left: -38px; }
.ticket__divider::after { right: -38px; }

.ticket__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.metric {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
}
.metric i { font-size: 20px; color: var(--accent); }
.metric__label { font-size: 11.5px; color: var(--ink-400); }
.metric__value { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink-900); }

.hero__badge {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--ink-800);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.hero__badge i { color: var(--good); font-size: 18px; }
.hero__badge--a { top: 14%; left: -18px; transform: rotate(-4deg); }
.hero__badge--b { bottom: 14%; right: -22px; transform: rotate(3deg); }
.hero__badge--b i { color: var(--accent); }

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
  background: #0b1437;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  color: rgba(255,255,255,.55);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.trust__label {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
}
.trust__logos span { transition: color .2s var(--ease); cursor: default; }
.trust__logos span:hover { color: #fff; }

/* =========================================================
   Stats
   ========================================================= */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 24px;
}
.stat { position: relative; padding-left: 22px; }
.stat::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.stat__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -.03em;
  color: var(--ink-900);
  line-height: 1;
}
.stat__num span { color: var(--accent); }
.stat__label { color: var(--ink-400); font-size: 14px; margin-top: 8px; }

/* =========================================================
   Sections (generic)
   ========================================================= */
.section { padding: 100px 0; }
.section--dark {
  background: radial-gradient(120% 80% at 80% 0%, #18234e 0%, #0b1437 55%, #060c22 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,.7), transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,.7), transparent 70%);
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.section__title {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 14px;
  max-width: 680px;
}
.section__title--light { color: #fff; }
.section__sub {
  margin: 12px 0 0;
  color: var(--ink-400);
  font-size: 16px;
  max-width: 620px;
}
.section__sub--light { color: rgba(255,255,255,.65); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* =========================================================
   Airline grid
   ========================================================= */
.grid--airlines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.airline {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.airline::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(255,107,53,.3) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.airline:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.airline:hover::after { opacity: 1; }

.airline__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.airline__logo {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 16px;
  letter-spacing: -.02em;
}
.airline__logo--tk { background: linear-gradient(135deg, #e53935, #b71c1c); }
.airline__logo--pc { background: linear-gradient(135deg, #ffa726, #f57c00); }
.airline__logo--lh { background: linear-gradient(135deg, #1565c0, #0d3a73); }
.airline__logo--xq { background: linear-gradient(135deg, #ef6c00, #d84315); }
.airline__head h3 { font-size: 16px; }
.airline__head span { font-size: 12.5px; color: var(--ink-400); }

.airline__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line-strong);
}
.airline__stars { display: inline-flex; gap: 1px; color: var(--gold); font-size: 16px; }
.airline__num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink-900); }
.airline__count { font-size: 12.5px; color: var(--ink-400); margin-left: auto; }

.airline__bars { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.airline__bars li {
  display: grid;
  grid-template-columns: 64px 1fr 28px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.airline__bars span { color: var(--ink-400); }
.airline__bars b { font-family: 'Manrope', sans-serif; font-weight: 700; text-align: right; color: var(--ink-700); font-size: 13.5px; }
.bar {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 1.2s var(--ease);
}

.airline__link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--ink-800);
  font-weight: 600; font-size: 13.5px;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.airline__link:hover { color: var(--accent); gap: 8px; }

/* =========================================================
   How it works
   ========================================================= */
.grid--steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,107,53,.4); }
.step__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: rgba(255,255,255,.05);
  letter-spacing: -.03em;
  line-height: 1;
}
.step__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,107,53,.18), rgba(255,107,53,.06));
  border: 1px solid rgba(255,107,53,.25);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.step__icon i { font-size: 26px; }
.step h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.65); margin: 0; font-size: 15px; }

/* =========================================================
   Reviews
   ========================================================= */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-500);
  transition: all .2s var(--ease);
}
.filter:hover { border-color: var(--ink-300); color: var(--ink-800); }
.filter.is-active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

.grid--reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review__user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #4a5685, #1c2a5e);
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13.5px;
}
.avatar--b { background: linear-gradient(135deg, #ff6b35, #d84315); }
.avatar--c { background: linear-gradient(135deg, #16a36b, #0d6e44); }
.review__user strong { display: block; font-family: 'Manrope', sans-serif; font-size: 14.5px; color: var(--ink-900); }
.review__user span { font-size: 12px; color: var(--ink-400); }

.review__rating {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px;
}
.review__rating i { font-size: 14px; }
.review__rating--good { background: rgba(22,163,107,.1); color: var(--good); }
.review__rating--good i { color: var(--good); }
.review__rating--bad { background: rgba(226,66,74,.1); color: var(--bad); }
.review__rating--bad i { color: var(--bad); }

.review__flight {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 14px;
  font-size: 12.5px;
  color: var(--ink-400);
}
.review__flight span { display: inline-flex; align-items: center; gap: 5px; }
.review__flight i { font-size: 14px; color: var(--accent); }
.badge {
  background: var(--ink-900);
  color: #fff !important;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11.5px !important;
  letter-spacing: .04em;
}

.review__title { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.review__text { color: var(--ink-500); font-size: 14.5px; margin: 0 0 18px; flex: 1; }
.review__foot {
  display: flex; align-items: center; gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review__foot button {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-400); font-weight: 500;
  transition: color .2s var(--ease);
}
.review__foot button:hover { color: var(--accent); }
.review__foot button i { font-size: 16px; }
.review__date { margin-left: auto; font-size: 12px; color: var(--ink-300); }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background:
    radial-gradient(80% 100% at 100% 100%, rgba(255,107,53,.35) 0%, transparent 60%),
    radial-gradient(60% 100% at 0% 0%, rgba(58,108,243,.25) 0%, transparent 55%),
    linear-gradient(135deg, #0b1437, #1a2660);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 24px;
}
.cta h2 { font-size: clamp(32px, 4vw, 48px); color: #fff; margin: 16px 0 14px; }
.cta p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 0 28px; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cta__visual {
  display: grid; place-items: center;
  position: relative;
  height: 320px;
}
.orbit {
  position: relative;
  width: 280px; height: 280px;
}
.orbit__center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 2;
}
.orbit__center i {
  font-size: 64px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 22px;
  border-radius: 24px;
  transform: rotate(-20deg);
  box-shadow: 0 24px 50px rgba(255,107,53,.5);
}
.orbit__ring {
  position: absolute; inset: 0;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 50%;
}
.orbit__ring--1 { inset: 0; animation: spin 24s linear infinite; }
.orbit__ring--2 { inset: -50px; border-style: solid; border-color: rgba(255,255,255,.07); animation: spin 40s linear infinite reverse; }
.orbit__dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}
.orbit__dot--1 { top: 6%; left: 50%; transform: translateX(-50%); }
.orbit__dot--2 { bottom: 12%; right: 6%; background: #fff; box-shadow: 0 0 24px #fff; }
.orbit__dot--3 { top: 60%; left: -4%; background: #ffd86b; box-shadow: 0 0 24px #ffd86b; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
  color: var(--ink-500);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p { max-width: 320px; margin: 16px 0 20px; font-size: 14.5px; line-height: 1.6; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--ink-700);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--ink-900); color: #fff; transform: translateY(-2px); }
.footer__social i { font-size: 18px; }

.footer__col h4 {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer__col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--ink-500);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: var(--ink-400);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 80px; padding: 60px 24px 100px; }
  .hero__card { order: -1; max-width: 460px; margin: 0 auto; }
  .grid--airlines { grid-template-columns: repeat(2, 1fr); }
  .grid--reviews { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .search {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 10px;
    gap: 4px;
  }
  .search__divider { display: none; }
  .search__field { background: var(--bg); }
  .search__btn { width: 100%; justify-content: center; padding: 14px; }
  .hero__title { font-size: 42px; }
  .hero__badge--a { left: 0; top: 4%; }
  .hero__badge--b { right: 0; bottom: 4%; }
  .section { padding: 70px 0; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .grid--steps { grid-template-columns: 1fr; }
  .grid--reviews { grid-template-columns: 1fr; }
  .grid--airlines { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .cta__visual { height: 240px; }
  .orbit { width: 220px; height: 220px; }
  .orbit__center i { font-size: 48px; padding: 18px; }
}

@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; gap: 22px; padding: 50px 24px; }
  .trust__inner { gap: 18px; }
  .trust__logos { gap: 22px; font-size: 12.5px; }
  .ticket__metrics { grid-template-columns: 1fr; }
  .ticket__divider::before, .ticket__divider::after { display: none; }
  .hero__badge { display: none; }
}

/* =========================================================
   ============= PAGE: WIZARD (degerlendirme-yaz) ==========
   ========================================================= */
.page--wizard { background: var(--bg); }

.nav--solid {
  background: rgba(11, 20, 55, 0.96);
}

.wizard { padding: 60px 0 100px; }
.wizard__intro { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.wizard__title {
  font-size: clamp(32px, 4vw, 46px);
  margin-top: 14px;
  letter-spacing: -.025em;
}
.wizard__sub {
  color: var(--ink-400);
  margin: 12px 0 0;
  font-size: 16.5px;
}

/* Stepper */
.stepper {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.stepper__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .25s var(--ease);
  position: relative;
}
.stepper__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -14px;
  width: 14px;
  height: 2px;
  background: var(--line);
  transform: translateY(-50%);
  border-radius: 2px;
}
.stepper__dot {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink-400);
  display: grid; place-items: center;
  font-size: 18px;
  transition: all .25s var(--ease);
  border: 1px solid var(--line);
}
.stepper__dot i { font-size: 19px; }
.stepper__meta { display: flex; flex-direction: column; line-height: 1.2; }
.stepper__meta small {
  font-size: 11px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.stepper__meta strong {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: var(--ink-700);
  font-weight: 700;
}
.stepper__item.is-active .stepper__dot {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255,107,53,.35);
}
.stepper__item.is-active .stepper__meta strong { color: var(--ink-900); }
.stepper__item.is-complete .stepper__dot {
  background: var(--good);
  color: #fff;
  border-color: transparent;
}
.stepper__item.is-complete .stepper__dot i::before {
  content: '\f1ed'; /* ti-check */
}

/* Layout: form + side */
.wizard__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}
.wizard__main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.step-panel { display: none; animation: fadeUp .4s var(--ease); }
.step-panel.is-active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.step-panel__head { margin-bottom: 28px; }
.step-panel__head h2 { font-size: 26px; letter-spacing: -.02em; }
.step-panel__head p { color: var(--ink-400); margin: 6px 0 0; font-size: 15px; }

/* Fields */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.form-grid--two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--span { grid-column: 1 / -1; }
.field--lg { grid-column: 1 / -1; }
.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -.005em;
}
.field__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field__wrap:hover { border-color: var(--ink-300); }
.field__wrap:focus-within {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}
.field__wrap > i { color: var(--accent); font-size: 18px; flex: none; }
.field__wrap input,
.field__wrap select {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 14px 0;
  font-size: 14.5px;
  color: var(--ink-900);
  font-family: inherit;
  appearance: none;
}
.field__wrap--select { position: relative; }
.field__caret { color: var(--ink-400) !important; }
.field__hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--good);
  font-weight: 600;
}
.field__hint i { color: var(--good); font-size: 14px; }

/* Route input */
.route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.route__stop { text-align: center; }
.route__stop input {
  width: 100%;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .04em;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink-900);
  text-transform: uppercase;
}
.route__stop small {
  display: block;
  color: var(--ink-400);
  font-size: 12.5px;
  margin-top: 2px;
}
.route__line { color: var(--accent); }
.route__line i { font-size: 28px; transform: rotate(20deg); }

/* Chips */
.chips-group {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.chips-group legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 12px;
}
.chips-group legend small {
  color: var(--ink-400);
  font-weight: 400;
  margin-left: 4px;
}
.chip-radio { display: inline-block; margin: 0 6px 8px 0; }
.chip-radio input { position: absolute; opacity: 0; pointer-events: none; }
.chip-radio span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip-radio span i { font-size: 16px; color: var(--ink-400); }
.chip-radio:hover span { border-color: var(--ink-300); }
.chip-radio input:checked + span {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.chip-radio input:checked + span i { color: var(--accent); }

.chips-group--block legend { margin-bottom: 14px; }
.chip-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-check input { position: absolute; opacity: 0; pointer-events: none; }
.chip-check span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip-check span i { font-size: 16px; color: var(--ink-400); }
.chip-check:hover span { border-color: var(--ink-300); }
.chip-check input:checked + span {
  background: var(--accent-soft);
  border-color: #ffb898;
  color: #b9442a;
}
.chip-check input:checked + span i { color: var(--accent); }

/* Rating list */
.rating-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 6px;
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  transition: background .2s var(--ease);
}
.rating-row:hover { background: #fafbff; }
.rating-row__info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rating-row__info > i {
  font-size: 22px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 10px;
  border-radius: 12px;
}
.rating-row__info strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-900);
}
.rating-row__info span {
  font-size: 12.5px;
  color: var(--ink-400);
}
.stars {
  display: inline-flex;
  gap: 4px;
  cursor: pointer;
  color: var(--ink-300);
}
.stars i {
  font-size: 22px;
  transition: transform .15s var(--ease), color .15s var(--ease);
}
.stars i.ti-star-filled { color: var(--gold); }
.stars i:hover { transform: scale(1.18); }

/* Textarea */
.textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.textarea:focus-within {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}
.textarea textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  resize: vertical;
  min-height: 180px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.6;
}
.textarea__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-400);
}
.textarea__counter b { color: var(--ink-700); font-weight: 700; }
.textarea__hint i { color: var(--gold); font-size: 14px; margin-right: 2px; }

/* Toggle group */
.toggle-group { display: flex; gap: 8px; flex-wrap: wrap; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.toggle:hover span { border-color: var(--ink-300); }
.toggle input:checked + span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,107,53,.3);
}

/* Upload */
.upload { margin-top: 24px; }
.upload__zone {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg);
  border: 2px dashed var(--line-strong);
  border-radius: 16px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.upload__zone:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.upload__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--accent);
}
.upload__icon i { font-size: 28px; }
.upload strong { display: block; font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink-900); }
.upload span { font-size: 13px; color: var(--ink-400); }
.btn--sm { padding: 8px 14px; font-size: 13px; }

/* Preview */
.preview {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 22px;
}
.preview__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.preview__flight {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 14px;
  font-size: 12.5px;
  color: var(--ink-400);
}
.preview__flight i { font-size: 14px; color: var(--accent); margin-right: 4px; }
.preview__title { font-size: 18px; margin-bottom: 8px; }
.preview__text { color: var(--ink-500); margin: 0 0 18px; font-size: 14.5px; }
.preview__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.preview__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-700);
}
.tag i { font-size: 14px; }
.tag--good { background: rgba(22,163,107,.08); border-color: rgba(22,163,107,.2); color: var(--good); }
.tag--good i { color: var(--good); }
.tag--bad { background: rgba(226,66,74,.08); border-color: rgba(226,66,74,.2); color: var(--bad); }

/* Consent checks */
.consent { display: flex; flex-direction: column; gap: 12px; }
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-700);
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check > span {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  display: grid;
  place-items: center;
  transition: all .2s var(--ease);
  margin-top: 1px;
}
.check input:checked + span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.check input:checked + span::after {
  content: '';
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.check p { margin: 0; line-height: 1.55; }
.check p small { display: block; color: var(--ink-400); font-size: 12.5px; margin-top: 2px; }
.check a { color: var(--accent); text-decoration: underline; }

/* Wizard actions */
.wizard__actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.wizard__prev:disabled { opacity: .4; cursor: not-allowed; }
.wizard__progress { display: flex; align-items: center; gap: 12px; }
.wizard__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.wizard__progress-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 25%;
  transition: width .5s var(--ease);
  border-radius: 999px;
}
.wizard__progress-text { font-size: 12.5px; color: var(--ink-400); font-weight: 600; }
.wizard__progress-text b { color: var(--ink-900); }

/* Sidebar */
.wizard__side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.side-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.side-card__head i { font-size: 22px; color: var(--accent); }
.side-card__head h3 { font-size: 15px; }
.side-card p { font-size: 13.5px; color: var(--ink-500); margin: 0 0 12px; line-height: 1.6; }
.side-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.side-card__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.5;
}
.side-card__list li i { color: var(--good); flex: none; margin-top: 2px; font-size: 16px; }
.side-card__list--num li { align-items: center; }
.side-card__list--num b {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 11px;
  font-family: 'Manrope', sans-serif;
}

.side-card--accent {
  background: linear-gradient(135deg, #0b1437, #1a2660);
  border-color: transparent;
  color: #fff;
}
.side-card--accent h3 { color: #fff; }
.side-card--accent .side-card__head i { color: var(--accent); }
.side-card--accent p { color: rgba(255,255,255,.7); }
.link-arrow--light { color: var(--accent); }

/* Success state */
.success {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}
.success__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(22,163,107,.1);
  color: var(--good);
  display: grid; place-items: center;
  margin: 0 auto 22px;
}
.success__icon i { font-size: 48px; }
.success h2 { font-size: 28px; margin-bottom: 10px; }
.success p { color: var(--ink-400); margin: 0 0 28px; font-size: 15.5px; }
.success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.spin { animation: spinrot 1s linear infinite; display: inline-block; }
@keyframes spinrot { to { transform: rotate(360deg); } }

/* Footer mini */
.footer--mini { padding: 30px 0; }
.footer--mini .footer__bottom { border: 0; padding: 0; }

/* Wizard responsive */
@media (max-width: 1100px) {
  .wizard__layout { grid-template-columns: 1fr; }
  .wizard__side { position: static; }
  .stepper { grid-template-columns: repeat(2, 1fr); }
  .stepper__item:nth-child(2)::after { display: none; }
}
@media (max-width: 720px) {
  .wizard__main { padding: 24px; }
  .stepper { grid-template-columns: 1fr; }
  .stepper__item::after { display: none !important; }
  .form-grid, .form-grid--two { grid-template-columns: 1fr; }
  .preview__metrics { grid-template-columns: 1fr 1fr; }
  .rating-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wizard__actions { grid-template-columns: 1fr 1fr; }
  .wizard__progress { grid-column: 1 / -1; order: -1; }
}

/* =========================================================
   ============= PAGE: AIRLINE DETAIL (havayolu) ===========
   ========================================================= */
.page--detail { background: var(--bg); }

/* Breadcrumb */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--ink-400);
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-500);
  transition: color .2s var(--ease);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 14px; color: var(--ink-300); }
.breadcrumb span { color: var(--ink-900); font-weight: 600; }

/* Airline hero */
.airline-hero {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  overflow: hidden;
  padding: 70px 0 80px;
  isolation: isolate;
}
.airline-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
}
.airline-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.airline-hero__brand { display: flex; align-items: center; gap: 24px; }
.airline-hero__logo {
  flex: none;
  width: 92px; height: 92px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -.02em;
  box-shadow: 0 24px 50px rgba(229,57,53,.4);
}
.airline-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin: 14px 0 6px;
  letter-spacing: -.025em;
}
.airline-hero__sub { color: rgba(255,255,255,.65); margin: 0 0 16px; font-size: 15px; }
.airline-hero__meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.airline-hero__meta i { color: var(--accent); font-size: 16px; margin-right: 4px; }
.airline-hero__meta span { display: inline-flex; align-items: center; }

.airline-hero__score {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  min-width: 280px;
  backdrop-filter: blur(20px);
}
.big-rating { text-align: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 18px; }
.big-rating__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
}
.big-rating__stars { color: var(--gold); font-size: 20px; margin: 8px 0 6px; }
.big-rating__count { font-size: 13px; color: rgba(255,255,255,.6); }
.btn--block { width: 100%; justify-content: center; }

/* Tabs */
.tabs {
  position: sticky;
  top: 76px;
  z-index: 30;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.tabs__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs__inner::-webkit-scrollbar { display: none; }
.tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 18px 4px;
  margin: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-400);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.tab:first-child { margin-left: 0; }
.tab:hover { color: var(--ink-900); }
.tab.is-active { color: var(--ink-900); border-bottom-color: var(--accent); }
.tab__count {
  font-size: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

/* Section tight */
.section--tight { padding: 60px 0; }

/* Detail grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card__head { margin-bottom: 22px; }
.card__title { font-size: 19px; }
.card__title--light { color: #fff; }
.card__sub { font-size: 13px; color: var(--ink-400); margin-top: 4px; display: block; }
.card__sub--light { color: rgba(255,255,255,.6); }
.card__subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--ink-900);
}
.card__hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }

/* Distribution chart */
.distribution { display: flex; flex-direction: column; gap: 10px; }
.distribution__row {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
}
.distribution__row span { color: var(--ink-700); font-weight: 500; }
.distribution__row b { font-family: 'Manrope', sans-serif; font-weight: 700; text-align: right; color: var(--ink-900); font-size: 13.5px; }
.distribution .bar i { background: linear-gradient(90deg, var(--gold), #ffc870); }

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat {
  background: var(--bg);
  border-radius: 14px;
  padding: 14px;
}
.cat__head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cat__head i { color: var(--accent); font-size: 18px; }
.cat__head span { font-size: 13px; color: var(--ink-500); font-weight: 500; }
.cat__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

/* Card accent (dark) */
.card--accent {
  background: linear-gradient(135deg, #0b1437, #1a2660);
  border: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.card--accent::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.25), transparent 70%);
  top: -40px; right: -40px;
  pointer-events: none;
}
.highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.highlight__top { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.highlight__top i { font-size: 18px; }
.highlight__top strong { font-family: 'Manrope', sans-serif; font-size: 14px; }
.highlight--good .highlight__top i { color: var(--good); }
.highlight--bad .highlight__top i { color: var(--accent-2); }
.highlight__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.highlight__tags span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
}
.highlight__tags i { font-size: 14px; color: var(--accent); }
.highlight__tags b { font-weight: 700; color: #fff; margin-left: 4px; }

/* Reviews toolbar */
.reviews-toolbar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search--inline {
  box-shadow: none;
  background: var(--bg);
  border: 1px solid var(--line);
  display: block;
  padding: 4px 8px;
}
.search--inline .search__field { padding: 8px 10px; }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.filter-row .filter { display: inline-flex; align-items: center; gap: 5px; }
.filter-row .filter i { font-size: 14px; color: var(--gold); }
.select {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13.5px;
  position: relative;
}
.select > i:first-child { color: var(--accent); font-size: 15px; }
.select > i:last-child { color: var(--ink-400); font-size: 14px; }
.select select {
  border: 0;
  background: transparent;
  outline: 0;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink-700);
  appearance: none;
  padding-right: 4px;
}

/* Review list adjustments */
.grid--reviews-list { grid-template-columns: 1fr 1fr; }

.review__rating--mid { background: rgba(245,176,66,.12); color: #b87a18; }
.review__rating--mid i { color: var(--gold); }

.review__photos {
  display: flex;
  gap: 8px;
  margin: -4px 0 16px;
}
.photo {
  flex: none;
  width: 80px; height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8ebf5, #d2d7ea);
  display: grid;
  place-items: center;
  color: var(--ink-400);
  position: relative;
  overflow: hidden;
}
.photo i { font-size: 28px; }
.photo--more { background: var(--ink-900); color: #fff; }
.photo--more span { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; }

.review__reply {
  margin: 6px 0 16px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
}
.review__reply-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.reply-logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
}
.review__reply strong { font-family: 'Manrope', sans-serif; font-size: 14px; }
.reply-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px;
  color: var(--good);
  background: rgba(22,163,107,.1);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: auto;
}
.reply-badge i { font-size: 13px; }
.review__reply p { margin: 0; font-size: 13.5px; color: var(--ink-500); line-height: 1.55; }

/* Load more */
.load-more {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.load-more span { font-size: 13px; color: var(--ink-400); }

/* Routes grid */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.route-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.route-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,107,53,.4);
}
.route-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.route-card__pair {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
}
.route-card__pair i { color: var(--accent); font-size: 20px; }
.route-card__rating {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(245,176,66,.15);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.route-card__cities { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.route-card__stats {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
}
.route-card__stats i { color: var(--accent); font-size: 14px; margin-right: 4px; }
.route-card__stats span { display: inline-flex; align-items: center; }

/* Airline detail responsive */
@media (max-width: 1100px) {
  .airline-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .airline-hero__score { width: 100%; }
  .detail-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--reviews-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .airline-hero__brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .airline-hero__logo { width: 72px; height: 72px; font-size: 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .tabs { top: 0; }
  .filter-row .select { margin-left: 0; }
}

/* Nav active state */
.nav__links a.is-active {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.nav__links a.is-active::after {
  content: '';
  display: block;
  position: relative;
  top: 6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================================================
   ============= PAGE: AUTH (giris / kayit) ================
   ========================================================= */
.page--auth {
  background: var(--bg);
  min-height: 100vh;
}
.auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.auth--reverse .auth__form-wrap { order: 2; }
.auth--reverse .auth__visual { order: 1; }

.auth__form-wrap {
  background: var(--surface);
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.auth__form-wrap > .logo { align-self: flex-start; color: var(--ink-900); }
.auth__form-wrap > .logo .logo__text em { color: var(--ink-400); }

.auth__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 440px;
  width: 100%;
  margin: 40px auto;
}
.auth__head { margin-bottom: 30px; }
.auth__head h1 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 14px 0 8px;
  letter-spacing: -.025em;
}
.auth__head p { color: var(--ink-400); margin: 0; font-size: 15px; }

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  transition: all .2s var(--ease);
  font-family: inherit;
}
.social-btn:hover { border-color: var(--ink-300); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.social-btn i { font-size: 18px; }
.social-btn--apple { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.social-btn--apple:hover { background: #000; border-color: #000; }

.auth__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}
.auth__divider::before, .auth__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth__divider span {
  font-size: 12.5px;
  color: var(--ink-400);
  text-transform: lowercase;
}

.auth__fields { display: flex; flex-direction: column; gap: 16px; }
.field__link {
  margin-left: auto;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.field__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.field__toggle {
  background: transparent;
  border: 0;
  color: var(--ink-400);
  padding: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.field__toggle:hover { color: var(--ink-900); }
.field__toggle i { font-size: 18px; }

.check--inline { font-size: 13px; }
.check--inline p { font-size: 13.5px; }

.auth__alt {
  text-align: center;
  font-size: 14px;
  color: var(--ink-500);
  margin: 16px 0 0;
}
.auth__alt a { color: var(--accent); font-weight: 600; }
.auth__alt a:hover { text-decoration: underline; }

.auth__foot {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-400);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.auth__foot-links { display: flex; gap: 16px; }
.auth__foot-links a { color: var(--ink-500); }
.auth__foot-links a:hover { color: var(--accent); }

/* Password strength */
.pw-strength {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pw-strength__bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.pw-strength__bars span {
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background .3s var(--ease);
}
.pw-strength__bars span[data-level="1"] { background: var(--bad); }
.pw-strength__bars span[data-level="2"] { background: #ff9b3d; }
.pw-strength__bars span[data-level="3"] { background: #f5b042; }
.pw-strength__bars span[data-level="4"] { background: var(--good); }
.pw-strength__label { font-size: 12px; color: var(--ink-400); }
.pw-strength__label b { color: var(--ink-700); font-weight: 700; }
.pw-strength[data-score="1"] .pw-strength__label b { color: var(--bad); }
.pw-strength[data-score="2"] .pw-strength__label b { color: #ff9b3d; }
.pw-strength[data-score="3"] .pw-strength__label b { color: #f5b042; }
.pw-strength[data-score="4"] .pw-strength__label b { color: var(--good); }

.pw-hints {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.pw-hints li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-400);
  transition: color .2s var(--ease);
}
.pw-hints li i { font-size: 14px; color: var(--ink-300); }
.pw-hints li.is-ok { color: var(--good); }
.pw-hints li.is-ok i { color: var(--good); }

/* Auth visual */
.auth__visual {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #060c22 100%);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.auth__visual-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.auth__visual-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
}

.testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 0 24px;
  backdrop-filter: blur(20px);
  position: relative;
}
.testimonial__quote {
  position: absolute;
  top: 16px; right: 18px;
  color: var(--accent);
  font-size: 36px;
  opacity: .4;
}
.testimonial p {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 500;
}
.testimonial cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}
.testimonial cite strong { display: block; color: #fff; font-family: 'Manrope', sans-serif; }
.testimonial cite span { font-size: 12.5px; color: rgba(255,255,255,.6); }

.auth__cards { position: relative; min-height: 200px; }
.float-card {
  position: absolute;
  background: #fff;
  color: var(--ink-900);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 6s ease-in-out infinite;
}
.float-card strong { display: block; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; }
.float-card span { font-size: 12px; color: var(--ink-400); }
.float-card__head { display: flex; align-items: center; gap: 10px; }
.float-card__head .ticket__logo { width: 36px; height: 36px; font-size: 12px; }
.float-card__stars { color: var(--gold); font-size: 14px; margin-left: 8px; }
.float-card > i { font-size: 22px; color: var(--accent); }
.float-card--a { top: 0; left: 0; animation-delay: 0s; }
.float-card--b { top: 80px; right: 0; animation-delay: 1.5s; }
.float-card--c { top: 150px; left: 20%; animation-delay: 3s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.auth__visual-head { margin-bottom: 28px; }
.auth__visual-head h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.auth__visual-head p { color: rgba(255,255,255,.65); margin: 0; }

.benefit-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 16px; }
.benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-list__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,107,53,.12);
  border: 1px solid rgba(255,107,53,.2);
  color: var(--accent);
  display: grid; place-items: center;
}
.benefit-list__icon i { font-size: 22px; }
.benefit-list strong { display: block; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; }
.benefit-list small { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }

.stat-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(255,107,53,.05));
  border: 1px solid rgba(255,107,53,.25);
  border-radius: 14px;
  padding: 14px 18px;
}
.stat-pill strong { display: block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: #fff; }
.stat-pill small { color: rgba(255,255,255,.65); font-size: 12.5px; }
.stat-pill > i { color: var(--good); font-size: 26px; }

/* Auth responsive */
@media (max-width: 980px) {
  .auth { grid-template-columns: 1fr; }
  .auth__visual { display: none; }
  .auth__form-wrap { padding: 30px 24px; min-height: 100vh; }
}

/* =========================================================
   ============= PAGE: LIST (havayolları/havalimanları) ====
   ========================================================= */
.page--list { background: var(--bg); }

.list-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 50px 0 40px;
}
.list-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.list-hero__title {
  font-size: clamp(32px, 4vw, 44px);
  margin: 14px 0 10px;
  letter-spacing: -.025em;
}
.list-hero__sub {
  color: var(--ink-500);
  margin: 0;
  max-width: 620px;
  font-size: 15.5px;
}
.list-hero__stats {
  display: flex;
  gap: 18px;
}
.mini-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  min-width: 100px;
}
.mini-stat__num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink-900);
  letter-spacing: -.02em;
}
.mini-stat__label {
  display: block;
  font-size: 11.5px;
  color: var(--ink-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* Toolbar */
.toolbar {
  position: sticky;
  top: 76px;
  z-index: 30;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0 0;
}
.toolbar__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
}
.search--toolbar {
  box-shadow: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 8px;
  max-width: 520px;
  grid-template-columns: 1fr;
}
.search--toolbar .search__field { padding: 8px 12px; }

.toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.view-toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px;
}
.view-toggle button {
  width: 36px; height: 32px;
  border-radius: 7px;
  display: grid; place-items: center;
  color: var(--ink-400);
  transition: all .2s var(--ease);
}
.view-toggle button:hover { color: var(--ink-700); }
.view-toggle button.is-active {
  background: var(--ink-900);
  color: #fff;
}
.view-toggle button i { font-size: 16px; }

/* Region tabs */
.region-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0;
}
.region-tabs::-webkit-scrollbar { display: none; }
.region-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  margin: 0 16px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-400);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.region-tab span {
  background: var(--bg);
  color: var(--ink-500);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.region-tab:hover { color: var(--ink-900); }
.region-tab.is-active { color: var(--ink-900); border-bottom-color: var(--accent); }
.region-tab.is-active span { background: var(--accent-soft); color: var(--accent); }

/* Airline list adjustments */
.grid--airlines-list {
  grid-template-columns: repeat(4, 1fr);
}
.country {
  font-size: 14px;
  margin-left: 4px;
  vertical-align: middle;
}
.badge-corner {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(255,107,53,.35);
}
.badge-corner i { font-size: 13px; }

.airline--xl {
  grid-column: span 2;
  background: linear-gradient(180deg, #fff 0%, #fef9f5 100%);
}
.airline__logo--ek { background: linear-gradient(135deg, #d71921, #960e15); }
.airline__logo--qr { background: linear-gradient(135deg, #5c1735, #2e0a1a); }
.airline__logo--af { background: linear-gradient(135deg, #002157, #00153a); }
.airline__logo--ba { background: linear-gradient(135deg, #21577a, #0a2940); }

/* Airport cards */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.airport-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.airport-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.airport-card::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.08), transparent 70%);
  top: -100px; right: -80px;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.airport-card:hover::after { opacity: 1; }

.airport-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.airport-card__code {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: .04em;
  color: var(--ink-900);
  line-height: 1;
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.airport-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-soft);
  color: #b9442a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.airport-card__rating i { color: var(--gold); font-size: 14px; }
.airport-card__name { font-size: 17px; margin: 0 0 2px; }
.airport-card__city { font-size: 13px; color: var(--ink-400); margin: 0 0 14px; }
.airport-card__meta {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-500);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 14px;
}
.airport-card__meta i { color: var(--accent); font-size: 14px; margin-right: 4px; }
.airport-card__meta span { display: inline-flex; align-items: center; }
.airport-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.airport-card__highlights li { display: flex; align-items: center; gap: 6px; }
.airport-card__highlights li i { font-size: 14px; }
.airport-card__highlights .ok { color: var(--ink-700); }
.airport-card__highlights .ok i { color: var(--good); }
.airport-card__highlights .warn { color: var(--ink-700); }
.airport-card__highlights .warn i { color: #ff9b3d; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 50px;
}
.pagination__btn {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 13.5px;
  display: grid;
  place-items: center;
  transition: all .2s var(--ease);
}
.pagination__btn:hover:not(:disabled):not(.is-active) {
  border-color: var(--ink-300);
  background: var(--bg);
}
.pagination__btn.is-active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.pagination__btn:disabled { opacity: .4; cursor: not-allowed; }
.pagination__btn i { font-size: 16px; }
.pagination__dots { color: var(--ink-400); padding: 0 4px; }
.pagination__info { text-align: center; font-size: 13px; color: var(--ink-400); margin-top: 16px; }

/* List responsive */
@media (max-width: 1100px) {
  .grid--airlines-list { grid-template-columns: repeat(2, 1fr); }
  .airline--xl { grid-column: span 2; }
  .airport-grid { grid-template-columns: repeat(2, 1fr); }
  .list-hero__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .toolbar__inner { grid-template-columns: 1fr; }
  .toolbar__filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .grid--airlines-list { grid-template-columns: 1fr; }
  .airline--xl { grid-column: span 1; }
  .airport-grid { grid-template-columns: 1fr; }
  .list-hero__stats { width: 100%; justify-content: space-between; }
  .mini-stat { min-width: auto; flex: 1; padding: 12px 8px; }
}

/* =========================================================
   ============= PAGE: AIRPORT DETAIL (havalimani) =========
   ========================================================= */
.airport-hero {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  overflow: hidden;
  padding: 60px 0 70px;
  isolation: isolate;
}
.airport-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.airport-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.airport-hero__title-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 14px 0 16px;
}
.airport-hero__code {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 64px;
  letter-spacing: .04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 22px 4px 22px;
  border-right: 2px solid rgba(255,255,255,.15);
}
.airport-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 4px;
  letter-spacing: -.025em;
}
.airport-hero p { color: rgba(255,255,255,.65); margin: 0; font-size: 14.5px; }
.airport-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
}
.airport-hero__meta i { color: var(--accent); font-size: 16px; margin-right: 4px; }
.airport-hero__meta span { display: inline-flex; align-items: center; }

.airport-hero__score {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 300px;
  backdrop-filter: blur(20px);
}
.airport-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}
.chip-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
}
.chip-tag i { font-size: 13px; color: var(--gold); }

/* Wait times */
.wait-times { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.wait-times li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.wait-times li:last-child { border-bottom: 0; }
.wait-times__head { display: flex; align-items: center; gap: 10px; }
.wait-times__head i { font-size: 18px; color: var(--accent); }
.wait-times__head span { font-size: 13.5px; color: rgba(255,255,255,.85); }
.wait-times__val { display: flex; align-items: center; gap: 10px; }
.wait-times__val b { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; color: #fff; }
.trend {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.trend i { font-size: 13px; }
.trend--down { background: rgba(22,163,107,.15); color: #5bd49a; }
.trend--up { background: rgba(226,66,74,.15); color: #ff8088; }
.trend--flat { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); }
.card__hr--light { border-color: rgba(255,255,255,.12); }
.card__subtitle--light { color: #fff; }

/* Terminals */
.terminals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.terminal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.terminal-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.terminal-card--featured { background: linear-gradient(180deg, #fff, #fef9f5); border-color: rgba(255,107,53,.3); }
.terminal-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.terminal-card__letter {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.terminal-card__rating {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--accent-soft);
  color: #b9442a;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
}
.terminal-card__rating i { color: var(--gold); }
.terminal-card h3 { font-size: 16px; margin: 0 0 4px; }
.terminal-card p { font-size: 13px; color: var(--ink-400); margin: 0 0 14px; }
.terminal-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-700); }
.terminal-card ul li { display: flex; align-items: center; gap: 6px; }
.terminal-card ul li i { color: var(--accent); font-size: 14px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(255,107,53,.4); background: rgba(255,255,255,.07); }
.service-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,53,.2), rgba(255,107,53,.06));
  border: 1px solid rgba(255,107,53,.25);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.service-card__icon i { font-size: 24px; }
.service-card h3 { color: #fff; font-size: 17px; margin: 0 0 6px; }
.service-card p { color: rgba(255,255,255,.65); margin: 0 0 14px; font-size: 13.5px; line-height: 1.55; }
.service-card__sub { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,.8); }
.service-card__sub li { display: flex; align-items: center; gap: 6px; }
.service-card__sub li i { color: var(--good); font-size: 14px; }

/* Transport */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.transport-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.transport-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.transport-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(255,107,53,.3);
}
.transport-card__icon i { font-size: 28px; }
.transport-card h3 { font-size: 16px; margin: 0 0 4px; }
.transport-card p { font-size: 12.5px; color: var(--ink-400); margin: 0 0 14px; }
.transport-card ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-700);
  text-align: left;
}
.transport-card ul li { display: flex; align-items: center; gap: 6px; }
.transport-card ul li i { color: var(--accent); font-size: 14px; }

/* Airline strip */
.airline-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.airline-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all .2s var(--ease);
}
.airline-pill:hover { border-color: var(--accent); transform: translateX(4px); }
.airline-pill__logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: grid; place-items: center;
  flex: none;
}
.airline-pill strong { display: block; font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--ink-900); }
.airline-pill span { font-size: 12px; color: var(--ink-400); }

/* Airport responsive */
@media (max-width: 1100px) {
  .airport-hero__inner { grid-template-columns: 1fr; }
  .airport-hero__score { width: 100%; }
  .terminals-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .airline-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .airport-hero__title-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .airport-hero__code { padding: 0; border-right: 0; font-size: 48px; }
  .terminals-grid, .services-grid, .transport-grid, .airline-strip { grid-template-columns: 1fr; }
}

/* =========================================================
   ============= PAGE: REVIEW DETAIL (degerlendirme) =======
   ========================================================= */
.page--review { background: var(--bg); }

.review-hero {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  overflow: hidden;
  padding: 50px 0 60px;
  isolation: isolate;
}
.review-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.review-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.review-hero__airline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.review-hero__airline .airline__logo { width: 44px; height: 44px; }
.review-hero__airline strong { display: block; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; }
.review-hero__airline span { font-size: 12.5px; color: rgba(255,255,255,.6); }

.review-hero__route {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 10px 18px;
}
.review-hero__route > i { color: var(--accent); font-size: 22px; transform: rotate(20deg); }
.route-mini { text-align: center; }
.route-mini b {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .03em;
  line-height: 1;
}
.route-mini small { font-size: 11px; color: rgba(255,255,255,.6); }

.review-hero__share { display: flex; gap: 6px; }
.review-hero__share button {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.review-hero__share button:hover { background: rgba(255,107,53,.15); border-color: var(--accent); }
.review-hero__share button i { font-size: 16px; }

.review-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -.025em;
  max-width: 900px;
}

.review-hero__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.avatar--lg { width: 56px; height: 56px; font-size: 16px; }
.avatar--xl { width: 72px; height: 72px; font-size: 18px; }
.review-hero__author strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
}
.review-hero__author > div:nth-child(2) > span { font-size: 13px; color: rgba(255,255,255,.6); }
.verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px;
  background: rgba(22,163,107,.18);
  color: #5bd49a;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}
.verified i { font-size: 12px; }
.review-hero__date {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.review-hero__date i { color: var(--accent); margin-right: 4px; }

.review-hero__big-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.big-rating-stars { color: var(--gold); font-size: 26px; }
.big-rating-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  letter-spacing: -.02em;
}
.big-rating-recommend {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22,163,107,.18);
  color: #5bd49a;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* Review layout */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: flex-start;
}
.review-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.review-side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.review-quick__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
}
.review-quick__item > i { font-size: 22px; color: var(--accent); }
.review-quick__item small { display: block; font-size: 11px; color: var(--ink-400); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.review-quick__item strong { display: block; font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--ink-900); }

.review-body { color: var(--ink-700); line-height: 1.75; }
.review-body h2 {
  font-size: 19px;
  margin: 24px 0 10px;
  letter-spacing: -.015em;
}
.review-body h2:first-child { margin-top: 0; }
.review-body p { margin: 0 0 14px; font-size: 15.5px; }

/* Gallery */
.gallery { margin-top: 32px; }
.gallery__title {
  font-size: 19px;
  margin: 0 0 14px;
  letter-spacing: -.015em;
}
.gallery__title small { font-weight: 500; color: var(--ink-400); font-family: 'Inter', sans-serif; font-size: 14px; margin-left: 4px; }
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 360px;
}
.gallery__item {
  background: linear-gradient(135deg, #e8ebf5, #c5cce0);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--ink-500);
  cursor: pointer;
  transition: transform .3s var(--ease);
  position: relative;
}
.gallery__item:hover { transform: scale(.98); }
.gallery__item i { font-size: 40px; opacity: .6; }
.gallery__item span {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 12px;
  color: var(--ink-700);
  background: rgba(255,255,255,.85);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.gallery__item--lg {
  grid-row: span 2;
}
.gallery__item--more {
  background: var(--ink-900);
  color: #fff;
}
.gallery__item--more span {
  position: static;
  background: transparent;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.gallery__item--more i { display: none; }

/* Detail ratings */
.detail-ratings { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.detail-ratings h2 { font-size: 19px; margin: 0 0 16px; }

/* Action buttons */
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 13.5px;
  transition: all .2s var(--ease);
}
.action-btn b { font-weight: 700; color: var(--ink-900); }
.action-btn:hover { border-color: var(--ink-300); transform: translateY(-1px); }
.action-btn i { font-size: 16px; color: var(--ink-400); }
.action-btn--like { background: var(--accent-soft); border-color: #ffd0bb; color: #b9442a; }
.action-btn--like i { color: var(--accent); }
.action-btn--like b { color: #b9442a; }
.action-btn--end { margin-left: auto; }

/* Official reply */
.official-reply {
  margin-top: 26px;
  background: linear-gradient(135deg, #fff, #fef9f5);
  border: 1px solid rgba(255,107,53,.2);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 22px;
}
.official-reply__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.official-reply__head .reply-logo { width: 36px; height: 36px; font-size: 13px; }
.official-reply__head strong { font-family: 'Manrope', sans-serif; font-size: 15px; }
.official-reply__date { margin-left: auto; font-size: 12.5px; color: var(--ink-400); }
.official-reply p { margin: 0; font-size: 14.5px; color: var(--ink-700); line-height: 1.65; }

/* Comments */
.comments { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.comments__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.comments__head h2 { font-size: 21px; }
.comments__head small { font-weight: 500; color: var(--ink-400); font-family: 'Inter', sans-serif; font-size: 14px; margin-left: 4px; }
.select--sm { padding: 6px 12px; font-size: 12.5px; }

.comment-form {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.comment-form__field {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s var(--ease);
}
.comment-form__field:focus-within { border-color: var(--accent); background: #fff; }
.comment-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  resize: vertical;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink-900);
  min-height: 50px;
}
.comment-form__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-400);
}
.comment-form__foot i { font-size: 14px; margin-right: 2px; color: var(--accent); }

/* Comment item */
.comment {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.comment:last-of-type { border-bottom: 0; }
.comment__body { flex: 1; }
.comment__head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.comment__head strong { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; }
.comment__head > span { font-size: 12px; color: var(--ink-400); }
.comment__head .comment__date { margin-left: auto; }
.author-badge {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
}
.comment__body p { margin: 0 0 10px; font-size: 14.5px; color: var(--ink-700); line-height: 1.55; }
.comment__foot { display: flex; align-items: center; gap: 14px; }
.comment__foot button {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; color: var(--ink-400); font-weight: 600;
  transition: color .2s var(--ease);
}
.comment__foot button:hover { color: var(--accent); }
.comment__foot button i { font-size: 14px; }

.comment--reply {
  border: 0;
  margin-top: 14px;
  padding: 14px 0 0;
  padding-left: 0;
  border-left: 2px solid var(--line);
  padding-left: 16px;
  margin-left: 0;
}
.comment--reply .avatar { width: 36px; height: 36px; font-size: 12px; }

.comments__more { margin-top: 24px; width: 100%; justify-content: center; padding: 14px; }

/* Author card */
.author-card {
  padding: 24px;
  text-align: center;
}
.author-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: left;
}
.author-card__head strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--ink-900);
}
.author-card__head span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--ink-400);
}
.author-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.author-card__stats > div { text-align: center; }
.author-card__stats strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-900);
}
.author-card__stats span {
  font-size: 11px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* Info list */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.info-list li:last-child { border-bottom: 0; }
.info-list span { color: var(--ink-400); }
.info-list b { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink-900); font-size: 13.5px; }

/* Mini review */
.mini-review {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mini-review:last-of-type { border-bottom: 0; }
.mini-review:hover p { color: var(--accent); }
.mini-review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.mini-review .badge { font-size: 11px !important; }
.mini-review p {
  font-size: 13px;
  color: var(--ink-700);
  margin: 0 0 4px;
  line-height: 1.5;
  transition: color .2s var(--ease);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mini-review small { font-size: 11.5px; color: var(--ink-400); }

/* Review responsive */
@media (max-width: 1100px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-side { position: static; }
  .review-quick { grid-template-columns: repeat(2, 1fr); }
  .review-hero__top { flex-direction: column; align-items: flex-start; }
  .review-hero__share { margin-left: 0; }
}
@media (max-width: 720px) {
  .review-main { padding: 24px; }
  .review-quick { grid-template-columns: 1fr; }
  .gallery__grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item { aspect-ratio: 1.4; }
  .gallery__item--lg { grid-row: auto; grid-column: span 2; aspect-ratio: 1.8; }
  .review-actions { flex-direction: column; }
  .action-btn { width: 100%; justify-content: center; }
  .action-btn--end { margin-left: 0; }
  .review-hero__route { padding: 8px 14px; }
  .route-mini b { font-size: 18px; }
  .review-hero__author { flex-wrap: wrap; }
  .review-hero__date { margin-left: 0; width: 100%; }
}

/* =========================================================
   ============= GLOBAL UI COMPONENTS ======================
   ========================================================= */

/* Icon button (nav) */
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: rgba(255,255,255,.16); }
.icon-btn i { font-size: 20px; }
.icon-btn--has-dot::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--ink-900);
}
.icon-btn__dot {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--ink-900);
  padding: 0 4px;
}
.icon-btn--has-dot::before { display: none; }

/* Notifications panel */
.notif-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 60;
  color: var(--ink-900);
}
.notif-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.notif-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.notif-panel__head h3 {
  font-size: 16px;
  margin: 0;
}
.notif-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 420px;
  overflow-y: auto;
}
.notif-list li {
  display: flex;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s var(--ease);
  position: relative;
}
.notif-list li:hover { background: var(--bg); }
.notif-list li.is-unread { background: rgba(255,107,53,.04); }
.notif-list li:last-child { border-bottom: 0; }
.notif-icon {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
}
.notif-icon i { font-size: 18px; }
.notif-icon--like { background: rgba(255,107,53,.12); color: var(--accent); }
.notif-icon--comment { background: rgba(58,108,243,.12); color: #3a6cf3; }
.notif-icon--reply { background: rgba(22,163,107,.12); color: var(--good); }
.notif-icon--badge { background: rgba(245,176,66,.15); color: var(--gold); }
.notif-icon--follow { background: rgba(155,89,255,.12); color: #9b59ff; }
.notif-list p {
  margin: 0 0 4px;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.5;
}
.notif-list small {
  font-size: 11.5px;
  color: var(--ink-400);
}
.notif-dot {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
.notif-panel__foot {
  padding: 14px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.notif-panel__foot a {
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s var(--ease);
}
.notif-panel__foot a:hover { gap: 8px; }

/* User menu */
.user-menu {
  position: relative;
}
.user-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.user-menu__trigger:hover { background: rgba(255,255,255,.16); }
.user-menu__trigger span {
  font-size: 13.5px;
  font-weight: 600;
}
.user-menu__trigger i { font-size: 16px; color: rgba(255,255,255,.6); }
.avatar--sm { width: 32px; height: 32px; font-size: 11px; }

.user-menu__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 60;
  color: var(--ink-900);
}
.user-menu.is-open .user-menu__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.user-menu__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #0b1437, #1a2660);
  color: #fff;
}
.user-menu__head strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
}
.user-menu__head span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}
.user-menu__badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  color: var(--good);
  margin-top: 4px;
  font-weight: 600;
}
.user-menu__badge i { color: var(--good); font-size: 13px; }

.user-menu__links {
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.user-menu__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.user-menu__links a:hover { background: var(--bg); }
.user-menu__links a.is-active { background: var(--accent-soft); color: var(--accent); }
.user-menu__links a i { font-size: 18px; color: var(--ink-400); }
.user-menu__links a.is-active i { color: var(--accent); }
.user-menu__links a:hover i { color: var(--ink-700); }
.badge-mini {
  margin-left: auto;
  font-size: 10.5px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}
.user-menu__foot {
  padding: 8px;
  border-top: 1px solid var(--line);
}
.user-menu__foot a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--bad);
  font-weight: 500;
  border-radius: 10px;
}
.user-menu__foot a:hover { background: rgba(226,66,74,.08); }
.user-menu__foot a i { font-size: 18px; }

.nav__cta--user { gap: 10px; position: relative; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 32px);
  max-width: 920px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.1);
  border: 1px solid var(--line);
  z-index: 80;
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}
.cookie-banner__icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.cookie-banner__icon i { font-size: 26px; }
.cookie-banner strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; }
.cookie-banner__close {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--ink-400);
}
.cookie-banner__close:hover { background: var(--bg); color: var(--ink-900); }
.cookie-banner__close i { font-size: 18px; }

@media (max-width: 720px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .cookie-banner__icon { width: 40px; height: 40px; }
  .cookie-banner__close { position: absolute; top: 8px; right: 8px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* =========================================================
   ============= PAGE: PROFILE (profil.html) ===============
   ========================================================= */
.page--profile { background: var(--bg); }

/* Profile cover */
.profile-cover {
  position: relative;
  height: 260px;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #060c22 100%);
  overflow: hidden;
}
.profile-cover__bg { position: absolute; inset: 0; }
.profile-cover__edit {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  transition: background .2s var(--ease);
}
.profile-cover__edit:hover { background: rgba(255,255,255,.2); }
.profile-cover__edit i { font-size: 16px; }

/* Profile head */
.profile-head { background: var(--surface); border-bottom: 1px solid var(--line); }
.profile-head__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-end;
  gap: 24px;
  padding: 0 24px 28px;
  margin-top: -60px;
  position: relative;
}
.profile-head__avatar {
  position: relative;
  flex: none;
}
.avatar--xxl {
  width: 130px; height: 130px;
  font-size: 32px;
  border: 6px solid var(--surface);
  background: linear-gradient(135deg, #4a5685, #1c2a5e);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.profile-head__avatar-edit {
  position: absolute;
  bottom: 6px; right: 6px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(255,107,53,.4);
}
.profile-head__avatar-edit i { font-size: 16px; }

.profile-head__info { padding-bottom: 4px; }
.profile-head__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.profile-head__name-row h1 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.02em;
  margin: 0;
}
.verified--lg {
  font-size: 12px;
  padding: 4px 10px;
}
.badge-medal {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px;
  background: linear-gradient(135deg, #f5b042, #ffc870);
  color: #5a4011;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.badge-medal i { font-size: 14px; }
.profile-head__bio {
  font-size: 14.5px;
  color: var(--ink-500);
  margin: 0 0 10px;
  max-width: 580px;
}
.profile-head__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.profile-head__meta i { color: var(--accent); font-size: 14px; margin-right: 3px; }

.profile-head__actions {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
}

/* Profile stats */
.profile-stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.profile-stats__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.p-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.p-stat:last-child { border-right: 0; }
.p-stat > i {
  font-size: 24px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 10px;
  border-radius: 12px;
}
.p-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-900);
  letter-spacing: -.02em;
  line-height: 1;
}
.p-stat span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}

/* Profile layout */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: flex-start;
}
.profile-main { display: flex; flex-direction: column; gap: 20px; }
.profile-side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__head--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* My reviews list */
.my-reviews { display: flex; flex-direction: column; gap: 16px; }
.my-review {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.my-review:hover { border-color: var(--ink-300); transform: translateY(-2px); }
.my-review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 16px;
}
.my-review__flight {
  display: flex;
  align-items: center;
  gap: 12px;
}
.my-review__flight .airline__logo { width: 40px; height: 40px; font-size: 13px; }
.my-review__flight strong { display: block; font-family: 'Manrope', sans-serif; font-size: 14.5px; }
.my-review__flight span { font-size: 12.5px; color: var(--ink-400); }
.my-review h3 {
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.my-review h3 a { color: inherit; }
.my-review p {
  color: var(--ink-500);
  font-size: 14px;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.my-review__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-400);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.my-review__foot i { font-size: 14px; margin-right: 3px; }
.my-review__foot > span { display: inline-flex; align-items: center; }
.my-review__status { display: inline-flex; align-items: center; gap: 4px; }
.status--published { color: var(--good); font-weight: 600; }
.status--published i { color: var(--good); }
.status--draft { color: #ff9b3d; font-weight: 600; }
.status--draft i { color: #ff9b3d; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,155,61,.12);
  color: #c46f00;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.status-pill i { font-size: 13px; }
.my-review--draft { background: rgba(255,155,61,.04); border-color: rgba(255,155,61,.25); }
.my-review--draft h3 { color: var(--ink-400); font-style: italic; }
.my-review__menu {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
}
.my-review__menu button {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-400);
  display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.my-review__menu button:hover { background: var(--surface); color: var(--ink-900); }
.my-review__menu button i { font-size: 16px; }
.my-review__menu .btn { width: auto; height: auto; }

/* Completeness */
.completeness {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  margin-bottom: 16px;
}
.completeness__ring { width: 64px; height: 64px; flex: none; }
.completeness strong { display: block; font-family: 'Manrope', sans-serif; font-size: 16px; color: #fff; }
.completeness small { display: block; font-size: 12.5px; color: rgba(255,255,255,.65); }

.completeness__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.completeness__steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.completeness__steps li i { font-size: 16px; color: rgba(255,255,255,.3); }
.completeness__steps li.is-done { color: rgba(255,255,255,.95); }
.completeness__steps li.is-done i { color: var(--good); }

/* Badges grid */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 12px;
  text-align: center;
  transition: background .2s var(--ease);
  cursor: pointer;
}
.badge-item:hover { background: var(--bg); }
.badge-item.is-locked { opacity: .4; }
.badge-item__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
}
.badge-item__icon i { font-size: 20px; }
.badge-item--gold { background: linear-gradient(135deg, #f5b042, #ffc870); }
.badge-item--green { background: linear-gradient(135deg, #16a36b, #0d6e44); }
.badge-item--blue { background: linear-gradient(135deg, #3a6cf3, #1c47bc); }
.badge-item--purple { background: linear-gradient(135deg, #9b59ff, #6d3dd1); }
.badge-item--pink { background: linear-gradient(135deg, #ff6b9e, #d63e75); }
.badge-item--orange { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.badge-item span { font-size: 10.5px; color: var(--ink-700); font-weight: 600; }
.link-mini {
  margin-left: auto;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.link-mini:hover { text-decoration: underline; }
.side-card .side-card__head .link-mini { font-size: 12.5px; }

/* Activity feed */
.activity-feed {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.activity-feed li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.activity-dot {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
}
.activity-dot i { font-size: 16px; }
.activity-dot--like { background: rgba(255,107,53,.12); color: var(--accent); }
.activity-dot--comment { background: rgba(58,108,243,.12); color: #3a6cf3; }
.activity-dot--badge { background: rgba(245,176,66,.15); color: var(--gold); }
.activity-dot--follow { background: rgba(155,89,255,.12); color: #9b59ff; }
.activity-dot--reply { background: rgba(22,163,107,.12); color: var(--good); }
.activity-feed p { margin: 0 0 2px; font-size: 13px; color: var(--ink-700); line-height: 1.45; }
.activity-feed small { font-size: 11.5px; color: var(--ink-400); }

/* Profile responsive */
@media (max-width: 1100px) {
  .profile-stats__inner { grid-template-columns: repeat(3, 1fr); }
  .p-stat:nth-child(3) { border-right: 0; }
  .p-stat { border-bottom: 1px solid var(--line); }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-side { position: static; }
}
@media (max-width: 720px) {
  .profile-head__inner { grid-template-columns: 1fr; align-items: center; text-align: center; }
  .profile-head__name-row { justify-content: center; }
  .profile-head__meta { justify-content: center; }
  .profile-head__actions { width: 100%; justify-content: center; }
  .avatar--xxl { width: 110px; height: 110px; font-size: 28px; }
  .profile-stats__inner { grid-template-columns: 1fr 1fr; }
  .p-stat { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .p-stat:nth-child(even) { border-right: 0; }
  .badge-grid { grid-template-columns: repeat(3, 1fr); }
  .my-review__foot { gap: 10px; font-size: 12px; }
}

/* =========================================================
   ============= PAGE: PASSWORD RESET ======================
   ========================================================= */
.mini-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
}
.mini-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
}
.mini-steps li:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 8px;
  border-radius: 2px;
  transition: background .3s var(--ease);
}
.mini-steps li.is-complete::after { background: var(--good); }
.mini-steps__dot {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  color: var(--ink-400);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.mini-steps__dot i { font-size: 16px; }
.mini-steps li.is-active .mini-steps__dot {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 14px rgba(255,107,53,.35);
}
.mini-steps li.is-complete .mini-steps__dot {
  background: var(--good);
  border-color: transparent;
  color: #fff;
}
.mini-steps__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-400);
  white-space: nowrap;
}
.mini-steps li.is-active .mini-steps__label { color: var(--ink-900); }
.mini-steps li.is-complete .mini-steps__label { color: var(--good); }

.reset-panel { display: none; animation: fadeUp .4s var(--ease); }
.reset-panel.is-active { display: block; }

/* OTP */
.otp {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.otp input {
  width: 48px; height: 56px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: var(--ink-900);
  outline: 0;
  transition: all .2s var(--ease);
}
.otp input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}
.otp__dash { color: var(--ink-300); font-weight: 700; }

.resend {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-400);
  margin-top: 8px;
}
.link-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-400);
  font-size: 13.5px;
  font-weight: 500;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.link-back:hover { color: var(--accent); }

.reset-success { text-align: center; padding: 20px 0; }
.reset-success h2 { font-size: 22px; margin: 18px 0 8px; }
.reset-success p { color: var(--ink-400); margin: 0 0 24px; }

/* Security illustration (right panel) */
.security-illustration {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
}
.security-icon {
  position: relative;
  z-index: 2;
  width: 100px; height: 100px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 24px 50px rgba(255,107,53,.4);
}
.security-icon i { font-size: 48px; }
.security-orbit { position: absolute; inset: 0; animation: spin 30s linear infinite; }
.security-orbit span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}
.security-orbit span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.security-orbit span:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); background: #fff; box-shadow: 0 0 20px #fff; }
.security-orbit span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); background: #ffd86b; box-shadow: 0 0 20px #ffd86b; }
.security-orbit span:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }
.security-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 50%;
}

/* =========================================================
   ============= PAGE: ROUTES (rotalar.html) ===============
   ========================================================= */
.route-hero {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  overflow: hidden;
  padding: 60px 0 70px;
  isolation: isolate;
}
.route-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.route-hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  color: #fff;
  margin: 18px 0 12px;
  letter-spacing: -.025em;
  max-width: 800px;
}
.route-hero p {
  color: rgba(255,255,255,.65);
  max-width: 620px;
  margin: 0 0 32px;
  font-size: 17px;
}

/* Route search */
.route-search {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 820px;
}
.route-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background .2s var(--ease);
}
.route-search__field:hover { background: var(--bg); }
.route-search__field > i { color: var(--accent); font-size: 22px; }
.route-search__field small {
  display: block;
  font-size: 11px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.route-search__field input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
}
.route-search__field input::placeholder { color: var(--ink-300); font-weight: 500; }
.route-search__swap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: all .2s var(--ease);
}
.route-search__swap:hover { background: var(--accent-soft); transform: rotate(180deg); }
.route-search__swap i { font-size: 18px; }
.route-search__btn { padding: 14px 22px; align-self: center; }

/* Featured route */
.route-featured {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.route-featured__head { margin-bottom: 24px; }
.route-featured__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}
.route-featured__stop { text-align: center; }
.route-featured__stop b {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--ink-900);
  letter-spacing: .03em;
  line-height: 1;
}
.route-featured__stop span {
  display: block;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 600;
  margin: 6px 0 2px;
}
.route-featured__stop small { font-size: 12.5px; color: var(--ink-400); }
.route-featured__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.route-featured__line::before, .route-featured__line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--line-strong);
}
.route-featured__line::before { right: 100%; margin-right: 16px; }
.route-featured__line::after { left: 100%; margin-left: 16px; }
.route-featured__line i { font-size: 32px; color: var(--accent); transform: rotate(20deg); }
.route-featured__line span { font-size: 12px; color: var(--ink-400); font-weight: 600; }

.route-featured__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--bg);
  border-radius: 14px;
  margin-bottom: 24px;
}
.r-stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 4px;
}
.r-stat:last-child { border-right: 0; }
.r-stat i {
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.r-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
}
.r-stat span {
  display: block;
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}

.route-featured__airlines h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 700;
  margin: 0 0 12px;
}
.airlines-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.airline-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .2s var(--ease);
}
.airline-mini:hover { border-color: var(--accent); transform: translateX(2px); }
.airline-mini .airline__logo { width: 36px; height: 36px; font-size: 12px; }
.airline-mini strong { display: block; font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--ink-900); }
.airline-mini span { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--ink-400); }
.airline-mini i { color: var(--gold); font-size: 13px; }

.route-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  transition: gap .2s var(--ease);
}
.route-featured__cta:hover { gap: 10px; }

/* Routes list */
.routes-list { display: flex; flex-direction: column; gap: 8px; }
.route-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.route-row:hover { border-color: var(--accent); transform: translateX(4px); }
.route-row__pair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-900);
  letter-spacing: .03em;
}
.route-row__pair i { color: var(--accent); font-size: 18px; }
.route-row__cities {
  font-size: 14px;
  color: var(--ink-500);
}
.route-row__meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-400);
}
.route-row__meta i { color: var(--accent); font-size: 14px; margin-right: 3px; }
.route-row__meta span { display: inline-flex; align-items: center; }
.route-row__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-soft);
  color: #b9442a;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.route-row__rating i { color: var(--gold); font-size: 14px; }
.route-row__arrow {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink-400);
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.route-row__arrow:hover { background: var(--ink-900); color: #fff; }
.route-row__arrow i { font-size: 18px; }

/* Routes responsive */
@media (max-width: 1100px) {
  .route-search { grid-template-columns: 1fr; }
  .route-search__swap { transform: rotate(90deg); margin: 0 auto; }
  .route-search__swap:hover { transform: rotate(270deg); }
  .route-featured__stats { grid-template-columns: repeat(3, 1fr); }
  .airlines-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .route-featured { padding: 22px; }
  .route-featured__stop b { font-size: 36px; }
  .route-featured__line::before, .route-featured__line::after { width: 30px; }
  .route-featured__stats { grid-template-columns: 1fr 1fr; }
  .r-stat { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .r-stat:nth-child(even) { border-right: 0; }
  .route-row { grid-template-columns: 1fr auto; gap: 10px; }
  .route-row__cities, .route-row__meta { grid-column: 1 / -1; }
}

/* =========================================================
   ============= PAGE: SEARCH RESULTS (arama.html) =========
   ========================================================= */
.page--search { background: var(--bg); }

.search-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 26px 0 20px;
}
.search--global {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  max-width: 720px;
  box-shadow: none;
}
.search--global .search__field { padding: 10px 16px; flex: 1; }
.search--global .search__field input { font-size: 15px; }
.search__clear {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-500);
  display: grid; place-items: center;
}
.search__clear:hover { background: var(--bad); color: #fff; }
.search__clear i { font-size: 14px; }

.search-summary {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-500);
}
.search-summary strong { color: var(--ink-900); }
.search-summary b { color: var(--accent); font-weight: 700; }
.search-summary__time { font-size: 12.5px; color: var(--ink-400); margin-left: 6px; }

.search-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: flex-start;
}
.search-main { display: flex; flex-direction: column; gap: 36px; }
.search-side {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-group__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.result-group__head h2 {
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.result-group__head h2 i { color: var(--accent); font-size: 22px; }
.result-group__head h2 span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-400);
  font-weight: 500;
  margin-left: 6px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.result-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  position: relative;
}
.result-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.result-card__code {
  flex: none;
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
}
.result-card__body { flex: 1; min-width: 0; }
.result-card__body h3 { font-size: 15px; margin: 0 0 4px; }
.result-card__body p { font-size: 12.5px; color: var(--ink-400); margin: 0 0 8px; }
.result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-500);
  align-items: center;
}
.result-card__meta i { font-size: 13px; margin-right: 3px; }
.result-card__arrow {
  color: var(--ink-300);
  font-size: 18px;
  transition: color .2s var(--ease);
}
.result-card:hover .result-card__arrow { color: var(--accent); }

mark {
  background: rgba(255,107,53,.18);
  color: var(--accent);
  padding: 0 2px;
  border-radius: 3px;
  font-weight: 600;
}

/* Filters in sidebar */
.filter-section { padding: 6px 0; }
.filter-section h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.filter-section .check { padding: 4px 0; }
.filter-section .check small { color: var(--ink-400); margin-left: 4px; }
.filter-section .check p { font-size: 13px; }
.filter-section .check i {
  color: var(--gold);
  font-size: 14px;
  margin-right: 3px;
}

.related-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.related-tags a {
  font-size: 12.5px;
  padding: 5px 11px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-700);
  transition: all .2s var(--ease);
}
.related-tags a:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }

/* Search responsive */
@media (max-width: 1100px) {
  .search-layout { grid-template-columns: 1fr; }
  .search-side { position: static; order: -1; }
  .result-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ============= PAGE: HELP CENTER (yardim.html) ===========
   ========================================================= */
.page--help { background: var(--bg); }

.help-hero {
  position: relative;
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  overflow: hidden;
  padding: 70px 0 60px;
  text-align: center;
  isolation: isolate;
}
.help-hero__bg { position: absolute; inset: 0; z-index: -1; }
.help-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  color: #fff;
  margin: 18px 0 10px;
  letter-spacing: -.025em;
}
.help-hero p {
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.help-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.help-search > i { color: var(--accent); font-size: 22px; }
.help-search input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px 0;
  font-size: 15px;
  color: var(--ink-900);
  font-family: inherit;
}

.help-hero__chips {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}

/* Help categories */
.help-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.help-cat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .3s var(--ease);
}
.help-cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.help-cat__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 16px;
}
.help-cat__icon i { font-size: 24px; }
.help-cat__icon--blue { background: linear-gradient(135deg, #3a6cf3, #1c47bc); }
.help-cat__icon--orange { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.help-cat__icon--green { background: linear-gradient(135deg, #16a36b, #0d6e44); }
.help-cat__icon--purple { background: linear-gradient(135deg, #9b59ff, #6d3dd1); }
.help-cat__icon--pink { background: linear-gradient(135deg, #ff6b9e, #d63e75); }
.help-cat__icon--gold { background: linear-gradient(135deg, #f5b042, #ffc870); }
.help-cat__icon--cyan { background: linear-gradient(135deg, #1abcdf, #0e8aa3); }
.help-cat__icon--red { background: linear-gradient(135deg, var(--bad), #a3232a); }
.help-cat h3 { font-size: 17px; margin: 0 0 6px; }
.help-cat p { font-size: 13.5px; color: var(--ink-400); margin: 0 0 14px; line-height: 1.5; }
.help-cat__count {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq[open] { border-color: var(--accent); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-900);
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  font-size: 22px;
  color: var(--ink-400);
  transition: transform .25s var(--ease), color .25s var(--ease);
  flex: none;
}
.faq[open] summary i { transform: rotate(180deg); color: var(--accent); }
.faq__body {
  padding: 0 24px 22px;
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.7;
  border-top: 1px solid var(--line);
}
.faq__body p { margin: 16px 0; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body ul { margin: 12px 0; padding-left: 22px; }
.faq__body ul li { margin-bottom: 6px; }
.faq__body a { color: var(--accent); font-weight: 600; }
.faq__body a:hover { text-decoration: underline; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all .3s var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,107,53,.4); transform: translateY(-4px); }
.contact-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(255,107,53,.3);
}
.contact-card__icon i { font-size: 30px; }
.contact-card h3 { color: #fff; font-size: 19px; margin: 0 0 8px; }
.contact-card p { color: rgba(255,255,255,.65); margin: 0 0 18px; font-size: 14px; }
.contact-card__avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
  font-weight: 600;
}
.contact-card__link {
  display: block;
  font-size: 13.5px;
  color: var(--accent);
  margin-bottom: 14px;
  word-break: break-all;
  font-weight: 600;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--green { background: var(--good); box-shadow: 0 0 0 4px rgba(22,163,107,.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,107,.2); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,107,.05); }
}

/* Help responsive */
@media (max-width: 1100px) {
  .help-categories { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .help-categories { grid-template-columns: 1fr; }
  .help-search { grid-template-columns: 1fr; padding: 12px; border-radius: 16px; }
  .help-search > i:first-child { display: none; }
}

/* =========================================================
   ============= PAGE: 404 ERROR ===========================
   ========================================================= */
.page--404 {
  background: radial-gradient(120% 80% at 20% 0%, #182455 0%, #0b1437 55%, #070d24 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page--404 .nav { background: transparent; border-bottom: 0; }

.error-hero {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  isolation: isolate;
}
.error-hero__bg { position: absolute; inset: 0; z-index: -1; }
.error-hero__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.error-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.error-num span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(96px, 18vw, 200px);
  line-height: 1;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
}
.error-plane {
  position: relative;
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  display: grid;
  place-items: center;
}
.error-plane::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 50%;
  animation: spin 25s linear infinite;
}
.error-plane i {
  font-size: clamp(64px, 10vw, 110px);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: rotate(-20deg);
  filter: drop-shadow(0 14px 30px rgba(255,107,53,.5));
  animation: floatPlane 6s ease-in-out infinite;
}
@keyframes floatPlane {
  0%, 100% { transform: rotate(-20deg) translateY(0); }
  50% { transform: rotate(-20deg) translateY(-10px); }
}

.error-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -.025em;
}
.error-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.error-search { margin: 0 auto 30px; max-width: 540px; }
.error-search .search__field { padding: 12px 18px; }

.error-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 13.5px;
}
.error-quick__label {
  color: rgba(255,255,255,.55);
  width: 100%;
  margin-bottom: 4px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.error-quick a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  transition: all .2s var(--ease);
}
.error-quick a:hover { background: rgba(255,255,255,.12); border-color: var(--accent); }
.error-quick a i { font-size: 15px; color: var(--accent); }

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page--404 .btn--ghost {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.page--404 .btn--ghost:hover { background: rgba(255,255,255,.12); }

@media (max-width: 720px) {
  .error-num { gap: 4px; }
  .error-num span { font-size: 80px; }
  .error-plane { width: 100px; height: 100px; }
  .error-plane i { font-size: 56px; }
}

/* =========================================================
   ============= DEMO PAGE NAVIGATOR =======================
   (Floating FAB + slide-in panel — shows all demo pages)
   ========================================================= */

/* FAB (Floating Action Button) */
.demo-nav__fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255,107,53,.45), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: demoFabPulse 3s ease-in-out infinite;
}
.demo-nav__fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255,107,53,.55);
  animation: none;
}
.demo-nav__fab > i {
  font-size: 22px;
}
.demo-nav__fab-label { letter-spacing: -.01em; }
.demo-nav__fab-count {
  background: rgba(255,255,255,.25);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

@keyframes demoFabPulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(255,107,53,.45), 0 4px 10px rgba(0,0,0,.15); }
  50% { box-shadow: 0 14px 32px rgba(255,107,53,.45), 0 0 0 14px rgba(255,107,53,0); }
}

/* Backdrop */
.demo-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 36, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  z-index: 80;
}
.demo-nav.is-open .demo-nav__backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Panel */
.demo-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: linear-gradient(180deg, #0b1437 0%, #060c22 100%);
  color: #fff;
  z-index: 90;
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.4);
}
.demo-nav.is-open .demo-nav__panel {
  transform: translateX(0);
}

.demo-nav__head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,107,53,.08), transparent);
  flex: none;
}
.demo-nav__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.demo-nav__head-title { display: flex; align-items: center; gap: 12px; }
.demo-nav__head-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(255,107,53,.4);
}
.demo-nav__head-icon i { font-size: 22px; color: #fff; }
.demo-nav__head-title strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  letter-spacing: -.02em;
}
.demo-nav__head-title small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.demo-nav__close {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.demo-nav__close:hover { background: rgba(255,255,255,.16); color: #fff; }
.demo-nav__close i { font-size: 20px; }

/* Search */
.demo-nav__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 0 12px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.demo-nav__search:focus-within {
  border-color: var(--accent);
  background: rgba(255,107,53,.05);
}
.demo-nav__search > i {
  color: var(--accent);
  font-size: 18px;
}
.demo-nav__search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 11px 0;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
}
.demo-nav__search input::placeholder { color: rgba(255,255,255,.4); }
.demo-nav__search kbd,
.demo-nav__hint kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
}

.demo-nav__hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
}
.demo-nav__hint span { display: inline-flex; align-items: center; gap: 4px; }

/* Body */
.demo-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 6px 14px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
}
.demo-nav__body::-webkit-scrollbar { width: 6px; }
.demo-nav__body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 3px; }
.demo-nav__body::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.25); }

.demo-nav__body.is-empty::after {
  content: 'Hiç sonuç bulunamadı';
  display: block;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,.4);
  font-size: 14px;
}

.demo-nav__group { padding: 14px 0 4px; }
.demo-nav__group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 12px 10px;
  padding-top: 6px;
}
.demo-nav__group-title i {
  color: var(--accent);
  font-size: 14px;
  background: rgba(255,107,53,.12);
  padding: 4px;
  border-radius: 6px;
}

.demo-nav__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-nav__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  text-decoration: none;
}
.demo-nav__item:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.demo-nav__item.is-active {
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(255,107,53,.05));
  border-color: rgba(255,107,53,.4);
}
.demo-nav__item-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.demo-nav__item-icon i { font-size: 18px; color: rgba(255,255,255,.85); }
.demo-nav__item.is-active .demo-nav__item-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 14px rgba(255,107,53,.35);
}
.demo-nav__item.is-active .demo-nav__item-icon i { color: #fff; }

.demo-nav__item-body { min-width: 0; }
.demo-nav__item-body strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-nav__item-body small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  margin-bottom: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.demo-nav__item-body code {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 4px;
}
.demo-nav__item.is-active .demo-nav__item-body code {
  color: var(--accent);
  background: rgba(255,107,53,.12);
}

.demo-nav__current {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--accent);
  color: #fff;
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 700;
}

.demo-nav__item-arrow {
  color: rgba(255,255,255,.3);
  font-size: 16px;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.demo-nav__item:hover .demo-nav__item-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* Footer */
.demo-nav__foot {
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.2);
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  flex: none;
}
.demo-nav__foot i { color: var(--accent); margin-right: 4px; }

/* Responsive */
@media (max-width: 720px) {
  .demo-nav__fab {
    bottom: 18px;
    right: 18px;
    padding: 10px 14px 10px 12px;
    font-size: 13px;
  }
  .demo-nav__fab > i { font-size: 18px; }
  .demo-nav__fab-count { font-size: 10.5px; padding: 1px 6px; }
  .demo-nav__panel { width: 100vw; }
}

/* When demo panel open, hide cookie banner to avoid overlap */
.demo-nav.is-open ~ .cookie-banner { opacity: 0; pointer-events: none; }
