/* =========================================================
   LIFEMAP — Yüz Okuma & Analiz
   Premium Design System
   ========================================================= */

/* ---------- 1. Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Colors — premium cosmic palette */
  --color-bg: #07090f;
  --color-bg-2: #0d1320;
  --color-surface: #11182a;
  --color-surface-2: #161e34;
  --color-border: rgba(201, 165, 116, 0.18);
  --color-border-strong: rgba(201, 165, 116, 0.4);

  --color-gold: #c9a574;
  --color-gold-light: #e0c08a;
  --color-gold-dark: #8e6e44;
  --color-gold-glow: rgba(201, 165, 116, 0.35);

  --color-text: #e7e6e3;
  --color-text-muted: #8c8f99;
  --color-text-dim: #6a6d76;
  --color-heading: #f5f1ea;

  --gradient-gold: linear-gradient(135deg, #d8b683 0%, #c9a574 45%, #9a7849 100%);
  --gradient-bg: radial-gradient(
      ellipse at 70% 20%,
      rgba(201, 165, 116, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(74, 113, 178, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #07090f 0%, #0a0e1a 50%, #07090f 100%);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 40px rgba(201, 165, 116, 0.25);
  --shadow-gold-strong: 0 0 60px rgba(201, 165, 116, 0.45);

  /* Layout */
  --container: 1240px;
  --container-narrow: 960px;
  --header-h: 88px;
}

/* ---------- 3. Background Effects ---------- */
body {
  background: var(--gradient-bg);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 40% 85%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 75% 45%, rgba(201, 165, 116, 0.4), transparent),
    radial-gradient(1px 1px at 10% 55%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

/* ---------- 4. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: var(--container-narrow);
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: var(--space-2xl) 0;
  position: relative;
}

/* ---------- 5. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title .eyebrow {
  justify-content: center;
}

.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(7, 9, 15, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 15, 0.92);
  border-bottom-color: var(--color-border);
  padding: 0.85rem 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-heading);
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--gradient-gold);
  transition: right 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: var(--shadow-gold);
}

.mobile-menu {
  display: none;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--color-gold);
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- 7. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 165, 116, 0.05);
}

.btn-arrow {
  position: relative;
  padding-right: 1.5rem;
}

.btn-arrow::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1a8f4a 0%, #25d366 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, #2ee676 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.btn-whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-subheading {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-lead-muted {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 1rem;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

/* ---------- 8. Hero (Luxury Poster) ---------- */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--color-bg);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow--center {
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: radial-gradient(
    circle,
    rgba(201, 165, 116, 0.06) 0%,
    transparent 65%
  );
}

.hero-glow--wide {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: min(400px, 50vh);
  background: radial-gradient(
    ellipse at center,
    rgba(201, 165, 116, 0.04) 0%,
    transparent 65%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--color-bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  margin: 0 auto;
  width: min(920px, 96vw);
}

.hero-figure {
  position: relative;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.hero-figure::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 165, 116, 0.45) 20%,
    rgba(201, 165, 116, 0.55) 50%,
    rgba(201, 165, 116, 0.45) 80%,
    transparent
  );
  opacity: 0.7;
}

.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  filter: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 85%,
    transparent 100%
  );
}

.hero-wordmark {
  margin: -2.75rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.wordmark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  letter-spacing: 0.14em;
  line-height: 1;
  background: linear-gradient(180deg, #f2ddb0 0%, #d4ad75 38%, #b8925a 72%, #8a6a3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(201, 165, 116, 0.35));
}

.wordmark-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  letter-spacing: 0.05em;
  color: var(--color-gold-light);
  margin-top: 0.2rem;
  opacity: 0.9;
}

/* ── Caption block below ── */
.hero-caption {
  margin: 2.25rem auto 0;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--color-heading);
  margin-bottom: 1.25rem;
}

.hero h1 .line-1 {
  display: block;
}

.hero h1 .line-2 {
  display: block;
  color: var(--color-text-muted);
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold);
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-top: 0.3rem;
}

.hero-divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
}

/* Analysis indicator (top right of viewport, inside hero) */
.analysis-indicator {
  position: absolute;
  top: calc(var(--header-h) + 1rem);
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  background: rgba(10, 15, 26, 0.72);
  border: 1px solid rgba(201, 165, 116, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5;
}

.analysis-indicator::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6cc28a;
  box-shadow: 0 0 8px #6cc28a;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ---------- 9. Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.6) 0%,
    rgba(13, 19, 32, 0.4) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(201, 165, 116, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: rgba(201, 165, 116, 0.08);
  color: var(--color-gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(201, 165, 116, 0.18);
  box-shadow: 0 0 20px rgba(201, 165, 116, 0.3);
}

.service-icon svg,
.service-icon img,
.service-icon-img {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
  flex-shrink: 0;
  object-fit: contain;
  filter: none;
}

.service-icon svg,
.service-icon svg * {
  stroke: #c9a574;
}

.service-icon svg [fill="currentColor"] {
  fill: #c9a574;
}

.service-detail-visual {
  min-height: 220px;
}

.service-detail-visual svg,
.service-detail-visual img {
  width: min(72%, 200px);
  height: auto;
  max-height: 200px;
  object-fit: contain;
  filter: none;
}

.service-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--color-heading);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-card .card-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ---------- 10. About / Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.story-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 165, 116, 0.15),
    transparent 50%,
    rgba(74, 113, 178, 0.1)
  );
  z-index: 1;
}

