/* ─────────────────────────────────────────
 TOKENS
───────────────────────────────────────── */
:root {
  --bg: #faf9f6;
  --bg2: #f3eeff;
  --bg3: #e5d0f8;
  --ink: #1a0a2e;
  --ink2: #4a2870;
  --ink3: #8a6aaa;
  --brand-light: #c266ff;
  --brand-dark: #9b00ff;
  --brand: #9b00ff;
  --cream: #faf9f6;
  --cream2: #f3eeff;
  --cream3: #e5d0f8;
  --plum: #9b00ff;
  --plum2: #c266ff;
  --plum3: #c266ff;
  --plum4: #f3eeff;
  --plum5: #faf9f6;
  --rose: #e11d48;
  --gold: #d97706;
  --green: #059669;
  --white: #ffffff;
  --gray-2: #e5e7eb;
  --gray-3: #d1d5db;
  --radius: 16px;
  --max: 1200px;
}

/* ─────────────────────────────────────────
 BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #faf9f6;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.8rem !important;
  padding-right: 1.8rem !important;
}

/* ─────────────────────────────────────────
 NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.nav-logo em {
  font-style: normal;
  color: var(--brand-dark);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink3);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-ghost {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--cream3);
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ink2);
}

.btn-solid {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  background: var(--brand-dark);
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(155, 0, 255, 0.3), 0 4px 12px rgba(155, 0, 255, 0.15);
}

.btn-solid:hover {
  background: var(--ink2);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(155, 0, 255, 0.35), 0 8px 20px rgba(155, 0, 255, 0.2);
}

/* ─────────────────────────────────────────
 HERO
───────────────────────────────────────── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
  gap: 2rem;
  background: radial-gradient(circle at 90% 10%, rgba(155, 0, 255, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(155, 0, 255, 0.03) 0%, transparent 40%),
              var(--bg);
}

.hero-l {
  padding: 2rem clamp(1rem, 5vw, 4rem) 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(155, 0, 255, 0.07);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  width: fit-content;
  opacity: 0;
  animation: up 0.6s 0.1s ease forwards;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-dark);
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1 }
  50% { opacity: 0.3 }
}

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: up 0.6s 0.2s ease forwards;
}

.hero-h1-em {
  color: var(--brand-dark);
}

.hero-p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: up 0.6s 0.3s ease forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: up 0.6s 0.35s ease forwards;
}

.htrust-item {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink2);
}

.htrust-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

.htrust-item+.htrust-item::before {
  content: '·';
  color: var(--cream3);
  margin-right: .3rem;
  font-size: 1rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: up 0.6s 0.4s ease forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-dark);
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(155, 0, 255, 0.35);
  transition: all 0.25s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155, 0, 255, 0.45);
}

.btn-hero svg {
  transition: transform 0.2s;
}

.btn-hero:hover svg {
  transform: translateX(3px);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: up 0.6s 0.5s ease forwards;
}

.hero-social-avs {
  display: flex;
}

.hsa {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.hsa:first-child {
  margin-left: 0;
}

.hero-social-text {
  font-size: 0.82rem;
  color: var(--ink2);
  line-height: 1.4;
}

.hero-social-stars {
  color: #f59e0b;
  font-size: 0.72rem;
  display: block;
  margin-bottom: 0.1rem;
}

.hero-social-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* Hero sağ */
.hero-r {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.8s 0.3s ease forwards;
  height: 100%;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: #1a0a2e;
  box-shadow: 0 32px 80px rgba(26, 10, 46, .45), 0 8px 32px rgba(155, 0, 255, .18);
  overflow: visible;
}

.hero-visual-center {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.hv-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.hv-card-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hv-card-label {
  font-size: 0.65rem;
  color: var(--ink3);
  margin-top: 0.2rem;
}

.hv-card-tl {
  top: -16px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: float1 4s ease-in-out infinite;
}

.hv-card-icon {
  font-size: 1.1rem;
  color: #f59e0b;
}

.hv-card-tr {
  top: 24px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1rem;
  animation: float2 4.5s ease-in-out infinite;
}

.hv-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink2);
}

