/*
 * Ticarify Public CSS — landing + register + contact birleşik bundle.
 * Kaynak: arayuz/styles.css + arayuz/register.css + arayuz/contact.css.
 * Renk paleti: --brand-a #ff7f11 (orange primary), --brand-b #ff9f1c, --brand-c #ffd166.
 * migration: tüm url() referansları CDN (https://...) — local path yok.
 */

/* ===== STYLES (landing) ===== */
:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --text: #17203b;
  --muted: #596181;
  --brand-a: #ff7f11;
  --brand-b: #ff9f1c;
  --brand-c: #ffd166;
  --line: #e7eaf6;
  --shadow: 0 22px 45px rgba(23, 32, 59, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 122, 24, 0.2), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(255, 63, 142, 0.18), transparent 40%),
    linear-gradient(180deg, #f7f9ff 0%, #edf3ff 100%);
}

.reveal-item {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.container {
  max-width: 1160px !important;
  padding-left: 2rem;
  padding-right: 2rem;
}

.top-header {
  background: linear-gradient(120deg, #fff8ef 0%, #ffe9cc 50%, #fff2de 100%);
  border-bottom: 1px solid #ffe3c0;
}

.top-header-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-header-text {
  margin: 0;
  font-size: 0.92rem;
  color: #7a3d00;
  font-weight: 500;
}

  
  .signature-offer {
    grid-template-columns: 1fr;
  }
  
  .signature-offer-right {
    justify-items: start;
  }
.top-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-phone,
.top-mail {
  text-decoration: none;
  color: #7a3d00;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-phone:hover,
.top-mail:hover {
  color: #ff7f11;
}

.top-mail {
  padding-left: 12px;
  border-left: 1px solid rgba(122, 61, 0, 0.2);
}

/* 2026-05-20: Mobilde de tel + mail görünür (eskiden gizliydi). */

.glass-nav {
  backdrop-filter: saturate(130%) blur(8px);
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 0;
  padding-bottom: 0;
}

.glass-nav .container {
  height: 84px;
  display: flex;
  align-items: center;
}

.navbar-brand {
  margin-right: 1.8rem;
}

.logo-img {
  width: clamp(112px, 12vw, 156px);
  height: clamp(112px, 12vw, 156px);
  object-fit: contain;
}
  
  .signature-offer {
    grid-template-columns: 1fr;
  }
  
  .signature-offer-right {
    justify-items: start;
  }

.nav-main-links .nav-link {
  font-weight: 500;
  color: #27304e;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.92rem;
}

.nav-main-links .nav-link:hover {
  color: #a65000;
}

.btn-brand {
  background: #ff7f11;
  border: 0;
  color: #fff;
  font-weight: 500;
  box-shadow: none;
}

.btn-brand:hover {
  color: #fff;
  background: #f27406;
  filter: none;
}

.hero-call-btn {
  background: transparent;
  color: #111111;
  border: 1px solid #d7dbe6;
}

.hero-call-btn:hover {
  background: #f7f8fb;
  color: #111111;
}

.btn-outline-brand {
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #1f3a8a;
  font-weight: 700;
}

.btn-outline-brand:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #1f3a8a;
}

/* ===========================================================================
   HERO SECTION — modern MVP pazarlama tasarımı (2026-05-10 yenileme)
   - Gradient shell + decorative blobs + grid pattern
   - Eyebrow pulse, gradient text emphasis
   - Trust strip (1.500+ satıcı / 12M+ fatura / 99.8% başarı)
   - Floating live notification cards (3 adet)
   - Logo wall: continuous marquee (sonsuz yatay scroll)
   ============================================================================ */

.hero-section {
  padding: 3.2rem 0 2.4rem;
}

/* Hero için biraz daha geniş container — başlık ve görsel rahat sığsın */
.hero-section > .container {
  max-width: 1340px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2.4rem 2.2rem 2rem;
  background:
    radial-gradient(1100px 520px at -10% -20%, rgba(255, 159, 28, 0.14), transparent 60%),
    radial-gradient(900px 520px at 110% 110%, rgba(70, 132, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  border: 1px solid #e2e8f5;
  box-shadow: 0 30px 70px rgba(23, 32, 59, 0.07);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 127, 17, 0.28), transparent 70%);
  animation: heroBlobFloat 14s ease-in-out infinite;
}

.hero-blob-2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -100px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 70%);
  animation: heroBlobFloat 18s ease-in-out infinite reverse;
}

@keyframes heroBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -25px) scale(1.06); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(23, 32, 59, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 32, 59, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a3d00;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, #fff4e6 0%, #ffe4cc 100%);
  border: 1px solid #ffc89a;
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  box-shadow: 0 4px 12px rgba(255, 127, 17, 0.12);
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7f11;
  position: relative;
  flex-shrink: 0;
}

.eyebrow-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 127, 17, 0.35);
  animation: heroPulseDot 1.6s ease-out infinite;
}

@keyframes heroPulseDot {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-shell h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.85rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.05rem;
  color: var(--text);
}

