/* =========================================================
   muhasebesinifi.com — tasarım sistemi
   ========================================================= */

:root {
  /* renkler — tatlı mor paleti */
  --ink:        #241A3D;
  --ink-soft:   #3E3160;
  --muted:      #786D93;
  --line:       #EBE3F5;
  --bg:         #F8F5FC;
  --white:      #FFFFFF;

  /* ana renk (mor) — değişken adları uyumluluk için korundu */
  --teal:       #7C3AED;
  --teal-deep:  #5B21B6;
  --teal-tint:  #EFE7FC;

  /* vurgu (tatlı pembe-mor) */
  --orange:     #EC4899;
  --orange-deep:#DB2777;
  --orange-tint:#FCE7F3;

  --wa:         #25D366;

  /* ölçü */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(46,16,101,.05);
  --shadow:    0 4px 20px rgba(46,16,101,.07);
  --shadow-lg: 0 18px 50px rgba(46,16,101,.14);

  --wrap: 1180px;
  --nav-h: 74px;

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 1.3rem + 2.9vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- yardımcılar ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: 78px 0; }
.section--tight { padding: 54px 0; }
.section--alt { background: var(--white); }

.eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 12px;
}
.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section-head--left { margin-inline: 0; text-align: left; }

.lead { font-size: 1.1rem; color: var(--muted); }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .97rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(219,39,119,.32);
}
.btn--primary:hover { box-shadow: 0 12px 28px rgba(219,39,119,.40); }

.btn--dark { background: var(--teal); color: #fff; }
.btn--dark:hover { background: var(--teal-deep); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.16); }

.btn--outline { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.28); }
.btn--wa:hover { background: #1EBE5A; }

.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* =========================================================
   duyuru şeridi
   ========================================================= */
.announce {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  color: #fff;
  font-size: .92rem;
}
.announce a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 11px 22px;
  text-align: center;
  font-weight: 500;
}
.announce strong { font-weight: 700; }
.announce .announce__cta {
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}
.announce a:hover .announce__cta { text-decoration: underline; }

/* =========================================================
   header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  height: var(--nav-h);
}
.nav__logo img { height: 38px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--teal-tint); color: var(--teal); }
.nav__link.is-active { background: var(--teal-tint); color: var(--teal); font-weight: 600; }
.nav__link svg { width: 14px; height: 14px; opacity: .6; }

/* açılır menü */
.nav__item { position: relative; }
.nav__drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 306px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__drop a span { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; }
.nav__drop a:hover { background: var(--bg); color: var(--teal); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
}
.nav__toggle svg { width: 22px; height: 22px; }

/* =========================================================
   hero
   ========================================================= */
