/* =====================================================================
 * Takeaway (Paket Servis) — /paket-servis ve /en/takeaway sayfaları
 * Tema: LIGHT (sayfa default light, hero ve final-card karanlık aksan)
 * Prefix: .tk-* (sayfa içi), .takeaway-strip (home şeridi)
 * ===================================================================== */

/* ============================================================
 * HOME ŞERİTİ — alt-orta tek satır (dark — home.php'de dark zone)
 * ============================================================ */
.takeaway-strip {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 22, 115, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(52, 60, 144, 0.08), transparent 60%),
    var(--bg-1);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.takeaway-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.takeaway-strip__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.takeaway-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-magenta-soft);
  background: rgba(230, 22, 115, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 22, 115, 0.25);
}

.takeaway-strip__title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
  font-weight: 700;
  font-family: 'Inter Tight', Inter, sans-serif;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.takeaway-strip__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}

.takeaway-strip__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #ffd6e8;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.takeaway-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-indigo));
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(230, 22, 115, 0.25);
}

.takeaway-strip__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 22, 115, 0.35);
}

@media (max-width: 768px) {
  .takeaway-strip__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .takeaway-strip__cta { justify-self: flex-start; }
}

/* ============================================================
 * SAYFA ORTAK (LIGHT)
 * ============================================================ */
.tk-section__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}

.tk-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-magenta);
  margin-bottom: 0.75rem;
}

.tk-section__title {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink-d-100);
  margin: 0 0 0.75rem;
}

.tk-section__sub {
  font-size: var(--fs-lead);
  color: var(--ink-d-60);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
 * LAUNCH PILL — light theme, dark text on subtle pink
 * ============================================================ */
.tk-launch {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.tk-launch__row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.tk-launch__pill {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, rgba(230, 22, 115, 0.08), rgba(52, 60, 144, 0.06));
  border: 1px solid rgba(230, 22, 115, 0.35);
  border-radius: 999px;
  color: var(--ink-d-100);
  font-size: var(--fs-body);
  font-weight: 500;
}

.tk-launch__pill strong {
  color: var(--brand-magenta-deep);
  font-weight: 700;
}

/* ============================================================
 * DEMO — başlık + iframe yan yana (desktop), alt alta (mobile)
 * ============================================================ */
.tk-demo {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface-2);
}

.tk-demo .tk-section__head {
  text-align: left;
  max-width: none;
  margin: 0;
}

.tk-demo__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tk-demo__copy {
  max-width: 36ch;
}

.tk-demo__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tk-demo__device {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 18.5;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 10px #1a1a22,
    0 0 0 11px rgba(0, 0, 0, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.18),
    0 15px 30px rgba(230, 22, 115, 0.12);
}

.tk-demo__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tk-demo__open {
  font-size: var(--fs-sm);
  color: var(--brand-magenta);
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
}

.tk-demo__open:hover {
  color: var(--brand-magenta-deep);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .tk-demo__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tk-demo__copy { max-width: none; margin: 0 auto; }
  .tk-demo .tk-section__head { text-align: center; }
}

/* ============================================================
 * 3 ADIM — light cards, portrait images
 * ============================================================ */
.tk-steps {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.tk-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tk-step {
  position: relative;
  background: var(--surface-2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tk-step:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 22, 115, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.tk-step__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-magenta);
  opacity: 0.6;
  z-index: 2;
}

.tk-step__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tk-step__title {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-d-100);
  margin: 0;
}

.tk-step__desc {
  font-size: var(--fs-body);
  color: var(--ink-d-60);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
 * KARŞILAŞTIRMA TABLOSU (LIGHT)
 * ============================================================ */
.tk-compare {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface-2);
}

.tk-compare__table {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.tk-compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-3);
}

.tk-compare__col {
  padding: 1rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-d-60);
  letter-spacing: 0.02em;
  text-align: center;
}