.hero-gradient-word {
  background: linear-gradient(135deg, #ff7f11 0%, #ff9f1c 50%, #ffc940 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* H1: 3 satırlı blok yapı — üst sabit / orta rotating / alt sabit.
   Her satır kendi alanında kalır → kelime değişiminde sayfa kayması yok. */
.hero-rotating-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-line-top,
.hero-line-mid,
.hero-line-bottom {
  display: block;
  line-height: 1.1;
}

.hero-line-top {
  font-weight: 700;
  color: var(--text);
}

.hero-line-bottom {
  font-weight: 800;
  color: var(--text);
}

/* Orta satır: rotating word'ün dansı için sabit min-height + overflow hidden */
.hero-line-mid {
  font-weight: 800;
  min-height: 1.18em;          /* line-height ile eşit; kelime değişirken alan korunur */
  overflow: hidden;
  position: relative;
}

.hero-rotating-word {
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-rotating-word.is-switching {
  opacity: 0;
  transform: translateY(-6px);
}

@media (max-width: 991.98px) {
  .hero-rotating-title {
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotating-title,
  .hero-blob-1,
  .hero-blob-2,
  .eyebrow-pulse::after,
  .hero-float-card,
  .hero-logos-marquee {
    transition: none !important;
    animation: none !important;
  }
}

.hero-description {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.hero-actions .btn {
  padding: 12px 22px;
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 12px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-primary {
  background: linear-gradient(135deg, #ff7f11 0%, #ff9f1c 100%);
  border: none;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 127, 17, 0.32);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 127, 17, 0.42);
  color: #fff;
}

.hero-cta-primary .cta-arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.25s ease;
}

.hero-cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

/* Trust strip */
.hero-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 245, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(23, 32, 59, 0.06);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-num {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.trust-num-suffix {
  color: #ff7f11;
  margin-left: 1px;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #d6dcec, transparent);
  flex-shrink: 0;
}

/* Hero media (sağ panel) */
.hero-media-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 12px 0;
}

.hero-media-frame {
  position: relative;
  background: #fff;
  border: 1px solid #d8e1f2;
  border-radius: 20px;
  padding: 8px;
  box-shadow:
    0 30px 60px rgba(43, 66, 112, 0.18),
    0 4px 16px rgba(43, 66, 112, 0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-media-wrap:hover .hero-media-frame {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) translateY(-4px);
}

.hero-media-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Floating notification cards */
.hero-float-card {
  position: absolute;
  background: #fff;
  border: 1px solid #e7eaf6;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(23, 32, 59, 0.12);
  font-size: 0.82rem;
  min-width: 220px;
  z-index: 2;
}

.hero-float-card .float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.hero-float-card .float-icon.icon-green {
  background: #d4f5e2;
  color: #0d8c4d;
}

.hero-float-card .float-icon.icon-blue {
  background: #d8e6ff;
  color: #1d4ed8;
}

.hero-float-card .float-icon.icon-purple {
  background: #ebe2fd;
  color: #6b21a8;
}

.hero-float-card .float-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-float-card .float-body strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero-float-card .float-body span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.2;
}

.hero-float-1 {
  top: 18px;
  left: -36px;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-float-2 {
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
  animation: heroFloat 6s ease-in-out infinite 0.6s;
}

.hero-float-3 {
  bottom: 22px;
  left: -28px;
  animation: heroFloat 5.4s ease-in-out infinite 1.2s;
}

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

.hero-float-2 {
  /* override to keep translateY(-50%) baseline */
  animation-name: heroFloatRight;
}

@keyframes heroFloatRight {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

/* Logo wall */
.hero-logos-wall {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(226, 232, 245, 0.85);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  overflow: hidden;
}

.hero-logos-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(226, 232, 245, 0.85);
  padding-right: 20px;
}

.hero-logos-label strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.hero-logos-label span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-logos-track {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.hero-logos-marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: heroLogoScroll 38s linear infinite;
}

.hero-logos-track:hover .hero-logos-marquee {
  animation-play-state: paused;
}

@keyframes heroLogoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-logo-item {
  flex-shrink: 0;
  width: 92px;
  height: 56px;
  background: #fff;
  border: 1px solid #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 32, 59, 0.08);
}

.hero-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.2s ease;
}

.hero-logo-item:hover img {
  filter: grayscale(0);
}

/* Responsive: tablet & mobile */
@media (max-width: 991.98px) {
  .hero-shell {
    padding: 2rem 1.6rem;
  }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  .hero-actions,
  .hero-trust-strip {
    justify-content: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-media-wrap {
    margin: 0 auto;
    max-width: 480px;
  }
  .hero-media-frame {
    transform: none;
  }
  .hero-float-1 { left: 0; }
  .hero-float-3 { left: 0; }
  .hero-float-2 { right: 0; }
  .hero-logos-wall {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-logos-label {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 245, 0.85);
    padding-right: 0;
    padding-bottom: 12px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 2rem 0 1.5rem;
  }
  .hero-shell {
    border-radius: 20px;
    padding: 1.5rem 1.1rem;
  }
  .hero-trust-strip {
    gap: 12px;
    padding: 12px 14px;
  }
  .trust-num {
    font-size: 1.1rem;
  }
  .trust-label {
    font-size: 0.72rem;
  }
  .trust-divider {
    height: 24px;
  }
  .hero-float-card {
    min-width: 180px;
    font-size: 0.76rem;
  }
  .hero-float-1 { top: 8px; left: 0; }
  .hero-float-2 { display: none; }
  .hero-float-3 { bottom: 8px; left: 0; }
  .hero-logo-item {
    width: 80px;
    height: 50px;
  }

  /* Mobile: form tek kolon */
  .quick-contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quick-contact-shell {
    padding: 22px 16px;
  }
  .quick-contact-info {
    padding: 14px 16px;
  }
  .qc-info-line {
    font-size: 0.88rem;
  }
}

.pricing-section {
  padding-top: 1.7rem;
}

/* ===========================================================================
   QUICK CONTACT — landing "Sizi Arayalım" formu (2026-05-10 modernleştirme)
   - Modern card with subtle gradient + glass
   - Floating-label-feel inputs, focus ring
   - Telefon input: prefix +90 (sticky pill)
   - Turnstile widget (cf-turnstile)
   - Submit button: gradient brand
   ============================================================================ */

.quick-contact-section {
  background: linear-gradient(180deg, #f2f4f8 0%, #f6f8fc 100%);
  padding: 76px 0;
  position: relative;
}

/* 2026-05-10: full-width tek kolon shell — header (yatay) + form (4 kolon) */
.quick-contact-shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  border: 1px solid #e7eaf6;
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px rgba(23, 32, 59, 0.08);
}

/* 2026-05-14: yan yana 2-kolon — sol info, sağ form */
.quick-contact-shell-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.quick-contact-shell-split .quick-contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quick-contact-shell-split .quick-contact-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 991.98px) {
  .quick-contact-shell-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Header row: avatar+başlık (sol) + iletişim bilgi kutusu (sağ) */
.quick-contact-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f3fa;
}

.quick-contact-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.quick-contact-intro h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 480px;
  color: var(--text);
}

.quick-contact-sub {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
  max-width: 460px;
}

/* İletişim bilgi kutusu — 7/24 badge yerine */
.quick-contact-info {
  background: linear-gradient(135deg, #fff7ef 0%, #fff1e3 100%);
  border: 1px solid #ffd9b3;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qc-info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.qc-info-line a {
  color: #7a3d00;
  text-decoration: none;
  transition: color 0.18s ease;
  font-variant-numeric: tabular-nums;
}

.qc-info-line a:hover {
  color: #ff7f11;
  text-decoration: underline;
}

.qc-info-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ffd9b3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff7f11;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.qc-info-note {
  margin: 0;
  font-size: 0.78rem;
  color: #7a3d00;
  line-height: 1.4;
  opacity: 0.78;
}

.avatar-stack {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
}

.avatar-dot {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 4px 10px rgba(23, 32, 59, 0.08);
}

.avatar-dot:first-child {
  margin-left: 0;
}

.avatar-1 { background: linear-gradient(135deg, #88a2ff, #c8d4ff); }
.avatar-2 { background: linear-gradient(135deg, #2a385e, #7181b5); }
.avatar-3 { background: linear-gradient(135deg, #ff8f3a, #ffd2a3); }

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d4f5e2;
  border-radius: 999px;
  padding: 7px 14px;
  color: #0d8c4d;
  font-weight: 700;
  font-size: 0.85rem;
  background: #ebfaf1;
}

.availability-badge::before { content: ""; }  /* eski ◔ glyph kaldırıldı */

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d8c4d;
  position: relative;
}

.availability-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(13, 140, 77, 0.35);
  animation: qcAvailPulse 1.6s ease-out infinite;
}

@keyframes qcAvailPulse {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2);   opacity: 0;   }
}

/* Form — full width 4 kolon (Ad / Soyad / E-Posta / Telefon tek satırda) */
.quick-contact-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

/* 2026-05-14: split layout form (sağ kolonda 2 sütunlu grid) */
.quick-contact-form-split {
  grid-template-columns: 1fr 1fr;
}
.quick-contact-form-split .qc-field-full,
.quick-contact-form-split .qc-submit,
.quick-contact-form-split .qc-turnstile {
  grid-column: 1 / -1;
}
.quick-contact-form-split textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #d6dce6;
  border-radius: 10px;
  background: #fbfcfe;
  color: #1a2440;
  resize: vertical;
  min-height: 78px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quick-contact-form-split textarea:focus {
  border-color: #6b7df7;
  box-shadow: 0 0 0 3px rgba(107,125,247,.15);
}
.qc-optional {
  font-weight: 500;
  text-transform: none;
  color: #9ba3b4;
  font-size: .72rem;
  margin-left: 4px;
}

@media (max-width: 575.98px) {
  .quick-contact-form-split {
    grid-template-columns: 1fr;
  }
}

.qc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qc-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.qc-field input {
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid #e7eaf6;
  background: #fff;
  padding: 0 14px;
  font-size: 0.98rem;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.qc-field input:hover {
  border-color: #d0d7e8;
}

.qc-field input:focus {
  outline: none;
  border-color: #ff9f1c;
  box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.14);
}

.qc-field.is-invalid input {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.qc-error {
  font-size: 0.76rem;
  color: #dc3545;
  font-weight: 500;
  min-height: 0;
  display: none;
}

.qc-field.is-invalid .qc-error {
  display: block;
}

/* Telefon input (prefix kutusu + asıl input) */
.qc-phone-input {
  display: flex;
  align-items: stretch;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid #e7eaf6;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.qc-phone-input:hover {
  border-color: #d0d7e8;
}

.qc-phone-input:focus-within {
  border-color: #ff9f1c;
  box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.14);
}

.qc-field.is-invalid .qc-phone-input {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.qc-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #f6f8fc;
  border-right: 1px solid #e7eaf6;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}

.qc-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.qc-cc {
  font-variant-numeric: tabular-nums;
}

.qc-phone-input input {
  flex: 1;
  border: none;
  padding: 0 14px;
  font-size: 0.98rem;
  background: transparent;
  outline: none;
  color: var(--text);
}

/* Turnstile + submit + privacy — full-width within grid */
.qc-turnstile,
.qc-submit,
.qc-privacy {
  grid-column: 1 / -1;
}

.qc-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.qc-submit {
  height: 52px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7f11 0%, #ff9f1c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 127, 17, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.qc-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 127, 17, 0.36);
}

.qc-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.qc-privacy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.qc-privacy i {
  color: #0d8c4d;
}

.quick-consent-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.consent-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #646d86;
  font-size: 0.94rem;
}

.consent-text input {
  margin-top: 3px;
}

.consent-text a {
  color: #343d59;
  font-weight: 700;
}

.quick-send-btn {
  border: 0;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(130deg, #4e5dff, #3d36f0);
  box-shadow: 0 12px 22px rgba(65, 64, 229, 0.24);
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.official-partner-badge {
  margin: -10px auto 20px;
  max-width: 560px;
  border: 1px solid #dbe4f2;
  background: #f9fbff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-partner-badge img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: left center;
  border-radius: 10px;
  filter: brightness(0);
}

.official-partner-badge strong {
  display: block;
  color: #28334f;
  font-size: 0.93rem;
  font-weight: 600;
}

.official-partner-badge span {
  color: #667089;
  font-size: 0.82rem;
}

.pricing-card {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 14px 35px rgba(20, 29, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.package-name {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  box-shadow: 0 8px 16px rgba(20, 29, 52, 0.16);
}

.package-start {
  background: linear-gradient(120deg, #2f7bff, #245ee8);
}

.package-plus {
  background: linear-gradient(120deg, #ff7f11, #ff5d1b);
}

.package-platinum {
  background: linear-gradient(120deg, #3f4f6f, #202a44);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 29, 52, 0.14);
}

.pricing-card-featured {
  border: 1px solid rgba(255, 122, 24, 0.45);
  background: linear-gradient(170deg, #ffffff 0%, #fff8f3 100%);
}

.pricing-card-platinum {
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: linear-gradient(165deg, #ffffff 0%, #f2f8ff 100%);
}

.popular-badge,
.step-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.popular-badge {
  background: rgba(255, 122, 24, 0.12);
  color: #b04700;
  margin-right: 8px;
}

.popular-badge.platinum {
  background: rgba(11, 101, 209, 0.13);
  color: #0a4f9f;
}

.step-tag {
  background: rgba(59, 130, 246, 0.11);
  color: #3251c7;
}

.pricing-title {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  margin: 0.55rem 0;
}

.pricing-subtitle {
  color: var(--muted);
  min-height: 64px;
}

.price-box {
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.price-box.soft {
  background: #f4f7ff;
}

.price-box.strong {
  background: linear-gradient(120deg, rgba(255, 122, 24, 0.12), rgba(59, 130, 246, 0.1));
}

.price-value {
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.price-label {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.92rem;
}

.signature-offer {
  margin-top: -4px;
  border-radius: 22px;
  border: 1px solid #ffc680;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 146, 32, 0.16), transparent 35%),
    linear-gradient(110deg, #fff6e9 0%, #ffe7c3 48%, #ffd9a1 100%);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 36px rgba(186, 102, 0, 0.16);
}

.signature-offer-left {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
}

.signature-copy {
  min-width: 0;
}

.signature-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #ff7f11, #ff5f1b);
  margin-bottom: 8px;
}

.signature-offer h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #2e2f3d;
}

.signature-offer p {
  margin: 6px 0 0;
  color: #4f5568;
}

.signature-highlight {
  margin-top: 8px;
  color: #b13f00;
  font-weight: 600;
}

.signature-perks {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signature-perks span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: #6a3900;
  border: 1px solid #ffd39c;
  background: rgba(255, 255, 255, 0.6);
}

.signature-offer-right {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.signature-image {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #ffd4a3;
  background: #fff;
  box-shadow: 0 10px 18px rgba(149, 83, 0, 0.16);
}

.signature-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  border: 1px solid #ffd4a3;
  background: #fff;
  display: grid;
  place-items: center;
  color: #ff7f11;
  box-shadow: 0 10px 18px rgba(149, 83, 0, 0.16);
}

.signature-icon svg {
  width: 38px;
  height: 38px;
}

.signature-price-box {
  border-radius: 14px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ffd5a8;
  text-align: right;
  min-width: 170px;
}

.signature-price-box .label {
  display: block;
  font-size: 0.75rem;
  color: #7b849d;
}

.signature-price-box strong {
  display: block;
  color: #1f273f;
  font-size: 1.55rem;
  line-height: 1.1;
}

.signature-price-box small {
  color: #6a7391;
}

.signature-btn {
  justify-self: end;
  min-width: 150px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(255, 127, 17, 0.26);
}

.calc-box {
  border: 1px dashed #ccd6f6;
  border-radius: 14px;
  padding: 14px;
  background: #fbfcff;
}

.calc-box p {
  margin-bottom: 4px;
}

.calc-result {
  font-weight: 800;
  color: #243776;
  margin-bottom: 8px;
}

.calc-label {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  color: #27304e;
  margin-bottom: 9px;
  position: relative;
  padding-left: 24px;
}

.features-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f9e44, #28a745);
  position: absolute;
  left: 0;
  top: 6px;
  box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14);
}

.cta-section {
  margin: 1.6rem 0 0;
  background: linear-gradient(120deg, #0f1c45 0%, #273a7e 45%, #ff3f8e 100%);
}

.support-call-section {
  background: #f0f1f4;
  padding: 1.2rem 0 3.4rem;
}

.testimonials-section {
  background: radial-gradient(circle at 50% -30%, #111b66 0%, #060a3d 48%, #030629 100%);
  padding: 4.2rem 0 3.5rem;
  color: #fff;
}

.testimonials-head h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  line-height: 1.2;
  margin: 1rem 0 0.9rem;
}

.testimonials-head p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
}

.testimonials-chip-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
}

.chip {
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 0.84rem;
}

.chip-brand {
  background: linear-gradient(120deg, #ff7f11, #ff5533);
}

.chip-muted {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 14px;
  align-items: start;
}

.quote-col {
  display: grid;
  gap: 14px;
}

.quote-card {
  background: rgba(28, 43, 88, 0.88);
  border: 1px solid rgba(132, 160, 255, 0.22);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.quote-card p {
  color: rgba(240, 243, 255, 0.92);
  margin: 0 0 10px;
  line-height: 1.4;
  font-size: 0.95rem;
}

.quote-card strong {
  display: block;
  font-size: 0.98rem;
}

.quote-card span {
  color: rgba(224, 231, 255, 0.72);
  font-size: 0.88rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(173, 194, 255, 0.52);
  box-shadow: 0 6px 14px rgba(8, 14, 38, 0.35);
  background: #e9edff;
}

.quote-author-text {
  display: grid;
  gap: 1px;
}

.quote-author-text strong {
  margin: 0;
}

.quote-author-text span {
  margin: 0;
}

.video-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(175, 193, 255, 0.35);
  min-height: 380px;
  background: #0e1229;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.video-meta {
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  color: #1b2546;
  border-radius: 12px;
  border: 1px solid rgba(173, 190, 255, 0.55);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(10, 18, 52, 0.2);
}

.video-meta-title {
  display: grid;
  gap: 2px;
}

.video-meta-title strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.video-meta-title span {
  color: #6d7590;
  font-size: 0.82rem;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #ff7f11, #ff5d1a);
}

.video-rating-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(164, 184, 255, 0.3);
  background: rgba(10, 20, 58, 0.58);
  backdrop-filter: blur(2px);
}

.rating-copy {
  display: grid;
  gap: 2px;
}

.rating-copy span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.88rem;
}

.rating-copy small {
  color: rgba(220, 229, 255, 0.75);
  font-size: 0.78rem;
}

.rating-stars {
  display: grid;
  justify-items: end;
  gap: 1px;
}

.video-rating-summary .stars {
  color: #ffd257;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 1.02rem;
}

.rating-stars small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.testimonials-cta {
  min-width: 180px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-section {
  background: #f6f7fb;
  padding: 3.8rem 0 3.6rem;
}

.signature-offer {
  margin-top: -4px;
  border-radius: 22px;
  border: 1px solid #ffc680;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 146, 32, 0.16), transparent 35%),
    linear-gradient(110deg, #fff6e9 0%, #ffe7c3 48%, #ffd9a1 100%);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(186, 102, 0, 0.16);
}

.signature-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #ff7f11, #ff5f1b);
  margin-bottom: 8px;
}

.signature-offer h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #2e2f3d;
}

.signature-offer p {
  margin: 6px 0 0;
  color: #4f5568;
}

.signature-highlight {
  margin-top: 8px;
  color: #b13f00;
  font-weight: 600;
}

.signature-perks {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signature-perks span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: #6a3900;
  border: 1px solid #ffd39c;
  background: rgba(255, 255, 255, 0.6);
}

.signature-offer-right {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.signature-price-box {
  border-radius: 14px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ffd5a8;
  text-align: right;
  min-width: 170px;
}

.signature-price-box .label {
  display: block;
  font-size: 0.75rem;
  color: #7b849d;
}

.signature-price-box strong {
  display: block;
  color: #1f273f;
  font-size: 1.55rem;
  line-height: 1.1;
}

.signature-price-box small {
  color: #6a7391;
}

.signature-btn {
  min-width: 150px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(255, 127, 17, 0.26);
}

.process-head p {
  color: #616978;
  margin: 1rem auto 0;
  font-size: clamp(.98rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: 720px;
}

.process-head h2 {
  margin: 0.7rem auto 0;
  font-family: "Inter", sans-serif;
  color: #1a2440;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 820px;
  letter-spacing: -0.01em;
}

.process-head .process-h2-accent {
  color: #ff7f11;
  font-size: inherit;
  display: inline;
}

.process-head .process-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 127, 17, .1);
  color: #b35309;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.process-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-item {
  text-align: center;
  padding: 8px 10px;
}

.process-icon {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  background: #f5ebe6;
}

.process-item h3 {
  font-family: "Inter", sans-serif;
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: #2f3542;
}

.process-item p {
  color: #7f8799;
  line-height: 1.55;
  max-width: 390px;
  margin: 0 auto 14px;
}

.process-btn {
  border: 1px solid #4e9be6;
  color: #2478ca;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 22px;
  background: #ffffff;
}

.process-btn:hover {
  color: #1f69b1;
  background: #f6fbff;
}

/* 2026-05-20: FAQ — DB tabanlı, modern accordion */
.faq-section {
  background: linear-gradient(180deg, #fff8ef 0%, #fffaf3 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.faq-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 127, 17, .12);
  color: #b35309;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a2440;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.faq-head h2 span { color: #ff7f11; }

.faq-sub {
  margin: .9rem 0 0;
  color: #5e6678;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid #f0e8d8;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover {
  border-color: rgba(255, 127, 17, .35);
  box-shadow: 0 4px 16px rgba(255, 127, 17, .05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1a2440;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #b35309; }

.faq-q-text { flex: 1; }
.faq-q-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 127, 17, .1);
  color: #ff7f11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .15s ease;
}
.faq-item[open] .faq-q-icon {
  transform: rotate(180deg);
  background: rgba(255, 127, 17, .18);
}

.faq-item[open] summary { color: #b35309; }

.faq-answer {
  padding: 0 20px 18px 20px;
  color: #4a5468;
  font-size: .95rem;
  line-height: 1.65;
  animation: faqSlide .22s ease;
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575.98px) {
  .faq-item summary {
    padding: 14px 16px;
    font-size: .96rem;
  }
  .faq-answer { padding: 0 16px 14px 16px; font-size: .9rem; }
}

.knowledge-section {
  background: #f2f5fb;
  padding: 3.3rem 0;
}

.knowledge-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  color: #1f2945;
}

.knowledge-head p {
  margin: 8px auto 0;
  max-width: 700px;
  color: #5f6883;
}

.knowledge-slider-wrap {
  margin-top: 1.3rem;
  position: relative;
  padding: 0 48px;
}

.knowledge-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.knowledge-slider::-webkit-scrollbar {
  display: none;
}

.knowledge-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.knowledge-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid #d8e1f2;
  border-radius: 999px;
  background: #fff;
  color: #2b3657;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(31, 44, 73, 0.14);
  z-index: 2;
}

.knowledge-nav.prev {
  left: 0;
}

.knowledge-nav.next {
  right: 0;
}

.knowledge-nav:hover {
  background: #fff8ef;
  border-color: #ffc885;
}

.knowledge-card {
  background: #fff;
  border: 1px solid #dfe6f4;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(35, 46, 74, 0.06);
  scroll-snap-align: start;
}

.knowledge-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
}

.knowledge-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #24304f;
}

.knowledge-excerpt {
  margin: 0;
  color: #68718b;
  line-height: 1.45;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.knowledge-read-more {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #d8e1f2;
  color: #2a3556;
  font-size: 0.85rem;
  font-weight: 600;
}

.knowledge-read-more:hover {
  border-color: #ffbe73;
  color: #ad5100;
  background: #fff8ee;
}

.support-call-shell {
  border-radius: 18px;
  background: #e8e8f3;
  border: 1px solid #e0e2f0;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.support-left {
  padding: 2.2rem 2.4rem;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d6d9ea;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  color: #373f5f;
  background: rgba(255, 255, 255, 0.64);
}

.support-left h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  line-height: 1.13;
  margin: 1.15rem 0 1.35rem;
}

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.support-primary-btn {
  background: linear-gradient(130deg, #4e5dff, #3a37ef);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
}

.support-phone-btn {
  border: 1px solid #cfd4e7;
  border-radius: 12px;
  background: #f5f6fa;
  color: #202a49;
  font-weight: 800;
  height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
}

.support-right {
  height: 100%;
  min-height: 340px;
  position: relative;
}

.orbit {
  position: absolute;
  border: 4px solid #c8c0ff;
  border-radius: 999px;
}

.orbit-1 {
  width: 530px;
  height: 530px;
  right: -210px;
  top: -120px;
  opacity: 0.6;
}

.orbit-2 {
  width: 355px;
  height: 355px;
  right: -120px;
  top: 26px;
  opacity: 0.7;
}

.orbit-3 {
  width: 250px;
  height: 250px;
  right: -38px;
  top: 122px;
  opacity: 0.72;
}

.agent-bubble {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 4px solid #aba4ff;
  background: linear-gradient(140deg, #ffffff, #d8dbef);
  color: #2b3252;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.agent-main {
  width: 122px;
  height: 122px;
  left: 92px;
  top: 124px;
  font-size: 1.45rem;
}

.agent-top {
  width: 90px;
  height: 90px;
  left: 130px;
  top: 18px;
}

.agent-mid {
  width: 96px;
  height: 96px;
  right: 172px;
  top: 66px;
}

.agent-left {
  width: 86px;
  height: 86px;
  left: -10px;
  top: 149px;
}

.agent-bottom {
  width: 124px;
  height: 124px;
  right: 80px;
  top: 166px;
  font-size: 1.25rem;
}

.reaction {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(24, 32, 54, 0.18);
  font-size: 1.25rem;
}

.r1 {
  left: 186px;
  top: 10px;
}

.r2 {
  left: 188px;
  top: 100px;
}

.r3 {
  right: 84px;
  top: 138px;
}

.site-footer {
  background: #03073a;
  color: rgba(237, 240, 255, 0.9);
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.4rem;
}

.footer-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin: 12px 0 18px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-brand-col h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

.footer-phone {
  margin: 4px 0 8px;
  color: #ff7f11;
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-brand-col p {
  color: rgba(230, 234, 255, 0.72);
  margin: 0 0 10px;
  line-height: 1.45;
}

.footer-grid h5 {
  margin: 4px 0 12px;
  font-size: 1.05rem;
  color: #fff;
  font-family: "Sora", sans-serif;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: rgba(228, 233, 255, 0.74);
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 8px;
}

.footer-bottom-links a {
  color: rgba(220, 226, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-copyright {
  margin: 0;
  color: rgba(220, 226, 255, 0.54);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .glass-nav .container {
    height: auto;
    min-height: 72px;
  }

  .top-header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .top-header-text {
    text-align: center;
  }

  .logo-img {
    /* 2026-05-20: mobil logo %20 büyüdü: 56 → 67 */
    width: 67px;
    height: 67px;
  }

  .nav-main-links .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-shell {
    padding: 2rem;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-media-wrap {
    max-width: 560px;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: auto;
  }

  .quick-contact-shell {
    padding: 28px 22px;
    gap: 24px;
  }

  .quick-contact-header {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .quick-contact-intro {
    align-items: center;
  }

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

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-consent-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-call-shell {
    grid-template-columns: 1fr;
  }

  .support-right {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-phone {
    font-size: 1.45rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-slider-wrap {
    padding: 0 40px;
  }

  .knowledge-slider {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .video-meta {
    align-items: flex-start;
    gap: 10px;
  }

  .video-rating-summary {
    padding: 10px;
  }

  .signature-offer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .signature-offer-right {
    justify-items: start;
  }

  .signature-price-box {
    text-align: left;
  }

  .signature-btn {
    justify-self: start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .pricing-subtitle {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .hero-shell {
    padding: 1.25rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 40px;
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .hero-media-wrap {
    padding: 9px;
  }

  .knowledge-slider-wrap {
    padding: 0;
  }

  .knowledge-slider {
    grid-auto-columns: 100%;
  }

  .knowledge-nav {
    width: 34px;
    height: 34px;
    top: -42px;
    transform: none;
  }

  .knowledge-nav.prev {
    right: 42px;
    left: auto;
  }

  .knowledge-nav.next {
    right: 2px;
  }

  .video-meta,
  .video-rating-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-stars {
    justify-items: start;
  }

  .reveal-left,
  .reveal-right {
    transform: translateX(14px);
  }
}

/* ===== REGISTER ===== */
:root {
  --bg: #f4f7ff;
  --panel: #ffffff;
  --text: #1e2a4d;
  --muted: #6a7392;
  --line: #e5e9f6;
  --accent-a: #1f82ff;
  --accent-b: #2f63f5;
  --brand-a: #ff7f11;
  --brand-b: #ff9f1c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.split-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-panel {
  background: var(--panel);
  padding: 36px 44px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.signin-line {
  margin: 10px 0 20px;
  display: flex;
  gap: 8px;
  font-weight: 700;
}

.signin-line span {
  color: var(--muted);
}

.signin-line a {
  color: #2a64f7;
  text-decoration: none;
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 12px;
}

.form-intro {
  color: var(--muted);
  margin: 0 0 22px;
}

.signup-form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5f6989;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fcfdff;
  border-radius: 10px;
  height: 46px;
  padding: 0 12px;
  font-size: 0.95rem;
  outline: none;
}

input:focus {
  border-color: #96b4ff;
  box-shadow: 0 0 0 3px rgba(75, 116, 245, 0.14);
}

.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  height: 50px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 12px 26px rgba(255, 145, 0, 0.26);
  cursor: pointer;
}

.terms {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--muted);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--accent-b), var(--accent-a));
  color: #fff;
  display: grid;
  place-items: center;
  padding: 40px;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 36%),
    radial-gradient(circle at 75% 78%, rgba(255, 255, 255, 0.12), transparent 34%);
}

.visual-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  text-align: center;
}

.visual-content h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 0 0 8px;
}

.visual-content p {
  margin: 0;
  opacity: 0.95;
}

.floating-cards {
  margin: 28px auto 22px;
  width: 380px;
  height: 290px;
  position: relative;
}

.card-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.card-a {
  width: 150px;
  height: 98px;
  left: 18px;
  top: 25px;
}

.card-b {
  width: 160px;
  height: 104px;
  right: 6px;
  top: 0;
}

.card-c {
  width: 148px;
  height: 100px;
  left: 28px;
  bottom: 20px;
}

.card-d {
  width: 158px;
  height: 102px;
  right: 0;
  bottom: 26px;
}

.avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffe7a9, #ffbd59);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
}

.visual-footer {
  margin-top: 8px;
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .split-page {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 460px;
  }
}

/* 2026-05-20: Mobilde login/register sayfalarında visual-panel'i gizle.
   Mobile'da split-page tek kolona düşüyor → orbit hub içindeki logo form üstünde
   görünüyordu. Header'da zaten Ticarify logosu var, ikinci logo gereksiz + yer
   kaplıyor. Form direkt gözüksün. */
@media (max-width: 991.98px) {
  .split-page .visual-panel {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .form-panel {
    padding: 24px 18px;
  }

  .double {
    grid-template-columns: 1fr;
  }

  .floating-cards {
    width: 100%;
    max-width: 320px;
    height: 250px;
  }

  .card-a,
  .card-b,
  .card-c,
  .card-d {
    width: 130px;
    height: 84px;
  }
}


/* ===== CONTACT ===== */
:root {
  --bg: #f2f3f6;
  --text: #232a34;
  --muted: #717884;
  --line: #d3d8e4;
  --card: #ffffff;
  --brand: #141625;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.contact-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 50px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 22px;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-hero p {
  color: var(--muted);
  margin: 8px 0 0;
}

.contact-form-panel {
  background: #edf0f6;
  border: 1px solid #dbe1ef;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  overflow: hidden;
}

.form-col {
  padding: 16px 18px 18px;
  background: #f8f9fc;
}

.form-window-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.form-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5f73ff;
}

.form-col h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-family: "Inter", sans-serif;
}

form {
  display: grid;
  gap: 6px;
}

label {
  color: #4d5465;
  font-size: 0.83rem;
  font-weight: 700;
}

input,
textarea,
.phone-input {
  border: 0;
  border-bottom: 1px solid #9ca8bf;
  background: transparent;
  padding: 7px 0;
  font-size: 0.97rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #425bff;
}

.phone-input {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-input input {
  border: 0;
  background: transparent;
  width: 100%;
  padding: 0;
}

.phone-input input:focus {
  outline: none;
}

.consent {
  margin-top: 8px;
  font-size: 0.72rem;
  color: #8a90a0;
}

button {
  margin-top: 6px;
  border: 0;
  border-radius: 18px;
  height: 42px;
  background: #121526;
  color: #fff;
  font-weight: 700;
}

.image-col {
  min-height: 420px;
}

.mosaic {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)), url("https://images.unsplash.com/photo-1522199755839-a2bacb67c546?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
  text-align: center;
}

.contact-info-row h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-family: "Inter", sans-serif;
}

.contact-info-row p {
  margin: 0;
  color: #5e6577;
}

.map-section {
  margin-top: 26px;
}

.map-card {
  position: relative;
  height: 300px;
  border: 1px solid #dde2ef;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 111, 255, 0.35), transparent 16%),
    radial-gradient(circle, #d4d9e6 1px, transparent 1px);
  background-size: auto, 6px 6px;
  background-color: #f8f9fc;
  overflow: hidden;
}

.turkiye-marker {
  position: absolute;
  left: 58%;
  top: 46%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #5a62ff;
  box-shadow: 0 0 0 8px rgba(90, 98, 255, 0.15), 0 0 0 16px rgba(90, 98, 255, 0.08);
}

.offices-section {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.office-card {
  text-align: center;
}

.office-card h4 {
  margin: 0 0 5px;
  font-family: "Inter", sans-serif;
  font-size: 1.08rem;
}

.office-card p {
  margin: 0;
  color: #5f6778;
}

.back-home {
  text-align: center;
  margin-top: 26px;
}

.back-home a {
  color: #2f56ff;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-form-panel {
    grid-template-columns: 1fr;
  }

  .image-col {
    min-height: 250px;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================================
   V2 DESIGN SYSTEM — Public Header, Login, Footer (02.05.2026)
   "Sıcak premium / fintech-meets-cafe" — soft, warm, premium ama tatlı.
   Mevcut sınıf isimleri korunur, override ile cascade'in en sonunda kazanır.
   Mobile-first; 360 / 480 / 768 / 992 / 1280 breakpoint stratejisi.
   ========================================================================= */

/* ----- Tokens (warm warm-white zemin + brand turuncu sistemi) ----- */
:root {
  /* renk */
  --t-ink:        #17203b;     /* başlıklar */
  --t-ink-soft:   #2d3654;     /* gövde metni */
  --t-muted:      #596181;     /* secondary */
  --t-muted-soft: #8a92ae;     /* tertiary */
  --t-surface:    #ffffff;
  --t-surface-warm: #fffaf6;   /* warm white (saf beyaz değil) */
  --t-surface-2: #fdf6ee;      /* hafif sıcak alt katman */
  --t-stroke:    #ece8e0;      /* warm border */
  --t-stroke-2:  #f4efe6;      /* daha açık divider */

  /* brand */
  --t-brand:      #ff7f11;
  --t-brand-soft: #ff9f1c;
  --t-brand-glow: #ffd166;
  --t-brand-deep: #c45a00;     /* hover/active koyu */
  --t-brand-tint: #fff3e3;     /* brand'in pastel'i (badge, alert) */

  /* gölge sistemi */
  --t-shadow-xs:    0 1px 2px rgba(23, 32, 59, .05);
  --t-shadow-sm:    0 2px 6px rgba(23, 32, 59, .06), 0 1px 2px rgba(23, 32, 59, .04);
  --t-shadow-md:    0 8px 24px rgba(23, 32, 59, .08), 0 2px 6px rgba(23, 32, 59, .04);
  --t-shadow-lg:    0 24px 48px rgba(23, 32, 59, .12), 0 4px 12px rgba(23, 32, 59, .06);
  --t-shadow-brand: 0 12px 28px rgba(255, 127, 17, .22), 0 2px 6px rgba(255, 127, 17, .12);

  /* radius + spacing */
  --t-r-xs: 6px;  --t-r-sm: 10px;  --t-r-md: 14px;  --t-r-lg: 20px;  --t-r-xl: 28px;
  --t-s-1: 4px;   --t-s-2: 8px;    --t-s-3: 12px;   --t-s-4: 16px;
  --t-s-5: 24px;  --t-s-6: 32px;   --t-s-7: 48px;   --t-s-8: 64px;

  /* timing */
  --t-ease: cubic-bezier(.4, 0, .2, 1);
  --t-dur:  .22s;
}

/* ----- Body warm zemin (saf mavi-beyaz yerine warm-white) ----- */
body {
  background:
    radial-gradient(1200px 600px at 8% -8%, rgba(255, 127, 17, .14), transparent 55%),
    radial-gradient(900px  500px at 100% 0%, rgba(255, 209, 102, .18), transparent 50%),
    linear-gradient(180deg, #fffaf6 0%, #fff5ec 100%) !important;
  color: var(--t-ink-soft);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

/* =========================================================================
   1) TOP HEADER — ince premium şerit (telefon + iletişim CTA)
   ========================================================================= */
.top-header {
  background: linear-gradient(110deg, #fff8ef 0%, #ffeed5 50%, #fff5e3 100%) !important;
  border-bottom: 1px solid #fbe2bc;
  position: relative;
}
.top-header::after {
  /* en alt 1px brand-tint accent line */
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 127, 17, .28), transparent);
}
.top-header-inner {
  min-height: 42px !important;
  padding: 6px 0;
}
.top-header-text {
  font-size: .88rem !important;
  color: #8a4a02 !important;
  font-weight: 600 !important;
  letter-spacing: -.005em;
}
.top-header-text::before {
  /* küçük ✦ glyph — premium hissi */
  content: "✦  ";
  color: var(--t-brand);
  font-weight: 700;
}
.top-header-actions { gap: 10px !important; }
.top-phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: #8a4a02 !important;
  font-weight: 700 !important;
  font-size: .9rem;
  text-decoration: none;
  transition: color var(--t-dur) var(--t-ease);
}
.top-phone::before {
  content: "\f095"; /* fa-phone */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: .82rem;
  color: var(--t-brand);
}
.top-phone:hover { color: var(--t-brand-deep) !important; }

.btn-top-contact {
  background: #ffffff !important;
  border: 1px solid #fbcc8a !important;
  color: #8a4a02 !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-size: .85rem;
  box-shadow: var(--t-shadow-xs);
  transition: all var(--t-dur) var(--t-ease);
}
.btn-top-contact:hover {
  background: var(--t-brand) !important;
  border-color: var(--t-brand) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--t-shadow-brand);
}

/* =========================================================================
   2) GLASS NAV — floating premium navbar
   ========================================================================= */
.glass-nav {
  background: rgba(255, 252, 248, .82) !important;
  backdrop-filter: saturate(160%) blur(14px) !important;
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(236, 232, 224, .65) !important;
  transition: box-shadow var(--t-dur) var(--t-ease),
              background var(--t-dur) var(--t-ease);
}
/* scroll edildiğinde navbar floating'e dönüşür (JS class 'glass-nav-floating' ekler) */
.glass-nav.glass-nav-floating {
  box-shadow: var(--t-shadow-md);
  background: rgba(255, 252, 248, .94) !important;
}
.glass-nav .container {
  height: 76px !important;
}
.navbar-brand { margin-right: 1.5rem !important; padding: 0 !important; }
.logo-img {
  /* 2026-05-20: %20 büyüdü — 130 → 156, 96 → 115, vw payı 10 → 12 */
  width: clamp(115px, 12vw, 156px) !important;
  height: auto !important;
  object-fit: contain;
}

.nav-main-links .nav-link {
  position: relative;
  font-weight: 600 !important;
  color: var(--t-ink-soft) !important;
  font-size: .92rem;
  padding: 8px 14px !important;
  border-radius: var(--t-r-sm);
  transition: color var(--t-dur) var(--t-ease), background var(--t-dur) var(--t-ease);
}
.nav-main-links .nav-link::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--t-brand);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-dur) var(--t-ease);
}
.nav-main-links .nav-link:hover {
  color: var(--t-ink) !important;
  background: rgba(255, 127, 17, .06);
}
.nav-main-links .nav-link:hover::after,
.nav-main-links .nav-link.active::after { transform: scaleX(1); }
.nav-main-links .nav-link.active { color: var(--t-brand-deep) !important; }

/* Login + Ücretsiz Başla CTA buton çifti */
.btn-brand {
  background: linear-gradient(135deg, var(--t-brand) 0%, var(--t-brand-soft) 100%) !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-size: .92rem;
  box-shadow: var(--t-shadow-brand);
  transition: transform var(--t-dur) var(--t-ease),
              box-shadow var(--t-dur) var(--t-ease),
              filter var(--t-dur) var(--t-ease);
  position: relative;
  overflow: hidden;
}
.btn-brand::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s var(--t-ease);
}
.btn-brand:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 127, 17, .32), 0 2px 8px rgba(255, 127, 17, .18);
  filter: brightness(1.04);
}
.btn-brand:hover::before { transform: translateX(100%); }
.btn-brand:active { transform: translateY(0); }

.glass-nav .btn-light {
  background: #fff !important;
  border: 1px solid var(--t-stroke) !important;
  color: var(--t-ink) !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-size: .92rem;
  transition: all var(--t-dur) var(--t-ease);
}
.glass-nav .btn-light:hover {
  border-color: var(--t-brand) !important;
  color: var(--t-brand-deep) !important;
  background: var(--t-brand-tint) !important;
}

.ti-nav-toggle {
  display: none;
  border: 1px solid #e7eaf6 !important;
  border-radius: 10px !important;
  width: 44px; height: 44px;
  padding: 0 !important;
  background: #fff !important;
  box-shadow: 0 1px 2px rgba(23, 32, 59, .06);
  margin-left: auto;
  position: relative;
  z-index: 1060;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.ti-nav-toggle:focus,
.ti-nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 127, 17, .25) !important;
}
.ti-nav-toggle .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2317203b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  display: inline-block;
  width: 22px; height: 22px;
}

.ti-nav-drawer-mobile {
  display: none;
}

@media (min-width: 992px) {
  .ti-nav-drawer-desktop {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-left: 1.5rem;
  }
  .ti-nav-drawer-desktop .ti-nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .ti-nav-drawer-desktop .ti-nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .ti-nav-drawer-mobile { display: none !important; }
  .ti-nav-backdrop { display: none !important; }
}

@media (max-width: 991.98px) {
  .ti-nav-toggle { display: inline-flex; }
  .ti-nav-drawer-desktop { display: none !important; }

  .ti-nav-drawer-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    box-shadow: -28px 0 80px rgba(23, 32, 59, .22);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 20px 22px 22px;
    transform: translateX(105%);
    transition: transform .36s cubic-bezier(.16, .84, .26, 1);
    overflow-y: auto;
    z-index: 1050;
    will-change: transform;
    gap: 0;
  }
  .ti-nav-drawer-mobile.is-open { transform: translateX(0); }

  .ti-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f2eee5;
  }
  .ti-nav-head-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
  }
  .ti-nav-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid #ece8df;
    background: #fff;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease;
  }
  .ti-nav-close:hover {
    background: rgba(255, 127, 17, .08);
    color: #b35309;
    transform: rotate(90deg);
  }

  .ti-nav-drawer-mobile .ti-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    width: 100%;
  }
  .ti-nav-drawer-mobile .nav-link {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 13px 14px !important;
    font-size: .98rem !important;
    font-weight: 600 !important;
    color: #2b3754 !important;
    border-radius: 12px !important;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .15s ease;
  }
  .ti-nav-drawer-mobile .nav-link::after { display: none; }
  .ti-nav-drawer-mobile .nav-link:hover,
  .ti-nav-drawer-mobile .nav-link:active,
  .ti-nav-drawer-mobile .nav-link.active {
    background: rgba(255, 127, 17, .1) !important;
    color: #b35309 !important;
  }
  .ti-nav-link-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 127, 17, .08);
    color: #ff7f11;
    font-size: 14px;
  }
  .ti-nav-drawer-mobile .nav-link:hover .ti-nav-link-icon,
  .ti-nav-drawer-mobile .nav-link.active .ti-nav-link-icon {
    background: rgba(255, 127, 17, .15);
  }

  .ti-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    margin-top: auto;
    margin-bottom: 14px;
    background: rgba(255, 244, 224, .55);
    border: 1px solid rgba(255, 127, 17, .12);
    border-radius: 14px;
  }
  .ti-nav-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5c4a2e;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s ease;
  }
  .ti-nav-contact-line:hover { color: #b35309; }
  .ti-nav-contact-line i {
    width: 20px;
    text-align: center;
    color: #ff7f11;
    font-size: .85rem;
  }

  .ti-nav-drawer-mobile .ti-nav-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding-top: 16px;
    border-top: 1px solid #f2eee5;
  }
  .ti-nav-drawer-mobile .ti-nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
  }

  .ti-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(23, 32, 59, .42);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }
  body.ti-nav-open .ti-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.ti-nav-open {
    overflow: hidden;
  }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* 2026-05-20: Mobilde top-header iki satır — üstte slogan, altta tel + email görünür.
   Önceki sürümde telefonu icon-only yapıyor + email gizliyordu, kullanıcı istemedi. */
