/* Genel sayfa stili */
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f7fb;
  color: #123047; /* koyu lacivert */
}

/* Ortada kart görünümü */
.main-wrapper {
  max-width: 960px;
  margin: 32px auto;
  padding: 0 16px;
}

/* Giriş ve test kartları */
#intro-screen,
#test-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(4, 40, 70, 0.08);
}

/* Başlıklar */
.intro-title,
#test-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #05435f; /* OANDA turkuazı */
  margin-bottom: 4px;
}

.intro-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7a8f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Başlık satırı (İfade + 1./2./3. Tercih) */
.question-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  column-gap: 8px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* İfade sütunu sola */
.question-header .col-text {
  text-align: left;
}

/* 1. / 2. / 3. Tercih başlıkları ortada */
.question-header .col-pref {
  text-align: center;
}

/* Seçenek satırları (metin + 3 radio) */
.options {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  column-gap: 8px;
  row-gap: 8px;
  align-items: center;
}

/* Radio butonları kendi kolonunda ortala */
.options input[type="radio"] {
  justify-self: center;
}


/* Metin */
.intro-text,
.question > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #243447;
}

/* Bilgilendirme onay satırı */
.intro-consent-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

/* Form alanları */
.intro-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.intro-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.intro-field label {
  font-weight: 500;
  color: #41516b;
}

.intro-field input[type="text"],
.intro-field input[type="email"] {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d3d9e4;
  font-size: 0.9rem;
}

.intro-field input:focus {
  outline: none;
  border-color: #05435f;
  box-shadow: 0 0 0 2px rgba(5, 67, 95, 0.15);
}

/* Butonlar */
.btn-primary {
  background: #05435f;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.btn-primary:disabled {
  background: #a6b4c4;
  cursor: not-allowed;
}

.btn-primary:hover:not(:disabled) {
  background: #076f8a;
}

/* Navigasyon (Önceki / Sonraki / Gönder) */
#navigation {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
}

#prev-btn {
  background: #e5ebf4;
  color: #123047;
}

#next-btn {
  background: #05435f;
  color: #ffffff;
}

#submit-btn {
  background: #d77e5e; /* OANDA turuncu */
  color: #ffffff;
}

/* Soru kartı */
.question {
  margin-top: 16px;
}

.question > p {
  font-weight: 500;
  margin-bottom: 12px;
}

/* Sonuç kutusu */
#result {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #e9f7fb;
  color: #05435f;
  font-weight: 500;
}

/* Küçük ekran uyumu */
@media (max-width: 768px) {
  #intro-screen,
  #test-section {
    padding: 18px 16px;
  }

  .question-header,
  .options {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr !important;
  }
}

/* Üst başlık */
header {
  background-color: #004aad;
  color: #ffffff;
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 700;
}

/* Ana alan */
main {
  max-width: 1000px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

/* GİRİŞ KARTI */
.intro-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 32px 32px;
  box-shadow: 0 10px 30px rgba(0, 40, 90, 0.12);
  border-top: 6px solid #004aad;
  margin-bottom: 24px;
}

.intro-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.intro-logo {
  height: 64px;
  width: auto;
}

.intro-title {
  margin: 0;
  font-size: 22px;
  color: #004aad;
  letter-spacing: 0.03em;
}

.intro-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-text {
  font-size: 14px;
  color: #374151;
  margin: 8px 0;
  line-height: 1.5;
}

.intro-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 20px;
  font-weight: 500;
  color: #111827;
}

.intro-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00a5b5;
}

.intro-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.intro-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 4px;
}

.intro-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.intro-field input:focus {
  border-color: #00a5b5;
  box-shadow: 0 0 0 3px rgba(0, 165, 181, 0.2);
}

/* BUTON */
.primary-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #004aad, #00a5b5);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.15s ease;
}

.primary-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 80, 160, 0.3);
}

