/* ================================================================
   BEGENETIK — REDESIGN V3 "EDITORIAL ORGANIC" (COLORFUL EDITION)
   Replaces: style.css, refresh-2026.css, refresh-2026-glow.css,
             refresh-2026-v2.css, polish-fixes.css, redesign-v2.css
   Keeps:    wow.css (animation helpers)
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --cream:       #FEF7E8;
  --cream-2:     #F5EBD0;
  --ink:         #1C1410;
  --ink-2:       #3A2E26;
  --coral:       #D9503B;
  --coral-deep:  #B43325;
  --coral-wash:  #FFF0EC;
  --sage:        #2D6B45;
  --sage-wash:   #E8F4E8;
  --amber:       #C98B1F;
  --amber-wash:  #FFF7E0;
  --rose:        #B83A5C;
  --rose-wash:   #FEE9F0;
  --muted:       #9A8B7E;
  --line:        rgba(28,20,16,0.09);
  --line-mid:    rgba(28,20,16,0.14);
  --line-dark:   rgba(254,247,232,0.12);
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --shell: min(1160px, 100% - 48px);
  --shell-narrow: min(720px, 100% - 48px);
  --r:  16px;
  --r-sm: 8px;
  --r-pill: 999px;
  --sec: 96px;
}
@media (max-width: 768px) { :root { --sec: 56px; } }

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.rv-shell { width: var(--shell); margin-inline: auto; }
.rv-shell-narrow { width: var(--shell-narrow); margin-inline: auto; }

.rv-section {
  padding-block: var(--sec);
  background: var(--cream);
}
.rv-section.rv-paper-2 { background: var(--sage-wash); }
.rv-section.rv-tight   { padding-block: 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
.rv-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.rv-eyebrow.rv-pink   { color: var(--coral); }
.rv-eyebrow.rv-olive  { color: var(--sage); }

.rv-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.rv-h2 em, .rv-italic { font-style: italic; }

.rv-lede {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 540px;
}

.rv-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.rv-btn-solid {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.rv-btn-solid:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}
.rv-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-mid);
}
.rv-btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary {
  background: var(--coral) !important;
  color: #fff !important;
  border-color: var(--coral) !important;
}
.btn-primary:hover {
  background: var(--coral-deep) !important;
  border-color: var(--coral-deep) !important;
}

/* ── SECTION HEADERS ────────────────────────────────────────────── */
.rv-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 64px;
  align-items: start;
  margin-bottom: 56px;
}
.rv-head > span { padding-top: 6px; }
.rv-head > div  { grid-column: 2; }
@media (max-width: 768px) {
  .rv-head { grid-template-columns: 1fr; }
  .rv-head > div { grid-column: 1; }
}
.rv-head .rv-h2 { margin-bottom: 16px; }
.rv-head .rv-lede { margin-top: 0; }

/* ── NAV ─────────────────────────────────────────────────────────── */
#navbar, .rv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  padding-inline: 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(254,247,232,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.rv-nav-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.rv-logo, .rv-nav-logo, .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-right: auto;
  text-decoration: none;
}
.logo-text, .rv-logo .logo-text { color: var(--ink); }
.starglow-icon { width: 30px; height: 30px; }

/* Nav links */
.rv-nav-links, .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rv-nav-links a, .nav-links a {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
}
.rv-nav-links a:hover, .nav-links a:hover {
  color: var(--ink);
  background: var(--line);
}
.rv-nav-links a.nav-cta,
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--cream);
  margin-left: 8px;
}
.rv-nav-links a.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--coral);
}

/* Nav actions */
.rv-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
#navCart {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line-mid);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
#navCart:hover { border-color: var(--ink); }
#navCart svg { width: 16px; height: 16px; }

.rv-nav-toggle, .nav-toggle {
  display: none;
  padding: 8px;
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: background 0.15s;
}
.rv-nav-toggle:hover, .nav-toggle:hover { background: var(--line); }
.rv-nav-toggle svg, .nav-toggle svg { width: 22px; height: 22px; }