@media (max-width: 575.98px) {
  .top-header-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .top-header-text {
    font-size: .78rem !important;
    text-align: center;
  }
  .top-header-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px !important;
  }
  .top-phone,
  .top-mail {
    font-size: .78rem !important;
  }
  .top-mail {
    padding-left: 12px;
  }
  .btn-top-contact {
    padding: 6px 10px !important;
    font-size: .78rem;
  }
}

/* =========================================================================
   3) LOGIN — split-page premium yenileme
   ========================================================================= */
.split-page {
  /* min-height: 100vh kaldırıldı — split-page içerik kadar yer kaplar.
     Form-panel + visual-panel altında public_footer var (her zaman görünür).
     Bu sayede üst-alt boşluk yapay olarak büyümez. */
  display: grid;
  /* Default: visual sol — form sağ (1fr / 1.05fr) — kullanıcı isteğiyle form sağa alındı */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  background: var(--t-surface-warm);
}

.form-panel {
  background: var(--t-surface);
  /* Üst-padding eski; alt padding minimal (footer ile arası daraltıldı 03.05.2026) */
  padding: clamp(48px, 6vw, 88px) clamp(24px, 5vw, 64px) clamp(8px, 1vw, 14px) !important;
  display: flex; flex-direction: column;
  justify-content: flex-start;        /* form tepeden başlasın */
  align-items: center;                /* form yatay olarak panelin merkezinde dursun (03.05.2026) */
  min-height: auto;
  position: relative;
}
/* Form içi elementler tam genişlik kullansın ama merkez hizalı kalsınlar */
.form-panel > .signin-line,
.form-panel > h1,
.form-panel > .form-intro,
.form-panel > .alert,
.form-panel > .signup-form {
  width: 100%;
  max-width: 460px;
}
/* form-panel'ın sağ tarafa geldiği için brand bar SOL kenarda kalmalı (visual'ı keser gibi) */
.form-panel::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--t-brand) 0%, var(--t-brand-glow) 100%);
}

