/* ==========================================================================
   Rhyme Export — Etsy Danışmanlık Sayfası (Sayfa-Spesifik CSS)
   ==========================================================================
   Bu dosya SADECE etsy-danismanlik sayfasında yüklenir. Global tasarım
   sistemi (renk değişkenleri, .italic-serif, .brand-text, .glass,
   .glass-strong, blob, #starfield, .scroll-progress, .fade-up,
   .letter-reveal, .ripple-host, .magnetic, .sweep-wrap, navbar, footer,
   reduced-motion global) için assets/css/effects.css ve
   assets/css/navbar.css'e bakın — burada o tanımlar TEKRARLANMAZ.

   Bu sayfaya özel:
   - Container max-width: 1240px (hakkimizda ile aynı, etsy-egitimi'nden farklı)
   - Section padding (.sec, .sec-deep)
   - .eyebrow override (this page uses ::before line, not .line span)
   - Buttons (.btn, .btn-primary, .btn-ink, .btn-ghost) — local definitions
   - Hero (kicker + grid + dashboard SVG card)
   - Stat bar (.stat-bar 4-col local count-up format)
   - Profile cards (.profile-card)
   - Feat cards + feat-list (✓ list items)
   - Process timeline (.process-step + num-dot)
   - Bonus card (.bonus-card + bonus-pills)
   - Referans cards (.ref-card)
   - Logo grid + logo-card
   - Accordion (.acc-item, .acc-head, .acc-body, .pl)
   - Contact form + contact-side
   - Final CTA (radial gradient bg)
   - Grid utilities (.grid-3, .grid-4, .grid-6, .grid-services)

   Keyframe çakışmasını önlemek için sayfa-spesifik keyframe'lere
   "ed-" prefix uygulandı (ör. ed-card-float, ed-bar-grow). Global
   keyframe'ler (drift1/2/3, ripple, sweepShine, countPulse) burada
   YENİDEN TANIMLANMAZ.
   ========================================================================== */


/* === LAYOUT === */
body.page-template-page-etsy-danismanlik .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 2;
}

body.page-template-page-etsy-danismanlik .sec {
  padding: 7rem 0;
  position: relative;
}
body.page-template-page-etsy-danismanlik .sec-deep { background: var(--creamDeep); }

body.page-template-page-etsy-danismanlik .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
body.page-template-page-etsy-danismanlik .eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand);
}

body.page-template-page-etsy-danismanlik .sec h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 32ch;
  margin-bottom: 1.25rem;
}
body.page-template-page-etsy-danismanlik .lead {
  color: var(--mute);
  font-size: 1.075rem;
  max-width: 56ch;
  line-height: 1.6;
  margin-bottom: 3rem;
}
body.page-template-page-etsy-danismanlik .accent {
  color: var(--brand);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
}


/* === GRID UTILITIES === */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3,
  .grid-4,
  .grid-6,
  .grid-services { grid-template-columns: 1fr; }
  body.page-template-page-etsy-danismanlik .sec { padding: 5rem 0; }
}


/* === BUTTONS === */
body.page-template-page-etsy-danismanlik .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
body.page-template-page-etsy-danismanlik .btn-ink,
body.page-template-page-etsy-danismanlik .btn-primary {
  background: var(--ink);
  color: var(--cream);
}
body.page-template-page-etsy-danismanlik .btn-ink:hover,
body.page-template-page-etsy-danismanlik .btn-primary:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px -18px rgba(255, 95, 0, 0.55);
}
body.page-template-page-etsy-danismanlik .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.18);
}
body.page-template-page-etsy-danismanlik .btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.03);
}
body.page-template-page-etsy-danismanlik .btn .arr { transition: transform 0.4s; }
body.page-template-page-etsy-danismanlik .btn:hover .arr { transform: translateX(4px); }


/* === HERO === */
body.page-template-page-etsy-danismanlik .hero {
  padding: 7rem 0 7rem;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1300px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
body.page-template-page-etsy-danismanlik .hero h1 {
  font-size: clamp(3rem, 6.25vw, 6.25rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
}
body.page-template-page-etsy-danismanlik .hero h1 div { display: block; }
.hero-sub {
  color: var(--mute);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 2.25rem;
}
.gradient-pill {
  background: linear-gradient(90deg, var(--brand), var(--brandSoft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--mute);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-proof .ck { color: var(--brand); }


/* === HERO STAGE — modern dashboard === */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1.05;
  margin-left: auto;
}
.stage-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.dash-card {
  position: absolute;
  inset: 6% 2% 8% 4%;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(253, 247, 238, 0.85) 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 0.22),
              0 8px 24px -10px rgba(255, 95, 0, 0.1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: ed-card-float 7s ease-in-out infinite;
}
@keyframes ed-card-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-8px) rotate(-0.3deg); }
}
.dash-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255, 95, 0, 0.08), transparent 50%);
  pointer-events: none;
}
.dash-head {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  z-index: 3;
}
.dash-head .live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
}
.dash-head .live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(255, 95, 0, 0.6);
  animation: ed-live-pulse 1.6s ease-in-out infinite;
}
@keyframes ed-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 95, 0, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(255, 95, 0, 0); }
}