.v3-lang, .lang-switcher {
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line-mid);
  cursor: pointer;
  background: transparent;
  transition: all 0.15s;
}
.v3-lang:hover, .lang-switcher:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 900px) {
  .rv-nav-links, .nav-links { display: none; }
  .rv-nav-toggle, .nav-toggle { display: flex; }
}
@media (max-width: 768px) {
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(254,247,232,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-top: 1px solid var(--line);
  }
  .nav-links.mobile-open a { padding: 12px 16px; border-radius: var(--r-sm); }
  .nav-links.mobile-open a.nav-cta { background: var(--coral); }
}

/* Scroll progress */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--coral);
  z-index: 200;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.rv-hero {
  padding-top: calc(68px + 64px);
  padding-bottom: 80px;
  background: var(--cream);
  overflow: hidden;
}
.rv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .rv-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Hero badges */
.rv-hero-heads {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.rv-hero-head {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.rv-hero-head.rv-pink   { background: #FEE6E2; color: var(--coral); }
.rv-hero-head.rv-olive  { background: #E3F3E5; color: var(--sage); }
/* Badge span = label, strong = value */
.rv-hero-head span { opacity: 0.65; }
.rv-hero-head strong { margin-left: 6px; font-weight: 700; }
.rv-hero-head span + strong::before { content: '·'; margin-right: 6px; opacity: 0.4; }

.rv-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.rv-hero h1 em {
  color: var(--coral);
  font-style: italic;
}
.rv-hero .rv-lede { margin-bottom: 40px; }
.rv-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero art (DNA canvas) */
.rv-hero-art {
  position: relative;
  height: 500px;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(160deg, #2A2018 0%, #1C1410 60%, #0F0C0A 100%);
}
.dna-canvas, .rv-dna3d {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.dna-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(217,80,59,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Hero stats */
.rv-hero-statlist {
  display: flex;
  gap: 0;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.rv-hero-statlist > div {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.rv-hero-statlist > div:last-child { border-right: none; padding-right: 0; }
.rv-hero-statlist strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.rv-hero-statlist span {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 600px) {
  .rv-hero-statlist { flex-wrap: wrap; }
  .rv-hero-statlist > div {
    flex: 1 1 48%;
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ── TRUST BAND ─────────────────────────────────────────────────── */
.rv-trust {
  background: var(--ink);
  padding: 20px var(--shell-narrow);
  padding-inline: max(24px, calc((100% - 1160px) / 2 + 24px));
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.rv-trust::-webkit-scrollbar { display: none; }
.rv-trust > span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-right: 1px solid rgba(254,247,232,0.1);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(254,247,232,0.65);
}
.rv-trust > span:last-child { border-right: none; }
.rv-trust > span svg {
  width: 16px; height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}

/* ── TWIN DISCIPLINES (#farkimiz) ────────────────────────────────── */
#farkimiz { background: var(--sage-wash); }

.rv-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .rv-twin { grid-template-columns: 1fr; } }

.rv-twin-card {
  padding: 40px 36px;
  border-radius: var(--r);
  background: var(--cream);
  border: 1px solid transparent;
  transition: transform 0.22s, box-shadow 0.22s;
}
.rv-twin-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28,20,16,0.08); }
.rv-twin-card.rv-pink { background: #FEE6E2; }
.rv-twin-card.rv-olive { background: #E3F3E5; }

.rv-twin-card .rv-eyebrow { margin-bottom: 16px; }
.rv-twin-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
}
.rv-twin-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.rv-twin-list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.rv-twin-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 3px;
  color: var(--muted);
}
.rv-link {
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.rv-link.rv-pink  { color: var(--coral); }
.rv-link.rv-olive { color: var(--sage); }
.rv-link:hover { opacity: 0.65; }

/* ── QUOTE BLOCK (rv-tight rv-paper-2) ──────────────────────────── */
.rv-tight.rv-paper-2 {
  background: var(--coral) !important;
  padding-block: 72px !important;
}
.rv-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0;
}
.rv-quote em { font-style: italic; opacity: 0.85; }
.rv-quote-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PACKAGES (#paketler) ────────────────────────────────────────── */
#paketler { background: var(--cream); }

.rv-packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .rv-packages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rv-packages { grid-template-columns: 1fr; } }

.rv-pkg {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.rv-pkg:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(28,20,16,0.1); }

/* Colored top bar per package */
.rv-pkg:nth-child(1)::before,
.rv-pkg:nth-child(2)::before,
.rv-pkg:nth-child(3)::before,
.rv-pkg:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.rv-pkg:nth-child(1)::before { background: var(--sage); }
.rv-pkg:nth-child(2)::before { background: var(--coral); }
.rv-pkg:nth-child(3)::before { background: var(--rose); }
.rv-pkg:nth-child(4)::before { background: var(--amber); }

.rv-pkg-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: rgba(28,20,16,0.06);
  line-height: 1;
  margin-bottom: 12px;
}
.rv-pkg-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rv-pkg-tag.rv-olive  { background: #E3F3E5; color: var(--sage); }
.rv-pkg-tag.rv-pink   { background: #FEE6E2; color: var(--coral); }
.rv-pkg-tag.rv-gold   { background: #FEF3D6; color: var(--amber); }

.rv-pkg-body { margin-bottom: 16px; flex: 1; }
.rv-pkg-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.rv-pkg-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.rv-pkg-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.rv-pkg-actions {
  display: flex;
  gap: 8px;
}
.rv-pkg-actions .rv-btn {
  flex: 1;
  padding: 11px 12px;
  font-size: 13px;
}

/* ── QUIZ (#test-bulucu) ─────────────────────────────────────────── */
#test-bulucu { background: var(--amber-wash); }
#test-bulucu .rv-head { margin-bottom: 0; }

.quiz-card {
  max-width: 660px;
  margin: 48px auto 0;
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,20,16,0.06);
}
.quiz-progress {
  height: 3px;
  background: var(--line);
}
.quiz-progress span {
  display: block;
  height: 100%;
  background: var(--coral);
  transition: width 0.4s ease;
}
.quiz-step { padding: 44px 40px; }
.quiz-question-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}
.quiz-question {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--ink);
  line-height: 1.2;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--sans);
}
.quiz-option:hover { border-color: var(--coral); background: var(--coral-wash); }
.quiz-option-emoji {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}
.ico { width: 22px; height: 22px; }
.quiz-option-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.quiz-option-text small { font-size: 13px; color: var(--muted); }

.quiz-result { text-align: center; padding: 48px 40px; }
.quiz-result-icon { font-size: 48px; margin-bottom: 16px; }
.quiz-result-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.quiz-result-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}
.quiz-result-desc {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 380px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.quiz-result-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  flex-wrap: wrap;
}
.quiz-result-meta span:first-child {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.quiz-result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Quiz color themes */
.quiz-card[data-color="green"]  { border-color: rgba(45,107,69,0.3); }
.quiz-card[data-color="blue"]   { border-color: rgba(217,80,59,0.3); }
.quiz-card[data-color="rose"]   { border-color: rgba(184,58,92,0.3); }
.quiz-card[data-color="violet"] { border-color: rgba(201,139,31,0.3); }

/* ── PROCESS (#nasil) ────────────────────────────────────────────── */
#nasil {
  background: var(--ink) !important;
}
#nasil .rv-head .rv-eyebrow { color: rgba(254,247,232,0.4); }
#nasil .rv-h2 { color: var(--cream); }
#nasil .rv-h2 em { color: var(--amber); }

/* Kit 3D */
.kit3d {
  perspective: 600px;
  display: flex;
  justify-content: flex-end;
}
.kit3d-box {
  width: 120px;
  height: 80px;
  position: relative;
  transform-style: preserve-3d;
  animation: kit3dSpin 9s ease-in-out infinite;
}
@keyframes kit3dSpin {
  0%, 100% { transform: rotateY(-18deg) rotateX(9deg); }
  50%       { transform: rotateY(18deg) rotateX(-5deg); }
}
.kit3d-face {
  position: absolute;
  border: 1px solid rgba(254,247,232,0.1);
}
.kit3d-front, .kit3d-back {
  width: 120px; height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(254,247,232,0.05);
}
.kit3d-front { transform: translateZ(30px); }
.kit3d-back  { transform: translateZ(-30px) rotateY(180deg); }
.kit3d-right { width: 60px; height: 80px; right: -30px; top: 0; transform: rotateY(90deg); background: rgba(254,247,232,0.03); }
.kit3d-left  { width: 60px; height: 80px; left: -30px;  top: 0; transform: rotateY(-90deg); background: rgba(254,247,232,0.04); }
.kit3d-top   { width: 120px; height: 60px; top: -30px;    left: 0; transform: rotateX(90deg); background: rgba(254,247,232,0.03); }
.kit3d-bottom{ width: 120px; height: 60px; bottom: -30px; left: 0; transform: rotateX(-90deg); background: rgba(254,247,232,0.02); }
.kit3d-brand { font-size: 11px; font-weight: 700; color: rgba(254,247,232,0.65); letter-spacing: 0.06em; text-transform: uppercase; }
.kit3d-brand b { color: var(--amber); }
.kit3d-brand-sm { font-size: 9px; }
.kit3d-sub { font-size: 8px; color: rgba(254,247,232,0.3); letter-spacing: 0.1em; }
.kit3d-mark { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(254,247,232,0.25); margin-bottom: 6px; }

.rv-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .rv-steps { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .rv-steps { grid-template-columns: 1fr; } }

.rv-step { position: relative; }
.rv-step-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(254,247,232,0.07);
  line-height: 1;
  margin-bottom: -14px;
  display: block;
}
.rv-step-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(254,247,232,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--amber);
}
.rv-step-ico svg { width: 22px; height: 22px; }
.rv-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.rv-step p {
  font-size: 14px;
  color: rgba(254,247,232,0.55);
  line-height: 1.6;
}

/* ── SAMPLE REPORT (#ornek-rapor) ───────────────────────────────── */
#ornek-rapor { background: var(--sage-wash); }
.rv-report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 768px) {
  .rv-report-grid { grid-template-columns: 1fr; gap: 40px; }
}
.rv-report-mock {
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 4px 24px rgba(28,20,16,0.06);
}
.rv-report-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.rv-report-row span  { font-size: 13px; color: var(--muted); }
.rv-report-row strong{ font-size: 13px; font-weight: 600; color: var(--ink); text-align: right; }
.rv-bar {
  grid-column: 1 / -1;
  height: 5px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.rv-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  border-radius: 3px;
  transition: width 1s ease;
}

/* ── EXPERT ──────────────────────────────────────────────────────── */
.rv-section:not(#farkimiz):not(#paketler):not(#test-bulucu):not(#nasil):not(#ornek-rapor):not(#sss):not(#yorumlar):not(#randevu):not(#bilgi-merkezi):not(.rv-tight) {
  background: var(--cream);
}

.rv-expert {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .rv-expert { grid-template-columns: 1fr; gap: 32px; }
}

.rv-expert-card {
  background: var(--amber-wash);
  border-radius: var(--r);
  padding: 36px;
  border: 1px solid rgba(201,139,31,0.2);
}
.rv-expert-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(217,80,59,0.3);
}
.rv-expert-card .rv-eyebrow { margin-bottom: 8px; }
.rv-expert-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.rv-role {
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.rv-expert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rv-expert-list li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.rv-expert-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ── FAQ (#sss) ──────────────────────────────────────────────────── */
#sss { background: var(--cream); }

.rv-faq {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rv-faq-item {
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.2s;
  overflow: hidden;
}
.rv-faq-item[open] { border-color: rgba(217,80,59,0.25); }

.rv-faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  line-height: 1.3;
}
.rv-faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
}
.rv-faq-item[open] summary::after { content: '−'; }
.rv-faq-body {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ── TESTIMONIALS (#yorumlar) ────────────────────────────────────── */
#yorumlar,
.rv-section#yorumlar { background: var(--sage-wash); }

#testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  #testimonialsGrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  #testimonialsGrid { grid-template-columns: 1fr; }
}

.rv-testimonial-card, .testimonial-card {
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid transparent;
  padding: 32px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.rv-testimonial-card:hover, .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28,20,16,0.08);
}
.t-stars, .testimonial-stars {
  font-size: 15px;
  color: var(--amber);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.t-text, .testimonial-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.t-meta, .testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar, .testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-name, .testimonial-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.t-role, .testimonial-role  { font-size: 12px; color: var(--muted); }

/* ── BOOKING (#randevu) ──────────────────────────────────────────── */
#randevu { background: var(--coral) !important; }
#randevu .rv-head { display: none; } /* head inside .rv-book div instead */

.rv-book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .rv-book { grid-template-columns: 1fr; gap: 40px; }
}

.rv-book > div:first-child .rv-eyebrow { color: rgba(255,255,255,0.55); }
.rv-book > div:first-child .rv-h2 { color: #fff; }
.rv-book > div:first-child .rv-h2 em { color: rgba(255,255,255,0.7); }
.rv-book > div:first-child .rv-lede { color: rgba(255,255,255,0.75); }

.rv-book-form {
  background: rgba(254,247,232,0.1);
  border: 1px solid rgba(254,247,232,0.18);
  border-radius: var(--r);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(8px);
}
.rv-book-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(254,247,232,0.6);
}
.rv-book-form input,
.rv-book-form select,
.rv-book-form textarea {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(254,247,232,0.18);
  background: rgba(254,247,232,0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.rv-book-form input::placeholder,
.rv-book-form textarea::placeholder { color: rgba(254,247,232,0.3); }
.rv-book-form input:focus,
.rv-book-form select:focus,
.rv-book-form textarea:focus { border-color: rgba(254,247,232,0.5); }
.rv-book-form select option { background: var(--cream); color: var(--ink); }
.rv-book-form textarea { resize: vertical; min-height: 100px; }
.rv-book-form .rv-btn-solid {
  background: #fff;
  color: var(--coral);
  border-color: #fff;
  font-weight: 700;
  padding: 15px;
}
.rv-book-form .rv-btn-solid:hover {
  background: var(--cream-2);
  transform: translateY(-2px);
}

/* ── INFO LINKS (#bilgi-merkezi) ─────────────────────────────────── */
#bilgi-merkezi { background: var(--cream); }

.rv-links {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.rv-links a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s;
}
.rv-links a:first-child { border-top: 1px solid var(--line); }
.rv-links a:hover { padding-left: 10px; }
.rv-links a > span:first-child {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: rgba(28,20,16,0.1);
  width: 40px;
  flex-shrink: 0;
  line-height: 1;
}
.rv-links a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.rv-links a > span:last-child > small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.rv-links a::after {
  content: '→';
  color: var(--coral);
  font-size: 18px;
  margin-left: auto;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.rv-links a:hover::after { transform: translateX(4px); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(254,247,232,0.65);
}
.footer-inner {
  width: var(--shell);
  margin-inline: auto;
  padding-block: 64px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(254,247,232,0.1);
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand .logo { color: var(--cream); margin-bottom: 16px; margin-right: 0; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(254,247,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(254,247,232,0.45);
  transition: all 0.15s;
}
.footer-social:hover { border-color: rgba(254,247,232,0.35); color: var(--cream); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(254,247,232,0.45);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: rgba(254,247,232,0.28);
}
.footer-admin-link { opacity: 0.3; font-size: 11px; transition: opacity 0.15s; }
.footer-admin-link:hover { opacity: 0.65; }

/* ── FLOATING UI ─────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-pill);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.rv-sticky-cta {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s;
}
.rv-sticky-cta.visible { opacity: 1; pointer-events: auto; transform: none; }
.rv-sticky-cta .rv-btn { box-shadow: 0 4px 20px rgba(28,20,16,0.25); }

/* ── CART ─────────────────────────────────────────────────────────── */
.cart-notification {
  position: fixed;
  top: 80px; right: 24px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(28,20,16,0.2);
}
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(28,20,16,0.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--cream);
  z-index: 151;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-header h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; }
.cart-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.cart-drawer-close:hover { background: rgba(28,20,16,0.12); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-drawer-footer { padding: 24px; border-top: 1px solid var(--line); }

/* ── COOKIE BANNER ───────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 420px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r);
  padding: 24px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(28,20,16,0.3);
}
.cookie-banner.show { opacity: 1; pointer-events: auto; transform: none; }
.cookie-banner h4 { font-family: var(--serif); font-size: 17px; color: var(--cream); margin-bottom: 10px; }
.cookie-banner p { font-size: 13px; color: rgba(254,247,232,0.6); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner a { color: var(--amber); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
}
.cookie-btn-accept { background: var(--cream); color: var(--ink); }
.cookie-btn-accept:hover { background: var(--cream-2); }
.cookie-btn-reject { background: transparent; border: 1px solid rgba(254,247,232,0.25); color: rgba(254,247,232,0.65); }
.cookie-btn-reject:hover { border-color: rgba(254,247,232,0.5); color: var(--cream); }
.cookie-btn-customize { background: transparent; border: 1px solid rgba(254,247,232,0.25); color: rgba(254,247,232,0.65); }
.cookie-btn-customize:hover { border-color: rgba(254,247,232,0.5); color: var(--cream); }
.cookie-prefs { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(254,247,232,0.1); display: none; }
.cookie-prefs.show { display: block; }
.cookie-pref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  font-size: 13px;
  color: rgba(254,247,232,0.7);
}
.cookie-pref-row label { display: flex; gap: 8px; align-items: center; cursor: pointer; }

/* ── TOAST ───────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  top: 80px; right: 24px;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(28,20,16,0.25);
  animation: toastIn 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}
.toast.success .toast-icon { color: #3DAA60; }
.toast.error   .toast-icon { color: #E85555; }
.toast-close {
  margin-left: auto;
  background: none; border: none;
  color: rgba(254,247,232,0.4);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 0 0 8px;
  line-height: 1;
}
@keyframes toastIn  { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: none; } }
@keyframes toastOut { to   { opacity:0; transform: translateX(20px); } }

/* ── SPINNER ─────────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(254,247,232,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal, .wow-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible, .reveal.visible,
.wow-hidden.visible, .wow-hidden.is-visible { opacity: 1; transform: none; }

/* SVG sprite hidden */
svg[aria-hidden="true"][style*="display:none"],
.rv-sprite { display: none; position: absolute; width: 0; height: 0; overflow: hidden; }

/* ── HIDDEN UTILITY ──────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── LOGO in footer (dark bg) ────────────────────────────────────── */
footer .logo { color: var(--cream); }
footer .logo-text { color: var(--cream); }

/* ── NAV INNER (actual class in HTML) ───────────────────────────── */
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  position: relative;
}

/* Lang switcher (li element in nav) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
}
.lang-btn {
  padding: 4px 8px;
  border-radius: var(--r-pill);
  color: var(--muted);
  transition: color 0.15s;
}
.lang-btn.active { color: var(--ink); }
.lang-btn:hover  { color: var(--ink); }
.lang-divider    { color: var(--line-mid); font-size: 10px; }

/* Cart toggle (actual HTML class) */
.cart-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line-mid);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s;
  margin-left: 8px;
}
.cart-toggle:hover { border-color: var(--ink); }
.cart-badge {
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.15s;
}
.mobile-toggle:hover { background: var(--line); }
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.2s;
}
@media (max-width: 900px) { .mobile-toggle { display: flex; } }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* Decorative layers (hidden in new design) */
.aurora-layer, .grain-overlay { display: none; }

/* Scroll progress uses id selector above, but also has class */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--coral);
  z-index: 200;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* rv-main (main wrapper) */
.rv-main { padding-top: 0; }

/* Nav secondary item — same as others */
.nav-secondary { }

/* Hero section (paragraph inside rv-hero > div) */
.rv-hero > .rv-shell > .rv-hero-grid > div > p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 40px;
}

/* ── REPORT SECTION BUTTONS ──────────────────────────────────────── */
#ornek-rapor .rv-btn-solid {
  background: var(--sage);
  border-color: var(--sage);
}
#ornek-rapor .rv-btn-solid:hover {
  background: var(--ink);
  border-color: var(--ink);
}