/* Logo header'da var — login formunda tekrar gerekmez. brand-link/brand-logo gizle. */
.brand-link, .brand-logo { display: none !important; }

.signin-line {
  margin: 0 0 28px !important;
  font-size: .88rem;
  font-weight: 600 !important;
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
}
.signin-line span { color: var(--t-muted) !important; }
.signin-line a {
  color: var(--t-brand) !important;
  text-decoration: none !important;
  font-weight: 700;
  position: relative;
  padding-bottom: 1px;
}
.signin-line a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--t-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-dur) var(--t-ease);
}
.signin-line a:hover::after { transform: scaleX(1); }

.form-panel h1 {
  color: var(--t-ink) !important;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  line-height: 1.15 !important;
  margin: 0 0 12px !important;
}
.form-intro {
  color: var(--t-muted) !important;
  font-size: 1rem !important;
  line-height: 1.6;
  margin: 0 0 32px !important;
  max-width: 460px;
}

.signup-form {
  display: grid !important;
  gap: 14px !important;
  max-width: 460px;
}
.signup-form label {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: var(--t-ink-soft) !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: -4px;
}
.signup-form input {
  width: 100%;
  height: 52px !important;
  padding: 0 16px !important;
  border: 1.5px solid var(--t-stroke) !important;
  background: var(--t-surface-warm) !important;
  border-radius: var(--t-r-md) !important;
  font-size: .98rem !important;
  color: var(--t-ink) !important;
  transition: border-color var(--t-dur) var(--t-ease),
              box-shadow var(--t-dur) var(--t-ease),
              background var(--t-dur) var(--t-ease);
}
.signup-form input::placeholder { color: var(--t-muted-soft) !important; }
.signup-form input:hover { border-color: #d8d2c5 !important; }
.signup-form input:focus {
  border-color: var(--t-brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255, 127, 17, .12) !important;
  outline: none !important;
}

.password-wrap input { padding-right: 52px !important; }
#toggle-password {
  position: absolute !important;
  right: 8px !important; top: 50% !important;
  transform: translateY(-50%) !important;
  background: transparent !important;
  border: 0 !important;
  width: 40px; height: 40px;
  border-radius: var(--t-r-sm);
  display: inline-grid; place-items: center;
  color: var(--t-muted) !important;
  font-size: 0 !important;  /* metni gizle, ikon kullan */
  cursor: pointer;
  transition: background var(--t-dur) var(--t-ease), color var(--t-dur) var(--t-ease);
}
#toggle-password::before {
  content: "\f06e"; /* fa-eye */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 1rem;
}
#toggle-password.is-visible::before { content: "\f070"; /* fa-eye-slash */ }
#toggle-password:hover {
  color: var(--t-brand) !important;
  background: var(--t-brand-tint);
}