.hv-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-card-bottom {
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  animation: float3 5s ease-in-out infinite;
}

.hv-free-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  background: var(--brand-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.hv-free-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.hv-free-sub {
  font-size: 0.62rem;
  color: var(--ink3);
}

.hv-free-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--bg2);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.hv-free-btn:hover {
  background: var(--brand-dark);
  color: white;
}

.hv-card-bl {
  bottom: 60px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: float1 3.5s 0.5s ease-in-out infinite;
}

.hv-avs {
  display: flex;
}

.hva {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid white;
  font-size: 0.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
}

.hva:first-child {
  margin-left: 0;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-8px) }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-6px) }
}

@keyframes float3 {
  0%, 100% { transform: translateX(-50%) translateY(0) }
  50% { transform: translateX(-50%) translateY(-7px) }
}

@keyframes up {
  from { opacity: 0; transform: translateY(16px) }
  to { opacity: 1; transform: translateY(0) }
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

/* ─────────────────────────────────────────
 MARQUEE
───────────────────────────────────────── */
.marquee-wrap {
  background: var(--brand-dark);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

/* ─────────────────────────────────────────
 SECTION SHARED
───────────────────────────────────────── */
.sec {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.sec-alt {
  background: var(--bg2);
}

.sec-dark {
  background: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
}

.sec-h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sec-h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--ink2);
}

.sec-p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 480px;
}

.sec-dark .sec-h2 {
  color: var(--white);
}

.sec-dark .sec-h2 em {
  color: var(--plum3);
}

.sec-dark .eyebrow {
  color: var(--plum3);
}

.sec-dark .eyebrow::before {
  background: var(--plum3);
}

.sec-dark .sec-p {
  color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────
 SERVICES
───────────────────────────────────────── */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream3);
  border: 1.5px solid var(--cream3);
  border-radius: var(--radius);
  overflow: hidden;
}

.sv {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
}

.sv:hover {
  background: var(--white);
}

.sv-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: var(--cream3);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.sv:hover .sv-num {
  color: var(--plum4);
}

.sv-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.sv-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
}

.sv-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--cream3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.sv-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink3);
  fill: none;
  transition: all 0.25s;
}

.sv:hover .sv-arrow {
  background: var(--plum);
  border-color: var(--plum);
}

.sv:hover .sv-arrow svg {
  stroke: var(--white);
  transform: translate(1px, -1px);
}

/* ─────────────────────────────────────────
 EXPERTS
───────────────────────────────────────── */
.experts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.btn-outline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--cream3);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--plum);
  color: var(--plum);
}

.ec {
  background: var(--white);
  border: 1.5px solid var(--cream3);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.25s;
  cursor: default;
}

.ec:hover {
  border-color: var(--plum);
  box-shadow: 0 8px 32px rgba(91, 33, 182, 0.1);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────
 TESTIMONIALS
───────────────────────────────────────── */
.t-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.t-stat {
  text-align: right;
}

.t-big {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.t-big span {
  color: #f59e0b !important;
}

.t-big-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tc {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.25s;
}

.tc:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-3px);
}

.tc:nth-child(2) {
  margin-top: 1.5rem;
}

.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #f59e0b !important;
  line-height: 1;
}

