/* ============================================
   YENI ROTAN — Stylesheet (Dark Edition)
   v2.0
   ============================================ */

:root {
  /* Logo zeminiyle uyumlu koyu palet */
  --bg:        #0E1A2C;
  --bg-soft:   #0A1422;
  --bg-card:   #142339;
  --bg-card-2: #1A2B45;
  --bg-elev:   #1F3050;

  /* Cyan — pusula iğnesinden */
  --cyan:        #06B6D4;
  --cyan-bright: #22D3EE;
  --cyan-deep:   #0891B2;
  --cyan-glow:   rgba(6, 182, 212, 0.35);
  --cyan-faint:  rgba(6, 182, 212, 0.08);

  /* Tipografi renkleri */
  --ink:       #F5F8FB;
  --ink-2:     #C5D3E2;
  --ink-3:     #92A6BD;
  --muted:     #6B7E96;
  --muted-2:   #4B5C72;

  /* Ayrıştırıcı çizgiler */
  --hairline:        rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.16);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 8px 40px rgba(6, 182, 212, 0.25), 0 0 0 1px rgba(6, 182, 212, 0.18);

  --display: 'Fraunces', 'Georgia', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --container: 1180px;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

::selection { background: var(--cyan); color: var(--bg); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ── ATMOSFERIK ARKA PLAN KATMANLARI ── */

/* Noise/grain — logo dokusuyla uyumlu */
.bg-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}

/* Subtle koordinat grid */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 25%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 50% at 50% 25%, #000 0%, transparent 75%);
}

/* Cyan ambient glow */
.bg-glow {
  position: fixed;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse, var(--cyan-glow) 0%, transparent 60%);
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 1.5rem;
  background: rgba(14, 26, 44, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  min-height: var(--nav-h);
}

nav.scrolled {
  background: rgba(14, 26, 44, 0.92);
  border-bottom-color: var(--hairline);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--ink-3);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan-bright); }

.nav-cta {
  background: var(--cyan);
  color: var(--bg) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-md);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}

.nav-cta:hover {
  background: var(--cyan-bright) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
}

/* hamburger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s, background 0.2s;
  transform-origin: center;
}

.nav-burger.open span { background: var(--cyan-bright); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 30, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-backdrop.show { display: block; opacity: 1; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--cyan-bright);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-faint);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.04); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 100, "SOFT" 30;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cyan-bright);
  position: relative;
  white-space: nowrap;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--cyan-bright), transparent);
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  background: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
}

.btn-ghost:hover {
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  background: var(--cyan-faint);
}

.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── HERO VISUAL — ROUTE TRAJECTORY ── */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 460px;
  margin-left: auto;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.trajectory-path {
  fill: none;
  stroke: var(--cyan-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawPath 2.6s 0.6s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5));
}

.trajectory-path-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

@keyframes drawPath { to { stroke-dashoffset: 0; } }

.waypoint {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  transform-origin: center;
}

.waypoint:nth-of-type(1) { animation-delay: 1.0s; }
.waypoint:nth-of-type(2) { animation-delay: 1.5s; }
.waypoint:nth-of-type(3) { animation-delay: 2.0s; }
.waypoint:nth-of-type(4) { animation-delay: 2.5s; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.wp-pulse {
  animation: wpPulse 2s 3s infinite;
  transform-origin: center;
}

@keyframes wpPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0; transform: scale(2.5); }
}

/* ── STATS STRIP ── */
.stats-strip {
  width: 100%;
  max-width: var(--container);
  margin: 5rem auto 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.stat-num .unit {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--cyan-bright);
  margin-left: 0.15rem;
  font-weight: 500;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SECTION BASE ── */
section { position: relative; z-index: 2; }
section.section-pad { padding: 6rem 1.5rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section-head {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .section-desc { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.section-title em {
  font-style: italic;
  color: var(--cyan-bright);
}

.section-desc {
  color: var(--ink-2);
  font-size: 1rem;
  max-width: 540px;
}

/* ── HIZMETLER / DURAKLAR ── */
#hizmetler {
  background: var(--bg-soft);
}

.durak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.durak {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.3s;
}

.durak:hover {
  background: var(--cyan-faint);
}

.durak:hover .durak-num { color: var(--cyan-bright); }

.durak-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.durak-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
  max-width: 40px;
}

.durak-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.32rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 100;
}

.durak-desc {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── PAKETLER ── */
#paketler {
  padding: 6rem 1.5rem;
  background: var(--bg);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-md);
}