.forgot-link {
  margin: 4px 0 8px !important;
  text-align: right;
  font-size: .85rem;
}
.forgot-link a {
  color: var(--t-muted) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t-dur) var(--t-ease);
}
.forgot-link a:hover { color: var(--t-brand) !important; }

.submit-btn {
  margin-top: 10px !important;
  border: 0 !important;
  border-radius: var(--t-r-md) !important;
  height: 56px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: .005em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--t-brand) 0%, var(--t-brand-soft) 100%) !important;
  box-shadow: var(--t-shadow-brand) !important;
  cursor: pointer;
  transition: transform var(--t-dur) var(--t-ease),
              box-shadow var(--t-dur) var(--t-ease),
              filter var(--t-dur) var(--t-ease);
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .65s var(--t-ease);
}
.submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 36px rgba(255, 127, 17, .35), 0 2px 8px rgba(255, 127, 17, .2) !important;
}
.submit-btn:hover::before { transform: translateX(100%); }
.submit-btn:active { transform: translateY(0); }

.terms {
  margin-top: 24px !important;
  font-size: .82rem;
  color: var(--t-muted-soft) !important;
  line-height: 1.55;
  max-width: 460px;
}

/* form-panel altındaki entegrasyon kapanış cümlesi — premium, sade */
.form-bottom-note {
  margin: 28px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--t-stroke-2);
  max-width: 460px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--t-muted) !important;
  line-height: 1.55;
}