.story-image svg {
  width: 100%;
  height: 100%;
}

.story-content h2 {
  margin-bottom: 1.25rem;
}

.story-content p + p {
  margin-top: 1rem;
}

.story-quote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text);
}

/* ---------- 11. Feature Strip ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---------- 12. Process Timeline ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
  opacity: 0.5;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
}

.process-step h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.92rem;
}

/* ---------- 13. Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  background: rgba(17, 24, 42, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-bg);
}

.testimonial-name {
  font-weight: 500;
  color: var(--color-heading);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

/* ---------- 14. CTA Section ---------- */
.cta-section {
  padding: var(--space-xl) 0;
}

.cta-band {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(22, 30, 52, 0.7) 0%,
    rgba(13, 19, 32, 0.5) 100%
  );
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 165, 116, 0.15) 0%,
    transparent 60%
  );
}

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

.cta-band h2 {
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ---------- 15. Footer ---------- */
.site-footer {
  margin-top: 6rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
  background: rgba(7, 9, 15, 0.6);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 165, 116, 0.06);
}

/* ---------- 16. Page Hero (interior) ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.breadcrumbs a {
  color: var(--color-gold);
}

.breadcrumbs span {
  opacity: 0.6;
}

/* ---------- 17. Service Detail Cards ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.5) 0%,
    rgba(13, 19, 32, 0.3) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.service-detail.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-detail.reverse .service-detail-visual {
  order: 2;
}

.service-detail-visual {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at center,
    rgba(201, 165, 116, 0.12),
    transparent 70%
  );
  border-radius: var(--radius-lg);
  position: relative;
}


.service-detail h3 {
  margin-bottom: 1rem;
}

.service-detail-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--color-text);
}

.service-detail-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 0.65rem;
  flex-shrink: 0;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* ---------- 18. Course Cards ---------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.course-card {
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.5) 0%,
    rgba(13, 19, 32, 0.3) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.course-image {
  aspect-ratio: 16/10;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(201, 165, 116, 0.25),
    transparent 60%
  );
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--color-border);
}

.course-image svg,
.course-image img {
  width: 72px;
  height: 72px;
  opacity: 0.95;
  object-fit: contain;
}

.course-image svg,
.course-image svg * {
  stroke: #c9a574;
}

.course-image svg [fill="currentColor"] {
  fill: #c9a574;
}

.course-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(201, 165, 116, 0.15);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.course-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-dim);
  margin-bottom: 0.85rem;
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.course-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
}

.course-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.course-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
  font-weight: 600;
}

.course-link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.course-link::after {
  content: " →";
}

/* ---------- 19. Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.5) 0%,
    rgba(13, 19, 32, 0.3) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  aspect-ratio: 16/10;
  position: relative;
  background: linear-gradient(135deg, #1c2440, #0d1320);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blog-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(201, 165, 116, 0.2),
    transparent 60%
  );
}

.blog-image svg,
.blog-image img {
  width: 72px;
  height: 72px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.blog-image svg,
.blog-image svg * {
  stroke: #c9a574;
}

.blog-image svg [fill="currentColor"] {
  fill: #c9a574;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(7, 9, 15, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  z-index: 2;
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-read {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-read::after {
  content: "→";
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read::after {
  transform: translateX(3px);
}

/* ---------- 20. Form ---------- */
.form-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.6) 0%,
    rgba(13, 19, 32, 0.4) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background: rgba(7, 9, 15, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 1rem;
  transition: all 0.25s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(7, 9, 15, 0.85);
  box-shadow: 0 0 0 4px rgba(201, 165, 116, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form-help {
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  margin-top: 0.15rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: rgba(108, 194, 138, 0.05);
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(108, 194, 138, 0.15);
  display: grid;
  place-items: center;
  color: #6cc28a;
}

.form-shell--narrow {
  max-width: 720px;
}

.form-error {
  display: block;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #e8a0a0;
  background: rgba(217, 107, 107, 0.1);
  border: 1px solid rgba(217, 107, 107, 0.35);
  border-radius: var(--radius-md);
}

.form-error[hidden] {
  display: none;
}

/* Program seçimi (eğitim formu) */
.program-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.program-picker.is-invalid .program-option {
  border-color: #d96b6b;
}

.program-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.program-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.program-option__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem;
  background: rgba(7, 9, 15, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.program-option input:focus-visible + .program-option__inner {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.program-option input:checked + .program-option__inner {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold), var(--shadow-gold);
}

.program-option__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-heading);
}

.program-option__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.education-programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.education-program-card {
  padding: 2rem;
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.55) 0%,
    rgba(13, 19, 32, 0.35) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: left;
}

