/* ============================================================
   ŞİMŞEK WELLNESS — Ana Stil Dosyası
   Renkleri değiştirmek için aşağıdaki :root değişkenlerini düzenleyin.
   ============================================================ */

:root {
  --green: #78be20;
  --green-dark: #5a9417;
  --green-deep: #1e4620;
  --orange: #f5821f;
  --orange-dark: #d96c0e;
  --pink: #e0559b;
  --blue: #2f9dd0;
  --ink: #1f2a1e;
  --muted: #5c6b58;
  --bg: #ffffff;
  --bg-soft: #f4f9ee;
  --bg-cream: #fbfdf8;
  --line: #e3ecd9;
  --shadow-sm: 0 2px 10px rgba(30, 70, 32, 0.07);
  --shadow-md: 0 10px 30px rgba(30, 70, 32, 0.12);
  --shadow-lg: 0 24px 60px rgba(30, 70, 32, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(820px, 92%); margin: 0 auto; }
.center { text-align: center; margin-top: 2.2rem; }

/* ---------- Rozetler & Butonlar ---------- */
.badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--green-dark);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.42em 1.1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.badge-orange { background: #fff3e6; color: var(--orange-dark); border-color: #ffdfbd; }
.badge-light { background: rgba(255, 255, 255, 0.14); color: #eaffd2; border-color: rgba(255, 255, 255, 0.25); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(120, 190, 32, 0.38);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(120, 190, 32, 0.48); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }

.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(120, 190, 32, 0.35); }

.btn-white { background: #fff; color: var(--green-deep); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18); }
.btn-white:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 130, 31, 0.38);
}
.btn-orange:hover { box-shadow: 0 12px 28px rgba(245, 130, 31, 0.5); }