.alert.alert-danger {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  color: #991b1b !important;
  border-radius: var(--t-r-md) !important;
  padding: 12px 16px !important;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 20px !important;
}
.alert.alert-danger::before {
  content: "\f06a "; /* fa-circle-exclamation */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  margin-right: 6px;
  color: #dc2626;
}

/* ----- Visual Panel (sağ) — gerçek metinli floating cards ----- */
.visual-panel {
  background:
    radial-gradient(1000px 600px at 80% 20%, rgba(255, 209, 102, .35), transparent 50%),
    radial-gradient(800px  500px at 20% 80%, rgba(255, 127, 17, .28), transparent 55%),
    linear-gradient(155deg, #ff9f1c 0%, #ff7f11 60%, #c45a00 100%) !important;
  /* Form-panel ile EŞİT üst padding, minimal alt padding — kompakt */
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 56px) clamp(8px, 1vw, 14px) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;       /* center değil — sağ panelle simetri */
}
.visual-panel::before {
  /* dot pattern dokusu */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.visual-overlay {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .14), transparent 38%),
    radial-gradient(circle at 78% 82%, rgba(255, 255, 255, .10), transparent 36%) !important;
}
.visual-content {
  max-width: 540px !important;
  text-align: center;
  position: relative; z-index: 2;
}
.visual-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
  margin: 0 0 12px !important;
}
.visual-content p {
  opacity: .96 !important;
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .12);
}

/* =========================================================================
   BRAND ORBIT — pazaryeri logoları + Ticarify hub + dashed connectors
   "Tüm pazaryerlerin tek noktada birleştiği" mesajını görsel olarak verir.
   ========================================================================= */
