/* ============================================================
   Türkan Aslan — Açık Tema E-Ticaret / Tanıtım
   krem zemin · koyu metin · altın + terracotta + adaçayı vurgu
   Başlık: Open Sauce Sans · Gövde: Poppins
   ============================================================ */
@font-face { font-family:'Open Sauce Sans'; src:url(../assets/fonts/OpenSauceSans-Regular.ttf) format('truetype');  font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Open Sauce Sans'; src:url(../assets/fonts/OpenSauceSans-SemiBold.ttf) format('truetype'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Open Sauce Sans'; src:url(../assets/fonts/OpenSauceSans-Bold.ttf) format('truetype');     font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Open Sauce Sans'; src:url(../assets/fonts/OpenSauceSans-ExtraBold.ttf) format('truetype');font-weight:800; font-style:normal; font-display:swap; }
:root {
  --head: 'Open Sauce Sans', 'Poppins', system-ui, sans-serif;
  --body: 'Poppins', system-ui, sans-serif;
  --bg:        #f5f0e8;   /* krem */
  --bg-soft:   #efe7da;
  --paper:     #fffdf9;   /* kart */
  --ink:       #1c1710;   /* koyu metin */
  --ink-soft:  #6b6155;
  --gold:      #b6863b;
  --gold-deep: #8f671f;
  --terra:     #c8663f;   /* terracotta */
  --rose:      #d98a86;
  --sage:      #9db5ac;
  --line:      rgba(28,23,16,0.12);
  --line-soft: rgba(28,23,16,0.07);
  --shadow:    0 18px 50px -24px rgba(60,40,15,0.35);
  --shadow-sm: 0 8px 24px -14px rgba(60,40,15,0.30);
  --grad:      linear-gradient(100deg, #c99a4f, #c8663f 70%);
  --r:         16px;
  --maxw:      1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg); color: var(--ink); line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.serif { font-family: 'Poppins', sans-serif; }

/* tipografi */
.display { font-family: var(--head); font-weight: 600; line-height: 1.12; letter-spacing: .5px; }
h2.display { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.kicker { display: inline-block; font-size: .74rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 14px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { color: var(--ink-soft); }

/* butonlar */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-weight: 600; font-size: .94rem;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -10px rgba(200,102,63,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(200,102,63,.7); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); background: var(--paper); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ============ HEADER ============ */
.topbar { background: var(--ink); color: #f5ece0; font-size: .8rem; text-align: center; padding: 8px 16px; letter-spacing: .3px; }
.topbar b { color: #f0c88a; }
.nav { position: sticky; top: 0; z-index: 90; background: rgba(245,240,232,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }
.brand { font-family: var(--head); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: 1px; }
.brand span { color: var(--gold-deep); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: .92rem; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--gold-deep); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.cart-btn { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper); font-size: 1.2rem; transition: border-color .2s, transform .2s; }
.cart-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.cart-btn svg { width: 19px; height: 19px; color: var(--gold-deep); }
.cart-btn:hover svg { color: var(--terra); }
.cart-count { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--terra); color: #fff; border-radius: 20px; font-size: .7rem; font-weight: 700;
  display: grid; place-items: center; }
.cart-count:empty, .cart-count[data-n="0"] { display: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }

/* ============ HERO ============ */
.hero { position: relative; padding: 80px 0 40px; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero__title { font-family: var(--head); font-weight: 700; font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.08; margin: 4px 0 8px; }
.hero__sub { font-family: 'Poppins', sans-serif; font-style: italic; font-size: clamp(1.3rem,2.4vw,1.7rem); color: var(--gold-deep); margin-bottom: 18px; }
.hero__lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badge { position: relative; display: flex; justify-content: center; }
.hero__wheel { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }
.hero__glow { position: absolute; inset: 6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,182,99,.35), transparent 65%); filter: blur(18px); }
.hero__wheel-core { position: absolute; inset: 20%; z-index: 2; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(182,134,59,.5); box-shadow: var(--shadow); background: #f0dcc0; }
.hero__wheel-core img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero__ring { position: absolute; inset: 0; z-index: 3; animation: spin 100s linear infinite; }
.hero__ring span { position: absolute; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.hero__ring span img { width: 58%; height: 58%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }

/* ============ TRUST STRIP ============ */
.trust { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 34px 0; text-align: center; }
.trust__grid strong { font-family: var(--head); font-size: 1.9rem; color: var(--gold-deep); display: block; }
.trust__grid span { font-size: .84rem; color: var(--ink-soft); }

/* ============ SECTION BASE ============ */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .lead { margin-top: 12px; }

/* ============ KURSLAR (e-ticaret kartları) ============ */
.courses { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
/* tek egitim kaldiginda kart solda oksuz kalmasin */
.courses .course:only-child { grid-column: 1 / -1; max-width: 460px; margin-inline: auto; }
.course { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.courses .course:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }
.course__top { position: relative; height: 148px; display: grid; place-items: center; overflow: hidden;
  padding-top: 24px; /* rozet madalyona binmesin */
  background: linear-gradient(135deg, #f7ead4, #f3e0c6); border-bottom: 1px solid var(--line); }
.course__top::before { content: ""; position: absolute; left: 50%; top: 50%; width: 250px; height: 250px;
  translate: -50% -50%; background: url("../assets/deco-wheel.png") center/contain no-repeat; opacity: .10; }
.course__tag { position: absolute; top: 16px; right: 16px; font-size: .68rem; letter-spacing: 1px; text-transform: uppercase;
  background: var(--terra); color: #fff; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
.course__top--img { height: auto; padding-top: 0; aspect-ratio: 920 / 419; }
.course__top--img::before { display: none; }
.course__cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.course__ic { position: relative; z-index: 1; width: 64px; height: 64px; display: grid; place-items: center;
  font-size: 1.7rem; line-height: 1; color: var(--gold-deep); border-radius: 50%;
  border: 1px solid rgba(182,134,59,.45);
  background: radial-gradient(circle at 50% 34%, rgba(255,255,255,.92), rgba(247,234,212,.28));
  box-shadow: 0 8px 22px -12px rgba(143,103,31,.55); }
.course__ic::after { content: ""; position: absolute; inset: -9px; border-radius: 50%;
  border: 1px dashed rgba(182,134,59,.34); animation: courseOrbit 34s linear infinite; }
.course:hover .course__ic::after { animation-duration: 9s; }
@keyframes courseOrbit { to { rotate: 360deg; } }
.course__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.course__body h3 { font-family: var(--head); font-weight: 500; font-size: 1.2rem; margin-bottom: 8px; }
.course__body p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 16px; }
.course__feats { list-style: none; margin-bottom: 20px; display: grid; gap: 8px; }
.course__feats li { font-size: .88rem; color: var(--ink-soft); padding-left: 24px; position: relative; }
.course__feats li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.course__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--head); font-size: 1.5rem; color: var(--ink); }
.price small { display: block; font-family: 'Poppins'; font-size: .72rem; color: var(--ink-soft); text-decoration: line-through; }

/* ============ KURS İÇERİĞİ ============ */
.curriculum { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; max-width: 940px; margin: 0 auto; }
.curr-item { display: flex; gap: 14px; align-items: center; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-sm); }
.curr-item .n { font-family: var(--head); color: var(--gold-deep); border: 1px solid var(--line); border-radius: 50%;
  width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; font-size: .85rem; }

/* ============ DÖKÜMANLAR / PDF ============ */
.docs { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.doc { display: flex; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.docs .doc:hover { transform: translateY(-4px) scale(1.055); box-shadow: var(--shadow); }
.doc__cover { flex: 0 0 76px; height: 100px; border-radius: 10px; display: grid; place-items: center;
  color: #fff; font-size: 1.8rem; box-shadow: var(--shadow-sm); }
.doc__cover--1 { background: linear-gradient(160deg,#d89a4a,#a5461a); }
.doc__cover--2 { background: linear-gradient(160deg,#9db5ac,#5c7d74); }
.doc__cover--3 { background: linear-gradient(160deg,#d98a86,#a24a46); }
.doc__cover--4 { background: linear-gradient(160deg,#c99a4f,#7d5a1e); }
.doc__body { display: flex; flex-direction: column; flex: 1; }
.doc__body h3 { font-family: var(--head); font-weight: 500; font-size: 1.02rem; margin-bottom: 5px; }
.doc__body p { color: var(--ink-soft); font-size: .85rem; margin-bottom: 12px; }
.doc__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.badge-free { font-size: .72rem; font-weight: 700; letter-spacing: .5px; color: #5c7d74; background: rgba(157,181,172,.25);
  padding: 4px 10px; border-radius: 20px; }
.doc .price { font-size: 1.1rem; }

/* ============ heroyankı (Yaşam Sarmalı) ============ */
.spiral { max-width: 720px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line);
  border-radius: 22px; padding: 40px; box-shadow: var(--shadow); }
.spiral__hint { text-align: center; color: var(--gold-deep); font-family: 'Poppins', sans-serif; font-size: 1.2rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; margin-bottom: 7px; font-weight: 500; }
.field label small { color: var(--ink-soft); font-weight: 400; }
.field input { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; font-family: inherit; font-size: 1rem; color: var(--ink); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182,134,59,.15); }
.field-row { display: flex; gap: 14px; } .field-row .field { flex: 1; }
.spiral__note { text-align: center; color: var(--ink-soft); font-size: .78rem; margin-top: 12px; }
.spiral__result { text-align: center; animation: fadeUp .6s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: none; } }
.spiral__theme { font-family: var(--head); font-size: 1.6rem; margin: 6px 0 12px; }
.spiral__text { color: var(--ink-soft); margin-bottom: 20px; }
.spiral__viz { display: flex; justify-content: center; margin: 8px 0 22px; }
.spiral__viz svg { width: 260px; max-width: 78%; }
.spiral-path { fill: none; stroke: url(#sgrad); stroke-width: 2.4; stroke-linecap: round; }
.spiral-path.draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 2.2s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.echo-ring { fill: none; stroke: var(--terra); stroke-width: 1.6; }
.echo-dot { fill: var(--gold); }
.echo-label { fill: var(--ink); font-family: var(--head); font-size: 13px; text-anchor: middle; }
.pop { opacity: 0; animation: popin .5s ease forwards; }
@keyframes popin { to { opacity: 1; } }
.spiral__readings { display: grid; gap: 10px; max-width: 520px; margin: 0 auto 24px; text-align: left; }
.reading-row { display: flex; gap: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.reading-row b { color: var(--gold-deep); font-family: var(--head); }
.reading-row span { color: var(--ink-soft); font-size: .9rem; }
.spiral__more { color: var(--gold-deep); font-family: 'Poppins', sans-serif; font-style: italic; font-size: 1.2rem; margin: 4px 0 16px; }
.spiral__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ herokapı bandı ============ */
.herokapi { position: relative; background: radial-gradient(1000px 500px at 50% 0%, #241109, #08060a 70%); color: #f4ebe0;
  text-align: center; padding: 90px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.herokapi::before, .herokapi::after { content: ""; position: absolute; top: 0; bottom: 0; width: 42%;
  background: linear-gradient(90deg, rgba(255,180,90,.10), transparent); }
.herokapi::after { right: 0; transform: scaleX(-1); }
.herokapi__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.herokapi h2 { color: #fff; }
.herokapi .kicker { color: #f0c88a; }
.herokapi p { color: #d9c9b6; margin: 14px 0 28px; }
.herokapi .btn--ghost { background: transparent; color: #f0c88a; border-color: rgba(240,200,138,.4); }

/* ============ YORUMLAR ============ */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.reviews .review:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow); }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review__src { display:inline-flex; align-items:center; gap:6px; margin-bottom:12px; font-size:.68rem; letter-spacing:1.8px; text-transform:uppercase; font-weight:600; color:var(--gold-deep); text-decoration:none; }
.review__src svg { width:13px; height:13px; flex:none; }
.review__src:hover { color:var(--terra); }
.review__who { display:block; }
.review p { font-size: .92rem; color: var(--ink-soft); font-style: italic; }
.review__who { margin-top: 16px; font-weight: 600; font-size: .88rem; }

/* ============ SSS ============ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 2px 22px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 500; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.4rem; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--ink-soft); padding: 0 0 18px; font-size: .94rem; }

/* ============ İLETİŞİM ============ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; box-shadow: var(--shadow); }
.form-note { text-align: center; font-size: .88rem; margin-top: 12px; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #cdbfae; padding: 56px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 30px; margin-bottom: 36px; }
.footer__brand { font-family: var(--head); font-size: 1.5rem; color: #fff; margin-bottom: 12px; }
.footer h4 { color: #f0c88a; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer a { display: block; color: #cdbfae; font-size: .9rem; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; text-align: center; font-size: .82rem; color: #8a7d6d; }

/* ============ SEPET ÇEKMECESİ ============ */
.cart-overlay { position: fixed; inset: 0; background: rgba(28,23,16,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .3s; z-index: 100; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--bg);
  z-index: 101; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,.25); }
.cart-drawer.open { transform: none; }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { font-family: var(--head); font-size: 1.3rem; }
.cart-close { font-size: 1.6rem; color: var(--ink-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: grid; gap: 14px; align-content: start; }
.cart-empty { color: var(--ink-soft); text-align: center; padding: 40px 0; }
.cart-item { display: flex; gap: 14px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.cart-item__ic { width: 42px; height: 42px; border-radius: 8px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.2rem; flex: 0 0 42px; }
.cart-item__t { flex: 1; }
.cart-item__t b { display: block; font-size: .9rem; }
.cart-item__t span { font-size: .84rem; color: var(--gold-deep); font-weight: 600; }
.cart-item__rm { color: var(--ink-soft); font-size: 1.2rem; }
.cart-item__rm:hover { color: var(--terra); }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--head); font-size: 1.3rem; margin-bottom: 16px; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff;
  padding: 13px 24px; border-radius: 100px; font-size: .9rem; opacity: 0; visibility: hidden; transition: .3s; z-index: 120; box-shadow: var(--shadow); }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ============ REVEAL ============ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* kademeli, bulanıklıktan netleşen giriş (cosmoq tarzı) — blok değil, çocuklar animasyonlu */
[data-reveal].reveal-stagger { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(26px); filter: blur(8px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1),
              filter .8s ease;
}
.reveal-stagger.in > * { opacity: 1; transform: none; filter: blur(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .20s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .36s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .52s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .68s; }

/* hareket hassasiyeti açık kullanıcılar için animasyonları sakinleştir */
@media (prefers-reduced-motion: reduce) {
  .course__ic::after { animation: none; }
  .hk-bg, .hk-glow, .hk-shimmer, .hk-spark { animation: none; }
  .reveal-stagger > * { filter: none; transition: opacity .5s ease, transform .5s ease; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; } .hero__badge { order: -1; max-width: 340px; margin: 0 auto; }
  .courses, .reviews { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2,1fr); gap: 26px; }
  .curriculum, .docs { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { position: fixed; inset: 62px 0 auto 0; flex-direction: column; gap: 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: 8px 0; transform: translateY(-140%); transition: transform .35s; }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 14px 24px; width: 100%; }
  .nav__toggle { display: flex; }
}
@media (max-width: 560px) { .section { padding: 60px 0; } .footer__grid { grid-template-columns: 1fr; } .field-row { flex-direction: column; } }

/* ============ ÜYELİK BUTONU & MODAL ============ */
.auth-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--paper); font-size: .88rem; font-weight: 600; color: var(--ink); transition: border-color .2s, transform .2s; }
.auth-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.auth-overlay { position: fixed; inset: 0; background: rgba(28,23,16,.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .25s; z-index: 110; padding: 20px; }
.auth-overlay.open { opacity: 1; visibility: visible; }
.auth-box { position: relative; width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto; background: var(--bg); border: 1px solid var(--line);
  border-radius: 20px; padding: 30px 30px 28px; box-shadow: var(--shadow); }
.auth-brand { text-align: center; font-family: var(--head); font-weight: 600; font-size: 1.5rem; margin-bottom: 18px; }
.auth-brand span { color: var(--gold-deep); }
.auth-sub { text-align: center; color: var(--ink-soft); font-size: .92rem; margin-bottom: 20px; }
.auth-group { margin-bottom: 18px; }
.auth-group__title { font-family: var(--head); font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-deep); padding-bottom: 8px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.auth-form .field label em { color: var(--terra); font-style: normal; font-weight: 500; font-size: .82em; }
.pw { position: relative; }
.pw input { padding-right: 44px; }
.pw-eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1rem; opacity: .5; padding: 6px; }
.pw-eye:hover, .pw-eye.on { opacity: 1; }
.auth-row { display: flex; align-items: center; justify-content: space-between; margin: -4px 0 16px; }
.chk { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--ink-soft); cursor: pointer; }
.chk input { width: 16px; height: 16px; accent-color: var(--gold-deep); }
.auth-link { color: var(--gold-deep); font-weight: 600; font-size: .86rem; }
.auth-link:hover { text-decoration: underline; }
.auth-terms { max-height: 120px; overflow-y: auto; background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px; font-size: .82rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.auth-switch { text-align: center; color: var(--ink-soft); font-size: .88rem; margin-top: 16px;
  border-top: 1px solid var(--line); padding-top: 16px; }
.auth-close { position: absolute; top: 14px; right: 18px; font-size: 1.6rem; color: var(--ink-soft); }
.auth-tabs { display: flex; gap: 8px; background: var(--bg-soft); border-radius: 100px; padding: 5px; margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 10px; border-radius: 100px; font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.auth-tab.is-active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.auth-note { text-align: center; font-size: .84rem; margin-top: 10px; color: var(--terra); }

/* ============ TÜMÜNÜ GÖR / kart aksiyon ============ */
.section-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head__row .section-head { text-align: left; margin: 0; }
.course__link { color: inherit; display: block; }
.course__link:hover { color: var(--gold-deep); }
.course__actions { display: flex; gap: 8px; align-items: center; }

/* ============ KATALOG SAYFASI ============ */
.catalog-hero { padding: 60px 0 20px; text-align: center; }
.catalog-tabs { display: flex; gap: 10px; justify-content: center; margin: 26px 0 40px; flex-wrap: wrap; }
.cat-tab { padding: 10px 22px; border-radius: 100px; border: 1px solid var(--line); background: var(--paper); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.cat-tab.is-active { background: var(--grad); color: #fff; border-color: transparent; }
.catalog-group { margin-bottom: 20px; }
.catalog-group h2 { font-family: var(--head); font-size: 1.5rem; margin: 30px 0 22px; }

/* ============ DETAY SAYFASI ============ */
.detail { padding: 50px 0 80px; }
.crumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 26px; }
.crumb a:hover { color: var(--gold-deep); }
.detail__grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 44px; align-items: start; }
.detail__media { position: sticky; top: 90px; }
.detail__cover { aspect-ratio: 3/4; border-radius: 18px; display: grid; place-items: center; font-size: 5rem; color: #fff; box-shadow: var(--shadow); }
.detail__buybox { margin-top: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.detail__price { font-family: var(--head); font-size: 2.2rem; margin-bottom: 4px; }
.detail__price small { display: inline-block; font-family: 'Poppins'; font-size: 1rem; color: var(--ink-soft); text-decoration: line-through; margin-left: 8px; }
.detail__meta { display: grid; gap: 8px; margin: 16px 0; }
.detail__meta div { display: flex; justify-content: space-between; font-size: .9rem; border-bottom: 1px solid var(--line-soft); padding-bottom: 8px; }
.detail__meta span:first-child { color: var(--ink-soft); }
.detail h1 { font-family: var(--head); font-weight: 600; font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 8px; }
.detail__lead { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 26px; }
.detail__body h3 { font-family: var(--head); font-size: 1.25rem; margin: 30px 0 14px; }
.detail__body p { color: var(--ink-soft); margin-bottom: 14px; }
.detail__feats { list-style: none; display: grid; gap: 10px; }
.detail__feats li { padding-left: 26px; position: relative; }
.detail__feats li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.detail__curr { display: grid; gap: 10px; margin-top: 6px; }
.detail__curr .curr-item { box-shadow: none; }
@media (max-width: 860px) { .detail__grid { grid-template-columns: 1fr; } .detail__media { position: static; } .detail__cover { max-width: 260px; margin: 0 auto; } .section-head__row { flex-direction: column; align-items: flex-start; } }

/* ============ KAPIYI AÇ — kapı açılma geçişi ============ */
.gate-doors { position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: 0; transition: opacity .18s ease; }
.gate-doors.show { opacity: 1; }
.gate-doors__core { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0;
  background: radial-gradient(1000px 600px at 50% 45%, #2a1409, #08060a 70%); color: #f0c88a; font-size: 3rem;
  opacity: 0; transition: opacity .7s ease .2s; }
.gate-doors.open .gate-doors__core { opacity: 1; }
.gate-door { position: absolute; top: 0; bottom: 0; width: 51%; z-index: 1;
  transition: transform 1s cubic-bezier(.76,0,.24,1); box-shadow: 0 0 80px rgba(0,0,0,.6); }
.gate-door--l { left: 0; transform: translateX(0);
  background: linear-gradient(90deg, #1a0d06 0%, #3a1c0c 60%, #5a2f16 100%); }
.gate-door--r { right: 0; transform: translateX(0);
  background: linear-gradient(270deg, #1a0d06 0%, #3a1c0c 60%, #5a2f16 100%); }
.gate-doors.open .gate-door--l { transform: translateX(-100%); }
.gate-doors.open .gate-door--r { transform: translateX(100%); }
.gate-door::after { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(240,200,138,.35); }
.gate-door--l::after { right: 0; } .gate-door--r::after { left: 0; }

/* ============ DEKORATİF ÖĞELER ============ */
/* küresel altın yıldız serpiştirmesi (şeffaf bölümlerde görünür) */
.deco-stars { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.deco-stars i { position: absolute; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 6px 1px rgba(182,134,59,.45); opacity: var(--o,.4); animation: twinkle var(--d,4s) ease-in-out infinite; }
.deco-stars b { position: absolute; color: var(--gold); opacity: .45; font-style: normal;
  animation: twinkle var(--d,5s) ease-in-out infinite; }

/* başlık süslemesi — kicker'ın iki yanında yıldız */
.section-head .kicker::before, .section-head .kicker::after { content: "✦"; opacity: .55; font-size: .8em; margin: 0 9px; }

/* herokapı: galaksi yıldızları + soluk zodyak */
.herokapi { position: relative; overflow: hidden; }
.herokapi__inner { z-index: 3; }
.hk-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hk-stars i { position: absolute; border-radius: 50%; background: #fff5e2;
  box-shadow: 0 0 7px 1px rgba(255,225,170,.7); opacity: var(--o,.7); animation: twinkle var(--d,3s) ease-in-out infinite; }
.zodiac-deco { position: absolute; top: 50%; left: 50%; width: 560px; aspect-ratio: 1;
  margin-top: -280px; margin-left: -280px; z-index: 1; pointer-events: none; animation: spin 120s linear infinite; }
.zodiac-deco b { position: absolute; transform: translate(-50%,-50%); width: 38px; height: 38px; }
.herokapi .zodiac-deco b { background: rgba(240,200,138,.5); filter: drop-shadow(0 0 6px rgba(240,200,138,.35)); }
.herokapi .zodiac-deco { width: 640px; margin-top: -320px; margin-left: -320px; }

/* şeffaf bölümlere de soluk büyük zodyak çarkı (opsiyonel dekor) */
.section .zodiac-deco b { background: rgba(182,134,59,.2); }

/* ============ ARKA PLAN DEKOR GÖRSELLERİ ============ */
.deco-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }
.hero__inner { position: relative; z-index: 1; }

.deco-wheel { position: absolute; opacity: .55; animation: spin 180s linear infinite; }
.deco-wheel--hero { width: 640px; left: -190px; bottom: -180px; opacity: .45; }
.deco-wheel--yanki { width: 560px; right: -160px; top: 50%; margin-top: -280px; opacity: .5; }
.deco-const { position: absolute; opacity: .5; }
.deco-const--tr { top: 24px; right: 10px; width: 280px; }
.deco-const--bl { bottom: 20px; left: 6px; width: 260px; }
.herokapi .deco-const { opacity: .75; }
.herokapi .deco-const--tr { top: 20px; right: 24px; width: 240px; }
@media (max-width: 720px) { .deco-wheel--hero, .deco-wheel--yanki { width: 380px; } .deco-const { width: 180px; } }

/* ============ EĞİTMEN / YAZAR BLOĞU (detay) ============ */
.instructor { margin-top: 38px; display: flex; gap: 24px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.instructor__photo { width: 132px; height: 168px; object-fit: cover; object-position: center 18%;
  border-radius: 12px; flex: 0 0 132px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.instructor__label { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.instructor__info h3 { font-family: var(--head); font-size: 1.35rem; margin: 6px 0 2px; }
.instructor__role { color: var(--gold-deep); font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.instructor__bio { color: var(--ink-soft); font-size: .92rem; margin-bottom: 14px; }
.instructor__tags { display: flex; gap: 10px; flex-wrap: wrap; }
.instructor__tags span { border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 560px) { .instructor { flex-direction: column; } .instructor__photo { width: 100%; height: 240px; flex: none; } }

/* ============================================================
   GÖKYÜZÜNE GEÇİŞ — krem zeminden geceye, oradan tekrar krem'e
   (milestone marquee → herokapı sunrise → koyu Kurslar sahnesi)
   ============================================================ */

/* ---- 1) Milestone şeridi: kendi kutusu yok; krem→siyah geçişte akan büyük yazı ---- */
.milestones {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  /* hero'nun kremiden geceye tek yönlü, pürüzsüz geçiş (bant yok) */
  background: linear-gradient(180deg, #f5f0e8 0%, #4a2b16 58%, #08060a 100%);
}
.marquee {
  overflow: hidden;
  padding: 30px 0;                 /* boyuna uzayan harfler üst/alttan kesilmesin */
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 22px;
  white-space: nowrap; will-change: transform;
  animation: marquee 34s linear infinite;
}
.milestones:hover .marquee__track { animation-play-state: paused; }
/* her ifade: ince krem çerçeveli, zarif akan rozet */
.marquee__track span {
  display: inline-flex; align-items: center;
  font-family: var(--head); font-weight: 600; letter-spacing: .3px; line-height: 1;
  font-size: clamp(1.3rem, 2.8vw, 2.05rem);
  color: #f5f0e8;
  padding: 16px 34px; border-radius: 100px;
  border: 1.5px solid rgba(245,240,232,.4);
  background: rgba(245,240,232,.05);
}
.marquee__track i {
  font-style: normal; color: #e8dbc8; font-size: 1.15rem; opacity: .65;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- 2) herokapı: gerçek fotoğraf (bg-sunrise.png) — siyah gökyüzü + doğan güneş ---- */
.herokapi {
  position: relative; border: 0; overflow: hidden;
  min-height: 780px; padding: 118px 0 0; text-align: left;
  background: #030303;
}
.herokapi::before, .herokapi::after { display: none; content: none; } /* eski yan degradeler kapalı */

/* --- animasyonlu kozmik sahne (cosmoq tarzı) --- */
.hk-bg {                                   /* fotoğraf: yavaş nefes alan zoom (ken burns) */
  position: absolute; inset: 0; z-index: 0;
  background: #030303 url(../assets/bg-sunrise-new.jpg) center bottom / cover no-repeat;
  transform-origin: 50% 85%;
  animation: hkZoom 26s ease-in-out infinite alternate;
}
.hk-fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hk-glow {                                 /* ufuktaki güneş: nabız gibi parlayıp söner */
  position: absolute; left: 50%; bottom: 34%; width: 430px; height: 430px;
  transform: translate(-50%, 0);
  background: radial-gradient(circle, rgba(255,225,180,.5) 0%, rgba(255,150,60,.26) 26%, transparent 62%);
  mix-blend-mode: screen; animation: hkPulse 5.5s ease-in-out infinite;
}
.hk-shimmer {                              /* ışınların üstünde yukarı süzülen ışık dalgası */
  position: absolute; left: 0; right: 0; bottom: 20%; height: 400px;
  background: linear-gradient(180deg, transparent, rgba(255,180,90,.10) 55%, transparent);
  -webkit-mask: radial-gradient(60% 100% at 50% 100%, #000, transparent 72%);
          mask: radial-gradient(60% 100% at 50% 100%, #000, transparent 72%);
  mix-blend-mode: screen; animation: hkRise 7s ease-in-out infinite;
}
.hk-spark {                                /* parıldayan yıldızlar */
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #fff0d8; box-shadow: 0 0 8px 2px rgba(255,210,150,.8);
  opacity: 0; animation: hkTwinkle var(--d,3s) ease-in-out var(--dl,0s) infinite;
}
@keyframes hkZoom   { from { transform: scale(1); } to { transform: scale(1.09); } }
@keyframes hkPulse  { 0%,100% { opacity: .55; transform: translate(-50%,0) scale(.94); }
                      50%     { opacity: 1;   transform: translate(-50%,0) scale(1.06); } }
@keyframes hkRise   { 0%,100% { opacity: .25; transform: translateY(14px); }
                      50%     { opacity: .8;  transform: translateY(-10px); } }
@keyframes hkTwinkle{ 0%,100% { opacity: 0; transform: scale(.6); }
                      50%     { opacity: 1; transform: scale(1.3); } }
/* fotoğraf her şeyi içeriyor; JS'in eklediği yıldız/zodyak/dekor katmanlarını gizle */
.herokapi .hk-stars, .herokapi .zodiac-deco, .herokapi .deco-layer { display: none; }
.herokapi__inner { max-width: 620px; margin: 0; position: relative; z-index: 4; }
.herokapi .kicker { color: #f0a460; }
.herokapi h2 {
  color: #fff; font-weight: 400; letter-spacing: -.5px;
  font-size: clamp(2.4rem, 6.2vw, 4.4rem); line-height: 1.04;
}
.herokapi h2 b { font-weight: 800; }
.herokapi p { color: #d8ccbc; max-width: 430px; }

/* ---- 3) Kurslar & Seminerler: gerçek fotoğraf (bg-kurslar.png) + başlık görseli ---- */
.section--night {
  position: relative; overflow: hidden;
  padding-top: 82px; padding-bottom: 150px;
  background: #060403 url(../assets/bg-kurslar.png) right center / cover no-repeat;
}
/* alta doğru yumuşakça açık kreme dönüş (bir sonraki bölüme geçiş) */
.section--night::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 230px; z-index: 0;
  background: linear-gradient(180deg, transparent, #efe7da 92%);
  pointer-events: none;
}
.section--night > .container { position: relative; z-index: 1; }

/* başlık: "Kurslar & Seminerler" görseli (Open Sauce, image #6) */
.kurslar-head { text-align: center; max-width: 100%; margin: 0 auto 40px; }
/* başlık container'ı aşıp ekran genişliğine kadar açılır (2x) */
.kurslar-title {
  width: min(2080px, 96vw); max-width: none;
  margin-left: 50%; transform: translateX(-50%); margin-bottom: -4.5vw;  /* görselin alt şeffaf boşluğunu telafi et */
  filter: drop-shadow(0 12px 34px rgba(0,0,0,.5));
}
.section--night .lead { color: rgba(255,240,228,.8); font-size: 1.05rem; }
.kurslar-more { text-align: center; margin-top: 44px; }
.section--night .btn--ghost {
  background: rgba(255,255,255,.06); border-color: rgba(255,180,120,.35); color: #f6d9b8;
}
.section--night .btn--ghost:hover { border-color: #f0a460; color: #ffe8cf; }

/* kartlar: koyu panel + arkasında kızıl-turuncu akkor hale (image #10) */
.section--night .courses { position: relative; z-index: 1; }
.section--night .course {
  position: relative; z-index: 0; overflow: visible;
  border: 1px solid rgba(255,236,225,.55); border-radius: 22px;
  background: linear-gradient(158deg, #1f0b07 0%, #360f0a 55%, #230e09 100%);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.85);
}
.section--night .course::before {              /* akkor hale */
  content: ""; position: absolute; z-index: -1; inset: -20px -16px -26px -24px; border-radius: 32px;
  background:
    radial-gradient(52% 52% at 30% 40%, #ff8a1e 0%, transparent 70%),
    radial-gradient(72% 68% at 46% 56%, #e61f0a 0%, #b3160a 44%, transparent 74%);
  filter: blur(26px); opacity: .82;
}
.section--night .courses .course:hover { transform: translateY(-6px) scale(1.04); }
.section--night .courses .course:hover::before { opacity: 1; }
.section--night .course__top { background: transparent; border: 0; padding: 24px 26px 0; }
.section--night .course__ic { display: none; }
.section--night .course__tag {
  position: absolute; top: 22px; right: 22px;
  background: #fff; color: #8a2410; font-weight: 700;
}
.section--night .course__body { padding: 12px 26px 24px; }
.section--night .course__body h3,
.section--night .course__body h3 a { color: #fff; font-weight: 800; font-size: 1.5rem; line-height: 1.1; }
.section--night .course__body p { color: rgba(255,236,226,.8); }
.section--night .course__feats li { color: rgba(255,236,224,.85); }
.section--night .course__feats li::before { content: "•"; color: #ffcf8f; font-size: 1.2rem; top: -3px; }
/* fiyat kutusu: kartın altında koyu iç panel (image #9) */
.section--night .course__foot {
  flex-wrap: wrap; row-gap: 12px;
  background: rgba(8,4,3,.55); border: 1px solid rgba(255,190,140,.22); border-radius: 16px;
  padding: 16px 18px; margin-top: 20px; backdrop-filter: blur(2px);
}
.section--night .price { color: #fff; font-weight: 800; }
.section--night .price small { color: #ff6a4a; }
.section--night .course__actions { gap: 10px; }
.section--night .course__actions .btn--ghost { background: #fff; color: #1c1710; border-color: #fff; }
.section--night .course__actions .btn--ghost:hover { background: #ffedd8; color: #8a2410; }

@media (max-width: 940px) {
  .herokapi { min-height: 560px; padding-top: 88px; }
  .section--night { background-position: 72% center; padding-bottom: 120px; }
}

/* ============================================================
   BAŞAR-REFERANS İSKELETİ — yeni bölümler (marka paletiyle)
   nav CTA · dropdown · hizmet kartları · yöntem · danışmanlık · bülten
   ============================================================ */

/* --- Nav: Randevu Al CTA + Akademi dropdown --- */
.nav__cta { white-space: nowrap; }
.has-dropdown { position: relative; }
.dropdown__toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  font-size: .92rem; color: var(--ink-soft); transition: color .2s; }
.dropdown__toggle:hover { color: var(--gold-deep); }
.dropdown__toggle i { font-size: .65rem; transition: transform .25s; }
.has-dropdown:hover .dropdown__toggle i { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 100; }
.dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { padding: 11px 14px; border-radius: 9px; font-size: .9rem; color: var(--ink-soft); }
.dropdown a:hover { background: var(--bg-soft); color: var(--gold-deep); }

/* --- Hizmet kartları (01–04) --- */
.services { padding: 46px 0 8px; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service { position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 28px 22px 24px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s; }
.service::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--gold)); opacity: .9; }
.service:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.service:nth-child(1) { --accent: var(--gold); }
.service:nth-child(2) { --accent: var(--terra); }
.service:nth-child(3) { --accent: var(--rose); }
.service:nth-child(4) { --accent: var(--sage); }
.service__no { font-family: var(--head); font-weight: 800; font-size: 1.05rem;
  color: var(--gold-deep); letter-spacing: 1.5px; }
.service__title { font-family: var(--head); font-weight: 600; font-size: 1.16rem; color: var(--ink); }
.service__desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.service__go { font-size: .82rem; font-weight: 600; letter-spacing: .3px; color: var(--gold-deep); }
.service:hover .service__go { color: var(--terra); }

/* --- Hakkımızda / Yöntem --- */
.method { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.method__media { position: relative; }
.method__media img { width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow); }
.method__badge { position: absolute; left: 16px; bottom: 16px; background: var(--ink); color: #f5ece0;
  font-size: .72rem; letter-spacing: 1px; padding: 8px 14px; border-radius: 999px; }
.method__text .lead { margin: 14px 0 22px; }
.method__list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.method__list li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .95rem; }
.method__list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }
.method__list b { color: var(--ink); font-weight: 600; }
.method__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Birebir Danışmanlık --- */
.consult { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.consult__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.consult__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.consult__ic { font-size: 1.9rem; color: var(--gold-deep); margin-bottom: 12px; }
.consult__card h3 { font-family: var(--head); font-weight: 600; font-size: 1.16rem; margin-bottom: 8px; }
.consult__card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
.consult__meta { font-size: .76rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; }
.consult__cta { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* --- Bülten / Gökyüzü Notları (koyu şerit) --- */
.newsletter { position: relative; background: var(--ink); color: #f5ece0; padding: 66px 0; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 82% 30%, rgba(200,102,63,.28), transparent 70%); pointer-events: none; }
.newsletter__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.newsletter .kicker { color: #f0c88a; }
.newsletter .display { color: #fff; }
.newsletter .lead { color: rgba(245,236,224,.78); margin-top: 10px; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter__form input { flex: 1; min-width: 220px; padding: 15px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff;
  font-family: inherit; font-size: .95rem; transition: border-color .2s; }
.newsletter__form input::placeholder { color: rgba(245,236,224,.5); }
.newsletter__form input:focus { outline: none; border-color: #f0c88a; }
.newsletter__form .form-note { width: 100%; font-size: .8rem; color: rgba(245,236,224,.62); margin: 2px 0 0; }

/* --- Responsive --- */
@media (max-width: 940px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .consult { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; gap: 28px; }
  .method__media { max-width: 440px; margin: 0 auto; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 22px; }
  .nav__cta { display: none; }
  /* dropdown mobilde menü içinde açık dursun */
  .has-dropdown { width: 100%; }
  .dropdown__toggle { padding: 14px 24px; width: 100%; justify-content: space-between; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; box-shadow: none; border: 0; border-radius: 0; background: transparent; padding: 0 0 8px; }
  .dropdown::before { display: none; }
  .dropdown a { padding: 10px 40px; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
}