/* ── EXPERT SECTION — plain background ──────────────────────────── */
.rv-section:has(.rv-expert) { background: var(--amber-wash); }

/* ── HEADING COLORS ON CORAL/DARK ────────────────────────────────── */
#randevu .rv-h2, #nasil .rv-h2 { color: #fff; }
#randevu .rv-eyebrow { color: rgba(255,255,255,0.5); }

/* ── ENSURE section #randevu overrides base .rv-section ─────────── */
.rv-section#randevu { background: var(--coral); }
.rv-section#nasil   { background: var(--ink); }

/* FAQ background override (rv-paper-2 is sage-wash but FAQ needs cream) */
#sss.rv-paper-2 { background: var(--cream) !important; }

/* randevu has no .rv-head so remove hide rule */
/* The text/form layout is inside .rv-book which is already a 2-col grid */

/* Kit3d float right inside rv-head (process section) */
#nasil .rv-head {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
#nasil .rv-head > span { grid-column: 1; }
#nasil .rv-head > div  { grid-column: 2; }
#nasil .rv-head .kit3d { grid-column: 3; grid-row: 1; }
@media (max-width: 768px) {
  #nasil .rv-head { grid-template-columns: 1fr; }
  #nasil .rv-head .kit3d { grid-column: 1; grid-row: auto; justify-content: flex-start; }
}