.hero { position: relative; padding: 74px 0 84px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: -22% -12%;
  background:
    radial-gradient(620px 460px at 12% 6%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(540px 420px at 90% 12%, rgba(236,72,153,.20), transparent 60%),
    radial-gradient(600px 500px at 72% 92%, rgba(167,139,250,.18), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  animation: aurora 20s ease-in-out infinite alternate;
  will-change: transform;
}
/* ince nokta dokusu — derinlik */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(124,58,237,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(720px 420px at 30% 20%, #000, transparent 75%);
  mask-image: radial-gradient(720px 420px at 30% 20%, #000, transparent 75%);
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.2%, -1.6%, 0) scale(1.07); }
  100% { transform: translate3d(-2%, 1.6%, 0) scale(1.03); }
}
.hero .wrap { position: relative; }

/* gradyan başlık vurgusu */
.hero__accent {
  background: linear-gradient(100deg, var(--teal) 0%, #9d5cf5 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* sırayla beliren giriş animasyonu */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero__text > * { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) both; }
.hero__text .pill      { animation-delay: .05s; }
.hero__text h1         { animation-delay: .16s; }
.hero__text > p        { animation-delay: .30s; }
.hero__text .hero__actions { animation-delay: .44s; }
.hero__text .hero__stats   { animation-delay: .58s; }
.hero__media { animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) .36s both; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.hero__text p { margin-top: 20px; font-size: 1.12rem; color: var(--muted); max-width: 34em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.pill b {
  padding: 3px 10px;
  background: var(--orange-tint);
  color: var(--orange-deep);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__stats div strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero__stats div span { font-size: .88rem; color: var(--muted); }

/* eğitmen kartı (hero görseli) */
.tutor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tutor-card__media { position: relative; aspect-ratio: 1/1; background: var(--teal-tint); }
.tutor-card__media img { width: 100%; height: 100%; object-fit: cover; }
/* ünvan rozetleri — fotoğrafın üstünde, dikkat çeksin */
.tutor-card__badges {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.tutor-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.tutor-badge svg { width: 15px; height: 15px; flex: none; }

/* birincil ünvan — mor, hafif nabız atan parıltı */
.tutor-badge--main {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(124,58,237,.32); }
  50%      { box-shadow: 0 8px 30px rgba(124,58,237,.62); }
}

/* ikincil ünvan — beyaz zemin, pembe vurgu */
.tutor-badge--alt {
  background: var(--white);
  color: var(--orange-deep);
  border: 1px solid var(--orange-tint);
  box-shadow: var(--shadow);
}
.tutor-card__body { padding: 24px 24px 26px; }
.tutor-card__body .role {
  font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--orange-deep);
}
.tutor-card__body h3 { margin: 8px 0 10px; font-size: 1.5rem; }
.tutor-card__body p { font-size: .95rem; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  padding: 7px 13px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* =========================================================
   özellik kartları
   ========================================================= */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #DDD0F2; }
.card h3 { margin-bottom: 9px; font-size: 1.08rem; }
.card p { font-size: .94rem; color: var(--muted); }

.icon-box {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 20px;
  background: var(--teal-tint);
  border-radius: var(--r);
  color: var(--teal);
}
.icon-box svg { width: 24px; height: 24px; }
.icon-box--orange { background: var(--orange-tint); color: var(--orange-deep); }

/* =========================================================
   eğitim kartları
   ========================================================= */
.course-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.course-card__top {
  position: relative;
  padding: 26px 24px 22px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.course-card__top::after {
  content: "";
  position: absolute; right: -46px; top: -46px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(236,72,153,.34), transparent 70%);
  border-radius: 50%;
}
.course-card__label {
  position: relative;
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.course-card__top h3 { position: relative; color: #fff; font-size: 1.32rem; }
.course-card__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.course-card__body > p { font-size: .94rem; color: var(--muted); }
.course-card__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 22px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  background: var(--bg);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip svg { width: 14px; height: 14px; color: var(--teal); }
.course-card__body .btn { margin-top: auto; }

/* =========================================================
   özellik listesi (tik)
   ========================================================= */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .97rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.check-list--light li { color: rgba(255,255,255,.9); }
.check-list--light li::before {
  background-color: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F9A8D4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* =========================================================
   CTA bandı
   ========================================================= */
.cta {
  position: relative;
  padding: 62px 30px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #4C1D95 0%, #2E1065 55%, #3B1483 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 240px at 10% 0%, rgba(236,72,153,.24), transparent 65%),
    radial-gradient(420px 260px at 90% 100%, rgba(167,139,250,.20), transparent 65%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { max-width: 46em; margin: 16px auto 0; color: rgba(255,255,255,.75); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

/* =========================================================
   eğitim sayfası — iç düzen
   ========================================================= */
.page-hero {
  position: relative;
  padding: 60px 0 64px;
  background: linear-gradient(135deg, #4C1D95 0%, #2E1065 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(520px 340px at 88% 8%, rgba(236,72,153,.24), transparent 62%),
    radial-gradient(480px 320px at 4% 92%, rgba(255,255,255,.07), transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; max-width: 18em; }
.page-hero .page-hero__sub { margin-top: 16px; font-size: 1.15rem; color: var(--orange); font-weight: 600; }
.page-hero p.page-hero__desc { margin-top: 18px; max-width: 60em; color: rgba(255,255,255,.78); }
.page-hero .btn { margin-top: 30px; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; font-size: .87rem; color: rgba(255,255,255,.6); }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }

.page-hero__stats {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.page-hero__stats .chip {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
.page-hero__stats .chip svg { color: var(--orange); }

/* iki kolon: içerik + yan panel */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: start;
}
.sidebar { position: sticky; top: calc(var(--nav-h) + 22px); display: grid; gap: 18px; }
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.side-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.side-card p { font-size: .93rem; color: var(--muted); }
.side-card .btn { margin-top: 18px; }
.side-card__list { display: grid; gap: 12px; margin-top: 18px; }
.side-card__list li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.side-card__list svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--teal); }

.block { margin-bottom: 52px; }
.block:last-child { margin-bottom: 0; }
.block > h2 { margin-bottom: 8px; }
.block > .lead { margin-bottom: 26px; }

.plain-list { display: grid; gap: 12px; }
.plain-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem;
}
.plain-list li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 10px;
  background: var(--orange);
  border-radius: 50%;
}

/* akordiyon — müfredat */
.acc { display: grid; gap: 12px; }
.acc__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.acc__item[open] { border-color: #DCC9F5; box-shadow: var(--shadow); }
.acc__item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__num {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--teal-tint);
  color: var(--teal);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
}
.acc__item[open] .acc__num { background: var(--orange-tint); color: var(--orange-deep); }
.acc__title { flex: 1; }
.acc__caret {
  flex: none;
  width: 20px; height: 20px;
  color: var(--muted);
  transition: transform .2s ease;
}
.acc__item[open] .acc__caret { transform: rotate(180deg); }
.acc__body { padding: 0 22px 22px 70px; }
.acc__body ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 26px; }
.acc__body li {
  position: relative;
  padding-left: 18px;
  font-size: .94rem;
  color: var(--muted);
}
.acc__body li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px;
  background: #C9B8E8;
  border-radius: 50%;
}

/* program rozetleri */
.prog-list { display: flex; flex-wrap: wrap; gap: 12px; }
.prog {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}
.prog svg { width: 18px; height: 18px; color: var(--teal); }

/* =========================================================
   SSS
   ========================================================= */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px 6px;
}
.faq summary {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .acc__caret { margin-left: auto; }
.faq details[open] .acc__caret { transform: rotate(180deg); }
.faq p { padding: 0 18px 18px; color: var(--muted); font-size: .96rem; }

/* =========================================================
   güncel içerik
   ========================================================= */
.post {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__tag {
  align-self: flex-start;
  padding: 5px 12px;
  margin-bottom: 16px;
  background: var(--orange-tint);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.post h3 { font-size: 1.08rem; margin-bottom: 10px; }
.post p { font-size: .93rem; color: var(--muted); }
.post__date { margin-top: 18px; font-size: .84rem; color: var(--muted); }

/* =========================================================
   whatsapp kanal şeridi
   ========================================================= */
.channel {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.channel__icon {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: var(--teal-tint);
  border-radius: var(--r);
  color: var(--teal);
}
.channel__icon svg { width: 28px; height: 28px; }
.channel__text { flex: 1 1 280px; }
.channel__text h3 { font-size: 1.15rem; margin-bottom: 6px; }
.channel__text p { font-size: .94rem; color: var(--muted); }
.channel .btn { flex: none; }

@media (max-width: 560px) {
  .channel { padding: 22px; }
  .channel .btn { width: 100%; }
}

/* =========================================================
   iletişim
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-item {
  display: flex; gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.contact-item .icon-box { margin-bottom: 0; width: 46px; height: 46px; }
.contact-item h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .94rem; color: var(--muted); }
.contact-item a:hover { color: var(--teal); }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(124,58,237,.14);
}
.form__note { font-size: .84rem; color: var(--muted); }

/* =========================================================
   footer
   ========================================================= */
.site-footer {
  background: linear-gradient(160deg, #3B1873 0%, #2A0E52 100%);
  color: rgba(255,255,255,.72);
  padding: 62px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 46px;
}
.footer__brand img { height: 40px; margin-bottom: 20px; }
.footer__brand p { font-size: .94rem; max-width: 30em; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  color: #fff;
  transition: background .15s ease;
}
.footer__social a:hover { background: rgba(255,255,255,.18); }
.footer__social svg { width: 18px; height: 18px; }

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .93rem; transition: color .15s ease; }
.footer__links a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .87rem;
}

/* müzik aç/kapa butonu */
.music-toggle {
  position: fixed;
  right: 27px; bottom: 92px;
  z-index: 70;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  box-shadow: var(--shadow);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.music-toggle:hover { transform: scale(1.08); }
.music-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.music-toggle.is-on {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 26px rgba(124,58,237,.42);
}
.music-toggle svg { width: 21px; height: 21px; }

/* çalarken görünen eşitleyici */
.music-toggle .eq { display: none; align-items: flex-end; gap: 3px; height: 16px; }
.music-toggle.is-on .eq { display: flex; }
.music-toggle.is-on .music-toggle__icon { display: none; }
.music-toggle .eq i {
  width: 3px; height: 100%;
  background: currentColor;
  border-radius: 2px;
  transform-origin: bottom;
  animation: eqbar .9s ease-in-out infinite;
}
.music-toggle .eq i:nth-child(2) { animation-delay: .18s; }
.music-toggle .eq i:nth-child(3) { animation-delay: .36s; }
@keyframes eqbar {
  0%, 100% { transform: scaleY(.32); }
  50%      { transform: scaleY(1); }
}

/* whatsapp yüzen buton */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.42);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================
   çıkış hatırlatması (modal)
   ========================================================= */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}
.exit-modal.is-open { opacity: 1; visibility: visible; }

.exit-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(36,26,61,.58);
  backdrop-filter: blur(4px);
}
.exit-modal__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 44px 38px 36px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.exit-modal.is-open .exit-modal__box { transform: none; }

.exit-modal__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: var(--r-lg);
  color: #fff;
  box-shadow: 0 10px 26px rgba(124,58,237,.36);
}
.exit-modal__icon svg { width: 30px; height: 30px; }

.exit-modal__box h3 { font-size: 1.5rem; margin-bottom: 12px; }
.exit-modal__box p { color: var(--muted); font-size: 1rem; }
.exit-modal__note {
  margin-top: 10px;
  font-size: .92rem !important;
  color: var(--ink-soft) !important;
}
.exit-modal__actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 26px;
}

.exit-modal__close {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.exit-modal__close:hover { background: var(--teal-tint); color: var(--teal); }
.exit-modal__close svg { width: 17px; height: 17px; }

@media (max-width: 560px) {
  .exit-modal__box { padding: 38px 22px 28px; }
  .exit-modal__box h3 { font-size: 1.3rem; }
  .exit-modal__actions .btn { width: 100%; }
}

/* =========================================================
   duyarlı düzen
   ========================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .tutor-card { max-width: 420px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .nav__menu, .nav__actions { display: none; }
  .nav__toggle { display: inline-flex; }

  .nav.is-open { height: auto; flex-wrap: wrap; padding-bottom: 18px; }
  .nav.is-open .nav__menu {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 14px 0 0;
    gap: 2px;
  }
  .nav.is-open .nav__actions { order: 4; display: flex; width: 100%; margin-top: 12px; }
  .nav.is-open .nav__actions .btn { flex: 1; }
  .nav.is-open .nav__drop {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: none;
    padding: 2px 0 6px 12px;
    min-width: 0;
  }
  .nav.is-open .nav__link svg { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .acc__body { padding-left: 22px; }
  .acc__body ul { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta { padding: 46px 22px; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto; }
}