.brand-orbit {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1 / 1;
  margin: 28px auto 0;
  /* Inner kartların absolute referans noktası bu container.
     Hub left:50%/top:50% ile container ortasına denk gelir. */
}
.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.orbit-lines line {
  animation: orbitLineDraw 1.6s var(--t-ease) backwards;
}
.orbit-lines line:nth-of-type(1) { animation-delay: .1s; }
.orbit-lines line:nth-of-type(2) { animation-delay: .25s; }
.orbit-lines line:nth-of-type(3) { animation-delay: .4s; }
.orbit-lines line:nth-of-type(4) { animation-delay: .55s; }
@keyframes orbitLineDraw {
  from { stroke-dashoffset: 200; opacity: 0; }
  to   { stroke-dashoffset: 0;   opacity: 1; }
}
.orbit-lines circle {
  transform-origin: center;
  animation: orbitRingSpin 30s linear infinite;
}
@keyframes orbitRingSpin { to { transform: rotate(360deg); } }

/* 4 köşedeki ÖZELLİK kartları (ikon + 2 satır metin) */
.orbit-card {
  position: absolute;
  width: 28%;            /* ~106px @ 380px parent — ikon + 2 satır metin için */
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, .98);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22), 0 2px 6px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;          /* ikon üstte, metin altta */
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform var(--t-dur) var(--t-ease),
              box-shadow var(--t-dur) var(--t-ease);
  animation: orbitCardIn .65s var(--t-ease) both;
}
.orbit-card i {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--t-brand);
  background: var(--t-brand-tint);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-grid; place-items: center;
}
.orbit-card span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--t-ink);
  text-align: center;
  line-height: 1.22;
  letter-spacing: -.005em;
}
.orbit-card:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .28), 0 4px 10px rgba(0, 0, 0, .12);
}
/* köşelerde 4 kart — orbit içinde dağıtılmış */
.orbit-tl { top: 2%;  left: 2%;  animation-delay: .15s; }
.orbit-tr { top: 2%;  right: 2%; animation-delay: .25s; }
.orbit-bl { bottom: 2%; left: 2%;  animation-delay: .35s; }
.orbit-br { bottom: 2%; right: 2%; animation-delay: .45s; }
@keyframes orbitCardIn {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* Merkezdeki Ticarify hub — inset:0 + margin:auto ile DAİMA tam merkez.
   Transform hesabı yok; container ne büyürse büyüsün hub yine merkezde.
   En güvenli CSS centering yöntemi (subpixel kayma imkansız). */
.orbit-hub {
  position: absolute;
  inset: 0;               /* top:0 right:0 bottom:0 left:0 */
  margin: auto;           /* yatay + dikey otomatik ortalama */
  width: 30%;             /* ~114px @ 380px */
  height: 30%;            /* aspect-ratio yerine explicit — eski Safari subpixel garanti */
  background: linear-gradient(135deg, var(--t-brand) 0%, var(--t-brand-soft) 100%);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .98);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, .32),
    0 0 0 8px rgba(255, 255, 255, .14);
  z-index: 5;
  animation: orbitCardIn .8s var(--t-ease) .55s both;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* iç beyaz disk — absolute, içeride padding etkisi */
.orbit-hub-disc {
  position: absolute;
  inset: 8%;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 -4px 10px rgba(255, 127, 17, .08);
  z-index: 1;
}
.orbit-hub img {
  /* Grid item — automatic centered (place-items: center).
     Hesaplama yok, transform yok → browser daima tam merkezde tutar. */
  position: relative;
  width: 64%;
  height: 64%;
  object-fit: contain;
  object-position: center center;
  display: block;
  z-index: 2;
  margin: 0;
}
/* yumuşak nabız halkası (live feel) */
.orbit-hub-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  animation: hubPulse 2.4s var(--t-ease) infinite;
  pointer-events: none;
}
@keyframes hubPulse {
  0%   { transform: scale(1);    opacity: .65; }
  70%  { transform: scale(1.32); opacity: 0; }
  100% { transform: scale(1.32); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-card, .orbit-hub, .orbit-lines line, .orbit-lines circle,
  .orbit-hub-pulse { animation: none !important; }
}

/* =========================================================================
   MARKETPLACE STRIP — orbit altında pazaryeri logo şeridi (5 marka)
   Trendyol / Hepsiburada / N11 / ikas / PTTAVM — turuncu zeminde beyaz tonu.
   ========================================================================= */
.marketplace-strip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 auto 14px;
  max-width: 100%;
}
.marketplace-strip .ms-label {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .82);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}
.marketplace-strip .ms-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Her logo beyaz mini chip içinde — turuncu zeminde okunaklı, kendi renkleriyle */
.marketplace-strip .ms-chip {
  width: 56px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  padding: 5px 8px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .14), 0 1px 2px rgba(0, 0, 0, .08);
  transition: transform var(--t-dur) var(--t-ease),
              box-shadow var(--t-dur) var(--t-ease);
}
.marketplace-strip .ms-chip:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .22), 0 2px 4px rgba(0, 0, 0, .10);
}
.marketplace-strip .ms-chip img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none !important;
  opacity: 1 !important;
}

/* =========================================================================
   VISUAL STATS — alt trust chip'i (5+ pazaryeri | %98 | 5dk)
   ========================================================================= */
.visual-stats {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}
.stat-item strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.015em;
}
.stat-item span {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  margin-top: 2px;
  letter-spacing: .01em;
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .26);
}

/* Mobile orbit küçülür — h2/p ile birlikte özet kal */
@media (max-width: 991.98px) {
  .brand-orbit { width: min(340px, 100%); margin: 24px auto 18px; }
  .orbit-hub { border-width: 3px; padding: 14%; }
  .orbit-card i { font-size: 1.3rem; width: 34px; height: 34px; }
  .orbit-card span { font-size: .68rem; }
  .marketplace-strip { gap: 14px; padding: 8px 16px; }
  .marketplace-strip .ms-label {
    /* mobil dikey alan korumak için label gizle, sadece logolar görünsün */
    display: none;
  }
  .marketplace-strip .ms-logos { gap: 6px; }
  .marketplace-strip .ms-chip { width: 50px; height: 28px; padding: 4px 6px; }
  .visual-stats { gap: 12px; padding: 10px 18px; }
  .stat-item strong { font-size: 1rem; }
  .stat-item span { font-size: .66rem; }
  .stat-divider { height: 24px; }
}
@media (max-width: 575.98px) {
  .brand-orbit { width: min(300px, 100%); }
  .orbit-card { width: 30%; padding: 8px 6px; }
  .orbit-card i { font-size: 1.1rem; width: 30px; height: 30px; }
  .orbit-card span { font-size: .62rem; }
  .marketplace-strip { gap: 10px; padding: 8px 14px; }
  .marketplace-strip .ms-logos { gap: 5px; }
  .marketplace-strip .ms-chip { width: 44px; height: 26px; padding: 3px 5px; }
  .visual-stats { gap: 10px; padding: 8px 14px; }
  .stat-item strong { font-size: .9rem; }
  .stat-item span { font-size: .62rem; }
}

/* gerçek metinli premium snippet kartları (ESKİ — artık kullanılmıyor; geriye uyum için bırakıldı) */
.floating-cards {
  margin: 36px auto 24px !important;
  width: min(440px, 100%) !important;
  height: 320px !important;
  position: relative;
}
.card-item {
  background: rgba(255, 255, 255, .98) !important;
  border-radius: var(--t-r-lg) !important;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .22), 0 4px 12px rgba(0, 0, 0, .08) !important;
  padding: 14px 16px;
  display: flex; flex-direction: column; justify-content: center;
  font-family: "Inter", sans-serif;
  color: var(--t-ink);
  text-align: left;
  animation: cardFloat 6s ease-in-out infinite;
}
.card-item::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 1rem;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-grid; place-items: center;
  margin-bottom: 6px;
}
.card-item .ci-num {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.015em;
  line-height: 1.1;
}
.card-item .ci-label {
  font-size: .72rem; color: var(--t-muted);
  font-weight: 600; letter-spacing: .02em;
  margin-top: 2px;
}
.card-item.card-a {
  width: 180px; height: 110px; left: 0; top: 12px;
  animation-delay: 0s;
}
.card-item.card-a::before { content: "\f217"; background: #fef3e8; color: var(--t-brand-deep); }
.card-item.card-b {
  width: 200px; height: 120px; right: 0; top: 0;
  animation-delay: 1.5s;
}
.card-item.card-b::before { content: "\f570"; background: #ecfdf5; color: #059669; }
.card-item.card-c {
  width: 175px; height: 108px; left: 14px; bottom: 24px;
  animation-delay: 3s;
}
.card-item.card-c::before { content: "\f0e7"; background: #eff6ff; color: #2563eb; }
.card-item.card-d {
  width: 195px; height: 116px; right: 6px; bottom: 8px;
  animation-delay: 4.5s;
}
.card-item.card-d::before { content: "\f1ad"; background: #fdf4ff; color: #a21caf; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .card-item { animation: none; }
}

.avatar-ring {
  width: 96px !important; height: 96px !important;
  background: linear-gradient(145deg, #fff5d8, #ffd166) !important;
  border: 5px solid rgba(255, 255, 255, .92) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28), inset 0 -4px 8px rgba(255, 127, 17, .25) !important;
}
.avatar-ring::after {
  /* TC harfi orta marka rozeti */
  content: "T";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: "Inter", sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--t-brand-deep);
  letter-spacing: -.04em;
}

.visual-footer {
  margin-top: 16px !important;
  font-size: .9rem !important;
  opacity: .92;
  position: relative; z-index: 2;
}

/* Login responsive — mobile'da form üstte, visual altta (kullanıcı odaklı: önce form) */
@media (max-width: 991.98px) {
  .split-page {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .form-panel {
    min-height: auto !important;
    padding: 32px 24px 48px !important;
    order: 1;
  }
  .form-panel::before {
    width: 0 !important; height: 4px !important;
    left: 0 !important; right: 0 !important;
    bottom: auto !important; top: 0 !important;
  }
  .visual-panel {
    padding: 48px 28px !important;
    min-height: 360px;
    order: 2;  /* form sonrası mood teaser */
  }
  /* Mobile'da visual panel kompakt görsel */
  .visual-content h2 { font-size: 1.4rem !important; }
  .visual-content p { font-size: .92rem !important; }
  .floating-cards { height: 240px !important; margin: 24px auto 16px !important; }
  .card-item.card-a, .card-item.card-c { width: 150px; height: 90px; }
  .card-item.card-b, .card-item.card-d { width: 165px; height: 96px; }
}

@media (max-width: 575.98px) {
  .form-panel { padding: 24px 18px 40px !important; }
  .signup-form { gap: 12px !important; }
  .signup-form input { height: 50px !important; font-size: 16px !important; /* iOS zoom prevent */ }
  .submit-btn { height: 54px !important; }
  .visual-panel { padding: 40px 20px !important; min-height: 380px; }
  .floating-cards { height: 220px !important; }
  .card-item .ci-num { font-size: 1.1rem; }
  .card-item .ci-label { font-size: .68rem; }
  .avatar-ring { width: 76px !important; height: 76px !important; }
  .avatar-ring::after { font-size: 1.7rem; }
}

/* =========================================================================
   4) FOOTER — café-warm zemin yerine derin lacivert + brand vurgu
   ========================================================================= */
.site-footer {
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(255, 127, 17, .12), transparent 50%),
    radial-gradient(600px 300px at 100% 100%, rgba(255, 209, 102, .08), transparent 60%),
    linear-gradient(180deg, #0a1027 0%, #050a1f 100%) !important;
  color: rgba(237, 240, 255, .85) !important;
  /* Üst padding daraltıldı (login içerik ↔ footer kompakt) */
  padding: clamp(24px, 3vw, 40px) 0 20px !important;
  position: relative;
}
.site-footer::before {
  /* en üstte ince brand gradient şerit */
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--t-brand) 30%, var(--t-brand-glow) 70%, transparent);
}

.footer-grid {
  display: grid !important;
  /* 5 kolon: Brand (1.4fr) + Pazaryeri + E-Ticaret + Kargo + Kurumsal (1fr x4) — 03.05.2026 */
  grid-template-columns: 1.4fr repeat(4, 1fr) !important;
  gap: 32px !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  padding-bottom: 40px !important;
}
/* 992-1199 ara breakpoint: Brand row 1, link sütunları 2x2 grid (taşmasın) */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr) !important;
    gap: 32px 36px !important;
  }
  .footer-grid > div:nth-child(2) { grid-column: 2; }
  .footer-grid > div:nth-child(3) { grid-column: 3; }
  .footer-grid > div:nth-child(4) { grid-column: 2; }
  .footer-grid > div:nth-child(5) { grid-column: 3; }
}