.tc-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.tc-text {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.tc-loc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─────────────────────────────────────────
 CTA
───────────────────────────────────────── */
.cta-left {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.cta-title em {
  font-style: normal;
  font-weight: 300;
  color: var(--brand-light);
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─────────────────────────────────────────
 PSİKOLOJİK TESTLER
───────────────────────────────────────── */
.tests-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.test-card {
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.25s;
  padding: 1.5rem;
  gap: 1.25rem;
}

.test-card:hover {
  border-color: var(--brand-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(155, 0, 255, 0.1);
}

.test-card-illo {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.illo-anxiety { background: linear-gradient(135deg, #f0edf8 0%, #e0d9f5 100%); }
.illo-depression { background: linear-gradient(135deg, #e8f5e9 0%, #d4edd4 100%); }
.illo-attachment { background: linear-gradient(135deg, #fff3e0 0%, #fde8d4 100%); }
.illo-stress { background: linear-gradient(135deg, #e8f0fe 0%, #d4e4f4 100%); }
.illo-selfesteem { background: linear-gradient(135deg, #fce4ec 0%, #f4d4e8 100%); }
.illo-personality { background: linear-gradient(135deg, #f3f0ff 0%, #ede9fa 100%); }

.test-card-illo svg {
  width: 100%;
  height: 100%;
}

.illo-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(155, 0, 255, 0.45);
}

.test-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.test-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.test-card-desc {
  font-size: 0.82rem;
  color: var(--ink3);
  line-height: 1.65;
  font-weight: 400;
}

.test-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  margin-top: auto;
  border-top: 1px solid var(--bg3);
}

.test-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-dark);
  background: rgba(155, 0, 255, 0.07);
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
}

.test-start {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-dark);
  opacity: 1;
  transform: translateX(0);
  transition: all 0.2s;
}

.test-card:hover .test-start {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .tests-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .tests-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
 BLOG İÇERİK
───────────────────────────────────────── */
.blog-content-sec {
  background: var(--bg);
}

.blog-content-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.bc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bc-card {
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.25s;
  padding: 1.25rem;
  gap: 1rem;
}

.bc-card:hover {
  border-color: var(--brand-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(155, 0, 255, 0.1);
}

.bc-card-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  overflow: hidden;
  border-radius: 12px;
}

.bc-img-1 {
  background: #2d1f35;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 20 50 50 Q75 80 100 50' stroke='%23ccc3eb' stroke-width='1.5' fill='none' opacity='0.25'/%3E%3Cpath d='M0 65 Q25 35 50 65 Q75 95 100 65' stroke='%23ccc3eb' stroke-width='1' fill='none' opacity='0.15'/%3E%3Cpath d='M0 35 Q25 5 50 35 Q75 65 100 35' stroke='%23ccc3eb' stroke-width='1' fill='none' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.bc-img-2 {
  background: #1a2e1a;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%2390c490' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

.bc-img-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(144, 196, 144, 0.2) 0%, transparent 60%);
}

.bc-img-3 {
  background: #2e1e0e;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='%23e8a860' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.bc-img-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(232, 168, 96, 0.25) 0%, transparent 55%);
}

.bc-img-4 {
  background: #0e1e2e;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='11' y='0' width='1' height='24' fill='%2378b4e8' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}

.bc-img-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(120, 180, 232, 0.25) 0%, transparent 55%);
}

.bc-img-5 {
  background: #2e0e1e;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' stroke='%23e890c0' stroke-width='1' fill='none' opacity='0.2'/%3E%3Ccircle cx='30' cy='30' r='10' stroke='%23e890c0' stroke-width='1' fill='none' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.bc-img-5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 144, 192, 0.2) 0%, transparent 60%);
}

.bc-card-cat {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.bc-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.bc-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.bc-card-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink3);
  line-height: 1.6;
  flex: 1;
}

.bc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  border-top: 1px solid var(--bg3);
  margin-top: auto;
}

.bc-card-read {
  font-size: 0.68rem;
  color: var(--ink3);
  font-weight: 500;
}

.bc-card-arr {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-dark);
  opacity: 1;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(0);
}

.bc-card:hover .bc-card-arr {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .bc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .bc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .bc-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
 BLOG LINKS
───────────────────────────────────────── */
.blog-sec {
  padding: clamp(4rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--cream3);
  background: var(--ink);
}

.blog-head {
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.blog-col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum3);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.1rem;
}

.blog-col-title svg {
  stroke: var(--plum3);
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  fill: none;
}

.blog-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.blog-col a {
  font-size: 0.855rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  transition: color 0.2s;
  line-height: 1.5;
}

.blog-col a::before {
  content: '→';
  font-size: 0.72rem;
  color: var(--plum3);
  margin-top: 0.15rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.blog-col a:hover {
  color: var(--white);
}

.blog-col a:hover::before {
  opacity: 1;
}

/* ─────────────────────────────────────────
 ARACI CTA
───────────────────────────────────────── */
.inter-cta {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}

.inter-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.inter-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 0, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.inter-cta-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(155, 0, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.inter-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.inter-cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inter-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.inter-cta-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--brand-dark);
  border-radius: 2px;
}

.inter-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.inter-cta-title em {
  font-style: normal;
  color: var(--ink);
}

.inter-cta-sub {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(155, 0, 255, 0.6);
  line-height: 1.6;
  max-width: 380px;
}

.inter-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}

.inter-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-dark);
  padding: 1rem 2rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(155, 0, 255, 0.25);
}

.inter-cta-btn:hover {
  background: var(--ink2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(155, 0, 255, 0.3);
}

.inter-cta-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.inter-cta-btn:hover .inter-cta-btn-icon {
  transform: translateX(3px);
}

.inter-cta-btn-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.inter-cta-note {
  font-size: 0.72rem;
  color: rgba(155, 0, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.inter-cta-note::before {
  content: '🔒';
  font-size: 0.7rem;
}

/* ─────────────────────────────────────────
 FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(3rem, 5vw, 5rem) 0 0;
}

.footer-grid,
.fg {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .fg {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fcol h5 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
}

.footer-logo,
.flogo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.footer-logo em {
  font-style: normal;
  opacity: 0.5;
}

.footer-desc,
.fdesc {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.fsoc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.fsoc:hover {
  background: var(--plum);
  border-color: var(--plum);
}

.fsoc svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
}

.fsoc:hover svg {
  stroke: var(--white);
}

.footer-col h5,
.fcol h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-col ul,
.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.fcol a {
  font-size: 0.855rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom,
.fbot {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.footer-certs {
  display: flex;
  gap: 0.5rem;
}

.fcert {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.22rem 0.55rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ─────────────────────────────────────────
 RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 4rem; text-align: center; }
  .hero-l { 
    align-items: center; 
    padding: 3rem 1.5rem 1.5rem; 
  }
  .hero-h1 { margin-inline: auto; font-size: clamp(2.4rem, 6vw, 3.5rem); }
  .hero-p { margin-inline: auto; }
  .hero-label { margin-inline: auto; }
  .hero-trust { justify-content: center; gap: 1rem; }
  .hero-actions { justify-content: center; gap: 0.75rem; }
  .hero-social { justify-content: center; transform: scale(1.05); }
  
  .hero-r { min-height: auto; max-width: 480px; margin: 0 auto; padding: 1rem; }
  
  .t-intro { grid-template-columns: 1fr; }
  .t-stat { text-align: left; }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .tc:nth-child(2) { margin-top: 0; }
  .cta-right { align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .inter-cta-inner { flex-direction: column; gap: 1.5rem; }
  .inter-cta-right { align-items: flex-start; }
  .sss-inner, .sss-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .t-grid { grid-template-columns: 1fr; }
  .t-intro { gap: 1.5rem; }
  .tests-grid { grid-template-columns: 1fr 1fr; }
  .bc-5grid { grid-template-columns: repeat(2, 1fr); }
  .how2-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { max-width: 320px; }
  .hv-card { transform: scale(0.9); }
  .hv-card-tr, .hv-card-bl { display: none; }
  .hv-card-tl { left: -10px; top: -12px; }
  .hv-card-bottom { bottom: -14px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .logo-marquee-label { display: none; }
  .inter-cta-inner { text-align: left; }
  .inter-cta-right { width: 100%; }
  .inter-cta-btn { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────
 LOGO MARQUEE
───────────────────────────────────────── */
.logo-marquee-wrap {
  background: var(--bg);
  border-top: 1px solid var(--bg3);
  border-bottom: 1px solid var(--bg3);
  padding: 1rem 0;
}

.logo-marquee-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0.75rem;
}

.logo-marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

@keyframes logoScroll {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

.logo-item {
  padding: 0 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: -0.02em;
  white-space: nowrap;
  border-right: 1px solid var(--bg3);
  line-height: 2.2;
  transition: color .2s;
}

.logo-item:last-child {
  border-right: none;
}

/* ─────────────────────────────────────────
 HOW2
───────────────────────────────────────── */
.how2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.how2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 860px) {
  .how2-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .how2-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}

.how2-card {
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.how2-card:hover {
  border-color: var(--brand-dark);
  box-shadow: 0 4px 20px rgba(155, 0, 255, .09);
  transform: translateY(-2px);
}

.how2-card--accent {
  background: linear-gradient(145deg, #f3eeff, #ede0fb);
  border-color: var(--bg3);
}

.how2-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--ink3);
  text-transform: uppercase;
}

.how2-card--accent .how2-num {
  color: var(--brand-dark);
}

.how2-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how2-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-dark);
}

.how2-card--accent .how2-icon {
  background: rgba(155, 0, 255, .12);
}

.how2-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.how2-desc {
  font-size: 0.76rem;
  color: var(--ink2);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
 EXPERT LIST
───────────────────────────────────────── */
.expert-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.el-card {
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}

.el-card:hover {
  border-color: var(--brand-dark);
  box-shadow: 0 6px 24px rgba(155, 0, 255, .09);
  transform: translateY(-2px);
}

.el-av {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  position: relative;
}

.el-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
}

.el-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.el-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.el-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.el-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: rgba(155, 0, 255, .08);
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

.el-role {
  font-size: 0.74rem;
  color: var(--ink3);
  font-weight: 500;
}

.el-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.el-rating {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.el-rating em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink3);
}

.el-rating-row {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
  margin-bottom: .4rem;
}

.el-stars {
  display: flex;
  gap: 1px;
}

.el-stars svg {
  width: 11px;
  height: 11px;
}

.el-rval {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
}

.el-rcnt {
  font-size: .68rem;
  color: var(--ink3);
}

.el-review {
  margin-top: .6rem;
  position: relative;
  padding-left: 1.3rem;
}

.el-review::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -.15rem;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-dark);
  opacity: .15;
  line-height: 1;
}

.el-review-text {
  font-size: .73rem;
  color: var(--ink2);
  line-height: 1.65;
  font-style: italic;
}

.el-review-author {
  font-size: .62rem;
  color: var(--ink3);
  margin-top: .18rem;
  font-weight: 700;
  opacity: .55;
}

.el-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-randevu-el {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(155, 0, 255, .28);
  transition: all .2s;
}

.btn-randevu-el:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(155, 0, 255, .38);
}

@media (max-width: 700px) {
  .el-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 1rem;
    gap: 0.85rem;
  }

  .el-info { grid-column: 2; }

  .el-actions {
    display: flex !important;
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid var(--bg3);
    margin-top: 0.1rem;
  }

  .el-av {
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
    border-radius: 13px;
  }

  .btn-randevu-el {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    flex: 1;
    text-align: center;
  }
}

