/* =========================================================
   Gözde Nur Hoca – Fen Bilimleri Özel Ders
   Ana stil dosyası
   ========================================================= */

:root {
  --ink: #12262d;
  --ink-soft: #4a5f66;
  --teal-900: #0b2f39;
  --teal-800: #0f3d4a;
  --teal-600: #16697a;
  --teal-100: #e3f1f1;
  --mint: #7fd1b9;
  --accent: #f2a541;
  --accent-dark: #d9892a;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #e2e6e3;
  --wa: #25d366;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -18px rgba(11, 47, 57, .28);
  --shadow-sm: 0 6px 18px -8px rgba(11, 47, 57, .2);

  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --container: 1160px;
  --header-h: 76px;
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.muted { color: var(--ink-soft); }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--teal-800); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: .9em;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: 600 1rem/1 var(--font-body);
  padding: .95em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .65em 1.15em; font-size: .92rem; }
.btn-lg { padding: 1em 1.5em; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: var(--teal-900); box-shadow: 0 10px 22px -10px rgba(217, 137, 42, .8); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--teal-800); border-color: var(--teal-800); }
.btn-ghost:hover { background: var(--teal-800); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; margin-top: 1.5rem; }
.btn-wa:hover { background: #1eb655; }
.btn .ico { width: 20px; height: 20px; fill: currentColor; }
.btn[disabled] { opacity: .65; cursor: wait; transform: none; }

/* ---------- Üst menü ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(251, 250, 246, .85);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -12px rgba(0,0,0,.15); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: .6rem; color: var(--teal-800); text-decoration: none !important; }
.brand-mark { width: 38px; height: 38px; border-radius: 12px; background: var(--teal-800); display: grid; place-items: center; }
.brand-mark svg { width: 26px; height: 26px; fill: var(--accent); stroke: var(--mint); }
.brand-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.01em; }
.brand-text em { font-style: italic; color: var(--teal-600); font-weight: 500; }
.brand-light { color: #fff; }
.brand-light .brand-text em { color: var(--mint); }

.main-nav ul { display: flex; align-items: center; gap: .3rem; }
.main-nav a:not(.btn) {
  display: block; padding: .5em .85em; border-radius: 999px;
  color: var(--ink); font-weight: 500; font-size: .96rem;
  text-decoration: none; transition: background-color .2s, color .2s;
}
.main-nav a:not(.btn):hover, .main-nav a.active { background: var(--teal-100); color: var(--teal-800); }
.main-nav li:last-child { margin-left: .5rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; border-radius: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--teal-800); margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Giriş (Hero) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(127, 209, 185, .35), transparent 70%),
    radial-gradient(500px 380px at 10% 90%, rgba(242, 165, 65, .18), transparent 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15, 61, 74, .12) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero h1 { color: var(--teal-900); }
.hl { position: relative; white-space: nowrap; color: var(--teal-600); font-style: italic; }
.hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .05em; height: .32em;
  background: var(--accent); opacity: .45; z-index: -1; border-radius: 4px;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.8rem 0 1.6rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .93rem; color: var(--ink-soft); }
.hero-points li { display: flex; align-items: center; gap: .45em; }
.hero-points li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316697a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/11px no-repeat; }

.hero-visual { position: relative; max-width: 440px; justify-self: center; width: 100%; }
.photo-frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden; background: linear-gradient(160deg, var(--teal-600), var(--teal-900));
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-fallback { display: none; }
.photo-frame.no-photo .photo-fallback {
  display: grid; place-items: center; position: absolute; inset: 0;
  font: 700 5rem var(--font-display); color: rgba(255,255,255,.85);
}
.float-card {
  position: absolute; background: #fff; border-radius: 14px; padding: .8rem 1rem;
  box-shadow: var(--shadow); font-size: .82rem; line-height: 1.35; color: var(--ink-soft);
  display: flex; align-items: center; gap: .7rem;
  animation: bob 6s ease-in-out infinite;
}
.float-card strong { color: var(--teal-800); }
.fc-1 { left: -34px; bottom: 18%; }
.fc-1 strong { font: 700 1.8rem/1 var(--font-display); color: var(--teal-600); }
.fc-2 { right: -22px; top: 12%; animation-delay: -3s; }
.fc-2 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37, 211, 102, .2); flex: none; }
@keyframes bob { 50% { transform: translateY(-8px); } }

/* ---------- Rakamlar ---------- */
.stats { background: var(--teal-800); color: #fff; padding: 38px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 0 10px; border-left: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: 0; }
.stat .num { display: block; font: 700 2.4rem/1.1 var(--font-display); color: var(--accent); }
.stat .lbl { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ---------- Bölümler ---------- */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-tint { background: var(--teal-100); }
.section-dark { background: var(--teal-900); color: #fff; }
.section-dark .eyebrow { color: var(--mint); }
.section-dark .section-head p { color: rgba(255,255,255,.75); }
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section-head p { color: var(--ink-soft); }

/* Hakkımda */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.about-head h2 { position: sticky; top: calc(var(--header-h) + 30px); }
.about-body p { color: var(--ink-soft); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.4rem; margin-top: 1.8rem; }
.check-list li { position: relative; padding-left: 30px; font-weight: 500; font-size: .96rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2f39' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Ders kartları */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; background: #fff; border-radius: var(--radius); padding: 34px 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card-featured { border: 2px solid var(--teal-600); }
.badge {
  position: absolute; top: -13px; left: 30px; background: var(--teal-600); color: #fff;
  font-size: .75rem; font-weight: 700; padding: .35em .9em; border-radius: 999px; letter-spacing: .03em;
}
.card-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--teal-100); display: grid; place-items: center; margin-bottom: 1.2rem; }
.card-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--teal-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mini-list { border-top: 1px dashed var(--line); padding-top: 1rem; margin-top: 1.2rem; font-size: .92rem; }
.mini-list li { padding: .25rem 0 .25rem 1.3rem; position: relative; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* Süreç adımları */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; position: relative; }
.steps::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--teal-600) 0 8px, transparent 8px 16px); opacity: .35; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step-no {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--teal-600); color: var(--teal-600);
  font: 700 1.1rem var(--font-display); margin-bottom: 1.1rem; position: relative;
}
.step p { color: var(--ink-soft); font-size: .95rem; }