.dash-counter {
  position: absolute;
  top: 50px;
  left: 24px;
  right: 24px;
  z-index: 3;
}
.dash-counter .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
}
.dash-counter .val {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.dash-counter .val .cur {
  color: var(--brand);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  margin-right: 0.15em;
  font-weight: 500;
}
.dash-counter .delta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #0a8a3a;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 138, 58, 0.08);
  animation: ed-delta-pop 4s ease-in-out infinite;
}
@keyframes ed-delta-pop {
  0%, 90%, 100% { transform: translateY(0); opacity: 1; }
  45%           { transform: translateY(-2px); opacity: 0.85; }
}

.chart-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  z-index: 2;
}
.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gridline {
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.curve-path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  filter: drop-shadow(0 4px 12px rgba(255, 95, 0, 0.35));
  animation: ed-curve-draw 2.4s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards,
             ed-curve-breath 5s ease-in-out 2.7s infinite;
}
@keyframes ed-curve-draw { to { stroke-dashoffset: 0; } }
@keyframes ed-curve-breath {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.85; }
}
.curve-fill {
  fill: url(#curveFillGrad);
  opacity: 0;
  animation: ed-curve-fill-in 1.2s ease-out 2s forwards;
}
@keyframes ed-curve-fill-in { to { opacity: 1; } }

.bar {
  transform-origin: bottom;
  transform: scaleY(0);
}
.bar.run {
  animation: ed-bar-grow var(--d, 1.2s) cubic-bezier(0.2, 0.8, 0.2, 1) forwards var(--delay, 0.5s),
             ed-bar-breath 5s ease-in-out infinite calc(var(--delay, 0.5s) + var(--d, 1.2s) + 0.2s);
}
@keyframes ed-bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes ed-bar-breath {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.94); }
}
.bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  fill: var(--mute);
  text-transform: uppercase;
}
.bar-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: var(--ink);
}

.glow-dot {
  filter: drop-shadow(0 0 12px rgba(255, 95, 0, 0.7));
  transform-origin: center;
  animation: ed-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes ed-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}

.grow-label {
  position: absolute;
  top: -2px;
  right: 8%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 95, 0, 0.2);
  box-shadow: 0 18px 40px -18px rgba(255, 95, 0, 0.5),
              0 4px 14px -4px rgba(0, 0, 0, 0.08);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--brand);
  z-index: 5;
  animation: ed-grow-label-float 4s ease-in-out infinite;
}
.grow-label .trend {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
}
@keyframes ed-grow-label-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(-1deg); }
}

.sale-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.4);
  z-index: 6;
  opacity: 0;
}
.sale-badge .ic {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.sale-badge.b1 {
  top: 38%;
  left: -6%;
  animation: ed-badge-fly1 7s ease-in-out 1.5s infinite;
}
.sale-badge.b2 {
  bottom: 18%;
  right: -4%;
  animation: ed-badge-fly2 7s ease-in-out 4s infinite;
}
@keyframes ed-badge-fly1 {
  0%, 100% { opacity: 0; transform: translate(-10px, 8px) scale(0.85); }
  10%, 40% { opacity: 1; transform: translate(0, 0) scale(1); }
  50%      { opacity: 0; transform: translate(8px, -8px) scale(0.95); }
}
@keyframes ed-badge-fly2 {
  0%, 100% { opacity: 0; transform: translate(10px, 8px) scale(0.85); }
  10%, 40% { opacity: 1; transform: translate(0, 0) scale(1); }
  50%      { opacity: 0; transform: translate(-8px, -8px) scale(0.95); }
}

.chip {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 4;
}
.chip.c1 { top: -8px; left: 0; animation: ed-chip-float 6s ease-in-out infinite; }
.chip.c2 { top: 24%; right: -12px; animation: ed-chip-float 6s ease-in-out 1.5s infinite; }
.chip.c3 { bottom: 14%; left: -14px; animation: ed-chip-float 6s ease-in-out 3s infinite; }
.chip.c4 { bottom: -2px; right: 6%; animation: ed-chip-float 6s ease-in-out 4.5s infinite; }
@keyframes ed-chip-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(3deg); }
}

@media (max-width: 900px) {
  body.page-template-page-etsy-danismanlik .hero { padding: 5rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stage { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
}


/* === STAT BAR === */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
}
.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-num .suffix { color: var(--brand); }
.stat-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
@media (max-width: 760px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
}


/* === PROFILE CARDS === */
.profile-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 95, 0, 0.35);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.18);
}
.profile-card .ic {
  width: 36px;
  height: 36px;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.profile-card .ic svg {
  width: 100%;
  height: 100%;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.4;
}
.profile-card .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.profile-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.profile-card p {
  color: var(--mute);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.profile-card .arrow {
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}


/* === FEAT CARDS === */
.feat-card {
  padding: 2.25rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 95, 0, 0.35);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.18);
}
.feat-card .emoji {
  font-size: 30px;
  margin-bottom: 1.25rem;
  display: block;
  filter: saturate(0.95);
}
.feat-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feat-card > p {
  color: var(--mute);
  font-size: 14.75px;
  line-height: 1.6;
}
.feat-list {
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.25rem;
}
.feat-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--mute);
  padding: 0.4rem 0;
  display: flex;
  gap: 0.6rem;
  line-height: 1.5;
}
.feat-list li::before {
  content: '✓';
  color: var(--brand);
  flex-shrink: 0;
  font-weight: 600;
}