/* ─────────────────────────────────────────
 SSS
───────────────────────────────────────── */
.sss-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .sss-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.sss-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sss-item {
  border-bottom: 1px solid var(--bg3);
}

.sss-item:first-child {
  border-top: 1px solid var(--bg3);
}

.sss-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color .18s;
}

.sss-q:hover .sss-q-text {
  color: var(--brand-dark);
}

.sss-item.open .sss-q .sss-q-text {
  color: var(--brand-dark);
}

.sss-q-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color .18s;
}

.sss-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--ink3);
  transition: transform .28s cubic-bezier(.34, 1.2, .64, 1), stroke .18s;
}

.sss-item.open .sss-chevron {
  transform: rotate(180deg);
  stroke: var(--brand-dark);
}

.sss-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
}

.sss-item.open .sss-a {
  max-height: 200px;
}

.sss-a-inner {
  padding-bottom: 1.1rem;
  font-size: 0.875rem;
  color: var(--ink2);
  line-height: 1.75;
}

.sss-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 780px) {
  .sss-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

.sss-list {
  border-top: 1.5px solid var(--bg3);
}

.sss-item {
  border-bottom: 1.5px solid var(--bg3);
}

.sss-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color .18s;
}

.sss-q:hover,
.sss-item.open .sss-q {
  color: var(--brand-dark);
}