/* ── EXPERT section via :has (color background) ──────────────────── */
/* :has might not work in all browsers, use more robust targeting */
/* Expert section is after #ornek-rapor and before #sss */
#sss ~ * { }
/* Fallback: target via adjacent sibling pattern in HTML order: */
/* #ornek-rapor + section = expert section */
#ornek-rapor + .rv-section { background: var(--amber-wash); }

/* ── RANDEVU: remove hidden rv-head rule (there's no rv-head there) */

/* ── HERO paragraph outside .rv-lede ────────────────────────────── */
.rv-hero p:not(.rv-lede) {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 540px;
}

/* ================================================================
   CONTENT PAGES — bilgi-merkezi, sss, kvkk, yasal, lokasyon, vb.
   (eskiden style.css + polish-fixes.css yüklüyordu bu sayfalar)
   ================================================================ */

/* Backward-compat CSS değişkenleri (eski inline stilleri destekler) */
:root {
  --sand:   #F5EBD0;
  --slate:  #6B7A8D;
  --olive:  #2D6B45;
  --gold:   #C98B1F;
  --white:  #FFFFFF;
  --dark:   #1C1410;
  --pink:   #FCB8B8;
  --green:  #9EC480;
  --gray:   #9A8B7E;
}

/* Content page wrapper */
.content-page {
  padding-top: 80px;
  min-height: 60vh;
}
.content-inner {
  width: min(760px, 100% - 48px);
  margin-inline: auto;
  padding-block: 64px;
}