/* === PROCESS TIMELINE === */
.process-timeline {
  margin-top: 3rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--brand) 50%, rgba(0, 0, 0, 0.08));
}
.process-step {
  display: flex;
  gap: 1.75rem;
  padding: 1rem 0;
  align-items: flex-start;
  position: relative;
}
.process-step .num-dot {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--cream);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--cream);
}
body.page-template-page-etsy-danismanlik .sec-deep .process-step .num-dot {
  background: var(--creamDeep);
  box-shadow: 0 0 0 6px var(--creamDeep);
}
.process-step .step-card {
  flex: 1;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  transition: all 0.5s ease;
}
.process-step:hover .step-card {
  border-color: rgba(255, 95, 0, 0.3);
  transform: translateX(6px);
}
.process-step h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.process-step .step-card p {
  color: var(--mute);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.process-step .duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}
.process-note {
  margin: 2.5rem auto 0;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--mute);
  font-size: 1.05rem;
  text-align: center;
  max-width: 38rem;
}


/* === BONUS CARD === */
.bonus-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF7EE 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.pricing-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.16), transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(40px);
}
.bonus-card .eyebrow { margin-bottom: 1rem; }
.bonus-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.bonus-card .lead {
  margin-top: 1.5rem;
  margin-bottom: 0;
  max-width: 60ch;
  font-size: 1.05rem;
}
.bonus-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 95, 0, 0.06);
  border: 1px solid rgba(255, 95, 0, 0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.bonus-pill .check {
  color: var(--brand);
  font-weight: 600;
}
.bonus-card .cta-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.bonus-foot {
  margin-top: 1.25rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--mute);
  font-size: 0.98rem;
}


/* === REF CARDS === */
.ref-card {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.ref-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 95, 0, 0.35);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.18);
}
.ref-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brand);
  text-transform: uppercase;
}
.ref-card .name {
  font-size: 22px;
  font-weight: 500;
  margin: 0.5rem 0 0.4rem;
  letter-spacing: -0.01em;
}
.ref-card .sector {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.ref-card .divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 1.25rem 0;
}
.ref-card .arrow {
  font-size: 14px;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.4s ease, color 0.4s ease;
}
.ref-card:hover .arrow {
  gap: 0.8rem;
  color: var(--brand);
}


/* === LOGOS === */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}
.logo-card {
  padding: 1.5rem 1.25rem;
  min-height: 120px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.logo-card .lg-emo {
  font-size: 22px;
  line-height: 1;
}
.logo-card .lg-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}


/* === ACCORDION === */
.curriculum {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.acc-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.acc-item.open {
  border-color: rgba(255, 95, 0, 0.4);
  background: rgba(255, 255, 255, 0.85);
}
.acc-head {
  width: 100%;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.acc-head .pl {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mute);
  transition: all 0.35s;
}
.acc-item.open .acc-head .pl {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: rotate(45deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.6;
}
.acc-body-inner { padding: 0 1.5rem 1.4rem; }
.acc-item.open .acc-body { max-height: 340px; }


/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid .col-form { order: -1; }
}
.contact-side .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.contact-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 15.5px;
}
.contact-row .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 95, 0, 0.08);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.contact-row a:hover { color: var(--brand); }
.hours-block {
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.hours-block .lbl { margin-bottom: 0.5rem; }
.hours-val {
  color: var(--mute);
  font-size: 15px;
}
.trust-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-form {
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font: 14px 'Plus Jakarta Sans', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition: border 0.3s, box-shadow 0.3s;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 95, 0, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}
.form-foot {
  font-size: 12px;
  font-style: italic;
  color: var(--mute);
  margin-top: 1rem;
}


/* === FINAL CTA === */
body.page-template-page-etsy-danismanlik .final-cta {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(255, 179, 124, 0.18), transparent 70%), var(--cream);
}
body.page-template-page-etsy-danismanlik .final-cta .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--mute);
  margin-bottom: 1.5rem;
}
body.page-template-page-etsy-danismanlik .final-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 auto 1.5rem;
  max-width: 18ch;
}
body.page-template-page-etsy-danismanlik .final-cta .sub {
  color: var(--mute);
  max-width: 38ch;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* === KIM ICIN section üst boşluk daraltma === */
body.page-template-page-etsy-danismanlik .stat-bar + .sec,
body.page-template-page-etsy-danismanlik .hero + .sec {
  padding-top: 3rem;
}
@media (max-width: 900px) {
  body.page-template-page-etsy-danismanlik .stat-bar + .sec,
  body.page-template-page-etsy-danismanlik .hero + .sec {
    padding-top: 2rem;
  }
}