.primary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* TEST BÖLÜMÜ */
#test-section {
  display: none;              /* başlangıçta kapalı */
  margin-top: 8px;
}

.question {
  background-color: #ffffff;
  padding: 18px 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.question p {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}

/* tablo benzeri görünüm */
.options {
  font-size: 14px;
}

#navigation {
  display: none;              /* başlangıçta gizli */
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

#navigation button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #1f2933;
  cursor: pointer;
  font-size: 14px;
}

#navigation button:hover {
  background-color: #e5f1ff;
  border-color: #004aad;
}

#result {
  display: none;              /* sonuç çıkınca açacağız */
  text-align: center;
  font-size: 18px;
  margin-top: 24px;
  font-weight: 700;
  color: #004aad;
}

/* footer */
footer {
  text-align: center;
  padding: 16px 0 24px;
  background-color: #e5e7eb;
  font-size: 13px;
  color: #4b5563;
}


#enneagram-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto 24px;
}

.enneagram-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ennea-label {
  position: absolute;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 500;
  color: #333;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

#result {
  margin-top: 32px;
}

/* Enneagram görsel alanı */
#enneagram-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto 24px;
}

.enneagram-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Tip etiketleri */
.ennea-label {
  position: absolute;
  font-size: 12px;
  background: #ffffff;
  padding: 3px 6px;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.score-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  font-size: 16px;
  line-height: 1.6;
}

.score-list li {
  margin: 4px 0;
  background: #ffffffcc;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  display: inline-block;
}

/* Progress bar */
.progress-wrap{
  margin: 8px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4f7fb;
  border: 1px solid #dbe3ef;
}

.progress-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #05435F;
  margin-bottom: 8px;
}

.progress-bar{
  width: 100%;
  height: 10px;
  background: #ffffff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.progress-fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, #004aad, #00a5b5);
  border-radius: 999px;
  transition: width 220ms ease;
}


