@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=Inter:wght@400;500;600;700&display=swap');

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:         #EAE5DC;
  --c-surface:    #F4F0E8;
  --c-card:       #FFFFFF;
  --c-border:     #D4CCC0;
  --c-primary:    #6B8F71;
  --c-primary-dk: #2C4A32;
  --c-primary-lt: #8EAF94;
  --c-accent:     #D4E6D8;
  --c-circle:     #7B9B7B;
  --c-text:       #1A2B1E;
  --c-muted:      #7A7268;
  --c-white:      #FFFFFF;
  --radius:       14px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.05);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.10);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
}

/* ==============================
   NAV
============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234,229,220,.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-icon {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
  margin-right: 12px;
  filter: drop-shadow(0 2px 6px rgba(44,74,50,0.25));
  transition: filter 0.2s ease;
}
.logo:hover .logo-icon {
  filter: drop-shadow(0 3px 10px rgba(44,74,50,0.35));
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.logo-word1 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  color: #2C4A32;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-sep {
  display: none;
}
.logo-word2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: #2C4A32;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: #8EAF94;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  font-size: 15px;
}
.btn-primary {
  background: var(--c-primary-dk);
  color: var(--c-white);
  padding: 14px 28px;
}
.btn-primary:hover {
  background: var(--c-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,74,50,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  padding: 14px 20px;
  border: 1.5px solid var(--c-border);
}
.btn-ghost:hover { background: rgba(0,0,0,.04); }
.btn-secondary {
  background: var(--c-card);
  color: var(--c-text);
  padding: 13px 26px;
  border: 1.5px solid var(--c-border);
}
.btn-secondary:hover { background: var(--c-surface); }
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 17px 36px; font-size: 17px; border-radius: 12px; }

/* ==============================
   HERO
============================== */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 40px;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-right { display: none; }
}

/* Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-accent);
  color: var(--c-primary-dk);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 99px;
  margin-bottom: 28px;
  border: 1px solid #b8d4bc;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--c-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--c-text);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--c-primary);
}
.hero-subtitle {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-arrow { font-size: 16px; }

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 2px;
  display: block;
}

/* Right — decorative circle */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 480px;
}
.hero-visual-wrap {
  position: relative;
  width: 380px;
  height: 430px;
  animation: heartbeat 3.2s ease-in-out infinite;
}
.hero-circle {
  width: 340px;
  height: 340px;
  margin: 0 auto;
  background: var(--c-circle);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: 0 20px 60px rgba(107,143,113,.30);
  position: relative;
  z-index: 1;
}
.hero-woman-img {
  position: absolute;
  bottom: 10px;
  right: -10px;
  width: 180px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 6px 20px rgba(44,74,50,.18));
  transition: opacity .6s ease;
}
.hero-woman-img.fade-out { opacity: 0; }
@keyframes heartbeat {
  0%   { transform: scale(1); }
  14%  { transform: scale(1.045); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.025); }
  70%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.circle-word {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: opacity .5s ease;
}
.circle-sub {
  font-size: 15px;
  opacity: .75;
  margin-top: 6px;
  transition: opacity .5s ease;
}
.circle-word.fade-out,
.circle-sub.fade-out { opacity: 0; }

/* Tooltip cards */
.hero-tooltip {
  position: absolute;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--c-text);
  font-weight: 500;
  white-space: nowrap;
}
.hero-tooltip-top {
  top: 50px;
  left: -10px;
}
.hero-tooltip-bottom {
  bottom: 60px;
  right: -20px;
}
.tooltip-label {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 400;
  margin-bottom: 3px;
}
.tooltip-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 5px;
}
.dot-orange { background: #C4855A; }
.dot-green  { background: var(--c-primary); }

/* ==============================
   SECTIONS
============================== */
.section { padding: 80px 40px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } }
.container { max-width: 1120px; margin: 0 auto; }
.container-sm { max-width: 680px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--c-text);
}
.section-header p { color: var(--c-muted); font-size: 17px; }