.btn-lg { padding: 1em 2em; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---------- Üst Bilgi Çubuğu ---------- */
.topbar {
  background: var(--green-deep);
  color: #d9edc4;
  font-size: 0.84rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.4rem; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.45em; }
.topbar-item svg, .topbar-right svg { width: 1em; height: 1em; }
.topbar a:hover { color: #fff; }
.topbar-note { color: #ffd9ae; font-weight: 600; }

/* ---------- Menü ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.navbar .container { width: min(1400px, 96%); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.25rem; color: var(--green-deep); }
.brand-icon { width: 40px; height: 40px; color: var(--green); flex-shrink: 0; }
.brand-icon svg { width: 100%; height: 100%; }
.brand-text em { font-style: normal; color: var(--green); }
.brand-light { color: #fff; }

.nav-links { display: flex; gap: 1.1rem; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35em 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: right 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta { flex-shrink: 0; }

/* ---------- Menü Açılır Liste ---------- */
.nav-drop { position: relative; }
.nav-drop-btn {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0.35em 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: color 0.2s ease;
}
.nav-drop:hover .nav-drop-btn, .nav-drop-btn:focus { color: var(--green-deep); }
.drop-ok { font-size: 0.7em; transition: transform 0.2s ease; }
.nav-drop:hover .drop-ok { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.6em 0.9em;
  border-radius: 9px;
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--bg-soft); color: var(--green-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--green-deep);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.blob-1 { width: 420px; height: 420px; background: #d3f0ae; top: -140px; right: -100px; }
.blob-2 { width: 320px; height: 320px; background: #ffe2c2; bottom: -120px; left: -80px; }
.blob-3 { width: 220px; height: 220px; background: #d3f0ae; bottom: 10%; right: 30%; opacity: 0.35; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1.1rem;
}
.highlight {
  color: var(--green-dark);
  position: relative;
  white-space: nowrap;
}
.highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.32em;
  background: rgba(120, 190, 32, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub { color: var(--muted); font-size: 1.06rem; max-width: 54ch; }

.hero-checks { margin: 1.4rem 0 1.8rem; display: grid; gap: 0.55rem; }
.hero-checks li {
  display: flex; align-items: center; gap: 0.6em;
  font-weight: 500; font-size: 0.98rem;
}
.hero-checks li::before {
  content: "✓";
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5em; height: 1.5em;
  background: var(--green);
  color: #fff;
  font-size: 0.8em;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }

.hero-trust { display: flex; align-items: center; gap: 0.9rem; }
.hero-trust p { font-size: 0.92rem; color: var(--muted); }
.avatars { display: flex; }
.avatars span {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  background: #fff;
  border: 2.5px solid var(--bg-soft);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.avatars span + span { margin-left: -12px; }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1.1rem;
  animation: floaty 4.5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.9rem; line-height: 1.3; }
.float-card small { color: var(--muted); font-size: 0.76rem; }
.float-icon { font-size: 1.6rem; }
.float-card-1 { top: 6%; left: -8%; }
.float-card-2 { bottom: 8%; right: -5%; animation-delay: 2.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Sayaçlar ---------- */
.stats {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 2.6rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-number, .stat-plus {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat p { color: #e8ffd1; font-weight: 500; font-size: 0.95rem; }

/* ---------- Bölüm Ortak ---------- */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.section-head p { color: var(--muted); }

/* ---------- Hizmet Kartları ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 28px; height: 28px; }
.icon-green { background: #ecf7dd; color: var(--green-dark); }
.icon-orange { background: #fff0e0; color: var(--orange); }
.icon-pink { background: #fde8f3; color: var(--pink); }
.icon-blue { background: #e3f3fa; color: var(--blue); }

.service-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1rem; }
.service-card ul { display: grid; gap: 0.4rem; }
.service-card ul li {
  font-size: 0.88rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 0.5em;
}
.service-card ul li::before {
  content: "•";
  color: var(--green);
  font-size: 1.4em;
  line-height: 1;
}

/* ---------- Split (Analiz & Hakkımızda) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.split-content > p { color: var(--muted); margin-bottom: 1rem; }
.split-content .btn { margin-top: 1.4rem; }

.img-stack { position: relative; }
.img-main {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.analysis-card {
  position: absolute;
  bottom: -28px; right: -18px;
  width: min(300px, 85%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.4rem;
}
.analysis-card h4 { font-size: 0.95rem; margin-bottom: 0.9rem; }
.meter { margin-bottom: 0.7rem; }
.meter span { font-size: 0.76rem; font-weight: 600; color: var(--muted); }
.meter-bar {
  height: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.25rem;
}
.meter-bar i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 999px;
  animation: growbar 1.4s ease both;
}
@keyframes growbar { from { width: 0; } }

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.4rem 0 0.6rem;
}
.analysis-item {
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
}
.analysis-item span { font-size: 1.3rem; }
.analysis-item p { font-size: 0.86rem; font-weight: 600; line-height: 1.35; }

/* ---------- Süreç Adımları ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-no {
  position: absolute;
  top: -20px; left: 1.4rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.45em 0.9em;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.35);
}
.step h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Program Kartları ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-img { position: relative; }
.program-img img { width: 100%; height: 210px; object-fit: cover; }
.program-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4em 1em;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(245, 130, 31, 0.4);
}
.program-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.program-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.program-body > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.program-body ul { display: grid; gap: 0.45rem; margin-bottom: 1.4rem; }
.program-body ul li {
  font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: flex-start; gap: 0.55em;
}
.program-body ul li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 800;
  flex-shrink: 0;
}
.program-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Hakkımızda ---------- */
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
.about-point {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.about-point span { font-size: 1.5rem; }
.about-point strong { display: block; font-size: 0.95rem; }
.about-point small { color: var(--muted); font-size: 0.8rem; line-height: 1.4; display: block; }

.about-imgs { position: relative; padding-bottom: 3rem; }
.about-img-1 {
  width: 82%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-2 {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}
/* ---------- Yorumlar ---------- */
.section-green {
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(150deg, var(--green-deep) 0%, #2c5e2e 100%);
  color: #fff;
}
.section-green .section-head h2 { color: #fff; }
.section-green .section-head p { color: #cfe6b8; }

.slider { max-width: 760px; margin: 0 auto; overflow: hidden; }
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 2.4rem 2.6rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.stars { color: #ffc93c; font-size: 1.2rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.slide p { font-size: 1.06rem; line-height: 1.75; color: #f0f8e6; }
.slide footer { margin-top: 1.4rem; }
.slide footer strong { display: block; font-size: 1rem; }
.slide footer span { font-size: 0.82rem; color: #b9d99c; }

.slider-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.slider-btn:hover { background: rgba(255, 255, 255, 0.2); }
.dots { display: flex; gap: 0.5rem; }
.dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.dots button.active { background: #fff; transform: scale(1.25); }

.results-note {
  text-align: center;
  font-size: 0.78rem;
  color: #a8c98b;
  margin-top: 2rem;
}

/* ---------- Instagram ---------- */
.ig-handle { color: var(--green-dark); }
.ig-handle:hover { text-decoration: underline; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ig-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ig-item::after {
  content: "📷 Görüntüle";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(30, 70, 32, 0.55);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-item:hover::after { opacity: 1; }
.ig-item:hover img { transform: scale(1.08); }

/* ---------- SSS ---------- */
.faq { display: grid; gap: 0.9rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(120, 190, 32, 0.5); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 3.2rem 1.1rem 1.4rem;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--green);
  color: #fff;
}
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- CTA Bandı ---------- */
.cta-band {
  background:
    radial-gradient(500px 260px at 15% 20%, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 3.6rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; margin-bottom: 0.3rem; }
.cta-inner p { color: #ffe8cf; }

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info { display: grid; gap: 1rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-icon { font-size: 1.5rem; }
.contact-card strong { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }
.contact-card a { color: var(--green-dark); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.8em 1em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(120, 190, 32, 0.15);
}
.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.map-wrap {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 1rem 1.4rem;
}
.map-actions span { font-weight: 600; font-size: 0.93rem; }
.map-actions .btn { padding: 0.7em 1.5em; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.footer {
  background: #142d15;
  color: #b9ccae;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 2.5rem;
  padding: 3.8rem 0 2.6rem;
}
.footer .brand { margin-bottom: 1rem; }
.footer-col > p { margin-bottom: 1.2rem; line-height: 1.7; }
.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer a:hover { color: #fff; }
.footer-contact a { color: #d9edc4; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.6rem 0;
}
.disclaimer {
  font-size: 0.76rem;
  color: #7e9873;
  line-height: 1.7;
  max-width: 880px;
  margin-bottom: 0.9rem;
}
.copyright { font-size: 0.82rem; }

/* ---------- Sabit WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Hesaplama Aracı ---------- */
.link-more {
  display: inline-block;
  margin-top: 1rem;
  margin-left: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.link-more:hover { text-decoration: underline; }

.calc-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.calc-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
}
.calc-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.3rem; }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.seg-3 { grid-template-columns: repeat(3, 1fr); }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.7em 0.4em;
  font-size: 0.88rem !important;
  font-weight: 600;
  text-align: center;
  background: var(--bg-cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.seg label:hover { border-color: var(--green); }
.seg input:checked + label {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: 0 6px 16px rgba(120, 190, 32, 0.35);
}
.seg input:focus-visible + label { outline: 3px solid rgba(120, 190, 32, 0.4); }

.calc-results { min-height: 420px; }

.calc-placeholder {
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: var(--bg-cream);
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--muted);
}
.calc-placeholder span { font-size: 3rem; }
.calc-placeholder p { max-width: 34ch; }

.calc-output { display: grid; gap: 1rem; }

.res-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.res-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }

.res-bmi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.res-bmi-head small { color: var(--muted); font-weight: 600; font-size: 0.8rem; display: block; }
.res-big { font-size: 2.2rem; font-weight: 800; line-height: 1.1; }

.bmi-chip {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.bmi-chip.ok { background: #ecf7dd; color: var(--green-dark); }
.bmi-chip.warn { background: #fff3da; color: #b07908; }
.bmi-chip.low { background: #e3f3fa; color: #1d7fae; }
.bmi-chip.high { background: #fde5e5; color: #c03434; }

.bmi-scale {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    #4aa3df 0% 17%,
    #78be20 17% 42%,
    #f5c542 42% 62%,
    #e05555 62% 100%);
}
.bmi-marker {
  position: absolute;
  top: 50%;
  width: 20px; height: 20px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: left 0.6s ease;
}
.bmi-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.5rem;
}

.res-mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.res-mini-row-2 { grid-template-columns: 1fr 1fr; }
.res-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.res-mini small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.res-mini strong { font-size: 1.15rem; font-weight: 800; }
.res-target {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  color: #fff;
}
.res-target small { color: #e8ffd1; }

.macro-flex { display: flex; align-items: center; gap: 1.6rem; }
.macro-chart { width: 150px; height: 150px; flex-shrink: 0; position: relative; }
.macro-legend { display: grid; gap: 0.7rem; flex: 1; }
.macro-legend li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.macro-legend strong { margin-left: auto; font-weight: 800; }
.dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.dot-p { background: #78be20; }
.dot-c { background: #f5821f; }
.dot-f { background: #2f9dd0; }

.res-note {
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
}

.calc-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Ürün Kataloğu ---------- */
.urun-hero { padding-top: 3.5rem; }
.muted-note { font-size: 0.9rem; color: var(--muted); text-align: center; }

.urun-araclar { max-width: 900px; margin: 0 auto 1.2rem; }
.urun-ara {
  width: 100%;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.85em 1.4em;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.urun-ara:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(120, 190, 32, 0.15);
}

.urun-filtreler {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.filtre-chip {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.45em 1em;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.filtre-chip:hover { border-color: var(--green); color: var(--green-dark); }
.filtre-chip.active {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  color: #fff;
}

.urun-sayac {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.urun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.urun-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.urun-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.urun-img {
  position: relative;
  background: var(--bg-cream);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.urun-img img { height: 190px; object-fit: contain; }
.urun-kat {
  position: absolute;
  top: 12px; left: 12px;
  background: #ecf7dd;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35em 0.9em;
  border-radius: 999px;
}

.urun-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.urun-body h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.25rem; }
.urun-alt { font-size: 0.82rem; font-weight: 600; color: var(--orange-dark); margin-bottom: 0.55rem; }
.urun-ozet { font-size: 0.86rem; color: var(--muted); margin-bottom: 0.9rem; }

.urun-detaylar { margin-bottom: 1.1rem; display: grid; gap: 0.4rem; }
.urun-sekme {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-cream);
}
.urun-sekme summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55em 1em;
  position: relative;
  user-select: none;
}
.urun-sekme summary::-webkit-details-marker { display: none; }
.urun-sekme summary::after {
  content: "+";
  position: absolute;
  right: 0.9em; top: 50%;
  transform: translateY(-50%);
  color: var(--green-dark);
  font-size: 1.05rem;
}
.urun-sekme[open] summary::after { content: "−"; }
.urun-sekme-icerik {
  padding: 0 1em 0.9em;
  font-size: 0.83rem;
  color: var(--muted);
  overflow-wrap: break-word;
}
.urun-sekme-icerik p { margin-bottom: 0.5em; }
.urun-sekme-icerik ul { margin: 0.3em 0 0.5em 1.1em; list-style: disc; }
.urun-sekme-icerik table { width: 100%; font-size: 0.78rem; border-collapse: collapse; }
.urun-sekme-icerik td, .urun-sekme-icerik th { border: 1px solid var(--line); padding: 0.3em 0.5em; text-align: left; }
.urun-sekme-icerik img { max-width: 100%; }

.urun-actions { margin-top: auto; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.urun-actions .btn { padding: 0.6em 1.1em; font-size: 0.85rem; flex: 1; white-space: nowrap; }

@media (max-width: 1024px) {
  .urun-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .urun-grid { grid-template-columns: 1fr; }
}

/* ---------- Resmi İçerik Sayfaları (SSS / Tarifler / Makaleler) ---------- */
.kaynak-notu {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2.2rem;
}
.kaynak-notu a { color: var(--green-dark); font-weight: 600; }
.kaynak-notu a:hover { text-decoration: underline; }

.resmi-icerik { font-size: 0.92rem; color: var(--ink); line-height: 1.75; }
.resmi-icerik p { margin-bottom: 0.8em; }
.resmi-icerik h2, .resmi-icerik h3, .resmi-icerik h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.1em 0 0.45em;
}
.resmi-icerik ul, .resmi-icerik ol { margin: 0.4em 0 0.9em 1.3em; }
.resmi-icerik ul { list-style: disc; }
.resmi-icerik ol { list-style: decimal; }
.resmi-icerik a { color: var(--green-dark); font-weight: 600; }
.resmi-icerik a:hover { text-decoration: underline; }
.resmi-icerik img { max-width: 100%; border-radius: 12px; margin: 0.6em 0; }
.resmi-icerik sup { font-size: 0.7em; }
.resmi-icerik table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin: 0.6em 0; }
.resmi-icerik td, .resmi-icerik th { border: 1px solid var(--line); padding: 0.4em 0.6em; text-align: left; }

/* içerik kartları (tarif + makale) */
.icerik-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.icerik-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.icerik-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icerik-img { height: 190px; }
.icerik-img img { width: 100%; height: 100%; object-fit: cover; }
.icerik-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.icerik-body h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; }
.icerik-ozet { font-size: 0.87rem; color: var(--muted); margin-bottom: 1rem; }
.icerik-body .btn { margin-top: auto; align-self: flex-start; padding: 0.6em 1.3em; font-size: 0.88rem; }
.icerik-card details { margin-bottom: 1rem; }
.icerik-card details .resmi-icerik { padding-top: 0.7rem; font-size: 0.87rem; }
.icerik-card summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  user-select: none;
}
.icerik-card summary::-webkit-details-marker { display: none; }
.icerik-card summary::before { content: "▸ "; }
.icerik-card details[open] summary::before { content: "▾ "; }
.icerik-kaynak { font-size: 0.78rem; margin-top: 0.6rem; }
.icerik-kaynak a { color: var(--muted); }
.icerik-kaynak a:hover { color: var(--green-dark); }

/* makale okuyucu (tam ekran panel) */
.okuyucu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 45, 21, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.okuyucu[hidden] { display: none; }
.okuyucu-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem 2.4rem;
}
.okuyucu-panel > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.okuyucu-panel h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.okuyucu-kapat {
  position: sticky;
  top: 0;
  float: right;
  width: 38px; height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
  z-index: 5;
}
.okuyucu-kapat:hover { background: var(--green); color: #fff; }

/* SSS arama kutusu bu sayfada da kullanılıyor (.urun-ara) */

/* Neden Herbalife bölümü */
.neden-quote {
  max-width: 780px;
  margin: 0 auto 2.4rem;
  background: #fff;
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 2rem;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
}
.neden-quote footer { margin-top: 0.8rem; font-size: 0.82rem; font-style: normal; color: var(--muted); }
.neden-quote footer a { color: var(--green-dark); font-weight: 600; }
.neden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
.neden-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.neden-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.neden-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--green-dark); margin-bottom: 0.3rem; }
.neden-item span { font-size: 0.88rem; color: var(--muted); line-height: 1.45; display: block; }

/* Online satın alma bölümü */
.satin-kutu {
  background:
    radial-gradient(420px 200px at 85% 15%, rgba(255, 255, 255, 0.55), transparent),
    linear-gradient(135deg, #fff3e6 0%, #ffe8cf 100%);
  border: 1px solid #ffdfbd;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem 2.5rem;
  text-align: center;
}
.satin-kutu .satin-ikon { font-size: 2.6rem; display: block; margin-bottom: 0.6rem; }
.satin-kutu h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.satin-kutu h2 em { font-style: normal; color: var(--orange-dark); }
.satin-kutu > p {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto 1.6rem;
  font-size: 0.97rem;
}
.satin-kutu .btn-lg { font-size: 1.08rem; }
.satin-guven {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.satin-guven span {
  background: #fff;
  border: 1px solid #ffdfbd;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5em 1.1em;
}

/* ürünler sayfası satın alma şeridi */
.satin-serit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff3e6 0%, #ffe8cf 100%);
  border: 1px solid #ffdfbd;
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  margin-bottom: 1.6rem;
}
.satin-serit p { font-size: 0.93rem; font-weight: 600; }
.satin-serit small { display: block; font-weight: 500; color: var(--muted); margin-top: 0.15rem; }

.nav-buy { white-space: nowrap; }
.nav-cta { white-space: nowrap; }
@media (max-width: 1340px) { .nav-buy { display: none; } }

/* İş fırsatı bölümü */
.is-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
.is-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.is-item:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.12); }
.is-item span { font-size: 2.1rem; display: block; margin-bottom: 0.55rem; }
.is-item strong { display: block; color: #fff; font-size: 1.02rem; margin-bottom: 0.4rem; }
.is-item small { color: #cfe6b8; font-size: 0.85rem; line-height: 1.55; display: block; }
.section-green .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.section-green .btn-ghost:hover { border-color: #fff; color: #fff; }
@media (max-width: 1024px) { .is-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .is-grid { grid-template-columns: 1fr; } }

@media (max-width: 1024px) {
  .icerik-grid { grid-template-columns: repeat(2, 1fr); }
  .neden-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .icerik-grid { grid-template-columns: 1fr; }
  .okuyucu { padding: 1rem 0.6rem; }
  .okuyucu-panel { padding: 1.5rem 1.2rem; }
  .okuyucu-panel > img { height: 180px; }
  .neden-quote { padding: 1.2rem 1.3rem; }
}
@media (max-width: 560px) {
  .neden-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
}

/* ---------- Görünme Animasyonu ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 2.5rem; }
  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }
}

@media (max-width: 860px) {
  .topbar-hours, .topbar-note { display: none; }

  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-left: 0;
  }
  .nav-links.open { max-height: 900px; }
  .nav-links a { padding: 0.9rem 6%; border-top: 1px solid var(--line); }
  .nav-links a::after { display: none; }

  .nav-drop { position: static; }
  .nav-drop-btn { display: none; }
  .nav-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }
  .nav-drop-menu a { padding: 0.9rem 6%; border-top: 1px solid var(--line); border-radius: 0; white-space: normal; font-size: 0.92rem; }

  .hero { padding: 3rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap img { height: 340px; }
  .hero-visual { max-width: 520px; }

  .split { grid-template-columns: 1fr; gap: 3rem; }
  .img-main { height: 380px; }
  .analysis-card { right: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem 1.5rem; }

  .calc-grid { grid-template-columns: 1fr; }
  .calc-form { position: static; }
  .calc-results, .calc-placeholder { min-height: 0; }
  .calc-placeholder { padding: 3rem 2rem; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .section { padding: 3.8rem 0; }
  .services-grid, .programs-grid, .steps { grid-template-columns: 1fr; }
  .analysis-grid, .about-points, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .slide { padding: 1.8rem 1.4rem; }
  .hero-actions .btn { width: 100%; }
  .res-mini-row { grid-template-columns: 1fr; }
  .res-mini-row-2 { grid-template-columns: 1fr 1fr; }
  .macro-flex { flex-direction: column; }
  .calc-form { padding: 1.6rem 1.4rem; }
  .link-more { margin-left: 0; display: block; }

  .about-img-1 { width: 100%; height: 340px; }
  .about-img-2 { width: 55%; height: 200px; }
  .topbar-left { gap: 0.8rem; }
}