/* Content typography */
.content-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.content-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.content-lead {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 620px;
}
.content-inner h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.content-inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.content-inner p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.content-inner p a {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(217,80,59,0.35);
  text-underline-offset: 2px;
}
.content-inner p a:hover { text-decoration-color: var(--coral); }
.content-inner ul, .content-inner ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.content-inner li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 8px;
}

/* Feature callout box */
.knowledge-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--coral-wash);
  border: 1px solid rgba(217,80,59,0.15);
  border-radius: var(--r);
  padding: 28px 32px;
  margin: 36px 0;
}
.knowledge-feature > div span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.knowledge-feature > div h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.knowledge-feature > div p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}
.knowledge-feature > a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.18s;
}
.knowledge-feature > a:hover { background: var(--coral-deep); }
@media (max-width: 600px) {
  .knowledge-feature { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Article card grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 36px 0;
}
.article-card {
  background: var(--cream-2);
  border-radius: var(--r);
  padding: 22px;
  border: 1px solid var(--line-mid);
}
.article-card span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.article-card h2 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.article-card p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}

/* Content links list */
.content-links-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}
.content-links-list li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.content-links-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: padding-left 0.2s;
}
.content-links-list a::after {
  content: '→';
  color: var(--coral);
  flex-shrink: 0;
}
.content-links-list a:hover { padding-left: 6px; color: var(--coral); }