.pkg-card.featured {
  background: linear-gradient(180deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow-glow);
}

.pkg-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 600;
}

.pkg-code {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.pkg-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.pkg-sub {
  color: var(--ink-3);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.pkg-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pkg-features li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.pkg-features li svg {
  width: 14px;
  height: 14px;
  color: var(--cyan-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--hairline);
}

.pkg-price-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 2.3rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.pkg-price-unit {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.pkg-btn {
  width: 100%;
  justify-content: center;
}

/* ── REFERANSLAR ── */
#referanslar {
  padding: 6rem 1.5rem;
  background: var(--bg-soft);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.test-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
}

.test-stars {
  color: var(--cyan-bright);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.test-text {
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
}

.test-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

.test-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.test-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── SSS ── */
#sss {
  padding: 6rem 1.5rem;
  background: var(--bg);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-list {
  border-top: 1px solid var(--hairline);
}

.faq-item { border-bottom: 1px solid var(--hairline); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  color: var(--ink);
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--cyan-bright); }
.faq-q.open { color: var(--cyan-bright); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink-3);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-q.open .faq-icon {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-a.open {
  max-height: 320px;
  padding-bottom: 1.4rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  color: var(--ink);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 18px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
  box-shadow: var(--shadow-glow);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000, transparent 80%);
          mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000, transparent 80%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.35) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.cta-pill .dot {
  width: 6px; height: 6px;
  background: var(--cyan-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.cta-banner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--cyan-bright);
}

.cta-banner p {
  color: var(--ink-2);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  padding: 3rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: auto;
  width: 200px;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1.1rem;
  display: block;
}

.footer-tagline {
  color: var(--ink-3);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--ink-2);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan-bright); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-bottom-right .dot {
  width: 6px; height: 6px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform 0.3s;
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .stats-strip { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .durak-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid .test-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .faq-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile — hamburger active */
@media (max-width: 760px) {
  nav { padding: 0.7rem 1rem; }
  .nav-burger { display: inline-flex; }
  .nav-logo { font-size: 1.05rem; gap: 0.55rem; }
  .nav-logo img { height: 38px; width: 38px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 26, 44, 0.98);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-130%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    align-items: stretch;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
    color: var(--ink);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero { padding: 6.5rem 1.2rem 4rem; }
  .hero-title { font-size: 2.3rem; }
  .hero-sub { font-size: 1rem; }
  .hero-visual { max-width: 320px; }

  section.section-pad,
  #paketler,
  #referanslar,
  #sss { padding: 4rem 1.2rem; }

  .section-head { margin-bottom: 2.5rem; }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem 1.2rem;
    gap: 1.5rem 1rem;
    margin-top: 3rem;
  }
  .stat-num { font-size: 1.85rem; }

  .durak-grid { grid-template-columns: 1fr; }
  .durak { padding: 2rem 1.5rem; border-right: none; }

  .pkg-card { padding: 1.8rem 1.5rem; }
  .pkg-name { font-size: 1.5rem; }
  .pkg-price-num { font-size: 2rem; }

  .test-grid { grid-template-columns: 1fr; gap: 1rem; }
  .test-grid .test-card:nth-child(3) { max-width: none; }
  .test-card { padding: 1.7rem 1.5rem; }

  .faq-wrap { gap: 1.5rem; }
  .faq-q { font-size: 0.95rem; padding: 1.2rem 0; }

  .cta-banner { padding: 3rem 1.5rem; margin-top: 3.5rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-banner .btn { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }
  .wa-float svg { width: 26px; height: 26px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