.sss-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--ink3);
  transition: transform .28s cubic-bezier(.34, 1.2, .64, 1), stroke .18s;
}

.sss-item.open .sss-ico {
  transform: rotate(180deg);
  stroke: var(--brand-dark);
}

.sss-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s cubic-bezier(.4, 0, .2, 1);
}

.sss-item.open .sss-body {
  max-height: 200px;
}

.sss-body p {
  padding-bottom: 1.1rem;
  font-size: 0.875rem;
  color: var(--ink2);
  line-height: 1.78;
}

/* ─────────────────────────────────────────
 ŞİRKET & BAŞVURU KARTLARI
───────────────────────────────────────── */
.cta2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .cta2-grid { grid-template-columns: 1fr; }
}

.cta2-card {
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.cta2-card:hover {
  border-color: var(--brand-dark);
  box-shadow: 0 8px 32px rgba(155, 0, 255, .09);
  transform: translateY(-3px);
}

.cta2-card--alt {
  background: var(--bg2);
}

.cta2-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta2-card--alt .cta2-icon {
  background: rgba(155, 0, 255, .1);
}

.cta2-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-dark);
}

.cta2-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.cta2-desc {
  font-size: 0.875rem;
  color: var(--ink2);
  line-height: 1.72;
  flex: 1;
}