/* SSS page FAQ */
.pd-mini-faq { margin: 36px 0; }
.pd-mini-faq-inner h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
}
.pd-mini-faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.pd-mini-faq details:first-of-type { border-top: 1px solid var(--line); }
.pd-mini-faq summary {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.pd-mini-faq summary::-webkit-details-marker { display: none; }
.pd-mini-faq summary::after {
  content: '+';
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.pd-mini-faq details[open] summary::after { content: '−'; }
.pd-mini-faq details > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  padding: 0 0 16px;
  margin: 0;
}

/* rv-page-head (used in iletisim, hakkimizda etc.) */
.rv-page-head {
  padding: 80px 0 48px;
  background: var(--cream);
}
.rv-page-head .rv-eyebrow { margin-bottom: 12px; }
.rv-page-head h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.rv-page-head h1 em { color: var(--coral); font-style: italic; }
.rv-page-head p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-2);
  max-width: 480px;
  line-height: 1.65;
}

/* Contact section (iletisim) */
.rv-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-block: 56px;
}
@media (max-width: 768px) { .rv-contact { grid-template-columns: 1fr; } }
.rv-contact-info { display: flex; flex-direction: column; gap: 0; }
.rv-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.rv-contact-row:first-child { border-top: 1px solid var(--line); }
.rv-contact-row > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.rv-contact-row > strong {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.rv-contact-row > strong a { color: var(--ink); }
.rv-contact-row > strong a:hover { color: var(--coral); }

/* Booking form */
.rv-book-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rv-book-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.rv-book-form input,
.rv-book-form select,
.rv-book-form textarea {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.18s;
  letter-spacing: 0;
  text-transform: none;
}
.rv-book-form input:focus,
.rv-book-form select:focus,
.rv-book-form textarea:focus { border-color: var(--ink); }
.rv-book-form textarea { min-height: 100px; resize: vertical; }

/* rv-main (used on sub-pages like iletisim, hakkimizda) */
.rv-main { padding-top: 80px; }

/* Package detail pages: pd-* class corrections */
.pd-hero { padding-top: 80px; }

/* Legal/policy pages */
.content-inner strong { font-weight: 700; color: var(--ink); }
.content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.content-inner th {
  background: var(--cream-2);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--line-mid);
}
.content-inner td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: top;
}