/* HOW IT WORKS */
.how { background: var(--c-surface); }
.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 260px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 44px; height: 44px;
  background: var(--c-primary-dk);
  color: var(--c-white);
  font-size: 17px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--c-muted); font-size: 14px; line-height: 1.6; }
.step-arrow { font-size: 22px; color: var(--c-border); align-self: center; }
@media (max-width: 600px) { .step-arrow { display: none; } }

/* REPORT SECTIONS */
.sections-info { background: var(--c-bg); }
.report-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.rs-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.rs-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--c-primary-lt); }
.rs-card.open { border-color: var(--c-primary); box-shadow: var(--shadow); }
.rs-icon { font-size: 28px; margin-bottom: 14px; }
.rs-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.rs-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--c-primary-dk); }
.rs-card > p { color: var(--c-muted); font-size: 14px; line-height: 1.6; }
.rs-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--c-primary-dk);
  transition: transform .3s, background .2s;
  line-height: 1;
  margin-top: 2px;
}
.rs-card.open .rs-toggle { background: var(--c-primary-dk); color: white; transform: rotate(45deg); }
.rs-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.rs-card.open .rs-expand { max-height: 800px; }
.rs-expand-inner {
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  margin-top: 14px;
}
.rs-expand-inner p { color: var(--c-muted); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.rs-expand-inner p:last-child { margin-bottom: 0; }
.rs-expand-inner ul { color: var(--c-muted); font-size: 14px; line-height: 1.7; padding-left: 18px; }
.rs-expand-inner li { margin-bottom: 6px; }
.rs-expand-inner strong { color: var(--c-text); font-weight: 600; }

/* FAQ */
.faq { background: var(--c-surface); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .2s;
  cursor: pointer;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--c-primary-lt); }
.faq-item.open { border-color: var(--c-primary); }
.faq-q {
  font-weight: 700;
  font-size: 15px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-q-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--c-primary-dk);
  transition: transform .3s, background .2s;
  line-height: 1;
}
.faq-item.open .faq-q-icon { background: var(--c-primary-dk); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}
.faq-a-inner p { margin-bottom: 8px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul { padding-left: 18px; margin-top: 8px; }
.faq-a-inner li { margin-bottom: 5px; }
.faq-a-inner strong { color: var(--c-text); font-weight: 600; }

/* BLOG */
.blog-section { background: var(--c-bg); }
.container-md { max-width: 820px; }
.blog-article {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
}
.blog-article-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary-dk);
  margin: 28px 0 10px;
  letter-spacing: -0.3px;
}
.blog-article-body h3:first-child { margin-top: 0; }
.blog-article-body p { color: var(--c-muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.blog-article-body p:last-child { margin-bottom: 0; }
.blog-article-body strong { color: var(--c-text); font-weight: 600; }
.blog-article-body ul { color: var(--c-muted); font-size: 15px; line-height: 1.8; padding-left: 20px; margin-bottom: 14px; }
.blog-article-body li { margin-bottom: 6px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.blog-tag {
  background: var(--c-accent);
  color: var(--c-primary-dk);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #b8d4bc;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--c-primary-dk) 0%, #3D6B50 100%);
}
.cta-section h2 { color: var(--c-white); font-family: var(--font-serif); }
.cta-sub-text { color: rgba(255,255,255,.60); margin-bottom: 32px; font-size: 16px; }
.cta-section .btn-primary {
  background: var(--c-white);
  color: var(--c-primary-dk);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.cta-section .btn-primary:hover { background: var(--c-accent); }

/* FOOTER */
.footer {
  background: var(--c-primary-dk);
  padding: 36px 40px;
  text-align: center;
}
.footer .logo { color: var(--c-accent); }
.footer p { color: rgba(255,255,255,.45); font-size: 13px; margin-top: 8px; }
.footer-copy { font-size: 12px !important; color: rgba(255,255,255,.25) !important; margin-top: 14px !important; }

/* ==============================
   QUIZ PAGE
============================== */
.quiz-body { background: var(--c-bg); min-height: 100vh; }
.quiz-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.quiz-progress-bar {
  height: 4px;
  background: var(--c-border);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--c-primary);
  border-radius: 4px;
  transition: width .4s ease;
  width: 0%;
}
.quiz-progress-text {
  text-align: right;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 28px;
}
.quiz-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.slide-in { animation: slideIn .22s ease forwards; }

.quiz-category-badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary-dk);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
  border: 1px solid #b8d4bc;
}
.quiz-question {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
  color: var(--c-text);
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  transition: all .15s;
  font-weight: 500;
}
.quiz-option:hover {
  border-color: var(--c-primary);
  background: var(--c-accent);
  transform: translateX(4px);
}

/* -----  E-posta / ikna kartı  ----- */
.quiz-email-card { padding: 32px; }

.report-preview-mini {
  background: linear-gradient(135deg, var(--c-primary-dk) 0%, #3D6B50 100%);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
}
.rpm-scores {
  display: flex;
  gap: 16px;
  flex: 1;
}
.rpm-score-box {
  text-align: center;
  flex: 1;
}
.rpm-score-label {
  font-size: 10px;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.rpm-score-val {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.rpm-score-sub {
  font-size: 11px;
  opacity: .70;
  margin-top: 3px;
}
.rpm-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  align-self: center;
}

.email-value-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.email-value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}
.email-value-item .check {
  width: 20px; height: 20px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--c-primary-dk);
  font-weight: 700;
}
.email-value-item span { line-height: 1.4; }

.email-price-note {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.email-price-note strong { font-size: 20px; font-weight: 800; color: var(--c-primary-dk); }

.email-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.email-input {
  width: 100%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  color: var(--c-text);
  font-size: 16px;
  font-family: var(--font-sans);
  padding: 14px 18px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.email-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(107,143,113,.12);
}
.email-note { font-size: 12px; color: var(--c-muted); margin-top: 8px; }

.email-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-muted);
  flex-wrap: wrap;
}
.email-trust span { display: flex; align-items: center; gap: 4px; }