.tk-compare__col--us {
  background: linear-gradient(135deg, rgba(230, 22, 115, 0.08), rgba(52, 60, 144, 0.06));
  color: var(--ink-d-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tk-compare__us-badge {
  font-size: var(--fs-xs);
  background: var(--brand-magenta);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.tk-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tk-compare__cell {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-body);
  line-height: 1.4;
}

.tk-compare__cell--them {
  color: var(--ink-d-60);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.tk-compare__cell--us {
  color: var(--ink-d-100);
  font-weight: 500;
}

.tk-compare__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tk-compare__icon svg {
  width: 14px;
  height: 14px;
}

.tk-compare__icon--neg {
  background: rgba(220, 70, 70, 0.1);
  color: #c43838;
}

.tk-compare__icon--pos {
  background: rgba(50, 180, 100, 0.12);
  color: #2a9c5b;
}

@media (max-width: 540px) {
  .tk-compare__cell { font-size: 0.85rem; padding: 0.85rem 0.85rem; }
  .tk-compare__col { font-size: 0.75rem; padding: 0.75rem; }
}

/* ============================================================
 * PANEL (admin) — LIGHT
 * ============================================================ */
.tk-panel {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.tk-panel__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tk-panel__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.tk-panel__shot {
  position: absolute;
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tk-panel__shot--front {
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-2deg);
}

.tk-panel__shot--back {
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(3deg);
  opacity: 0.9;
}

.tk-panel__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

@media (max-width: 600px) {
  .tk-panel__features { grid-template-columns: 1fr; }
}

.tk-panel__feature {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--brand-magenta);
}

.tk-panel__feature-title {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-d-100);
  margin: 0 0 0.35rem;
}

.tk-panel__feature-desc {
  font-size: var(--fs-body);
  color: var(--ink-d-60);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .tk-panel__split { grid-template-columns: 1fr; }
  .tk-panel__media { aspect-ratio: 16 / 10; max-width: 600px; margin: 0 auto; }
}

/* ============================================================
 * ÇOKLU DİL (LIGHT)
 * ============================================================ */
.tk-lang {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface-2);
}

.tk-lang__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
}

.tk-lang__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: var(--ink-d-100);
  font-size: var(--fs-body);
  font-weight: 500;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tk-lang__chip:hover {
  border-color: rgba(230, 22, 115, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 22, 115, 0.1);
}

.tk-lang__chip--more {
  background: transparent;
  color: var(--brand-magenta);
  font-weight: 600;
  border-color: transparent;
}

.tk-lang__flag {
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
 * PRICING (lansman card) — DARK accent (kullanıcı bu bloğu korumak istedi)
 * ============================================================ */
.tk-price {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.tk-price__card {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(230, 22, 115, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(52, 60, 144, 0.18), transparent 60%),
    var(--bg-2);
  border: 1px solid rgba(230, 22, 115, 0.3);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.tk-price__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-magenta-soft);
  background: rgba(230, 22, 115, 0.18);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.tk-price__label {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.tk-price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tk-price__was {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 500;
}

.tk-price__now {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-magenta-soft), #ffb3d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.tk-price__duration {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
}

.tk-price__note {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0 auto 1.5rem;
  max-width: 50ch;
}

.tk-price__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
 * SSS (LIGHT)
 * ============================================================ */
.tk-faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface-2);
}

.tk-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tk-faq__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tk-faq__item[open] {
  border-color: rgba(230, 22, 115, 0.35);
  box-shadow: 0 8px 24px rgba(230, 22, 115, 0.08);
}

.tk-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink-d-100);
  list-style: none;
  user-select: none;
}

.tk-faq__q::-webkit-details-marker { display: none; }

.tk-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand-magenta);
  transition: transform 0.25s ease;
}

.tk-faq__item[open] .tk-faq__chevron {
  transform: rotate(180deg);
}

.tk-faq__a {
  padding: 0 1.25rem 1.25rem;
  font-size: var(--fs-body);
  color: var(--ink-d-60);
  line-height: 1.6;
}

/* ============================================================
 * FINAL CTA — DARK accent card on light page
 * ============================================================ */
.tk-final {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.tk-final__card {
  background:
    radial-gradient(ellipse at top, rgba(230, 22, 115, 0.2), transparent 70%),
    var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.tk-final__title {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 1rem;
}

.tk-final__sub {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.tk-final__sub strong {
  color: var(--brand-magenta-soft);
}

.tk-final__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