.footer-logo {
  width: 148px !important; height: auto !important;
  max-height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 127, 17, .35));
}
.footer-socials {
  margin: 18px 0 26px !important;
  gap: 10px !important;
  display: flex !important;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 40px !important; height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, .06) !important;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  color: rgba(237, 240, 255, .82) !important;
  text-decoration: none !important;
  transition: all var(--t-dur) var(--t-ease);
}
.footer-socials a i {
  display: block;
  line-height: 1;
  font-size: 1rem;
}
.footer-socials a:hover {
  background: var(--t-brand) !important;
  border-color: var(--t-brand);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 127, 17, .35);
}

.footer-brand-col h4 {
  font-family: "Inter", sans-serif !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55) !important;
  margin: 0 0 6px !important;
}
.footer-phone {
  color: var(--t-brand-glow) !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  letter-spacing: -.015em;
  margin: 4px 0 14px !important;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none !important;
  transition: color var(--t-dur) var(--t-ease);
}
.footer-phone:hover { color: #fff !important; }
.footer-phone::before {
  content: "\f095"; /* fa-phone */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 1rem;
  color: var(--t-brand);
  width: 36px; height: 36px;
  background: rgba(255, 127, 17, .14);
  border-radius: 50%;
  display: inline-grid; place-items: center;
}
.footer-brand-col p {
  color: rgba(230, 234, 255, .68) !important;
  margin: 0 0 10px !important;
  line-height: 1.6 !important;
  font-size: .9rem;
}
.footer-brand-col p:nth-of-type(2) {
  /* adres satırı — pin ikon */
  display: inline-flex; align-items: flex-start; gap: 8px;
  font-size: .88rem;
}
.footer-brand-col p:nth-of-type(2)::before {
  content: "\f3c5"; /* fa-location-dot */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--t-brand-glow);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-grid h5 {
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 4px 0 16px !important;
  position: relative;
  padding-bottom: 10px;
}
.footer-grid h5::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--t-brand), var(--t-brand-glow));
  border-radius: 2px;
}

.footer-grid li { margin-bottom: 10px !important; }
.footer-grid a {
  color: rgba(228, 233, 255, .68) !important;
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--t-dur) var(--t-ease), transform var(--t-dur) var(--t-ease);
  display: inline-block;
}
.footer-grid a:hover {
  color: var(--t-brand-glow) !important;
  transform: translateX(3px);
}

.footer-bottom-links {
  margin: 24px 0 12px !important;
  gap: 24px !important;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(220, 226, 255, .58) !important;
  font-size: .82rem !important;
  font-weight: 500;
  transition: color var(--t-dur) var(--t-ease);
}
.footer-bottom-links a:hover { color: var(--t-brand-glow) !important; }

.footer-copyright {
  color: rgba(220, 226, 255, .5) !important;
  font-size: .82rem !important;
  margin: 0;
}

/* Footer responsive */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-phone { font-size: 1.4rem !important; }
  .footer-bottom-links { gap: 14px 18px !important; }
  .footer-bottom-links a { font-size: .78rem !important; }
}

/* =========================================================================
   Yardımcılar — focus-visible + reduced-motion + high-contrast
   ========================================================================= */
*:focus-visible {
  outline: 2px solid var(--t-brand) !important;
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* =====================================================================
 * Landing — Blog Highlights Slider Section
 * Process-section'dan sonra, FAQ'tan önce. 3 random blog yazısı yatay
 * slider; 1 active (büyük, vurgulu) + diğerleri yan kayan kompakt görüntü.
 * Auto-advance 6sn (script tarafı), hover'da pause.
 * Mobil: tek kart per ekran, swipe yerine prev/next + dots.
 * ===================================================================== */
.landing-blog-section {
  background: linear-gradient(180deg, #fbfbff 0%, #ffffff 100%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.landing-blog-section::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,127,17,.08) 0%, transparent 70%);
  pointer-events: none;
}
.landing-blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.landing-blog-eyebrow {
  display: inline-block;
  padding: .35rem 1rem;
  background: rgba(255,127,17,.08);
  color: var(--brand-a);
  font-weight: 600;
  font-size: .82rem;
  border-radius: 999px;
  border: 1px solid rgba(255,127,17,.18);
  margin-bottom: .85rem;
  letter-spacing: .02em;
}
.landing-blog-title {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.landing-blog-title span {
  background: linear-gradient(135deg, var(--brand-a) 0%, var(--brand-b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing-blog-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0;
}
.landing-blog-all-btn {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1.4rem;
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
  white-space: nowrap;
}
.landing-blog-all-btn:hover {
  background: var(--brand-a);
  color: #fff;
  border-color: var(--brand-a);
  transform: translateY(-1px);
}

/* Slider */
.landing-blog-slider {
  position: relative;
}
.landing-blog-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  transition: opacity .3s;
}
.landing-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 2px 8px rgba(23,32,59,.04);
}
.landing-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(23,32,59,.12);
  border-color: rgba(255,127,17,.25);
}
.landing-blog-card.is-active {
  border-color: rgba(255,127,17,.35);
  box-shadow: 0 14px 36px rgba(255,127,17,.18);
  transform: translateY(-4px);
}
.landing-blog-card-img {
  position: relative;
  height: 220px;
  background: #f1f3f9;
  overflow: hidden;
}
.landing-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.landing-blog-card:hover .landing-blog-card-img img {
  transform: scale(1.06);
}
.landing-blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(23,32,59,.85);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.landing-blog-card-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.landing-blog-card-date {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .65rem;
}
.landing-blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 .65rem;
  /* 2 satır ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.08em;
}
.landing-blog-card-excerpt {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0 0 1.1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.landing-blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--brand-a);
  font-weight: 600;
  font-size: .9rem;
  margin-top: auto;
  transition: gap .25s;
}
.landing-blog-card:hover .landing-blog-card-cta { gap: .65rem; }

/* Controls */
.landing-blog-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.landing-blog-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: .9rem;
}
.landing-blog-nav:hover {
  border-color: var(--brand-a);
  color: var(--brand-a);
  transform: scale(1.05);
}
.landing-blog-dots {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.landing-blog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d8dcea;
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}
.landing-blog-dot:hover { background: #b5bccc; }
.landing-blog-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-a) 0%, var(--brand-b) 100%);
}

/* Tablet — 2 kart */
@media (max-width: 991.98px) {
  .landing-blog-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-blog-card-img { height: 200px; }
}

/* Mobil — tek kart per ekran, slide görünümü */
@media (max-width: 767.98px) {
  .landing-blog-section { padding: 3.5rem 0; }
  .landing-blog-head { margin-bottom: 1.8rem; }
  .landing-blog-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* Aktif olmayanları küçük tut (mobile slide hissi) */
  .landing-blog-card { display: none; }
  .landing-blog-card.is-active { display: flex; }
  .landing-blog-card-img { height: 200px; }
  .landing-blog-card-body { padding: 1.2rem; }
  .landing-blog-card-title { font-size: 1.05rem; min-height: 0; }
  .landing-blog-controls { margin-top: 1.6rem; }
}

/* Desktop — 3 kart sürekli görünür, aktif olan vurgulu (slide değil grid).
   3 kart hep ekranda → "slide" hissi sadece aktif card'ın highlight'ı + auto-cycle. */
@media (min-width: 992px) {
  .landing-blog-card { display: flex; }
}