/* --- Footer (iyzico gereksinimleri) --- */
.site-footer{
  margin-top: 18px;
  background: #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px 14px;
  text-align: center;
}
.footer-brand{
  font-weight: 700;
  color: #123047;
  margin-bottom: 4px;
}
.footer-text{
  font-size: 13px;
  color: #374151;
  margin-bottom: 10px;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  margin: 10px 0 8px;
}
.footer-links a{
  font-size: 13px;
  color: #0b3a67;
  text-decoration: underline;
}
.footer-contact{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  font-size: 13px;
  color: #374151;
  margin: 6px 0 10px;
}
.footer-contact a{ color: #0b3a67; }
.footer-payment{
  display: grid;
  place-items: center;
  gap: 6px;
  margin: 10px 0 10px;
}
.footer-payment img{
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer-small{
  font-size: 12px;
  color: #4b5563;
}

/* --- Landing page --- */
.landing-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-top: 14px;
}
.landing-block{
  background: rgba(244,247,251,0.7);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
}
.landing-h2{
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #123047;
}
.landing-steps{
  margin: 0 0 10px 18px;
  padding: 0;
  color: #123047;
}
.landing-note{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: #374151;
  margin: 10px 0 12px;
}
.landing-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.btn-primary, .btn-secondary{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.btn-primary{
  background: #7fa9d6;
  color: white;
}
.btn-secondary{
  background: white;
  color: #123047;
  border: 1px solid #cbd5e1;
}
.payment-band{
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
}
.payment-band img{
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.landing-muted{
  font-size: 13px;
  color: #4b5563;
  margin: 10px 0 0;
}
.landing-bullets{
  margin: 0 0 10px 18px;
  padding: 0;
  color: #123047;
}
.legal-content{font-size:14px;line-height:1.6;color:#123047;}
.legal-content h2{font-size:16px;margin-top:18px;}
.legal-content ul{margin-left:18px;}

@media (max-width: 860px){
  .landing-grid{ grid-template-columns: 1fr; }
}


/* Landing CTA helpers */
.btn-link{
  display:inline-block;
  margin-top:10px;
  font-weight:600;
  text-decoration:underline;
  color: inherit;
  opacity: .9;
}
.btn-primary[aria-disabled="true"]{
  opacity: .55;
  pointer-events: none;
  cursor: not-allowed;
}

.social-links {
  display: flex;
  justify-content: center;   /* ← ORTALAR */
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a6cff; /* OANDA mavisi */
  font-size: 16px;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: #0a6cff;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobilde başlık taşmasını düzelt */
@media (max-width: 640px) {
  .landing-title,
  h1.landing-title,
  .page-title {
    width: 100%;
    text-align: center;
    font-size: 10px;
    line-height: 1.15;
    margin: 8px 0 0;

    white-space: normal;
    overflow-wrap: normal;          /* ✅ harf harf kırma yok */
    word-break: keep-all;           /* ✅ kelimeyi bölme */
    hyphens: none;

    writing-mode: horizontal-tb !important; /* ✅ dikey yazıyı engelle */
    transform: none !important;              /* ✅ rotate vb. varsa iptal */
  }
}

/* Mobilde üst alanı tek kolona düşür + başlığı sola hizala */
@media (max-width: 640px) {
  /* Üstte logo + başlık yan yana duruyorsa (flex/grid) tek kolona düşür */
  .landing-header,
  .landing-top,
  .intro-header,
  .hero,
  .intro-card.landing-card {
    display: block !important;
  }

  /* Başlığı sola yasla ve normal genişlikte göster */
  .landing-title,
  h1.landing-title,
  .page-title {
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 0 !important;
    font-size: 26px;
    line-height: 1.15;
  }

  /* Eğer başlık hala dar bir sağ kutuda kalıyorsa bu kutuyu tam genişlik yap */
  .landing-title-wrap,
  .title-wrap,
  .header-right,
  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Mobilde ana beyaz kartı genişlet */
@media (max-width: 640px) {
  .main-wrapper,
  .page-wrapper,
  .landing-wrapper {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .intro-card,
  .landing-card,
  .main-card {
    padding: 18px 16px !important;   /* iç beyaz alan büyür */
    border-radius: 14px;
  }

  /* Üst başlık alanı daha ferah olsun */
  .landing-title,
  h1.landing-title {
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .intro-card,
  .landing-card {
    max-width: 100% !important;
  }
}

/* --- Marketing intro (pre-payment) --- */
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6b7a8f;
  margin-bottom:8px;
}
.hero-subtext{
  margin: 10px 0 0;
  color:#243447;
  line-height:1.6;
  font-size: 0.95rem;
}
.hero-highlights{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hero-highlights li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#123047;
  font-size: 0.92rem;
}
.hero-highlights i{
  margin-top: 3px;
  color:#05435f;
}

.benefit-grid,
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-card{
  background: rgba(244,247,251,0.85);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}
.benefit-card .icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display:grid;
  place-items:center;
  margin-bottom: 10px;
}
.benefit-card .icon i{ color:#05435f; }
.benefit-card h3{
  margin: 0 0 6px;
  font-size: 14px;
  color:#123047;
}
.benefit-card p{
  margin: 0;
  font-size: 13px;
  color:#374151;
  line-height: 1.55;
}

.quote-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}
.quote{
  font-size: 13px;
  line-height: 1.6;
  color:#243447;
}
.who{
  margin-top: 10px;
  font-size: 12px;
  color:#6b7a8f;
  font-weight: 600;
}

@media (max-width: 860px){
  .benefit-grid,
  .testimonial-grid{ grid-template-columns: 1fr; }
}


.report-box{
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: rgba(244,247,251,0.85);
}
.report-title{
  margin: 0 0 8px;
  font-size: 18px;
  color:#123047;
}
.report-list{
  margin: 0;
  padding-left: 18px;
  color:#374151;
  font-size: 13px;
  line-height: 1.55;
}
.report-note{
  margin-top: 10px;
  font-size: 12px;
  color:#6b7a8f;
}

.hero-highlights span{
  font-weight: 400;
}
.hero-highlights strong{
  font-weight: 600; /* sadece baştaki kelimeler */
}

/* Ortak section başlıkları */
.section-title,
.report-title,
.landing-h2 {
  font-size: 18px;
  font-weight: 600;   /* bold değil, güçlü */
  color: #123047;
  margin-bottom: 10px;
}


/* =========================================================
   TYPOGRAPHY NORMALIZATION (DESKTOP 14px, MOBILE 13px)
   Paste this at the VERY END of style_v3.css
   ========================================================= */

/* 1) Global base */
body{
  font-size: 14px;
  line-height: 1.6;
  color: #243447;
}

/* 2) Body text should be consistent */
p, li, span, a, label{
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

/* 3) Section titles: Raporda neler var? / Kısa özet / Bu test sana ne kazandırır? = 18px */
.section-title,
.report-title,
.landing-h2{
  font-size: 18px !important;
  font-weight: 600;
  color: #123047;
  margin-bottom: 10px;
}

/* 4) Hero sub text + highlights */
.hero-subtext{
  font-size: 14px !important;
  line-height: 1.6;
  font-weight: 400;
}

.hero-highlights li{
  font-size: 14px !important;
  line-height: 1.55;
  font-weight: 400;
}

.hero-highlights span{
  font-weight: 400 !important; /* açıklama normal */
}

/* Sadece "Hızlı / Güvenli ödeme / Anında erişim" gibi başlık kelimeleri vurgulu kalsın */
.hero-highlights strong{
  font-weight: 600;
}

/* Eğer "Testi tamamladıktan sonra..." satırında bir strong/kalıtım yüzünden kalınlık varsa ez */
.hero-highlights li:last-child,
.hero-highlights li:last-child span{
  font-weight: 400 !important;
}

/* 5) Report box: bullets normal metin boyutunda & bold yok */
.report-box{
  font-size: 14px;
}

.report-list,
.report-list li{
  font-size: 14px !important;
  line-height: 1.55;
  font-weight: 400 !important;
  color: #374151;
}

.report-list strong{
  font-weight: 400 !important; /* bullet içinde strong varsa bile iptal */
}

.report-note{
  font-size: 13px !important; /* notlar bir tık küçük */
  color: #6b7a8f;
}

/* 6) Landing bullets + notes + muted text */
.landing-bullets li{
  font-size: 14px !important;
  line-height: 1.55;
  font-weight: 400;
}

.landing-note{
  font-size: 13px !important;
}

.landing-muted,
.footer-text,
.footer-links a,
.footer-contact,
.footer-small{
  font-size: 13px !important;
}

/* 7) Benefit cards + testimonials: same readable size */
.benefit-card h3{
  font-size: 15px !important;
  font-weight: 600;
}

.benefit-card p{
  font-size: 14px !important;
  line-height: 1.55;
  font-weight: 400;
}

.quote{
  font-size: 14px !important;
  line-height: 1.6;
  font-weight: 400;
}

.who{
  font-size: 13px !important;
}

/* =========================================================
   MOBILE SCALE: switch base text to 13px on small screens
   ========================================================= */
@media (max-width: 640px){
  body{
    font-size: 13px;
  }

  p, li, span, a, label{
    font-size: 13px !important;
  }

  .hero-subtext,
  .hero-highlights li,
  .report-list li,
  .landing-bullets li,
  .benefit-card p,
  .quote{
    font-size: 13px !important;
  }

  .landing-note,
  .landing-muted,
  .report-note,
  .who,
  .footer-text,
  .footer-links a,
  .footer-contact,
  .footer-small{
    font-size: 12px !important;
  }

  /* Başlıklar 18 kalsın (sen özellikle istedin) */
  .section-title,
  .report-title,
  .landing-h2{
    font-size: 18px !important;
  }
}

/* Hero: logo üstte, metinler altta */
.intro-header-row{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* Logo boyutu (hero) */
.intro-logo{
  width: 150px;      /* büyüt */
  max-width: 45vw;   /* mobilde taşmayı engelle */
  height: auto;
  margin-bottom: 6px;
}

@media (max-width: 640px){
  .intro-logo{
    width: 170px;    /* mobilde biraz daha büyük */
    max-width: 60vw;
  }
}

/* Hero highlights: ikon + metin hizalama fix */
.hero-highlights li{
  display: flex;
  align-items: flex-start;  /* çok satırlı metinlerde düzgün hizalar */
  gap: 10px;
}

.hero-highlights i{
  width: 18px;              /* ikonların hepsi aynı genişlikte olsun */
  flex: 0 0 18px;
  margin-top: 3px;          /* optik hizalama */
}

.hero-highlights span{
  flex: 1;
  min-width: 0;
}

/* HERO HIGHLIGHTS – ikon ve metni birlikte taşı */
.hero-highlights{
  display: flex;
  flex-direction: column;
  align-items: center;   /* SATIRLARI ORTALA */
  gap: 8px;
  padding: 0;
  margin: 16px auto 0;
}

/* Her satır: ikon + metin tek blok */
.hero-highlights li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 420px;      /* satır genişliği */
  text-align: left;      /* metin okunur kalsın */
}

/* İkonlar */
.hero-highlights i{
  width: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
}

/* Metin */
.hero-highlights span{
  display: block;
  flex: 1;
}

/* HERO: genel hizalamayı sola çek */
.intro-header-row{
  align-items: flex-start !important;
  text-align: left !important;
}

/* Logo sola otursun (istersen ortada kalsın dersen söyle) */
.intro-logo{
  margin-left: 0;
  margin-right: 0;
}

/* Highlights: tamamen sola hizalı ve düzgün ikon indent */
.hero-highlights{
  align-items: flex-start !important;
  margin-left: 0;
  margin-right: 0;
}

.hero-highlights li{
  max-width: 520px;       /* daha doğal */
  text-align: left;
}

.hero-kickerline{
  margin: 10px 0 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #243447;
}

.hero-kickerline span{
  font-weight: 600; /* sadece “Cevabı Enneagram’da gör.” vurgulu */
}

@media (max-width: 640px){
  .hero-kickerline{
    font-size: 15px;
  }
}

/* HERO TITLE – daha rahat okuma */
.landing-title{
  line-height: 1.3;   /* varsayılan genelde 1.1–1.15 olur */
  margin-bottom: 12px;
}

/* HERO SUBHEADING = small H1 */
.hero-kickerline{
  margin: 8px 0 16px;
  font-size: 20px;        /* H1'den küçük ama güçlü */
  line-height: 1.3;
  font-weight: 700;       /* BOLD */
  color: #0f2a44;         /* H1 ile aynı ton */
}

/* Satırlar arası görsel uyum */
.hero-kickerline br{
  content: "";
}

/* Mobil ayarı */
@media (max-width: 640px){
  .hero-kickerline{
    font-size: 17px;
    line-height: 1.35;
  }
}

.hero-kickerline{
  letter-spacing: -0.01em;
}

.hero-kicker{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7a8f;
  margin-bottom: 8px;
}

.hero-kicker-muted{
  color: #9aa7b8;
  font-weight: 500;
}
/* Hero kicker: tek tip görünüm */
.hero-kicker{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7a8f;
  margin-bottom: 8px;
}

/* Artık muted değil – ana metinle AYNI */
.hero-kicker-muted{
  color: inherit;
  font-weight: inherit;
}

/* HERO EYEBROW – soft, tek parça, premium */
.hero-kicker{
  font-size: 12px;
  font-weight: 600;          /* hafif bold */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8794;            /* soft gri */
  margin-bottom: 8px;
}

/* Span artık AYNI metnin parçası */
.hero-kicker-muted{
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}
/* HERO EYEBROW – soft, tek parça, premium */
.hero-kicker{
  font-size: 12px;
  font-weight: 600;          /* hafif bold */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8794;            /* soft gri */
  margin-bottom: 8px;
}

/* Span artık AYNI metnin parçası */
.hero-kicker-muted{
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}
.enneagram-slider {
  margin: 48px auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider-track {
  display: flex;
  gap: 24px;
  padding: 8px 4px;
}

.slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Desktop’ta daha dar kartlar */
@media (min-width: 1024px) {
  .slide {
    flex: 0 0 60%;
  }
}
.enneagram-intro {
  margin: 56px auto;
  text-align: center;
}

.enneagram-title {
  margin-bottom: 20px;
}

.enneagram-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel-window {
  max-width: 900px;
  width: 100%;
}

.carousel-window img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.nav-btn {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #888;
  padding: 8px 12px;
}

.nav-btn:hover {
  color: #000;
}

.carousel-counter {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
}
/* --- Feedback / Yorum Formu --- */
.feedback-form{
  margin-top: 14px;
  max-width: 520px;
  display: grid;
  gap: 12px;
}

.feedback-field{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feedback-field label{
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.feedback-field input,
.feedback-field textarea{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dbe3ef;
  font-family: inherit;
  font-size: 14px;
}

.feedback-row{
  display: grid;
  gap: 8px;
}

.feedback-check{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #243447;
}

.feedback-preview{
  font-size: 13px;
  color: #6b7a8f;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
}

.feedback-field input:focus,
.feedback-field textarea:focus{
  outline: none;
  border-color: #05435f;
  box-shadow: 0 0 0 2px rgba(5,67,95,0.15);
}
/* --- Testimonials Slider --- */
.t-slider{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:12px;
}

.t-card{
  flex:1;
  border:1px solid #e5e7eb;
  border-radius:16px;
  background:#fff;
  padding:16px;
  min-height:140px;
  box-shadow:0 10px 24px rgba(4,40,70,0.08);
}

.t-quote{
  font-size:14px;
  line-height:1.65;
  color:#243447;
}

.t-who{
  margin-top:10px;
  font-size:13px;
  font-weight:600;
  color:#6b7a8f;
}

.t-meta{
  margin-top:8px;
  font-size:12px;
  color:#9aa7b8;
}

.t-nav{
  border:none;
  background:#fff;
  width:40px;
  height:40px;
  border-radius:999px;
  cursor:pointer;
  font-size:24px;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

@media (max-width: 640px){
  .t-nav{ width:36px; height:36px; }
}
.testimonials-intro {
  text-align: center;
  margin-bottom: 32px;
}

.testimonials-intro h2 {
  font-weight: 600;
}

.testimonials-intro p {
  color: #666;
  margin-top: 8px;
}
.t-empty { 
  text-align: center; 
}
.testimonials-intro{
  text-align:center;
  margin: 10px 0 18px;  /* slider’a daha iyi oturur */
}

.testimonials-intro h3{
  margin: 0 0 6px;
  font-weight: 600;
}

.testimonials-intro p{
  margin: 0;
  color: #6b7280;
  line-height: 1.4;
}

.testimonials-intro{
  text-align: left;          /* ⬅️ kritik değişiklik */
  margin: 8px 0 20px;
  max-width: 520px;          /* satırlar çok uzamasın */
}

.testimonials-intro h3{
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 1rem;           /* başlıktan küçük */
}

.testimonials-intro p{
  margin: 0;
  color: #6b7280;
  line-height: 1.45;
  font-size: 0.9rem;
}
.feedback-intro{
  margin: 8px 0 18px;
  max-width: 520px;
}

.feedback-intro p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #6b7280;
}

.feedback-intro strong{
  font-weight: 500;
  color: #111827;
}

.about-text{
  max-width: 640px;        /* ⬅️ daha geniş */
  margin: 0;               /* ⬅️ ortalama yok */
  color: #374151;          /* sayfanın ana metin rengi */
}

.about-text p{
  margin: 0 0 12px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.about-text ul{
  margin: 8px 0 0 18px;
  padding: 0;
}

.about-text li{
  margin-bottom: 6px;
}
.about-section .about-text {
  max-width: 640px;
  align-self: flex-start;
}

/* Biz kimiz? bölümünü ortalamadan çıkar, tam genişlik kullan */
.about-section{
  width: 100%;
  max-width: none;          /* varsa daraltmayı kaldır */
}

.about-section .about-text{
  width: 100%;
  max-width: none;          /* en kritik satır */
  margin: 0;                /* auto merkezlemeyi kaldır */
}

/* Eğer parent flex ile ortalıyorsa bunu kır */
.about-section{
  align-items: stretch;
}
.about-section .about-text{
  align-self: stretch;
}
.landing-h2--sub {
  margin-top: 24px;
  font-size: inherit;     /* ⬅️ ana başlıkla aynı */
  font-weight: inherit;   /* ⬅️ aynı ağırlık */
}
.belief-line {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.4;
  opacity: 0.95;
}
.info-title { margin-bottom: 14px; }
.help-list{
  margin: 10px 0 14px;
  padding-left: 18px;
}
.help-list li{
  margin: 6px 0;        /* daha sıkı */
  line-height: 1.45;
}
.help-list{ list-style: none; padding-left: 0; }
.help-list li{
  position: relative;
  padding-left: 18px;
}
.help-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
}
.belief-line{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03); /* renk vermeden premium görünür */
  border: 1px solid rgba(0,0,0,0.06);
}
.belief-line strong{
  font-size: 1.05rem;
  line-height: 1.35;
}
.conviction-sub{
  opacity: .85;
  margin-top: 6px;
}
.conviction-callout{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  font-weight: 500;
  line-height: 1.45;
}
/* 1) Expectation reset kutusu */
.expectation-box{
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 760px;
}
.expectation-box p{ margin: 0 0 6px 0; }
.expectation-box p:last-child{ margin-bottom: 0; }

.muted{ opacity: .85; }

/* 2) Problem reframe cümlesi */
.reframe-line{
  margin-top: 10px;
  padding-left: 2px;
  font-weight: 500;
  line-height: 1.45;
  max-width: 760px;
}

/* 3) Decision / permission to decide */
.decision-line{
  margin: 10px 0 8px;
  opacity: .9;
  line-height: 1.4;
  max-width: 760px;
}

.summary-payment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 32px;
  align-items: start;
}

/* Mobil */
@media (max-width: 768px) {
  .summary-payment-grid {
    grid-template-columns: 1fr;
  }
}
/* Mini Before / After – grup */
.mini-ba-group{
  display: grid;
  gap: 14px;
  margin: 18px 0 10px;
}

/* Tek tek kart */
.mini-ba-icons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-ba-icons .mini-ba-col{
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
}

.mini-ba-head{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.85;
}

.mini-ba-head i{
  font-size: 14px;
  opacity: 0.8;
}

.mini-ba-icons p{
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 640px){
  .mini-ba-icons{
    grid-template-columns: 1fr;
  }
}

.email-field,
.intro-field {
  width: 100%;
}

.email-input {
  width: 100%;
  box-sizing: border-box;
}

.email-field, .intro-field { width: 100%; }
#email { width: 100%; box-sizing: border-box; }

.price-box{
  margin: 14px 0 18px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
}
.price-label{
  font-size: 13px;
  color: #6b7280;
}
.price-value{
  font-size: 26px;
  font-weight: 700;
  color: #123047;
}
.price-note{
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