/* ==============================
   PAYMENT PAGE
============================== */
.payment-body { background: var(--c-bg); min-height: 100vh; }
.payment-wrapper {
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.payment-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cancelled-banner {
  background: #FFF0EE;
  border-bottom: 1px solid #F5C6C0;
  color: #C0392B;
  padding: 12px 20px;
  font-size: 14px;
  text-align: center;
}
.payment-header {
  padding: 36px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.payment-icon { font-size: 40px; margin-bottom: 12px; }
.payment-header h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.payment-header p { color: var(--c-muted); font-size: 14px; }
.payment-summary {
  padding: 20px 32px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
  color: var(--c-muted);
}
.summary-row-total {
  font-weight: 700;
  color: var(--c-text);
  font-size: 17px;
  border-top: 1px solid var(--c-border);
  margin-top: 4px;
  padding-top: 12px;
}
.payment-includes { padding: 18px 32px; border-bottom: 1px solid var(--c-border); }
.pi-item {
  font-size: 14px;
  color: var(--c-primary-dk);
  padding: 4px 0;
  font-weight: 500;
}
.payment-card .btn {
  margin: 20px 32px 0;
  width: calc(100% - 64px);
}
.payment-security {
  text-align: center;
  font-size: 12px;
  color: var(--c-muted);
  padding: 14px 32px;
}
.payment-legal {
  text-align: center;
  font-size: 11px;
  color: var(--c-border);
  padding: 0 32px 20px;
}

/* ==============================
   SUCCESS PAGE
============================== */
.success-body { background: var(--c-bg); min-height: 100vh; }
.success-wrapper {
  max-width: 460px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.success-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: 18px;
  padding: 48px 36px;
  box-shadow: var(--shadow);
}
.success-icon { font-size: 52px; margin-bottom: 20px; display: block; }
.success-icon.spinning { animation: spin 2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.success-card h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.success-card p { color: var(--c-muted); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.progress-dots { display: flex; justify-content: center; gap: 8px; margin: 20px 0 16px; }
.dot {
  width: 9px; height: 9px;
  background: var(--c-border);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
.dot.active { background: var(--c-primary); }
.dot:nth-child(2) { animation-delay: .3s; }
.dot:nth-child(3) { animation-delay: .6s; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.generating-steps { font-size: 13px; color: var(--c-muted); }
.success-tips { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.tip {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--c-muted);
  text-align: left;
}

/* ==============================
   DİL SEÇİCİ
============================== */
.lang-picker { position: relative; }
.lang-picker-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.5);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  padding: 7px 13px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: border-color .2s;
}
.lang-picker-btn:hover { border-color: var(--c-primary-lt); }
.lang-arrow { font-size: 10px; color: var(--c-muted); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  padding: 6px;
  z-index: 200;
  width: 200px;
  max-height: 360px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.lang-dropdown.open { display: block; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  color: var(--c-text);
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-sans);
  text-align: left;
  transition: background .15s;
}
.lang-item:hover { background: var(--c-surface); }
.lang-item.active {
  background: var(--c-accent);
  color: var(--c-primary-dk);
  font-weight: 600;
}

/* ============================================================
   MOBİL APP TASARIMI — 600px ve altı
============================================================ */
@media (max-width: 600px) {

  /* Yatay taşmayı engelle */
  html, body { overflow-x: hidden; width: 100%; }

  /* ---- NAV ---- */
  .nav-inner {
    padding: 0 16px;
    height: 56px;
  }
  .logo-icon { height: 32px; width: 32px; margin-right: 8px; }
  .logo-word1 { font-size: 18px; }
  .logo-word2 { font-size: 18px; }
  .logo-sep   { display: none; }
  .logo-tagline { display: none; }
  .lang-picker-btn {
    padding: 5px 9px;
    font-size: 12px;
    gap: 4px;
  }
  .lang-arrow { display: none; }
  .lang-dropdown { right: 0; width: 172px; max-height: 280px; }

  /* ---- HERO — tam ekran app başlangıcı ---- */
  .hero {
    padding: 28px 20px 36px;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
    min-height: auto;
  }
  .hero-right { display: none !important; }
  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: 38px;
    letter-spacing: -1.2px;
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
    line-height: 1.65;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .btn-lg {
    padding: 17px 20px;
    font-size: 16px;
    border-radius: 14px;
  }
  .btn-ghost { border-radius: 14px; }
  .hero-stats {
    gap: 0;
    justify-content: space-between;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 16px 20px;
  }
  .hero-stats .stat { text-align: center; flex: 1; position: relative; }
  .hero-stats .stat + .stat::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: var(--c-border);
  }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* ---- SECTIONS ---- */
  .section { padding: 44px 20px; }
  .container { padding: 0; }
  .container-sm { padding: 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 26px; letter-spacing: -0.5px; }
  .section-header p  { font-size: 14px; }

  /* ---- HOW IT WORKS — dikey, app-listesi gibi ---- */
  .steps {
    flex-direction: column;
    gap: 0;
  }
  .step-arrow { display: none; }
  .step {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 20px 18px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .step:first-child { border-radius: 16px 16px 0 0; border-top: 1.5px solid var(--c-border); }
  .step:last-child  { border-radius: 0 0 16px 16px; }
  .step-num {
    margin: 0;
    flex-shrink: 0;
    width: 38px; height: 38px;
    font-size: 15px;
  }
  .step-body { flex: 1; }
  .step h3 { font-size: 15px; margin-bottom: 4px; }
  .step p  { font-size: 13px; }

  /* ---- REPORT CARDS — tek sütun, app kartı ---- */
  .report-sections {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rs-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .rs-card h3  { font-size: 15px; }
  .rs-card > p { font-size: 13px; }
  .rs-icon     { font-size: 24px; margin-bottom: 10px; }
  .rs-expand-inner p,
  .rs-expand-inner ul { font-size: 13px; }

  /* ---- FAQ ---- */
  .faq-list { gap: 8px; }
  .faq-q {
    padding: 15px 16px;
    font-size: 14px;
    gap: 10px;
  }
  .faq-a-inner { padding: 0 16px 14px; padding-top: 12px; font-size: 13px; }

  /* ---- BLOG ---- */
  .blog-article { padding: 24px 20px; }
  .blog-article-body h3 { font-size: 17px; margin: 22px 0 8px; }
  .blog-article-body p, .blog-article-body ul { font-size: 14px; }

  /* ---- CTA ---- */
  .cta-section { padding: 44px 20px !important; }
  .cta-section h2 { font-size: 24px; margin-bottom: 10px; }
  .cta-sub-text   { font-size: 14px; margin-bottom: 24px; }
  .cta-section .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }

  /* ---- FOOTER ---- */
  .footer { padding: 28px 20px; }
  .footer-copy { font-size: 11px !important; }

  /* ---- QUIZ SAYFASI ---- */
  .quiz-wrapper {
    padding: 16px 12px calc(80px + env(safe-area-inset-bottom));
  }
  .quiz-card {
    padding: 22px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border: 1px solid var(--c-border);
  }
  .quiz-email-card { padding: 18px 16px; }
  .quiz-category-badge { font-size: 10px; padding: 3px 10px; margin-bottom: 14px; }
  .quiz-question {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 20px;
  }
  .quiz-options { gap: 8px; }
  .quiz-option {
    padding: 15px 14px;
    font-size: 14px;
    border-radius: 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
  }
  .quiz-option:hover { transform: none; }
  .quiz-option:active { background: var(--c-accent); border-color: var(--c-primary); }
  .quiz-progress-text { font-size: 12px; margin-bottom: 20px; }

  /* Email kartı — mobil */
  .report-preview-mini {
    padding: 16px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  .rpm-score-val { font-size: 24px; }
  .email-value-list { gap: 7px; margin-bottom: 16px; }
  .email-value-item { font-size: 13px; }
  .email-price-note { padding: 10px 14px; font-size: 13px; margin-bottom: 16px; }
  .email-price-note strong { font-size: 18px; }
  .email-input { font-size: 16px; padding: 13px 14px; }
  .email-trust { gap: 10px; font-size: 11px; margin-top: 12px; }

  /* ---- ÖDEME SAYFASI ---- */
  .payment-wrapper {
    padding: 12px 12px calc(60px + env(safe-area-inset-bottom));
  }
  .payment-card {
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
  }
  .payment-header { padding: 24px 20px 18px; }
  .payment-header h2 { font-size: 20px; }
  .payment-icon { font-size: 36px; margin-bottom: 10px; }
  .payment-summary { padding: 14px 20px; }
  .payment-includes { padding: 12px 20px; }
  .pi-item { font-size: 13px; }
  .payment-card .btn {
    margin: 14px 20px 0;
    width: calc(100% - 40px);
    padding: 16px 20px;
    font-size: 15px;
  }
  .payment-security { font-size: 11px; padding: 12px 20px; }
  .payment-legal    { font-size: 10px; padding: 0 20px 16px; }

  /* ---- BAŞARI SAYFASI ---- */
  .success-wrapper {
    padding: 32px 16px calc(60px + env(safe-area-inset-bottom));
  }
  .success-card {
    padding: 32px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
  }
  .success-icon { font-size: 44px; margin-bottom: 16px; }
  .success-card h2 { font-size: 22px; }
  .success-card p  { font-size: 14px; }
  .tip { font-size: 13px; padding: 11px 14px; }

  /* Buton genel */
  .btn { border-radius: 12px; }
  .btn-primary { padding: 14px 22px; }
  .btn-secondary { padding: 13px 20px; }
}

/* Çok küçük ekranlar (≤380px) */
@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 14px; }
  .logo-word1, .logo-word2 { font-size: 16px; }
  .logo-icon { height: 28px; width: 28px; }
}

/* ==============================
   RTL
============================== */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .hero { direction: rtl; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-buttons { flex-direction: row-reverse; }
[dir="rtl"] .step-arrow { transform: scaleX(-1); }
[dir="rtl"] .quiz-option { text-align: right; }
[dir="rtl"] .quiz-option:hover { transform: translateX(-4px); }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .summary-row { flex-direction: row-reverse; }
[dir="rtl"] .faq-item { text-align: right; }
[dir="rtl"] body { font-family: 'Tahoma', 'Arial Unicode MS', system-ui, sans-serif; }