/* Konular – sekmeler */
.tabs { max-width: 900px; margin: 0 auto; }
.tab-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.tab {
  font: 600 .96rem var(--font-body); color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  padding: .75em 1.4em; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.tab:hover { background: rgba(255,255,255,.14); color: #fff; }
.tab[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: var(--teal-900); }
.tab-panel { animation: fadeUp .45s ease; }
.topic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; align-items: start; }
.topic-grid li {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem 1rem 3rem; position: relative; font-weight: 500;
}
.topic-grid li::before {
  content: ""; position: absolute; left: 1.1rem; top: 50%; width: 14px; height: 14px; margin-top: -7px;
  border-radius: 50%; border: 2px solid var(--mint); box-shadow: 0 0 0 4px rgba(127, 209, 185, .15);
}
.tab-note { text-align: center; margin-top: 1.6rem; color: var(--mint); font-size: .95rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Deneyim zaman çizelgesi */
.exp-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding-bottom: 2rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -34px; top: 5px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--teal-600);
}
.timeline li.tl-edu::before { border-color: var(--accent); background: var(--accent); }
.tl-date { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--teal-600); background: var(--teal-100); padding: .2em .7em; border-radius: 6px; margin-bottom: .4rem; }
.timeline h3 { margin-bottom: .2rem; font-size: 1.2rem; }
.timeline p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* SSS */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line); transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 3.4rem 1.15rem 1.4rem; font-weight: 600; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  border-radius: 50%; background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316697a' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; margin: 0; color: var(--ink-soft); }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 70px); align-items: start; }
.contact-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.contact-list a, .contact-list span:not(.c-lbl):not(.c-ico) { font-weight: 600; color: var(--ink); word-break: break-word; }
.c-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-100); display: grid; place-items: center; }
.c-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--teal-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-lbl { display: block; font-size: .8rem; color: var(--ink-soft); font-weight: 500; }

.contact-form { background: #fff; border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: 400 1rem var(--font-body); color: var(--ink);
  padding: .8em 1em; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-600); background: #fff; box-shadow: 0 0 0 4px rgba(22, 105, 122, .12); }
.field.invalid input, .field.invalid select { border-color: #d64545; background: #fff6f6; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); margin: .4rem 0 1.4rem; cursor: pointer; }
.consent input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--teal-600); flex: none; }
.consent.invalid span { color: #d64545; }
.form-status { margin: 1rem 0 0; font-size: .95rem; font-weight: 500; text-align: center; min-height: 1.4em; }
.form-status.ok { color: #1c8a55; }
.form-status.err { color: #c73a3a; }

/* ---------- Alt bilgi ---------- */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.72); padding: 64px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--accent); }
.site-footer .brand { margin-bottom: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }

/* WhatsApp sabit butonu */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center; box-shadow: 0 10px 25px -6px rgba(37, 211, 102, .6);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

/* Kaydırınca beliren animasyon */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

/* ---------- KVKK / alt sayfa ---------- */
.legal { padding: 60px 0 90px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }

/* 404 */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.notfound .big { font: 700 clamp(5rem, 16vw, 9rem)/1 var(--font-display); color: var(--teal-600); margin-bottom: .2em; }

/* ---------- Veli yorumları ---------- */
.rating-summary { display: inline-flex; align-items: center; gap: .7rem; margin-top: .4rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.2rem; box-shadow: var(--shadow-sm); }
.rs-score { font: 700 1.6rem/1 var(--font-display); color: var(--teal-800); }
.rs-count { font-size: .9rem; color: var(--ink-soft); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1.1rem; line-height: 1; }
.stars .off { color: #d9dedb; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); background: var(--teal-100); border-radius: var(--radius); padding: 2rem; margin: 0; }
.review {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  animation: fadeUp .5s ease both;
}
.review::before { content: "\201C"; position: absolute; top: 6px; right: 20px; font: 700 4.5rem/1 var(--font-display); color: var(--teal-100); }
.review .stars { margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1.2rem; color: var(--ink); font-size: .98rem; white-space: pre-line; overflow-wrap: anywhere; flex: 1; }
.review blockquote.clamped { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.review .read-more { background: none; border: 0; padding: 0; margin: -.8rem 0 1rem; color: var(--teal-600); font: 600 .88rem var(--font-body); cursor: pointer; align-self: flex-start; }
.review footer { display: flex; align-items: center; gap: .75rem; border-top: 1px dashed var(--line); padding-top: 1rem; }
.avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--teal-800); color: var(--accent); display: grid; place-items: center; font: 700 1rem var(--font-display); }
.review .who { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.review .meta { display: block; font-size: .8rem; color: var(--ink-soft); font-weight: 500; }
.reviews-more { text-align: center; margin-top: 28px; }

.review-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 44px; padding: 28px 32px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--teal-800), var(--teal-600)); color: #fff;
}
.review-cta h3 { margin: 0 0 .3rem; }
.review-cta p { margin: 0; color: rgba(255,255,255,.82); max-width: 40em; }
.review-form-wrap { max-width: 760px; margin: 28px auto 0; }
.review-form-wrap:not([hidden]) { animation: fadeUp .4s ease; }
.hint { display: block; margin-top: .35rem; font-size: .8rem; color: var(--ink-soft); }

.star-input { border: 0; padding: 0; margin: 0 0 18px; }
.star-input legend { font-size: .88rem; font-weight: 600; margin-bottom: .3rem; padding: 0; }
.star-row { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-row label { font-size: 2.3rem; line-height: 1; color: #d9dedb; cursor: pointer; transition: color .15s, transform .15s; padding: 0 2px; }
.star-row label:hover, .star-row label:hover ~ label,
.star-row input:checked ~ label { color: var(--accent); }
.star-row label:hover { transform: scale(1.12); }
.star-row input:focus-visible + label { outline: 3px solid var(--teal-600); outline-offset: 2px; border-radius: 6px; }
.star-text { display: block; font-size: .85rem; color: var(--ink-soft); margin-top: .2rem; }
.star-input.invalid .star-text { color: #d64545; }
.field.invalid textarea { border-color: #d64545; background: #fff6f6; }

@media (max-width: 980px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .reviews { grid-template-columns: 1fr; }
  .review-cta { padding: 24px; }
  .review-cta .btn { width: 100%; }
}

/* ---------- Duyarlı (mobil) ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .exp-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; order: -1; }
  .fc-1 { left: -14px; } .fc-2 { right: -10px; }
  .about-head h2 { position: static; }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .stat:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px -20px rgba(0,0,0,.25);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 480px; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 12px 20px 22px; gap: 4px; }
  .main-nav a:not(.btn) { padding: .85em 1em; font-size: 1.05rem; }
  .main-nav li:last-child { margin: 10px 0 0; }
  .main-nav .btn { width: 100%; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .check-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat .num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card { font-size: .75rem; padding: .6rem .8rem; }
  .fc-1 strong { font-size: 1.4rem; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

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