.education-program-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.education-program-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.education-program-card ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.education-program-card li {
  font-size: 0.88rem;
  color: var(--color-text);
  padding-left: 1.25rem;
  position: relative;
}

.education-program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ---------- 21. Contact Info Strip ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background: rgba(17, 24, 42, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 165, 116, 0.1);
  color: var(--color-gold);
}

.contact-card h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1rem;
  color: var(--color-text);
}

/* ---------- 22. Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 1024px) {
  .analysis-indicator {
    display: none;
  }
  .eyebrow {
    justify-content: center;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-image {
    max-width: 420px;
    margin: 0 auto;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .process::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4.5rem;
    --space-xl: 3rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    z-index: 200;
  }

  .menu-toggle {
    position: relative;
    z-index: 201;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--header-h) + 1.25rem) 1.75rem 2.5rem;
    text-align: center;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    width: 100%;
    max-width: 22rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-heading);
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .mobile-menu a:hover {
    color: var(--color-gold);
  }

  .mobile-menu a.active {
    color: var(--color-gold);
  }

  .mobile-menu .nav-cta {
    display: inline-flex;
    align-self: center;
    margin-top: 1.75rem;
    width: auto;
    max-width: none;
    border-bottom: none;
    padding: 0.85rem 1.75rem;
  }

  .services-grid,
  .blog-grid,
  .courses-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .service-detail.reverse .service-detail-visual {
    order: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: 1.75rem;
  }

  .program-picker,
  .education-programs {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stage {
    width: 100%;
  }

  .hero-figure img {
    border-radius: 0;
  }

  .hero-wordmark {
    margin-top: -2rem;
  }

  .cta-band {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .wordmark-name {
    font-size: 2.4rem;
  }
  .wordmark-tag {
    font-size: 0.85rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-meta {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-divider {
    display: none;
  }
  .features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .feature {
    padding: 1rem;
  }
}

/* ---------- 24. Subtle utility ---------- */
.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-strong),
    transparent
  );
  margin: 3rem 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.glow-orb.gold {
  background: var(--color-gold);
  width: 320px;
  height: 320px;
}

.glow-orb.blue {
  background: #4a71b2;
  width: 280px;
  height: 280px;
}

/* ---------- 25. Tabs (Bireysel / Kurumsal) ---------- */
.tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tabs {
  display: inline-flex;
  padding: 6px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  background: rgba(13, 19, 32, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 18px rgba(0, 0, 0, 0.35);
  gap: 4px;
}

.tab-btn {
  position: relative;
  padding: 0.7rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.3s ease, background 0.35s ease, box-shadow 0.35s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-gold-light);
}

.tab-btn.is-active {
  background: var(--gradient-gold);
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}

/* Panel transitions */
.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.tab-panel.is-active {
  display: block;
  opacity: 1;
  transform: none;
}

/* ---------- 26. Journey (Yolculuk Deneyimi) ---------- */
.journey-section {
  position: relative;
}

.journey-quote {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.75rem;
  border-left: 2px solid var(--color-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--color-text);
  line-height: 1.55;
  text-align: left;
}

.journey-quote.closing {
  margin: 3rem auto 0;
  text-align: center;
  border-left: none;
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  padding: 1.5rem 1rem;
  color: var(--color-gold-light);
}

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

.journey-stage {
  position: relative;
  padding: 2rem 1.75rem;
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.55) 0%,
    rgba(13, 19, 32, 0.35) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-stage:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.journey-stage-num {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.journey-stage-num::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.journey-stage h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.journey-stage p {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Awareness checklist */
.awareness {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(22, 30, 52, 0.5) 0%,
    rgba(13, 19, 32, 0.3) 100%
  );
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
}

.awareness-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-heading);
}

.awareness-title span {
  color: var(--color-gold);
}

.awareness-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.awareness-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
}

.awareness-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 165, 116, 0.12);
  border: 1px solid var(--color-border-strong);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .tab-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 480px) {
  .awareness {
    padding: 1.75rem 1.25rem;
  }
  .journey-quote {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
  }
}

/* ---------- Floating WhatsApp (tüm sayfalar) ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.4rem 0.8rem 1.05rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1a8f4a 0%, #25d366 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.whatsapp-float-label {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}