.cta2-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-dark);
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  width: fit-content;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(155, 0, 255, .28);
}

.cta2-btn svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  flex-shrink: 0;
}

.cta2-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(155, 0, 255, .38);
}

.cta2-btn--alt {
  background: var(--brand-dark);
}

@media (max-width: 480px) {
  .cta2-card { padding: 1.5rem; }
  .cta2-title { font-size: 1rem; }
}

/* ─────────────────────────────────────────
 GLOBAL MOBİL DÜZELTMELER
───────────────────────────────────────── */
html, body {
  overflow-x: hidden;
}

* {
  min-width: 0;
}

@media (max-width: 640px) {
  .wrap { padding-left: 1.8rem !important; padding-right: 1.8rem !important; }
  .hero { padding-left: 0; padding-right: 0; }
  .hero-l { padding: 1.5rem 1.8rem 1rem !important; }
  .sss-wrap, .services-head, .experts-head, .blog-content-head {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { flex-wrap: wrap; gap: 0.65rem; }
  .btn-hero { width: 100%; justify-content: center; }
  .hero-r { padding: 1rem; }
  .hero-visual { max-width: 300px; }
  .marquee-wrap, .logo-marquee-wrap { overflow: hidden; }
  .sec-h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .sec { padding: clamp(2rem, 5vw, 3.5rem) 0; }
  .services-grid { grid-template-columns: 1fr !important; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .sv { padding: 1.75rem 1.25rem 3.5rem; }
  .experts-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .el-badge { max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
  .el-top { flex-wrap: wrap; gap: 0.3rem; }
  .tests-grid { grid-template-columns: 1fr !important; }
  .tests-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .t-grid { grid-template-columns: 1fr !important; }
  .t-intro { flex-direction: column; grid-template-columns: 1fr; }
  .t-stat { text-align: left; }
  .how2-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .how2-head { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .bc-5grid { grid-template-columns: 1fr 1fr !important; }
  .blog-content-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .sss-inner, .sss-wrap { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .inter-cta-inner { flex-direction: column; text-align: left; gap: 1.25rem; }
  .inter-cta-right { width: 100%; align-items: flex-start; }
  .inter-cta-btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .wa-fab { bottom: 16px; right: 16px; width: 46px; height: 46px; }
  .wa-fab-icon { width: 24px; height: 24px; }
  .wa-fab-tooltip { display: none; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-p { font-size: 0.9rem; }
  .hero-social { flex-wrap: wrap; gap: 0.5rem; }
  .hero-visual { max-width: 280px; }
  .how2-grid { grid-template-columns: 1fr 1fr !important; }
  .bc-5grid { grid-template-columns: 1fr !important; }
  .el-meta { gap: 0.5rem; }
  .cta2-card { padding: 1.25rem; }
}

/* ─────────────────────────────────────────
 MOBİL NAV
───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background .15s;
}

.nav-hamburger:hover {
  background: var(--bg2);
}

.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(250, 249, 246, .98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg3);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: .25rem;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink2);
  padding: .65rem .5rem;
  border-bottom: 1px solid var(--bg3);
  transition: color .15s;
}

.mob-menu a:last-child {
  border-bottom: none;
}

.mob-menu a:hover {
  color: var(--brand-dark);
}

.mob-menu-ctas {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.mob-menu-ctas a {
  flex: 1;
  text-align: center;
  padding: .7rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 700;
}

.mob-menu-ctas .m-ghost {
  border: 1.5px solid var(--bg3);
  color: var(--ink2);
}

.mob-menu-ctas .m-solid {
  background: var(--brand-dark);
  color: #fff;
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .nav-links, .nav-ctas { display: none; }
}

/* ─────────────────────────────────────────
 MÜSAİTLİK ETİKETİ
───────────────────────────────────────── */
.el-avail-tag {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: color-mix(in srgb, var(--ac) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--ac) 22%, transparent);
  border-radius: 100px;
  padding: .22rem .6rem;
  width: fit-content;
}

.el-avail-label {
  font-size: .65rem;
  font-weight: 800;
  color: var(--ac);
  white-space: nowrap;
}

.el-avail-slot {
  font-size: .63rem;
  color: var(--ac);
  opacity: .75;
  white-space: nowrap;
  padding-left: .35rem;
  border-left: 1px solid color-mix(in srgb, var(--ac) 30%, transparent);
}

/* ─────────────────────────────────────────
 WHATSAPP FAB
───────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .6);
}

.wa-fab-icon {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}

.wa-fab-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(15, 10, 30, .85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .4rem .85rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
}

.wa-fab-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: 0;
  border-left-color: rgba(15, 10, 30, .85);
}

.wa-fab:hover .wa-fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.2s ease-out infinite;
  opacity: 0;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* ─────────────────────────────────────────
 USER MENU
───────────────────────────────────────── */
.user-menu {
  position: relative;
  display: inline-block;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-2);
  padding: 6px 16px 6px 6px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--ink);
}

.user-menu-btn:hover {
  background: var(--bg);
  border-color: var(--gray-3);
}

.user-avatar {
  background: var(--brand-dark);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.user-name {
  font-size: 0.95rem;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  min-width: 220px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-2);
}

.user-menu.open .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: 'Manrope', sans-serif;
}

.user-dropdown a:hover {
  background: var(--bg);
  color: var(--brand);
}

.user-dropdown-divider {
  height: 1px;
  background: var(--gray-2);
  margin: 6px 0;
}

@media (max-width: 900px) {
  .user-menu { display: none; }
}

/* Yorum & Yıldız */
.el-stars {
  display: flex;
  gap: 2px;
}

.s {
  width: 11px;
  height: 11px;
}

.sf { fill: #f59e0b; }
.se { fill: #e5d0f8; }